From 5c3a28540ac7d583ab4db4366247592c849422d8 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Tue, 7 May 2019 09:03:46 -0400 Subject: [PATCH] import python-bottle-0.12.13-3.el8 --- .gitignore | 1 + .python-bottle.metadata | 1 + SPECS/python-bottle.spec | 170 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 172 insertions(+) create mode 100644 .gitignore create mode 100644 .python-bottle.metadata create mode 100644 SPECS/python-bottle.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..50cd225 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/bottle-0.12.13.tar.gz diff --git a/.python-bottle.metadata b/.python-bottle.metadata new file mode 100644 index 0000000..7de7e3d --- /dev/null +++ b/.python-bottle.metadata @@ -0,0 +1 @@ +c21f52c1ea93336a830f857000ee38c7938a4539 SOURCES/bottle-0.12.13.tar.gz diff --git a/SPECS/python-bottle.spec b/SPECS/python-bottle.spec new file mode 100644 index 0000000..db49dac --- /dev/null +++ b/SPECS/python-bottle.spec @@ -0,0 +1,170 @@ +%global srcname bottle + +%if 0%{?rhel} > 7 +# Disable python2 build by default +%bcond_with python2 +%else +%bcond_without python2 +%endif + +Name: python-%{srcname} +Version: 0.12.13 +Release: 3%{?dist} +Summary: Fast and simple WSGI-framework for small web-applications + +Group: Development/Languages +License: MIT +URL: http://bottlepy.org +Source0: https://github.com/bottlepy/%{srcname}/archive/%{version}.tar.gz#/%{srcname}-%{version}.tar.gz + +BuildArch: noarch +%if %{with python2} +BuildRequires: python2-devel +BuildRequires: python2-setuptools +%endif # with python2 + +BuildRequires: python%{python3_pkgversion}-devel +BuildRequires: python%{python3_pkgversion}-setuptools + +%description +Bottle is a fast and simple micro-framework for small web-applications. +It offers request dispatching (Routes) with URL parameter support, Templates, +a built-in HTTP Server and adapters for many third party WSGI/HTTP-server and +template engines. All in a single file and with no dependencies other than the +Python Standard Library. + +%if %{with python2} +%package -n python2-%{srcname} +Summary: Fast and simple WSGI-framework for small web-applications +%{?python_provide:%python_provide python2-%{srcname}} + +%description -n python2-%{srcname} +Bottle is a fast and simple micro-framework for small web-applications. +It offers request dispatching (Routes) with URL parameter support, Templates, +a built-in HTTP Server and adapters for many third party WSGI/HTTP-server and +template engines. All in a single file and with no dependencies other than the +Python Standard Library. +%endif # with python2 + +%package -n python%{python3_pkgversion}-%{srcname} +Summary: Fast and simple WSGI-framework for small web-applications +%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}} + +%description -n python%{python3_pkgversion}-%{srcname} +Bottle is a fast and simple micro-framework for small web-applications. +It offers request dispatching (Routes) with URL parameter support, Templates, +a built-in HTTP Server and adapters for many third party WSGI/HTTP-server and +template engines. All in a single file and with no dependencies other than the +Python Standard Library. + +%prep +%setup -q -n %{srcname}-%{version} +sed -i '/^#!/d' bottle.py + +%build +%if %{with python2} +%py2_build +%endif # with python2 +%py3_build + +%install +%if %{with python2} +%py2_install +%endif # with python2 +%py3_install +rm %{buildroot}%{_bindir}/bottle.py + +%check +%if %{with python2} +%__python2 test/testall.py verbose +%endif # with python2 +# Fails +# FAIL: test_delete_cookie (test_environ.TestResponse) +%__python3 test/testall.py verbose || : + +%if %{with python2} +%files -n python2-%{srcname} +%license LICENSE +%doc AUTHORS README.rst +%{python2_sitelib}/* +%endif # with python2 + +%files -n python%{python3_pkgversion}-%{srcname} +%license LICENSE +%doc AUTHORS README.rst +%{python3_sitelib}/__pycache__/* +%{python3_sitelib}/*.egg-info +%{python3_sitelib}/*.py + +%changelog +* Fri Jun 08 2018 Charalampos Stratakis - 0.12.13-3 +- Conditionalize the python2 subpackage + +* Fri Feb 09 2018 Fedora Release Engineering - 0.12.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Tue Jan 09 2018 Stratakis Charalampos - 0.12.13-1 +- Update to 0.12.13 + +* Thu Jul 27 2017 Fedora Release Engineering - 0.12.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 0.12.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Dec 12 2016 Stratakis Charalampos - 0.12.9-4 +- Rebuild for Python 3.6 + +* Wed Nov 16 2016 Orion Poplawski - 0.12.9-3 +- Do not own __pycache__ dir + +* Tue Jul 19 2016 Fedora Release Engineering - 0.12.9-2 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Tue Jul 12 2016 Orion Poplawski - 0.12.9-1 +- Update to 0.12.9 +- Run tests but ignore python3 failure for now + +* Tue Jul 12 2016 Orion Poplawski - 0.12.6-5 +- Use modern python packaging guidelines + +* Thu Feb 04 2016 Fedora Release Engineering - 0.12.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Nov 10 2015 Fedora Release Engineering - 0.12.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Thu Jun 18 2015 Fedora Release Engineering - 0.12.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat Jul 12 2014 Rahul Sundaram - 0.12.6-1 +- resolves rhbz#1093257 - JSON content type not restrictive enough + +* Sat Jun 07 2014 Fedora Release Engineering - 0.11.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Mon May 19 2014 Bohuslav Kabrda - 0.11.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Sun Aug 04 2013 Fedora Release Engineering - 0.11.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Tue Apr 23 2013 Rahul Sundaram - 0.11.6-1 +- upstream release 0.11.6 +- add python3 subpackage. resolves rhbz#949240 +- spec file patch from Haïkel Guémar + +* Thu Feb 14 2013 Fedora Release Engineering - 0.10.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Jul 21 2012 Fedora Release Engineering - 0.10.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed Feb 01 2012 Ian Weller - 0.10.7-1 +- Update to 0.10.7 (required by python-mwlib) + +* Sat Jan 14 2012 Fedora Release Engineering - 0.9.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Mon Jul 18 2011 Rahul Sundaram - 0.9.5-1 +- Initial spec