docker-compose-vl.spec 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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: 1.28.2
  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/%{version}/docker-compose-Linux-x86_64
  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 Feb 11 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.28.2-1
  41. - new upstream release.
  42. * Thu Dec 17 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.27.4-1
  43. - new upstream release.
  44. * Sun Jul 26 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.26.2-1
  45. - new upstream release.
  46. * Thu Mar 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.25.4-1
  47. - new upstream release.
  48. * Thu Oct 10 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.24.1-2
  49. - rebuilt to upload to VineSeed official repository.
  50. * Tue Aug 27 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.24.1-1
  51. - initial build for Vine Linux.