Compare commits
No commits in common. "imports/c10s/python-jwcrypto-1.5.8-1.el10" and "c8s-stream-DL1" have entirely different histories.
imports/c1
...
c8s-stream
17
.gitignore
vendored
17
.gitignore
vendored
@ -1,16 +1 @@
|
|||||||
/jwcrypto-0.2.0.tar.gz
|
SOURCES/jwcrypto-0.5.0.tar.gz
|
||||||
/jwcrypto-0.2.1.tar.gz
|
|
||||||
/jwcrypto-0.3.0.tar.gz
|
|
||||||
/jwcrypto-0.3.1.tar.gz
|
|
||||||
/jwcrypto-0.3.2.tar.gz
|
|
||||||
/jwcrypto-0.4.1.tar.gz
|
|
||||||
/jwcrypto-0.4.2.tar.gz
|
|
||||||
/jwcrypto-0.5.0.tar.gz
|
|
||||||
/jwcrypto-0.6.0.tar.gz
|
|
||||||
/jwcrypto-0.8.tar.gz
|
|
||||||
/jwcrypto-0.9.1.tar.gz
|
|
||||||
/jwcrypto-1.4.tar.gz
|
|
||||||
/jwcrypto-1.4.1.tar.gz
|
|
||||||
/jwcrypto-1.4.2.tar.gz
|
|
||||||
/jwcrypto-1.5.6.tar.gz
|
|
||||||
/jwcrypto-1.5.8.tar.gz
|
|
||||||
|
|||||||
1
.python-jwcrypto.metadata
Normal file
1
.python-jwcrypto.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
8eccc6fbeeee2fedc602998a7c7a97b8bd550e59 SOURCES/jwcrypto-0.5.0.tar.gz
|
||||||
191
SPECS/python-jwcrypto.spec
Normal file
191
SPECS/python-jwcrypto.spec
Normal file
@ -0,0 +1,191 @@
|
|||||||
|
%if 0%{?fedora} || 0%{?rhel} > 7
|
||||||
|
# Enable python3 build by default
|
||||||
|
%bcond_without python3
|
||||||
|
%else
|
||||||
|
%bcond_with python3
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?rhel} > 7
|
||||||
|
# Disable python2 build by default
|
||||||
|
%bcond_with python2
|
||||||
|
%else
|
||||||
|
%bcond_without python2
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%global srcname jwcrypto
|
||||||
|
|
||||||
|
Name: python-%{srcname}
|
||||||
|
Version: 0.5.0
|
||||||
|
Release: 1.1%{?dist}
|
||||||
|
Summary: Implements JWK, JWS, JWE specifications using python-cryptography
|
||||||
|
|
||||||
|
License: LGPLv3+
|
||||||
|
URL: https://github.com/latchset/%{srcname}
|
||||||
|
Source0: https://github.com/latchset/%{srcname}/releases/download/v%{version}/%{srcname}-%{version}.tar.gz
|
||||||
|
|
||||||
|
BuildArch: noarch
|
||||||
|
%if %{with python2}
|
||||||
|
BuildRequires: python2-devel
|
||||||
|
BuildRequires: python2-setuptools
|
||||||
|
BuildRequires: python2-cryptography >= 1.5
|
||||||
|
BuildRequires: python2-pytest
|
||||||
|
%endif
|
||||||
|
%if %{with python3}
|
||||||
|
BuildRequires: python%{python3_pkgversion}-devel
|
||||||
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
||||||
|
BuildRequires: python%{python3_pkgversion}-cryptography >= 1.5
|
||||||
|
BuildRequires: python%{python3_pkgversion}-pytest
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%description
|
||||||
|
Implements JWK, JWS, JWE specifications using python-cryptography
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
%package -n python2-%{srcname}
|
||||||
|
Summary: Implements JWK,JWS,JWE specifications using python-cryptography
|
||||||
|
Requires: python2-cryptography >= 1.5
|
||||||
|
%{?python_provide:%python_provide python2-%{srcname}}
|
||||||
|
|
||||||
|
%description -n python2-%{srcname}
|
||||||
|
Implements JWK, JWS, JWE specifications using python-cryptography
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with python3}
|
||||||
|
%package -n python%{python3_pkgversion}-%{srcname}
|
||||||
|
Summary: Implements JWK, JWS, JWE specifications using python-cryptography
|
||||||
|
Requires: python%{python3_pkgversion}-cryptography >= 1.5
|
||||||
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
|
||||||
|
|
||||||
|
%description -n python%{python3_pkgversion}-%{srcname}
|
||||||
|
Implements JWK, JWS, JWE specifications using python-cryptography
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n %{srcname}-%{version}
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%if %{with python2}
|
||||||
|
%py2_build
|
||||||
|
%endif
|
||||||
|
%if %{with python3}
|
||||||
|
%py3_build
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
%if %{with python2}
|
||||||
|
%{__python2} -bb -m pytest %{srcname}/test*.py
|
||||||
|
%endif
|
||||||
|
%if %{with python3}
|
||||||
|
%{__python3} -bb -m pytest %{srcname}/test*.py
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%if %{with python2}
|
||||||
|
%py2_install
|
||||||
|
rm -rf %{buildroot}%{_docdir}/%{srcname}
|
||||||
|
rm -rf %{buildroot}%{python2_sitelib}/%{srcname}/tests{,-cookbook}.py*
|
||||||
|
%endif
|
||||||
|
%if %{with python3}
|
||||||
|
%py3_install
|
||||||
|
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}/tests{,-cookbook}.py*
|
||||||
|
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}/__pycache__/tests{,-cookbook}.*.py*
|
||||||
|
%endif
|
||||||
|
rm -rf %{buildroot}/usr/share/doc/jwcrypto
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
%files -n python2-%{srcname}
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSE
|
||||||
|
%{python2_sitelib}/%{srcname}
|
||||||
|
%{python2_sitelib}/%{srcname}-%{version}-py%{python2_version}.egg-info
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with python3}
|
||||||
|
%files -n python%{python3_pkgversion}-%{srcname}
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSE
|
||||||
|
%{python3_sitelib}/%{srcname}
|
||||||
|
%{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Jun 17 2022 Christian Heimes <cheimes@redhat.com> - 0.5.0-1.1
|
||||||
|
- Bump dist to solve version sorting issue, fixes RHBZ#2097800
|
||||||
|
|
||||||
|
* Thu Jun 28 2018 Christian Heimes <cheimes@redhat.com> - 0.5.0-1
|
||||||
|
- New upstream release 0.5.0
|
||||||
|
- Fixes Coverity scan issue
|
||||||
|
|
||||||
|
* Mon Apr 16 2018 Christian Heimes <cheimes@redhat.com> - 0.4.2-5
|
||||||
|
- Drop Python 2 subpackages from RHEL 8, fixes RHBZ#1567152
|
||||||
|
|
||||||
|
* Thu Nov 23 2017 Christian Heimes <cheimes@redhat.com> - 0.4.2-4
|
||||||
|
- Build Python 3 package on RHEL > 7, fixes RHBZ#1516813
|
||||||
|
|
||||||
|
* Wed Aug 02 2017 Christian Heimes <cheimes@redhat.com> - 0.4.2-3
|
||||||
|
- Run tests with bytes warning
|
||||||
|
|
||||||
|
* Tue Aug 01 2017 Christian Heimes <cheimes@redhat.com> - 0.4.2-2
|
||||||
|
- Modernize spec
|
||||||
|
|
||||||
|
* Tue Aug 01 2017 Christian Heimes <cheimes@redhat.com> - 0.4.2-1
|
||||||
|
- Upstream release 0.4.2
|
||||||
|
- Resolves: RHBZ #1476150
|
||||||
|
|
||||||
|
* Mon Jul 24 2017 Christian Heimes <cheimes@redhat.com> - 0.4.1-1
|
||||||
|
- Upstream release 0.4.1
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.3.2-2
|
||||||
|
- Rebuild for Python 3.6
|
||||||
|
|
||||||
|
* Wed Aug 31 2016 Simo Sorce <simo@redhat.com> - 0.3.2-1
|
||||||
|
- Security release 0.3.2
|
||||||
|
- Resolves: CVE-2016-6298
|
||||||
|
|
||||||
|
* Fri Aug 19 2016 Simo Sorce <simo@redhat.com> - 0.3.1-1
|
||||||
|
- Bugfix release 0.3.1
|
||||||
|
|
||||||
|
* Wed Aug 10 2016 Simo Sorce <simo@redhat.com> - 0.3.0-1
|
||||||
|
- New release
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.1-4
|
||||||
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
||||||
|
|
||||||
|
* Mon Aug 3 2015 Simo Sorce <simo@redhat.com> - 0.2.1-1
|
||||||
|
- New release
|
||||||
|
- Fixes some key generation issues
|
||||||
|
|
||||||
|
* Mon Jun 22 2015 Patrick Uiterwijk <puiterwijk@redhat.com> - 0.2.0-5
|
||||||
|
- Fix macro in changelog
|
||||||
|
- Remove the last remnants of the test suite
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Patrick Uiterwijk <puiterwijk@redhat.com> - 0.2.0-4
|
||||||
|
- Ship readme and license with python3 subpackage
|
||||||
|
- Move tests to %%check
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Patrick Uiterwijk <puiterwijk@redhat.com> - 0.2.0-3
|
||||||
|
- Fix F21 build error by adding buildrequire python-setuptools
|
||||||
|
- Move files into python3-jwcrypto subpackage
|
||||||
|
- Run test suite
|
||||||
|
- Do not install test suite
|
||||||
|
- Fix summary and description of python3-jwcrypto
|
||||||
|
|
||||||
|
* Tue Jun 16 2015 Patrick Uiterwijk <puiterwijk@redhat.com> - 0.2.0-2
|
||||||
|
- Enable python3 build
|
||||||
|
|
||||||
|
* Tue Jun 16 2015 Patrick Uiterwijk <puiterwijk@redhat.com> - 0.2.0-1
|
||||||
|
- Initial packaging
|
||||||
129
changelog
129
changelog
@ -1,129 +0,0 @@
|
|||||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.1-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 14 2022 Python Maint <python-maint@redhat.com> - 0.9.1-4
|
|
||||||
- Rebuilt for Python 3.11
|
|
||||||
|
|
||||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jun 10 2021 Simo Sorce <simo@redhat.com> - 0.9.1-1
|
|
||||||
- Sync with upstream release 0.9.1
|
|
||||||
|
|
||||||
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 0.8-3
|
|
||||||
- Rebuilt for Python 3.10
|
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Dec 01 2020 Simo Sorce <simo@redhat.com> - 0.8-1
|
|
||||||
- Sync with upstream release 0.8
|
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.6.0-8
|
|
||||||
- Rebuilt for Python 3.9
|
|
||||||
|
|
||||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.6.0-6
|
|
||||||
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
||||||
|
|
||||||
* Thu Aug 29 2019 Christian Heimes <cheimes@redhat.com> - 0.6.0-5
|
|
||||||
- Remove Python 2 subpackages from F32+
|
|
||||||
- Resolves: RHBZ #1746760
|
|
||||||
|
|
||||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.6.0-4
|
|
||||||
- Rebuilt for Python 3.8
|
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Nov 05 2018 Christian Heimes <cheimes@redhat.com> - 0.6.0-1
|
|
||||||
- New upstream release 0.6.0
|
|
||||||
|
|
||||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 0.5.0-2
|
|
||||||
- Rebuilt for Python 3.7
|
|
||||||
|
|
||||||
* Wed Jun 27 2018 Christian Heimes <cheimes@redhat.com> - 0.5.0-1
|
|
||||||
- New upstream release 0.5.0
|
|
||||||
|
|
||||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.4.2-5
|
|
||||||
- Rebuilt for Python 3.7
|
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.2-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Aug 02 2017 Christian Heimes <cheimes@redhat.com> - 0.4.2-3
|
|
||||||
- Run tests with bytes warning
|
|
||||||
|
|
||||||
* Tue Aug 01 2017 Christian Heimes <cheimes@redhat.com> - 0.4.2-2
|
|
||||||
- Modernize spec
|
|
||||||
|
|
||||||
* Tue Aug 01 2017 Christian Heimes <cheimes@redhat.com> - 0.4.2-1
|
|
||||||
- Upstream release 0.4.2
|
|
||||||
- Resolves: RHBZ #1476150
|
|
||||||
|
|
||||||
* Mon Jul 24 2017 Christian Heimes <cheimes@redhat.com> - 0.4.1-1
|
|
||||||
- Upstream release 0.4.1
|
|
||||||
|
|
||||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.2-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.3.2-2
|
|
||||||
- Rebuild for Python 3.6
|
|
||||||
|
|
||||||
* Wed Aug 31 2016 Simo Sorce <simo@redhat.com> - 0.3.2-1
|
|
||||||
- Security release 0.3.2
|
|
||||||
- Resolves: CVE-2016-6298
|
|
||||||
|
|
||||||
* Fri Aug 19 2016 Simo Sorce <simo@redhat.com> - 0.3.1-1
|
|
||||||
- Bugfix release 0.3.1
|
|
||||||
|
|
||||||
* Wed Aug 10 2016 Simo Sorce <simo@redhat.com> - 0.3.0-1
|
|
||||||
- New release
|
|
||||||
|
|
||||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.1-4
|
|
||||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
||||||
|
|
||||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
||||||
|
|
||||||
* Mon Aug 3 2015 Simo Sorce <simo@redhat.com> - 0.2.1-1
|
|
||||||
- New release
|
|
||||||
- Fixes some key generation issues
|
|
||||||
|
|
||||||
* Mon Jun 22 2015 Patrick Uiterwijk <puiterwijk@redhat.com> - 0.2.0-5
|
|
||||||
- Fix macro in changelog
|
|
||||||
- Remove the last remnants of the test suite
|
|
||||||
|
|
||||||
* Wed Jun 17 2015 Patrick Uiterwijk <puiterwijk@redhat.com> - 0.2.0-4
|
|
||||||
- Ship readme and license with python3 subpackage
|
|
||||||
- Move tests to %%check
|
|
||||||
|
|
||||||
* Wed Jun 17 2015 Patrick Uiterwijk <puiterwijk@redhat.com> - 0.2.0-3
|
|
||||||
- Fix F21 build error by adding buildrequire python-setuptools
|
|
||||||
- Move files into python3-jwcrypto subpackage
|
|
||||||
- Run test suite
|
|
||||||
- Do not install test suite
|
|
||||||
- Fix summary and description of python3-jwcrypto
|
|
||||||
|
|
||||||
* Tue Jun 16 2015 Patrick Uiterwijk <puiterwijk@redhat.com> - 0.2.0-2
|
|
||||||
- Enable python3 build
|
|
||||||
|
|
||||||
* Tue Jun 16 2015 Patrick Uiterwijk <puiterwijk@redhat.com> - 0.2.0-1
|
|
||||||
- Initial packaging
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
# recipients: abokovoy, frenaud, kaleem, ftrivino, cheimes
|
|
||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-10
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
|
||||||
@ -1,62 +0,0 @@
|
|||||||
%global srcname jwcrypto
|
|
||||||
|
|
||||||
Name: python-%{srcname}
|
|
||||||
Version: 1.5.8
|
|
||||||
Release: %autorelease
|
|
||||||
Summary: Implements JWK, JWS, JWE specifications using python-cryptography
|
|
||||||
|
|
||||||
License: LGPL-3.0-or-later
|
|
||||||
URL: https://github.com/latchset/%{srcname}
|
|
||||||
Source0: https://github.com/latchset/%{srcname}/releases/download/v%{version}/%{srcname}-%{version}.tar.gz
|
|
||||||
|
|
||||||
BuildArch: noarch
|
|
||||||
BuildRequires: python%{python3_pkgversion}-devel
|
|
||||||
BuildRequires: pyproject-rpm-macros
|
|
||||||
BuildRequires: python%{python3_pkgversion}-pip
|
|
||||||
BuildRequires: python%{python3_pkgversion}-hatchling
|
|
||||||
BuildRequires: python%{python3_pkgversion}-cryptography >= 39.0.0
|
|
||||||
BuildRequires: python%{python3_pkgversion}-pytest
|
|
||||||
BuildRequires: python%{python3_pkgversion}-typing-extensions
|
|
||||||
|
|
||||||
%description
|
|
||||||
Implements JWK, JWS, JWE specifications using python-cryptography
|
|
||||||
|
|
||||||
|
|
||||||
%package -n python%{python3_pkgversion}-%{srcname}
|
|
||||||
Summary: Implements JWK, JWS, JWE specifications using python-cryptography
|
|
||||||
Requires: python%{python3_pkgversion}-cryptography >= 39.0.0
|
|
||||||
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
|
|
||||||
|
|
||||||
%description -n python%{python3_pkgversion}-%{srcname}
|
|
||||||
Implements JWK, JWS, JWE specifications using python-cryptography
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%setup -q -n %{srcname}-%{version}
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
|
||||||
%pyproject_wheel
|
|
||||||
|
|
||||||
|
|
||||||
%check
|
|
||||||
%{__python3} -bb -m pytest %{srcname}/test*.py
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
|
||||||
%pyproject_install
|
|
||||||
|
|
||||||
rm -rf %{buildroot}%{_docdir}/%{srcname}
|
|
||||||
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}/tests{,-cookbook}.py*
|
|
||||||
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}/__pycache__/tests{,-cookbook}.*.py*
|
|
||||||
|
|
||||||
|
|
||||||
%files -n python%{python3_pkgversion}-%{srcname}
|
|
||||||
%doc README.md
|
|
||||||
%license LICENSE
|
|
||||||
%{python3_sitelib}/%{srcname}
|
|
||||||
%{python3_sitelib}/%{srcname}-%{version}.dist-info
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
%autochangelog
|
|
||||||
1
sources
1
sources
@ -1 +0,0 @@
|
|||||||
SHA512 (jwcrypto-1.5.8.tar.gz) = 34d1eaef37aa4c21fb645ad9a1be590b9586293dd74f82efdff420487b8a6ab1b24d410d14dc7fe032c07b15d838e4d4a64ad335f0e4650612d39df759fe4a68
|
|
||||||
@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
- hosts: localhost
|
|
||||||
tags:
|
|
||||||
- classic
|
|
||||||
pre_tasks:
|
|
||||||
- name: Enable CRB for python3-pytest on 1minutetip
|
|
||||||
ini_file:
|
|
||||||
path: /etc/yum.repos.d/rhel.repo
|
|
||||||
section: rhel-CRB
|
|
||||||
option: enabled
|
|
||||||
value: "1"
|
|
||||||
create: no
|
|
||||||
ignore_errors: yes
|
|
||||||
roles:
|
|
||||||
- role: standard-test-source
|
|
||||||
- role: standard-test-basic
|
|
||||||
required_packages:
|
|
||||||
- python3-jwcrypto
|
|
||||||
- python3-pytest
|
|
||||||
tests:
|
|
||||||
- unittests:
|
|
||||||
dir: "source"
|
|
||||||
# remove jwcrypto Python files to run tests with packages code
|
|
||||||
run: >-
|
|
||||||
rm -rf jwcrypto/j*.py jwcrypto/__init__.py jwcrypto/__pycache__ &&
|
|
||||||
python3 -m pytest jwcrypto/test*.py
|
|
||||||
Loading…
Reference in New Issue
Block a user