source: projects/specs/trunk/d/docker-compose/docker-compose-vl.spec @ 12527

Revision 12527, 1.9 KB checked in by tomop, 3 years ago (diff)

updated 2 packages

docker-ce-20.10.3-1

docker-compose-1.28.2-1

Line 
1%bcond_with build_nosrc
2
3%if !%{with build_nosrc}
4%global _disable_source_fetch 0
5%endif
6
7Name: docker-compose
8Summary: Define and run multi-container applications with Docker
9Version: 1.28.2
10Release: 1%{?_dist_release}
11Group: admin-tools,virtualization
12Vendor: Project Vine
13Distribution: Vine Linux
14Packager: tomop
15
16License: ASL 2.0
17URL: https://www.docker.com
18Source0: https://github.com/docker/compose/releases/download/%{version}/docker-compose-Linux-x86_64
19Source1: https://raw.githubusercontent.com/docker/compose/%{version}/README.md
20Source2: https://raw.githubusercontent.com/docker/compose/%{version}/LICENSE
21
22%if %{with build_nosrc}
23NoSource: 0
24NoSource: 1
25NoSource: 2
26%endif
27
28Requires: docker-ce-cli
29
30%description
31Compose 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.
32
33
34%prep
35
36
37%build
38
39
40%install
41# install binary
42install -d %{buildroot}%{_bindir}
43
44install -p -m 755 %{SOURCE0} %{buildroot}%{_bindir}/docker-compose
45install -p -m 755 %{SOURCE1} ./
46install -p -m 755 %{SOURCE2} ./
47
48
49%files
50%defattr(-,root,root,-)
51%license LICENSE
52%doc README.md
53%{_bindir}/docker-compose
54
55
56%changelog
57* Thu Feb 11 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.28.2-1
58- new upstream release.
59
60* Thu Dec 17 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.27.4-1
61- new upstream release.
62
63* Sun Jul 26 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.26.2-1
64- new upstream release.
65
66* Thu Mar 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.25.4-1
67- new upstream release.
68
69* Thu Oct 10 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.24.1-2
70- rebuilt to upload to VineSeed official repository.
71
72* Tue Aug 27 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.24.1-1
73- initial build for Vine Linux.
Note: See TracBrowser for help on using the repository browser.