From 1a83f52d757faa95d945bf0b4c3a81128fef386a Mon Sep 17 00:00:00 2001 From: Alfredo Moralejo Date: Sep 07 2021 11:33:39 +0000 Subject: Import python-vine-5.0.0-3.el9 in CloudSIG xena --- diff --git a/.python-vine.metadata b/.python-vine.metadata new file mode 100644 index 0000000..49c5a8b --- /dev/null +++ b/.python-vine.metadata @@ -0,0 +1 @@ +23cd303dc42a81831b9867f03e7ab765e8d7cd80 SOURCES/vine-5.0.0.tar.gz diff --git a/SPECS/python-vine.spec b/SPECS/python-vine.spec new file mode 100644 index 0000000..9cba5d8 --- /dev/null +++ b/SPECS/python-vine.spec @@ -0,0 +1,154 @@ +%global pypi_name vine + +# Enable tests by default +%bcond_without tests + +# docs depend on package sphinx_celery +# https://github.com/celery/sphinx_celery +%bcond_with docs + +Name: python-%{pypi_name} +Version: 5.0.0 +Release: 3%{?dist} +Summary: Promises, promises, promises + +License: BSD +URL: http://github.com/celery/vine +Source0: https://files.pythonhosted.org/packages/source/v/%{pypi_name}/%{pypi_name}-%{version}.tar.gz +BuildArch: noarch + +%if %{with docs} +BuildRequires: python3-sphinx +%endif + + +%description +%{summary} + + +%package -n python3-%{pypi_name} +Summary: Promises, promises, promises + +BuildRequires: python3-devel +BuildRequires: python3-setuptools +%if %{with tests} +BuildRequires: python3-pytest +BuildRequires: python3-pytest-cov +BuildRequires: python3-case +BuildRequires: python3-mock +%endif + + +%description -n python3-%{pypi_name} +%{summary} + +%if %{with docs} +%package -n python-%{pypi_name}-doc +Summary: vine documentation +%description -n python-%{pypi_name}-doc +Documentation for vine +%endif + +%prep +%autosetup -n %{pypi_name}-%{version} +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +%py3_build + +# docs depend on sphinx-celery +%if %{with docs} +# generate html docs + +sphinx-build docs html +# remove the sphinx-build leftovers +rm -rf html/.{doctrees,buildinfo} +%endif + +%install +%py3_install + + +%if %{with tests} +%check +py.test-3 -xv --cov=vine --cov-report=xml --no-cov-on-fail +%endif + +%files -n python3-%{pypi_name} +%license LICENSE +%doc docs/templates/readme.txt README.rst +%{python3_sitelib}/%{pypi_name} +%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info + +%if %{with docs} +%files -n python-%{pypi_name}-doc +%doc html +%endif + +%changelog +* Wed Jan 27 2021 Fedora Release Engineering - 5.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Sep 30 2020 Frantisek Zatloukal - 5.0.0-2 +- Enable tests + +* Tue Sep 29 2020 Frantisek Zatloukal - 5.0.0-1 +- python-vine 5.0.0 + +* Wed Jul 29 2020 Fedora Release Engineering - 1.3.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon May 25 2020 Miro Hrončok - 1.3.0-6 +- Rebuilt for Python 3.9 + +* Thu Jan 30 2020 Fedora Release Engineering - 1.3.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Oct 03 2019 Miro Hrončok - 1.3.0-4 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Mon Aug 19 2019 Miro Hrončok - 1.3.0-3 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 1.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Tue Jul 02 2019 Nils Philippsen - 1.3.0-1 +- Update to 1.3.0 + +* Fri Jun 28 2019 Miro Hrončok - 1.2.0-3 +- Subpackage python2-vine has been removed + See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal + +* Sat Feb 02 2019 Fedora Release Engineering - 1.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jan 26 2019 Neal Gompa - 1.2.0-1 +- Update to 1.2.0 +- Switch to using bconds for controlling build behaviors + +* Sat Jul 14 2018 Fedora Release Engineering - 1.1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Mon Jul 09 2018 Matthias Runge - 1.1.4-1 +- update to 1.1.4 (rhbz#1471577) + +* Tue Jun 19 2018 Miro Hrončok - 1.1.3-6 +- Rebuilt for Python 3.7 + +* Fri Feb 09 2018 Fedora Release Engineering - 1.1.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jan 31 2018 Iryna Shcherbina - 1.1.3-4 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Thu Jul 27 2017 Fedora Release Engineering - 1.1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 1.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Dec 27 2016 Matthias Runge - 1.1.3-1 +- Initial package. (rhbz#1408869)