From 4960d8a64aa74e5b92d4e96afe0cf665d164b480 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Fri, 2 Aug 2019 11:34:17 -0400 Subject: [PATCH] import python-pluggy-0.6.0-3.el8 --- .gitignore | 1 + .python-pluggy.metadata | 1 + SPECS/python-pluggy.spec | 101 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 103 insertions(+) create mode 100644 .gitignore create mode 100644 .python-pluggy.metadata create mode 100644 SPECS/python-pluggy.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2c48294 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/python-pluggy-0.6.0.tar.gz diff --git a/.python-pluggy.metadata b/.python-pluggy.metadata new file mode 100644 index 0000000..6cf4041 --- /dev/null +++ b/.python-pluggy.metadata @@ -0,0 +1 @@ +695654f4016d617d1d0ae3f592adc14bc850b734 SOURCES/python-pluggy-0.6.0.tar.gz diff --git a/SPECS/python-pluggy.spec b/SPECS/python-pluggy.spec new file mode 100644 index 0000000..e5628fc --- /dev/null +++ b/SPECS/python-pluggy.spec @@ -0,0 +1,101 @@ +%global pypiname pluggy + +Name: python-pluggy +Version: 0.6.0 +Release: 3%{?dist} +Summary: The plugin manager stripped of pytest specific details + +License: MIT +URL: https://github.com/pytest-dev/pluggy +Source0: https://github.com/pytest-dev/%{pypiname}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz + + +BuildArch: noarch +BuildRequires: python3-devel +BuildRequires: python3-pytest +BuildRequires: python3-setuptools + +%description +The plugin manager stripped of pytest specific details. + +%package -n python3-%{pypiname} +Summary: The plugin manager stripped of pytest specific details. + +%description -n python3-%{pypiname} +The plugin manager stripped of pytest specific details. + + +%prep +%autosetup -n %{pypiname}-%{version} + + +%build +%py3_build + + +%install +%py3_install + + +%check +%{__python3} -m pytest testing + + +%files -n python3-%{pypiname} +%{python3_sitelib}/%{pypiname} +%{python3_sitelib}/%{pypiname}-%{version}-py%{python3_version}.egg-info +%doc README.rst +%license LICENSE + + +%changelog +* Fri Jul 13 2018 Petr Viktorin - 0.6.0-3 +- Remove the Python 2 subpackage + https://bugzilla.redhat.com/show_bug.cgi?id=1590435 + +* Fri Feb 09 2018 Fedora Release Engineering - 0.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Mon Jan 29 2018 Matthias Runge - 0.6.0-1 +- update to 0.6.0 +- requirement renames to meet python2 names + +* Tue Jan 23 2018 Karsten Hopp - 0.3.1-10 +- fix conditional + +* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek - 0.3.1-9 +- Python 2 binary package renamed to python2-pluggy + See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 + +* Thu Jul 27 2017 Fedora Release Engineering - 0.3.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 0.3.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Dec 19 2016 Miro Hrončok - 0.3.1-6 +- Rebuild for Python 3.6 + +* Tue Jul 19 2016 Fedora Release Engineering - 0.3.1-5 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Thu Feb 04 2016 Fedora Release Engineering - 0.3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Nov 16 2015 Matthias Runge - 0.3.1-3 +- make tests pass again on Python 3.5 + +* Tue Nov 10 2015 Fedora Release Engineering - 0.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Mon Sep 21 2015 Matthias Runge - 0.3.1-1 +- update to 0.3.1 + +* Tue Aug 25 2015 Matthias Runge - 0.3.0-3 +- fix python3 builds + +* Fri Aug 21 2015 Matthias Runge - 0.3.0-2 +- add python2_sitelib macros and BR to setuptools (rhbz#1254484) + +* Fri Aug 14 2015 Matthias Runge - 0.3.0-1 +- version based on the inital proposal of Adam Young