docker-compose-vl.spec 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. %bcond_with build_nosrc
  2. %if !%{with build_nosrc}
  3. %global _disable_source_fetch 0
  4. %endif
  5. Name: docker-compose
  6. Summary: Define and run multi-container applications with Docker
  7. Version: 2.18.1
  8. Release: 1%{?_dist_release}
  9. Group: admin-tools,virtualization
  10. Vendor: Project Vine
  11. Distribution: Vine Linux
  12. Packager: tomop
  13. License: ASL 2.0
  14. URL: https://www.docker.com
  15. Source0: https://github.com/docker/compose/releases/download/v%{version}/docker-compose-linux-x86_64#/docker-compose-%{version}
  16. Source1: https://raw.githubusercontent.com/docker/compose/%{version}/README.md
  17. Source2: https://raw.githubusercontent.com/docker/compose/%{version}/LICENSE
  18. %if %{with build_nosrc}
  19. NoSource: 0
  20. NoSource: 1
  21. NoSource: 2
  22. %endif
  23. Requires: docker-ce-cli
  24. %description
  25. Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a Compose file to configure your application's services. Then, using a single command, you create and start all the services from your configuration.
  26. %prep
  27. %build
  28. %install
  29. # install binary
  30. install -d %{buildroot}%{_bindir}
  31. install -p -m 755 %{SOURCE0} %{buildroot}%{_bindir}/docker-compose
  32. install -p -m 755 %{SOURCE1} ./
  33. install -p -m 755 %{SOURCE2} ./
  34. %files
  35. %defattr(-,root,root,-)
  36. %license LICENSE
  37. %doc README.md
  38. %{_bindir}/docker-compose
  39. %changelog
  40. * Thu Jun 08 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.18.1-1
  41. - new upstream release.
  42. * Mon Feb 13 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.16.0-1
  43. - new upstream release.
  44. * Mon Sep 12 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.10.2-1
  45. - new upstream release.
  46. * Tue Dec 28 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.2.2-1
  47. - new upstream release.
  48. * Wed Dec 01 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.1.1-1
  49. - new upstream release.
  50. * Wed May 12 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.29.2-1
  51. - new upstream release.
  52. * Thu Feb 11 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.28.2-1
  53. - new upstream release.
  54. * Thu Dec 17 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.27.4-1
  55. - new upstream release.
  56. * Sun Jul 26 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.26.2-1
  57. - new upstream release.
  58. * Thu Mar 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.25.4-1
  59. - new upstream release.
  60. * Thu Oct 10 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.24.1-2
  61. - rebuilt to upload to VineSeed official repository.
  62. * Tue Aug 27 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.24.1-1
  63. - initial build for Vine Linux.