Compare commits
No commits in common. "c8s" and "657b4800c38777a70f91964a6150e3f42a5c5c5d" have entirely different histories.
c8s
...
657b4800c3
15
.gitignore
vendored
15
.gitignore
vendored
@ -1,2 +1,15 @@
|
|||||||
SOURCES/s3transfer-0.1.13.tar.gz
|
/0.0.1.tar.gz
|
||||||
|
/s3transfer-0.1.0.tar.gz
|
||||||
|
/s3transfer-0.1.1.tar.gz
|
||||||
|
/s3transfer-0.1.3.tar.gz
|
||||||
|
/s3transfer-0.1.4.tar.gz
|
||||||
|
/s3transfer-0.1.5.tar.gz
|
||||||
|
/s3transfer-0.1.7.tar.gz
|
||||||
|
/s3transfer-0.1.9.tar.gz
|
||||||
|
/s3transfer-0.1.10.tar.gz
|
||||||
/s3transfer-0.1.13.tar.gz
|
/s3transfer-0.1.13.tar.gz
|
||||||
|
/s3transfer-0.2.0.tar.gz
|
||||||
|
/s3transfer-0.2.1.tar.gz
|
||||||
|
/s3transfer-0.3.0.tar.gz
|
||||||
|
/s3transfer-0.3.3.tar.gz
|
||||||
|
/s3transfer-0.3.4.tar.gz
|
||||||
|
1
.python-s3transfer.metadata
Normal file
1
.python-s3transfer.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
f48851cd48328bd7991dcd68be72682ffa6db76b s3transfer-0.3.4.tar.gz
|
@ -1,47 +1,32 @@
|
|||||||
%if 0%{?rhel} && 0%{?rhel} <= 7
|
%global srcname s3transfer
|
||||||
# Minimum nose version is 1.3.3, while EL7 has 1.3.0
|
%global _description \
|
||||||
%bcond_with tests
|
S3transfer is a Python library for managing Amazon S3 transfers.
|
||||||
%else
|
|
||||||
%bcond_without tests
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%global pypi_name s3transfer
|
Name: python-%{srcname}
|
||||||
|
Version: 0.3.4
|
||||||
Name: python-%{pypi_name}
|
Release: 3%{?dist}
|
||||||
Version: 0.1.13
|
Summary: Amazon S3 Transfer Manager
|
||||||
Release: 1%{?dist}
|
|
||||||
Summary: An Amazon S3 Transfer Manager
|
|
||||||
|
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
URL: https://github.com/boto/s3transfer
|
URL: https://pypi.org/project/s3transfer/
|
||||||
Source0: https://pypi.io/packages/source/s/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
|
Source0: %{pypi_source}
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description %{_description}
|
||||||
S3transfer is a Python library for managing Amazon S3 transfers.
|
|
||||||
|
|
||||||
%package -n python3-%{pypi_name}
|
%package -n python3-%{srcname}
|
||||||
Summary: An Amazon S3 Transfer Manager
|
Summary: %{summary}
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
%if %{with tests}
|
|
||||||
BuildRequires: python3-nose
|
|
||||||
BuildRequires: python3-mock
|
|
||||||
BuildRequires: python3-wheel
|
|
||||||
BuildRequires: python3-botocore
|
|
||||||
BuildRequires: python3-coverage
|
|
||||||
BuildRequires: python3-unittest2
|
|
||||||
%endif # tests
|
|
||||||
Requires: python3-botocore
|
|
||||||
%{?python_provide:%python_provide python3-%{pypi_name}}
|
|
||||||
|
|
||||||
%description -n python3-%{pypi_name}
|
%description -n python3-%{srcname} %{_description}
|
||||||
S3transfer is a Python library for managing Amazon S3 transfers.
|
|
||||||
|
Python 3 version.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{pypi_name}-%{version}
|
%autosetup -n %{srcname}-%{version}
|
||||||
# Remove online tests (see https://github.com/boto/s3transfer/issues/8)
|
rm -vrf *.egg-info
|
||||||
rm -rf tests/integration
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%py3_build
|
||||||
@ -49,61 +34,60 @@ rm -rf tests/integration
|
|||||||
%install
|
%install
|
||||||
%py3_install
|
%py3_install
|
||||||
|
|
||||||
%if %{with tests}
|
%files -n python3-%{srcname}
|
||||||
%check
|
|
||||||
nosetests-%{python3_version} --with-coverage --cover-erase --cover-package s3transfer --with-xunit --cover-xml -v tests/unit/ tests/functional/
|
|
||||||
%endif # tests
|
|
||||||
|
|
||||||
%files -n python3-%{pypi_name}
|
|
||||||
%doc README.rst
|
|
||||||
%license LICENSE.txt
|
%license LICENSE.txt
|
||||||
%{python3_sitelib}/%{pypi_name}
|
%doc README.rst
|
||||||
%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
%{python3_sitelib}/%{srcname}/
|
||||||
|
%{python3_sitelib}/%{srcname}-*.egg-info/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Jun 11 2018 Oyvind Albrigtsen <oalbrigt@redhat.com> - 0.1.13-1
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.3.4-3
|
||||||
- Update to 0.1.13
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
- Remove python2 package
|
|
||||||
|
|
||||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.10-2
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.4-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Dec 28 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 0.1.10-1
|
* Tue Jan 12 2021 Gwyn Ciesla <gwync@protonmail.com> - 0.3.4-1
|
||||||
- Update to 0.1.10
|
- 0.3.4
|
||||||
|
|
||||||
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.1.9-2
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.3-3
|
||||||
- Rebuild for Python 3.6
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
* Thu Oct 27 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 0.1.9-1
|
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 0.3.3-2
|
||||||
- Update to 0.1.9
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
* Mon Oct 10 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 0.1.7-1
|
* Thu Mar 12 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.3.3-1
|
||||||
- Uodate to 0.1.7
|
- 0.3.3
|
||||||
|
|
||||||
* Sun Oct 02 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 0.1.5-1
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.0-2
|
||||||
- Update to 0.1.5
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Sep 28 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 0.1.4-1
|
* Mon Jan 13 2020 Charalampos Stratakis <cstratak@redhat.com> - 0.3.0-1
|
||||||
- Update to 0.1.4
|
- Update to 0.3.0 (rhbz#1717156)
|
||||||
|
|
||||||
* Wed Sep 07 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 0.1.3-1
|
* Tue Nov 19 2019 Orion Poplawski <orion@nwra.com> - 0.2.1-1
|
||||||
- Update to 0.1.3
|
- Update to 0.2.1
|
||||||
|
|
||||||
* Thu Aug 04 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 0.1.1-1
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.2.0-4
|
||||||
- Update to 0.1.1
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||||
|
|
||||||
* Tue Aug 02 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 0.1.0-1
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.2.0-3
|
||||||
- Update to 0.1.0
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.1-4
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.0-2
|
||||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Feb 24 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 0.0.1-3
|
* Fri Feb 15 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.2.0-1
|
||||||
- Cleanup the spec a little bit
|
- Update to 0.2.0
|
||||||
- Remove patch
|
|
||||||
|
|
||||||
* Tue Feb 23 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 0.0.1-2
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.13-6
|
||||||
- Add patch to remove tests needing web connection
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
* Tue Feb 23 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 0.0.1-1
|
* Mon Jan 14 2019 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 0.1.13-5
|
||||||
- Initial package.
|
- Bump spec to ensure rawhide version > stable releases
|
||||||
|
|
||||||
|
* Mon Jan 14 2019 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 0.1.13-2
|
||||||
|
- specify python3 subpackage in files section
|
||||||
|
|
||||||
|
* Thu Dec 27 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.1.13-1
|
||||||
|
- Initial package
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (s3transfer-0.1.13.tar.gz) = c2e22a0b47e36bb18c424d5410b4a81125eb3562eb520a9d981d6f8174e6425aa20ef269a13c9ea2d81e4a26d6b5e76cb906d8d1638cb2aa14e38de2f8ff69ca
|
SHA512 (s3transfer-0.3.4.tar.gz) = 012b50cebff200dff3a424241bd0a1aa32bf88cb57a4e3a4616d96aac7c8d5d07e7bfee3a298195f55630d01925d27a3063701d915c6bd080dc2e9f7c01880e9
|
||||||
|
Loading…
Reference in New Issue
Block a user