Compare commits
No commits in common. "605002842f2b4ed5429c3f40c7dcfe169288f751" and "dfbc477997b3c2a653bfeeafb96854564cd8abed" have entirely different histories.
605002842f
...
dfbc477997
408
docker-compose/docker-compose.spec
Normal file
408
docker-compose/docker-compose.spec
Normal file
@ -0,0 +1,408 @@
|
|||||||
|
Name: docker-compose
|
||||||
|
Version: 1.29.2
|
||||||
|
Release: 12%{?dist}
|
||||||
|
Summary: Multi-container orchestration for Docker
|
||||||
|
License: ASL 2.0
|
||||||
|
URL: https://github.com/docker/compose
|
||||||
|
Source0: %pypi_source
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
Patch0: pytest-7.2-compatibility.patch
|
||||||
|
Patch1: python3.11.patch
|
||||||
|
|
||||||
|
BuildRequires: python%{python3_pkgversion}-devel
|
||||||
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
||||||
|
BuildRequires: python%{python3_pkgversion}-pytest
|
||||||
|
BuildRequires: python%{python3_pkgversion}-distro
|
||||||
|
BuildRequires: python%{python3_pkgversion}-dotenv
|
||||||
|
BuildRequires: python%{python3_pkgversion}-ddt
|
||||||
|
|
||||||
|
BuildRequires: python%{python3_pkgversion}-cached_property >= 1.5.1
|
||||||
|
BuildRequires: python%{python3_pkgversion}-chardet >= 3.0.4
|
||||||
|
BuildRequires: python%{python3_pkgversion}-distro >= 1.5.0
|
||||||
|
BuildRequires: python%{python3_pkgversion}-docker >= 5.0.0
|
||||||
|
BuildRequires: python%{python3_pkgversion}-docker-pycreds >= 0.4.0
|
||||||
|
BuildRequires: python%{python3_pkgversion}-dockerpty >= 0.4.1
|
||||||
|
BuildRequires: python%{python3_pkgversion}-docopt >= 0.6.2
|
||||||
|
BuildRequires: python%{python3_pkgversion}-idna >= 2.10
|
||||||
|
BuildRequires: python%{python3_pkgversion}-jsonschema >= 3.2.0
|
||||||
|
BuildRequires: python%{python3_pkgversion}-pysocks >= 1.7.1
|
||||||
|
BuildRequires: python%{python3_pkgversion}-requests >= 2.24.0
|
||||||
|
BuildRequires: python%{python3_pkgversion}-six >= 1.12.0
|
||||||
|
BuildRequires: python%{python3_pkgversion}-texttable >= 1.6.2
|
||||||
|
BuildRequires: python%{python3_pkgversion}-websocket-client >= 0.57.0
|
||||||
|
BuildRequires: python%{python3_pkgversion}-yaml >= 5.4.1
|
||||||
|
|
||||||
|
Requires: python%{python3_pkgversion}-setuptools
|
||||||
|
|
||||||
|
Requires: python%{python3_pkgversion}-cached_property >= 1.5.1
|
||||||
|
Requires: python%{python3_pkgversion}-chardet >= 3.0.4
|
||||||
|
Requires: python%{python3_pkgversion}-distro >= 1.5.0
|
||||||
|
Requires: python%{python3_pkgversion}-docker >= 5.0.0
|
||||||
|
Requires: python%{python3_pkgversion}-docker-pycreds >= 0.4.0
|
||||||
|
Requires: python%{python3_pkgversion}-dockerpty >= 0.4.1
|
||||||
|
Requires: python%{python3_pkgversion}-docopt >= 0.6.2
|
||||||
|
Requires: python%{python3_pkgversion}-idna >= 2.10
|
||||||
|
Requires: python%{python3_pkgversion}-jsonschema >= 3.2.0
|
||||||
|
Requires: python%{python3_pkgversion}-pysocks >= 1.7.1
|
||||||
|
Requires: python%{python3_pkgversion}-requests >= 2.24.0
|
||||||
|
Requires: python%{python3_pkgversion}-six >= 1.12.0
|
||||||
|
Requires: python%{python3_pkgversion}-texttable >= 1.6.2
|
||||||
|
Requires: python%{python3_pkgversion}-websocket-client >= 0.57.0
|
||||||
|
Requires: python%{python3_pkgversion}-yaml >= 5.4.1
|
||||||
|
|
||||||
|
Requires: python%{python3_pkgversion}-attrs >= 20.3.0
|
||||||
|
Requires: python%{python3_pkgversion}-certifi >= 2020.6.20
|
||||||
|
|
||||||
|
|
||||||
|
%description
|
||||||
|
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.
|
||||||
|
|
||||||
|
Compose is great for development, testing, and staging environments,
|
||||||
|
as well as CI workflows.
|
||||||
|
|
||||||
|
Using Compose is basically a three-step process.
|
||||||
|
|
||||||
|
1. Define your app's environment with a Dockerfile so it can be
|
||||||
|
reproduced anywhere.
|
||||||
|
2. Define the services that make up your app in docker-compose.yml so
|
||||||
|
they can be run together in an isolated environment:
|
||||||
|
3. Lastly, run docker-compose up and Compose will start and run your
|
||||||
|
entire app.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p 1
|
||||||
|
rm -rf docker_compose.egg-info
|
||||||
|
|
||||||
|
# Remove dependency version constraints not relevant in Fedora/EPEL
|
||||||
|
sed -e 's/, < [0-9.]\+//' -i setup.py
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%py3_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%py3_install
|
||||||
|
install -D -p -m 644 contrib/completion/bash/docker-compose %{buildroot}%{_datadir}/bash-completion/completions/docker-compose
|
||||||
|
install -D -p -m 644 contrib/completion/zsh/_docker-compose %{buildroot}%{_datadir}/zsh/site-functions/_docker-compose
|
||||||
|
install -D -p -m 644 contrib/completion/fish/docker-compose.fish %{buildroot}%{_datadir}/fish/vendor_completions.d/docker-compose.fish
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
PYTHONPATH=%{buildroot}%{python3_sitelib} pytest-%{python3_version} --verbose tests/unit
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license LICENSE
|
||||||
|
%doc CHANGELOG.md README.md
|
||||||
|
%{_bindir}/%{name}
|
||||||
|
%{python3_sitelib}/compose
|
||||||
|
%{python3_sitelib}/docker_compose-%{version}-py%{python3_version}.egg-info
|
||||||
|
%{_datadir}/bash-completion
|
||||||
|
%{_datadir}/zsh
|
||||||
|
%{_datadir}/fish
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.29.2-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.29.2-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.29.2-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 30 2023 Python Maint <python-maint@redhat.com> - 1.29.2-9
|
||||||
|
- Rebuilt for Python 3.12
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.29.2-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Nov 16 2022 Lumír Balhar <lbalhar@redhat.com> - 1.29.2-7
|
||||||
|
- Fix compatibility with pytest 7.2
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.29.2-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 16 2022 Python Maint <python-maint@redhat.com> - 1.29.2-5
|
||||||
|
- Rebuilt for Python 3.11
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.29.2-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.29.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.29.2-2
|
||||||
|
- Rebuilt for Python 3.10
|
||||||
|
|
||||||
|
* Mon May 10 2021 Michael Hampton <error@ioerror.us> - 1.29.2-1
|
||||||
|
- Update to 1.29.2
|
||||||
|
|
||||||
|
* Wed Apr 21 2021 Michael Hampton <error@ioerror.us> - 1.29.1-1
|
||||||
|
- Rebase to 1.29.1
|
||||||
|
|
||||||
|
* Mon Mar 29 2021 Michael Hampton <error@ioerror.us> - 1.28.6-1
|
||||||
|
- Rebase to 1.28.6
|
||||||
|
|
||||||
|
* Fri Feb 26 2021 Michael Hampton <error@ioerror.us> - 1.28.5-1
|
||||||
|
- Rebase to 1.28.5
|
||||||
|
|
||||||
|
* Fri Feb 19 2021 Michael Hampton <error@ioerror.us> - 1.28.4-1
|
||||||
|
- Rebase to 1.28.4
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Michael Hampton <error@ioerror.us> - 1.28.2-1
|
||||||
|
- Rebase to 1.28.2
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.28.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 20 2021 Michael Hampton <error@ioerror.us> - 1.28.0-1
|
||||||
|
- Rebase to 1.28.0
|
||||||
|
|
||||||
|
* Thu Sep 24 2020 Michael Hampton <error@ioerror.us> - 1.27.4-1
|
||||||
|
- Rebase to 1.27.4
|
||||||
|
|
||||||
|
* Wed Sep 16 2020 Michael Hampton <error@ioerror.us> - 1.27.3-2
|
||||||
|
- Requires python-docker 4.3.1
|
||||||
|
|
||||||
|
* Wed Sep 16 2020 Michael Hampton <error@ioerror.us> - 1.27.3-1
|
||||||
|
- Rebase to 1.27.3
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.25.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 14 2020 Michael Hampton <error@ioerror.us> - 1.26.2-1
|
||||||
|
- Rebase to 1.26.2
|
||||||
|
- Add python-distro build dependency
|
||||||
|
- Add python-dotenv build dependency
|
||||||
|
|
||||||
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1.25.4-2
|
||||||
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
|
* Mon Mar 23 2020 Michael Hampton <error@ioerror.us> - 1.25.4-2
|
||||||
|
- Remove patch for BZ#1705955 it is now in upstream source
|
||||||
|
- Add python-ddt build dependency
|
||||||
|
|
||||||
|
* Sat Feb 29 2020 Michael Hampton <error@ioerror.us> - 1.25.4-1
|
||||||
|
- Rebase to 1.25.4
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.24.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Oct 7 2019 Michael Hampton <error@ioerror.us> - 1.24.1-3
|
||||||
|
- Require python-docker 4.0.2-2 for ssh feature
|
||||||
|
|
||||||
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.24.1-2
|
||||||
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||||
|
|
||||||
|
* Tue Sep 17 2019 Michael Hampton <error@ioerror.us> - 1.24.1-2
|
||||||
|
- Require python-docker 4.0.2 for ssh feature
|
||||||
|
|
||||||
|
* Wed Aug 28 2019 Michael Hampton <error@ioerror.us> - 1.24.1-1
|
||||||
|
- Rebase to 1.24.1 (BZ#1691898)
|
||||||
|
- Patch tests for pytest 5 compatibility (BZ#1705955)
|
||||||
|
|
||||||
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1.22.0-6
|
||||||
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 10 2019 Michael Hampton <error@ioerror.us> - 1.22.0-4
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Oct 08 2018 Carl George <carl@george.computer> - 1.22.0-2
|
||||||
|
- Run upstream unit tests
|
||||||
|
|
||||||
|
* Wed Jul 18 2018 Michael Hampton <error@ioerror.us> - 1.22.0-1
|
||||||
|
- Update to 1.22.0
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.20.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.20.1-2
|
||||||
|
- Rebuilt for Python 3.7
|
||||||
|
|
||||||
|
* Tue Mar 27 2018 Michael Hampton <error@ioerror.us> - 1.20.1-1
|
||||||
|
- Update to 1.20.1
|
||||||
|
|
||||||
|
* Wed Mar 21 2018 Michael Hampton <error@ioerror.us> - 1.20.0-1
|
||||||
|
- Update to 1.20.0
|
||||||
|
|
||||||
|
* Fri Mar 02 2018 Adam Williamson <awilliam@redhat.com> - 1.19.0-2
|
||||||
|
- Backport upstream patch for compatibility with python-docker 3.0.0
|
||||||
|
|
||||||
|
* Mon Feb 19 2018 Michael Hampton <error@ioerror.us> - 1.19.0-1
|
||||||
|
- Update to 1.19.0
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.18.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Dec 26 2017 Carl George <carl@george.computer> - 1.18.0-1
|
||||||
|
- Latest upstream
|
||||||
|
- Drop patch0 and patch1, use sed on setup.py instead
|
||||||
|
- Rebase patch2
|
||||||
|
|
||||||
|
* Thu Nov 9 2017 Michael Hampton <error@ioerror.us> - 1.17.1-1
|
||||||
|
- Update to 1.17.1 (#1511455)
|
||||||
|
|
||||||
|
* Thu Nov 2 2017 Michael Hampton <error@ioerror.us> - 1.17.0-1
|
||||||
|
- Update to 1.17.0 (#1504337)
|
||||||
|
|
||||||
|
* Sun Sep 10 2017 Carl George <carl@george.computer> - 1.16.1-2
|
||||||
|
- Align dependencies with upstream
|
||||||
|
- RHEL compatibility
|
||||||
|
- Add bash, zsh, and fish completions
|
||||||
|
|
||||||
|
* Sat Sep 2 2017 Michael Hampton <error@ioerror.us> - 1.16.1-1
|
||||||
|
- Update to 1.16.1 (#1483776)
|
||||||
|
|
||||||
|
* Fri Jul 28 2017 Michael Hampton <error@ioerror.us> - 1.15.0-1
|
||||||
|
- Update to 1.15.0 (#1471093)
|
||||||
|
- Explicit python3-docker requirement
|
||||||
|
- New upstream requirements python3-pysocks, python3-certifi, python3-idna
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 20 2017 Michael Hampton <error@ioerror.us> - 1.14.0-1
|
||||||
|
- Update to upstream 1.14.0
|
||||||
|
|
||||||
|
* Mon May 8 2017 Michael Hampton <error@ioerror.us> - 1.13.0-1
|
||||||
|
- Update to upstream 1.13.0
|
||||||
|
|
||||||
|
* Fri Apr 7 2017 Michael Hampton <error@ioerror.us> - 1.12.0-1
|
||||||
|
- Update to upstream 1.12.0
|
||||||
|
|
||||||
|
* Thu Mar 2 2017 Michael Hampton <error@ioerror.us> - 1.11.2-1
|
||||||
|
- Update to upstream 1.11.2
|
||||||
|
|
||||||
|
* Tue Feb 28 2017 Michael Hampton <error@ioerror.us> - 1.11.1-3
|
||||||
|
- Remove requirements upper bound from setup.py; BZ#1426145
|
||||||
|
- Added new dependency python3-colorama
|
||||||
|
|
||||||
|
* Fri Feb 17 2017 Michael Hampton <error@ioerror.us> - 1.11.1-2
|
||||||
|
- python-docker-py package name changed to python-docker; BZ#1422198
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Michael Hampton <error@ioerror.us> - 1.11.1-1
|
||||||
|
- Update to upstream 1.11.1
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 3 2017 Michael Hampton <error@ioerror.us> - 1.10.1-1
|
||||||
|
- Update to upstream 1.10.1
|
||||||
|
|
||||||
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.9.0-3
|
||||||
|
- Rebuild for Python 3.6
|
||||||
|
|
||||||
|
* Mon Nov 21 2016 Michael Hampton <error@ioerror.us> - 1.9.0-2
|
||||||
|
- BZ#1396852
|
||||||
|
|
||||||
|
* Sat Nov 19 2016 Michael Hampton <error@ioerror.us> - 1.9.0-1
|
||||||
|
- Update to upstream 1.9.0
|
||||||
|
|
||||||
|
* Fri Sep 23 2016 Michael Hampton <error@ioerror.us> - 1.8.1-1
|
||||||
|
- Update to upstream 1.8.1
|
||||||
|
|
||||||
|
* Sat Sep 10 2016 Michael Hampton <error@ioerror.us> - 1.8.0-2
|
||||||
|
- Port to Python 3, BZ#1374656
|
||||||
|
|
||||||
|
* Thu Jul 28 2016 Michael Hampton <error@ioerror.us> - 1.8.0-1
|
||||||
|
- Update to upstream 1.8.0
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.1-2
|
||||||
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||||
|
|
||||||
|
* Thu May 05 2016 Michael Hampton <error@ioerror.us> - 1.7.1-1
|
||||||
|
- Update to upstream 1.7.1
|
||||||
|
- Updated package description from upstream
|
||||||
|
|
||||||
|
* Thu Apr 14 2016 Michael Hampton <error@ioerror.us> - 1.7.0-1
|
||||||
|
- Update to upstream 1.7.0
|
||||||
|
|
||||||
|
* Fri Feb 05 2016 Michael Hampton <error@ioerror.us> - 1.6.0-1
|
||||||
|
- Update to upstream 1.6.0
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 12 2016 Michael Hampton <error@ioerror.us> - 1.5.2-4
|
||||||
|
- Added missing dependency python-enum34
|
||||||
|
|
||||||
|
* Mon Jan 11 2016 Michael Hampton <error@ioerror.us> - 1.5.2-3
|
||||||
|
- Added missing dependency python-jsonschema
|
||||||
|
|
||||||
|
* Wed Dec 30 2015 Michael Hampton <error@ioerror.us> - 1.5.2-2
|
||||||
|
- Updated locations of docs
|
||||||
|
|
||||||
|
* Wed Dec 30 2015 Michael Hampton <error@ioerror.us> - 1.5.2-1
|
||||||
|
- Update to upstream 1.5.2
|
||||||
|
|
||||||
|
* Wed Sep 23 2015 Michael Hampton <error@ioerror.us> - 1.4.2-1
|
||||||
|
- Fixes a regression in the 1.4.1 release that would cause
|
||||||
|
docker-compose up without the -d option to exit immediately.
|
||||||
|
|
||||||
|
* Wed Sep 16 2015 Michael Hampton <error@ioerror.us> - 1.4.1-1
|
||||||
|
- Update to upstream 1.4.1
|
||||||
|
|
||||||
|
* Wed Aug 12 2015 Michael Hampton <error@ioerror.us> - 1.4.0-1
|
||||||
|
- Update to upstream 1.4.0
|
||||||
|
- Update Summary to match upstream summary
|
||||||
|
|
||||||
|
* Sat May 16 2015 Michael Hampton <error@ioerror.us> - 1.2.0-3
|
||||||
|
- Update Obsoletes EVR per packaging guidelines BZ#1213111
|
||||||
|
|
||||||
|
* Sun Apr 19 2015 Michael Hampton <error@ioerror.us> - 1.2.0-2
|
||||||
|
- Update location of LICENSE file
|
||||||
|
|
||||||
|
* Sat Apr 18 2015 Michael Hampton <error@ioerror.us> - 1.2.0-1
|
||||||
|
- Update to 1.2.0
|
||||||
|
- Added new doc SWARM.md
|
||||||
|
- Removed docker package requires as it is not required to build or run the
|
||||||
|
package, only to run tests, which we can't do anyway
|
||||||
|
- Removed commented code relating to running tests, which we can't do anyway
|
||||||
|
- Made package noarch as docker-io is no longer required
|
||||||
|
|
||||||
|
* Mon Mar 23 2015 Michael Hampton <error@ioerror.us> - 1.1.0-1
|
||||||
|
- Update to 1.1.0 including upstream name change
|
||||||
|
- Requires python-dockerpty
|
||||||
|
- Requires python-docker-py >= 0.7.1-3 BZ#1197300
|
||||||
|
|
||||||
|
* Tue Mar 17 2015 Matej Stuchlik <mstuchli@redhat.com> - 1.0.1-2
|
||||||
|
- Completely remove version specs from setup.py
|
||||||
|
|
||||||
|
* Tue Mar 17 2015 Matej Stuchlik <mstuchli@redhat.com> - 1.0.1-1
|
||||||
|
- Update to 1.0.1
|
||||||
|
|
||||||
|
* Wed Dec 03 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.0.0-5
|
||||||
|
- Remove upper bound from setup.py requires
|
||||||
|
|
||||||
|
* Wed Nov 12 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.0.0-4
|
||||||
|
- Add python-setuptools to requires
|
||||||
|
|
||||||
|
* Thu Oct 23 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.0.0-3
|
||||||
|
- Relax strict version requirements on websocket-client (#1155510)
|
||||||
|
|
||||||
|
* Tue Oct 21 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.0.0-2
|
||||||
|
- Update Requires
|
||||||
|
|
||||||
|
* Tue Oct 21 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.0.0-1
|
||||||
|
- Update to 1.0.0
|
||||||
|
- Droped the two patches
|
||||||
|
|
||||||
|
* Tue Oct 21 2014 Matej Stuchlik <mstuchli@redhat.com> - 0.5.2-2
|
||||||
|
- Explicitly disable debuginfo subpackage (#1154780)
|
||||||
|
- Add python-docker-py to Requires (#1154874)
|
||||||
|
|
||||||
|
* Thu Oct 09 2014 Matej Stuchlik <mstuchli@redhat.com> - 0.5.2-1
|
||||||
|
- Initial spec based on rhbz#1129889
|
53
docker-compose/pytest-7.2-compatibility.patch
Normal file
53
docker-compose/pytest-7.2-compatibility.patch
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
From a277e6101828afa58b4b602c4e402259889de81b Mon Sep 17 00:00:00 2001
|
||||||
|
From: Lumir Balhar <lbalhar@redhat.com>
|
||||||
|
Date: Wed, 16 Nov 2022 07:45:03 +0100
|
||||||
|
Subject: [PATCH] pytest 7.2 compatibility
|
||||||
|
|
||||||
|
---
|
||||||
|
tests/unit/cli_test.py | 17 ++++++++++++++---
|
||||||
|
1 file changed, 14 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/tests/unit/cli_test.py b/tests/unit/cli_test.py
|
||||||
|
index fa6e767..3d766e8 100644
|
||||||
|
--- a/tests/unit/cli_test.py
|
||||||
|
+++ b/tests/unit/cli_test.py
|
||||||
|
@@ -1,10 +1,11 @@
|
||||||
|
+import contextlib
|
||||||
|
import os
|
||||||
|
import shutil
|
||||||
|
import tempfile
|
||||||
|
from io import StringIO
|
||||||
|
+from pathlib import Path
|
||||||
|
|
||||||
|
import docker
|
||||||
|
-import py
|
||||||
|
import pytest
|
||||||
|
from docker.constants import DEFAULT_DOCKER_API_VERSION
|
||||||
|
|
||||||
|
@@ -23,11 +24,21 @@ from compose.container import Container
|
||||||
|
from compose.project import Project
|
||||||
|
|
||||||
|
|
||||||
|
+@contextlib.contextmanager
|
||||||
|
+def working_directory(path):
|
||||||
|
+ cwd = Path.cwd()
|
||||||
|
+ os.chdir(path)
|
||||||
|
+ try:
|
||||||
|
+ yield
|
||||||
|
+ finally:
|
||||||
|
+ os.chdir(cwd)
|
||||||
|
+
|
||||||
|
+
|
||||||
|
class CLITestCase(unittest.TestCase):
|
||||||
|
|
||||||
|
def test_default_project_name(self):
|
||||||
|
- test_dir = py._path.local.LocalPath('tests/fixtures/simple-composefile')
|
||||||
|
- with test_dir.as_cwd():
|
||||||
|
+ test_dir = Path('tests/fixtures/simple-composefile')
|
||||||
|
+ with working_directory(test_dir):
|
||||||
|
project_name = get_project_name('.')
|
||||||
|
assert 'simple-composefile' == project_name
|
||||||
|
|
||||||
|
--
|
||||||
|
2.38.1
|
||||||
|
|
11
docker-compose/python3.11.patch
Normal file
11
docker-compose/python3.11.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- a/setup.py 2021-05-10 17:21:57.000000000 +0600
|
||||||
|
+++ b/setup.py 2024-02-07 14:16:55.319613995 +0600
|
||||||
|
@@ -48,8 +48,6 @@
|
||||||
|
tests_require.append('mock >= 1.0.1, < 4')
|
||||||
|
|
||||||
|
extras_require = {
|
||||||
|
- ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5, < 4'],
|
||||||
|
- ':python_version < "3.8"': ['cached-property >= 1.2.0, < 2'],
|
||||||
|
':sys_platform == "win32"': ['colorama >= 0.4, < 1'],
|
||||||
|
'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
|
||||||
|
'tests': tests_require,
|
106
docker-compose/setup.py
Normal file
106
docker-compose/setup.py
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
import codecs
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
|
||||||
|
import pkg_resources
|
||||||
|
from setuptools import find_packages
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
|
||||||
|
def read(*parts):
|
||||||
|
path = os.path.join(os.path.dirname(__file__), *parts)
|
||||||
|
with codecs.open(path, encoding='utf-8') as fobj:
|
||||||
|
return fobj.read()
|
||||||
|
|
||||||
|
|
||||||
|
def find_version(*file_paths):
|
||||||
|
version_file = read(*file_paths)
|
||||||
|
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
|
||||||
|
version_file, re.M)
|
||||||
|
if version_match:
|
||||||
|
return version_match.group(1)
|
||||||
|
raise RuntimeError("Unable to find version string.")
|
||||||
|
|
||||||
|
|
||||||
|
install_requires = [
|
||||||
|
'docopt >= 0.6.1, < 1',
|
||||||
|
'PyYAML >= 3.10, < 6',
|
||||||
|
'requests >= 2.20.0, < 3',
|
||||||
|
'texttable >= 0.9.0, < 2',
|
||||||
|
'websocket-client >= 0.32.0, < 1',
|
||||||
|
'distro >= 1.5.0, < 2',
|
||||||
|
'docker[ssh] >= 5',
|
||||||
|
'dockerpty >= 0.4.1, < 1',
|
||||||
|
'jsonschema >= 2.5.1, < 4',
|
||||||
|
'python-dotenv >= 0.13.0, < 1',
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
tests_require = [
|
||||||
|
'ddt >= 1.2.2, < 2',
|
||||||
|
'pytest < 6',
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
if sys.version_info[:2] < (3, 4):
|
||||||
|
tests_require.append('mock >= 1.0.1, < 4')
|
||||||
|
|
||||||
|
extras_require = {
|
||||||
|
':sys_platform == "win32"': ['colorama >= 0.4, < 1'],
|
||||||
|
'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
|
||||||
|
'tests': tests_require,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
try:
|
||||||
|
if 'bdist_wheel' not in sys.argv:
|
||||||
|
for key, value in extras_require.items():
|
||||||
|
if key.startswith(':') and pkg_resources.evaluate_marker(key[1:]):
|
||||||
|
install_requires.extend(value)
|
||||||
|
except Exception as e:
|
||||||
|
print("Failed to compute platform dependencies: {}. ".format(e) +
|
||||||
|
"All dependencies will be installed as a result.", file=sys.stderr)
|
||||||
|
for key, value in extras_require.items():
|
||||||
|
if key.startswith(':'):
|
||||||
|
install_requires.extend(value)
|
||||||
|
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='docker-compose',
|
||||||
|
version=find_version("compose", "__init__.py"),
|
||||||
|
description='Multi-container orchestration for Docker',
|
||||||
|
long_description=read('README.md'),
|
||||||
|
long_description_content_type='text/markdown',
|
||||||
|
url='https://www.docker.com/',
|
||||||
|
project_urls={
|
||||||
|
'Documentation': 'https://docs.docker.com/compose/overview',
|
||||||
|
'Changelog': 'https://github.com/docker/compose/blob/release/CHANGELOG.md',
|
||||||
|
'Source': 'https://github.com/docker/compose',
|
||||||
|
'Tracker': 'https://github.com/docker/compose/issues',
|
||||||
|
},
|
||||||
|
author='Docker, Inc.',
|
||||||
|
license='Apache License 2.0',
|
||||||
|
packages=find_packages(exclude=['tests.*', 'tests']),
|
||||||
|
include_package_data=True,
|
||||||
|
install_requires=install_requires,
|
||||||
|
extras_require=extras_require,
|
||||||
|
tests_require=tests_require,
|
||||||
|
python_requires='>=3.4',
|
||||||
|
entry_points={
|
||||||
|
'console_scripts': ['docker-compose=compose.cli.main:main'],
|
||||||
|
},
|
||||||
|
classifiers=[
|
||||||
|
'Development Status :: 5 - Production/Stable',
|
||||||
|
'Environment :: Console',
|
||||||
|
'Intended Audience :: Developers',
|
||||||
|
'License :: OSI Approved :: Apache Software License',
|
||||||
|
'Programming Language :: Python :: 3',
|
||||||
|
'Programming Language :: Python :: 3.4',
|
||||||
|
'Programming Language :: Python :: 3.6',
|
||||||
|
'Programming Language :: Python :: 3.7',
|
||||||
|
'Programming Language :: Python :: 3.8',
|
||||||
|
'Programming Language :: Python :: 3.9',
|
||||||
|
],
|
||||||
|
)
|
@ -30,10 +30,6 @@ CONFIG_GCC_PLUGINS=y
|
|||||||
# General setup
|
# General setup
|
||||||
#
|
#
|
||||||
CONFIG_SPECULATION_MITIGATIONS=y
|
CONFIG_SPECULATION_MITIGATIONS=y
|
||||||
CONFIG_MITIGATION_RFDS=y
|
|
||||||
CONFIG_SPECTRE_BHI_ON=y
|
|
||||||
# CONFIG_SPECTRE_BHI_OFF is not set
|
|
||||||
# CONFIG_SPECTRE_BHI_AUTO is not set
|
|
||||||
CONFIG_INIT_ENV_ARG_LIMIT=32
|
CONFIG_INIT_ENV_ARG_LIMIT=32
|
||||||
# CONFIG_COMPILE_TEST is not set
|
# CONFIG_COMPILE_TEST is not set
|
||||||
# CONFIG_WERROR is not set
|
# CONFIG_WERROR is not set
|
||||||
@ -7740,7 +7736,7 @@ CONFIG_NFS_DEBUG=y
|
|||||||
CONFIG_NFS_DISABLE_UDP_SUPPORT=y
|
CONFIG_NFS_DISABLE_UDP_SUPPORT=y
|
||||||
# CONFIG_NFS_V4_2_READ_PLUS is not set
|
# CONFIG_NFS_V4_2_READ_PLUS is not set
|
||||||
CONFIG_NFSD=m
|
CONFIG_NFSD=m
|
||||||
# CONFIG_NFSD_V2 is not set
|
CONFIG_NFSD_V2_ACL=y
|
||||||
CONFIG_NFSD_V3=y
|
CONFIG_NFSD_V3=y
|
||||||
CONFIG_NFSD_V3_ACL=y
|
CONFIG_NFSD_V3_ACL=y
|
||||||
CONFIG_NFSD_V4=y
|
CONFIG_NFSD_V4=y
|
||||||
@ -7748,7 +7744,7 @@ CONFIG_NFSD_PNFS=y
|
|||||||
# CONFIG_NFSD_BLOCKLAYOUT is not set
|
# CONFIG_NFSD_BLOCKLAYOUT is not set
|
||||||
CONFIG_NFSD_SCSILAYOUT=y
|
CONFIG_NFSD_SCSILAYOUT=y
|
||||||
# CONFIG_NFSD_FLEXFILELAYOUT is not set
|
# CONFIG_NFSD_FLEXFILELAYOUT is not set
|
||||||
# CONFIG_NFSD_V4_2_INTER_SSC is not set
|
CONFIG_NFSD_V4_2_INTER_SSC=y
|
||||||
CONFIG_NFSD_V4_SECURITY_LABEL=y
|
CONFIG_NFSD_V4_SECURITY_LABEL=y
|
||||||
CONFIG_GRACE_PERIOD=m
|
CONFIG_GRACE_PERIOD=m
|
||||||
CONFIG_LOCKD=m
|
CONFIG_LOCKD=m
|
@ -2,9 +2,9 @@
|
|||||||
%undefine __brp_mangle_shebangs
|
%undefine __brp_mangle_shebangs
|
||||||
|
|
||||||
# Define the version of the Linux Kernel Archive tarball.
|
# Define the version of the Linux Kernel Archive tarball.
|
||||||
%define LKAver 5.15.154
|
%define LKAver 5.15.153
|
||||||
|
|
||||||
%define patchversion 5.15-154
|
%define patchversion 5.15-153
|
||||||
|
|
||||||
%define variant %{?build_variant:%{build_variant}}%{!?build_variant:-rx}
|
%define variant %{?build_variant:%{build_variant}}%{!?build_variant:-rx}
|
||||||
|
|
||||||
@ -1263,9 +1263,6 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Apr 11 2024 Raven <raven@sysadmins.ws> - 5.15.154-1
|
|
||||||
- update to 5.15.154
|
|
||||||
|
|
||||||
* Sat Apr 6 2024 Raven <raven@sysadmins.ws> - 5.15.153-1
|
* Sat Apr 6 2024 Raven <raven@sysadmins.ws> - 5.15.153-1
|
||||||
- update to 5.15.153
|
- update to 5.15.153
|
||||||
|
|
||||||
|
207
python-docker-pycreds/python-docker-pycreds.spec
Normal file
207
python-docker-pycreds/python-docker-pycreds.spec
Normal file
@ -0,0 +1,207 @@
|
|||||||
|
# Created by pyp2rpm-1.1.2 and rewrote manually afterwards
|
||||||
|
%global pypi_name docker-pycreds
|
||||||
|
|
||||||
|
%if 0%{?fedora} || 0%{?rhel} > 7
|
||||||
|
# Enable python3 build by default
|
||||||
|
%bcond_without python3
|
||||||
|
# Disable python2 build by default
|
||||||
|
%bcond_with python2
|
||||||
|
%else
|
||||||
|
%bcond_with python3
|
||||||
|
%bcond_without python2
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# the test suite is diabled b/c it needs docker-credential-secretservice binary
|
||||||
|
# and we don't have that now (Sep 2016) in Fedora
|
||||||
|
%bcond_with tests
|
||||||
|
|
||||||
|
Name: python-%{pypi_name}
|
||||||
|
Version: 0.4.0
|
||||||
|
Release: 11%{?dist}
|
||||||
|
Summary: Python bindings for the docker credentials store API
|
||||||
|
|
||||||
|
License: ASL 2.0
|
||||||
|
URL: https://github.com/shin-/dockerpy-creds/
|
||||||
|
Source0: https://files.pythonhosted.org/packages/source/d/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
|
||||||
|
%description
|
||||||
|
Python bindings for the docker credentials store API
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
%package -n python2-%{pypi_name}
|
||||||
|
Summary: Python bindings for the docker credentials store API
|
||||||
|
|
||||||
|
BuildRequires: python2-devel
|
||||||
|
BuildRequires: python2-setuptools
|
||||||
|
BuildRequires: python2-six
|
||||||
|
|
||||||
|
%if %{with tests}
|
||||||
|
BuildRequires: python2-pytest
|
||||||
|
%endif # tests
|
||||||
|
|
||||||
|
%py_provides python2-%{pypi_name}
|
||||||
|
|
||||||
|
Requires: python2-six
|
||||||
|
|
||||||
|
%description -n python2-%{pypi_name}
|
||||||
|
Python bindings for the docker credentials store API
|
||||||
|
%endif # with python2
|
||||||
|
|
||||||
|
%if %{with python3}
|
||||||
|
%package -n python%{python3_pkgversion}-%{pypi_name}
|
||||||
|
Summary: Python bindings for the docker credentials store API
|
||||||
|
|
||||||
|
BuildRequires: python%{python3_pkgversion}-devel
|
||||||
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
||||||
|
BuildRequires: python%{python3_pkgversion}-six
|
||||||
|
%if %{with tests}
|
||||||
|
BuildRequires: python%{python3_pkgversion}-pytest
|
||||||
|
%endif # tests
|
||||||
|
|
||||||
|
%py_provides python%{python3_pkgversion}-%{pypi_name}
|
||||||
|
|
||||||
|
Requires: python%{python3_pkgversion}-six
|
||||||
|
|
||||||
|
%description -n python%{python3_pkgversion}-%{pypi_name}
|
||||||
|
Python bindings for the docker credentials store API
|
||||||
|
|
||||||
|
%endif # python3
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -n %{pypi_name}-%{version}
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%if %{with python2}
|
||||||
|
%py2_build
|
||||||
|
%endif # with python2
|
||||||
|
%if %{with python3}
|
||||||
|
%py3_build
|
||||||
|
%endif # with python3
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
# Must do the subpackages' install first because the scripts in /usr/bin are
|
||||||
|
# overwritten with every setup.py install (and we want the python2 version
|
||||||
|
# to be the default for now).
|
||||||
|
%if %{with python2}
|
||||||
|
%py2_install
|
||||||
|
%endif # with python2
|
||||||
|
%if %{with python3}
|
||||||
|
%py3_install
|
||||||
|
%endif # with python3
|
||||||
|
|
||||||
|
|
||||||
|
# we are not using setup.py test here b/c the project pins to specific versions
|
||||||
|
%check
|
||||||
|
# sanity test
|
||||||
|
%if %{with python2}
|
||||||
|
%{__python2} -c "import dockerpycreds"
|
||||||
|
%if %{with tests}
|
||||||
|
PYTHONPATH="${PWD}" py.test-%{python2_version} -vv tests/
|
||||||
|
%endif # tests
|
||||||
|
%endif # with python2
|
||||||
|
|
||||||
|
%if %{with python3}
|
||||||
|
%{__python3} -c "import dockerpycreds"
|
||||||
|
%if %{with tests}
|
||||||
|
PYTHONPATH="${PWD}" py.test-%{python3_version} -vv tests/
|
||||||
|
%endif # tests
|
||||||
|
%endif # python3
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
%files -n python2-%{pypi_name}
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSE
|
||||||
|
%{python2_sitelib}/dockerpycreds
|
||||||
|
%{python2_sitelib}/docker_pycreds-%{version}-py?.?.egg-info
|
||||||
|
%endif # with python2
|
||||||
|
|
||||||
|
%if %{with python3}
|
||||||
|
%files -n python%{python3_pkgversion}-%{pypi_name}
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSE
|
||||||
|
%{python3_sitelib}/dockerpycreds
|
||||||
|
%{python3_sitelib}/docker_pycreds-%{version}-py%{python3_version}.egg-info
|
||||||
|
%endif # python3
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Jul 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-11
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 0.4.0-10
|
||||||
|
- Rebuilt for Python 3.10
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.4.0-7
|
||||||
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.4.0-5
|
||||||
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||||
|
|
||||||
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.4.0-4
|
||||||
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 27 2019 Yatin Karel <ykarel@redhat.com> - 0.4.0-2
|
||||||
|
- Enable python2 build for el7
|
||||||
|
|
||||||
|
* Tue Feb 05 2019 Tomas Tomecek <ttomecek@redhat.com> - 0.4.0-1
|
||||||
|
- New upstream release 0.4.0
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.3.0-2
|
||||||
|
- Rebuilt for Python 3.7
|
||||||
|
|
||||||
|
* Mon Jun 11 2018 Tomas Tomecek <ttomecek@redhat.com> - 0.3.0-1
|
||||||
|
- New upstream release 0.3.0
|
||||||
|
|
||||||
|
* Wed May 02 2018 Tomas Tomecek <ttomecek@redhat.com> - 0.2.3-1
|
||||||
|
- New upstream release 0.2.3
|
||||||
|
|
||||||
|
* Tue Apr 03 2018 Charalampos Stratakis <cstratak@redhat.com> - 0.2.2-2
|
||||||
|
- Conditionalize the Python 2 subpackage and don't build it on EL > 7
|
||||||
|
|
||||||
|
* Mon Feb 19 2018 Tomas Tomecek <ttomecek@redhat.com> - 0.2.2-1
|
||||||
|
- New upstream release 0.2.2
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.1-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Dec 27 2017 Carl George <carl@george.computer> - 0.2.1-6
|
||||||
|
- Add BuildRequires for setuptools
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.1-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.2.1-3
|
||||||
|
- Rebuild for Python 3.6
|
||||||
|
|
||||||
|
* Wed Oct 05 2016 Tomas Tomecek <ttomecek@redhat.com> - 0.2.1-2
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Mon Sep 26 2016 Tomas Tomecek <ttomecek@redhat.com> - 0.2.1-1
|
||||||
|
- Initial package.
|
200
python-dockerpty/python-dockerpty.spec
Normal file
200
python-dockerpty/python-dockerpty.spec
Normal file
@ -0,0 +1,200 @@
|
|||||||
|
# what it's called on pypi
|
||||||
|
%global srcname dockerpty
|
||||||
|
# what it's imported as
|
||||||
|
%global libname %{srcname}
|
||||||
|
# name of egg info directory
|
||||||
|
%global eggname %{srcname}
|
||||||
|
# package name fragment
|
||||||
|
%global pkgname %{srcname}
|
||||||
|
|
||||||
|
%if 0%{?fedora} >= 30
|
||||||
|
%bcond_with python2
|
||||||
|
%else
|
||||||
|
%bcond_without python2
|
||||||
|
%endif
|
||||||
|
%bcond_without python3
|
||||||
|
|
||||||
|
Name: python-%{pkgname}
|
||||||
|
Version: 0.4.1
|
||||||
|
Release: 23%{?dist}
|
||||||
|
Summary: Python library to use the pseudo-tty of a docker container
|
||||||
|
License: ASL 2.0
|
||||||
|
URL: https://github.com/d11wtq/dockerpty
|
||||||
|
Source0: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%global _description\
|
||||||
|
Provides the functionality needed to operate the pseudo-tty (PTY) allocated to\
|
||||||
|
a docker container, using the Python client
|
||||||
|
|
||||||
|
%description %{_description}
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
%package -n python2-%{pkgname}
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildRequires: python2-devel
|
||||||
|
BuildRequires: python2-setuptools
|
||||||
|
Requires: python2-six
|
||||||
|
%py_provides python2-%{pkgname}
|
||||||
|
|
||||||
|
%description -n python2-%{pkgname} %{_description}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with python3}
|
||||||
|
%package -n python%{python3_pkgversion}-%{pkgname}
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildRequires: python%{python3_pkgversion}-devel
|
||||||
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
||||||
|
Requires: python%{python3_pkgversion}-six
|
||||||
|
%py_provides python%{python3_pkgversion}-%{pkgname}
|
||||||
|
|
||||||
|
%description -n python%{python3_pkgversion}-%{pkgname} %{_description}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -n %{srcname}-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
%{?with_python2:%py2_build}
|
||||||
|
%{?with_python3:%py3_build}
|
||||||
|
|
||||||
|
%install
|
||||||
|
%{?with_python2:%py2_install}
|
||||||
|
%{?with_python3:%py3_install}
|
||||||
|
|
||||||
|
# we are missing the 'expects' library to run the tests
|
||||||
|
# %%check
|
||||||
|
# LANG=en_US.utf8 py.test-%%{python3_version} -vv tests
|
||||||
|
# LANG=en_US.utf8 py.test-%%{python2_version} -vv tests
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
%files -n python2-%{pkgname}
|
||||||
|
%license LICENSE.txt
|
||||||
|
%doc README.md MANIFEST.in
|
||||||
|
%{python2_sitelib}/%{libname}
|
||||||
|
%{python2_sitelib}/%{eggname}-%{version}-py%{python2_version}.egg-info
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with python3}
|
||||||
|
%files -n python%{python3_pkgversion}-%{pkgname}
|
||||||
|
%license LICENSE.txt
|
||||||
|
%doc README.md MANIFEST.in
|
||||||
|
%{python3_sitelib}/%{libname}
|
||||||
|
%{python3_sitelib}/%{eggname}-%{version}-py%{python3_version}.egg-info
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Jul 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-23
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 0.4.1-22
|
||||||
|
- Rebuilt for Python 3.10
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-21
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-20
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.4.1-19
|
||||||
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
|
* Thu Mar 5 2020 Michael Hampton <error@ioerror.us> - 0.4.1-18
|
||||||
|
- Rebuilt for unretired package
|
||||||
|
|
||||||
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.4.1-17
|
||||||
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||||
|
|
||||||
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.4.1-16
|
||||||
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-15
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Oct 02 2018 Carl George <carl@george.computer> - 0.4.1-13
|
||||||
|
- Disable python2 subpackage on F30+ rhbz#1634971
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.4.1-11
|
||||||
|
- Rebuilt for Python 3.7
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 04 2018 Carl George <carl@george.computer> - 0.4.1-9
|
||||||
|
- EPEL compatibility, including Python 3 build
|
||||||
|
- Mark license appropriately
|
||||||
|
- Use tarball from git tag
|
||||||
|
|
||||||
|
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.4.1-8
|
||||||
|
- Python 2 binary package renamed to python2-dockerpty
|
||||||
|
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Feb 23 2017 Tomas Tomecek <ttomecek@redhat.com> - 0.4.1-6
|
||||||
|
- don't depend on docker-py when not importing it (#1425461)
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.4.1-4
|
||||||
|
- Rebuild for Python 3.6
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.1-3
|
||||||
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||||
|
|
||||||
|
* Tue Mar 08 2016 Tomas Tomecek <ttomecek@redhat.com> - 0.4.1-2
|
||||||
|
- fix dependencies for py 3 (rhbz#1287729)
|
||||||
|
|
||||||
|
* Tue Mar 08 2016 Tomas Tomecek <ttomecek@redhat.com> - 0.4.1-1
|
||||||
|
- new upstream release: 0.4.1
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Nov 11 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
||||||
|
|
||||||
|
* Tue Nov 10 2015 Roman Mohr <roman@fenkhuber.at> - 0.3.4-1
|
||||||
|
- Update to 0.3.4 (#1253859)
|
||||||
|
|
||||||
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.3-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
||||||
|
|
||||||
|
* Wed Jul 22 2015 Roman Mohr <roman@fenkhuber.at> - 0.3.3-3
|
||||||
|
- Do not run unit tests until python-expects is packaged
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 06 2015 Roman Mohr <roman@fenkhuber.at> - 0.3.3-1
|
||||||
|
- Python3 compatible version (rhbz#1172357)
|
||||||
|
|
||||||
|
* Sun Nov 30 2014 Roman Mohr <roman@fenkhuber.at> - 0.3.2-1
|
||||||
|
- Update to latest upstream
|
||||||
|
- Enable unit tests
|
||||||
|
|
||||||
|
* Fri Aug 22 2014 Adam Miller <maxamillion@fedoraproject.org> - 0.2.3-1
|
||||||
|
- Update to latest upstream
|
||||||
|
|
||||||
|
* Mon Aug 11 2014 Adam Miller <maxamillion@fedoraproject.org> - 0.2.1-4
|
||||||
|
- Fixed egg-info dir listings, set noarch based on reviewer feedback
|
||||||
|
|
||||||
|
* Mon Aug 11 2014 Adam Miller <maxamillion@fedoraproject.org> - 0.2.1-3
|
||||||
|
- Fixed files section, fixed py3 summary listing
|
||||||
|
|
||||||
|
* Fri Aug 08 2014 Adam Miller <maxamillion@fedoraproject.org> - 0.2.1-2
|
||||||
|
- Fix __python vs __python2 macro usage and __python3's description
|
||||||
|
- Set ExclusiveArch because of docker
|
||||||
|
- Remove clean section, not needed
|
||||||
|
|
||||||
|
* Wed Jul 23 2014 Adam Miller <maxamillion@fedoraproject.org> - 0.2.1-1
|
||||||
|
- Initial package for Fedora
|
Loading…
x
Reference in New Issue
Block a user