From cb2286daad61d9fd57e956da4aa269e33c878002 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Fri, 7 Jun 2019 14:42:01 -0400 Subject: [PATCH] import python-cheetah-3.1.0-4.el8+1359+ee4104af --- .gitignore | 1 + .python-cheetah.metadata | 1 + .../cheetah-3.0.0-dont-run-tests-twice.patch | 10 + SPECS/python-cheetah.spec | 269 ++++++++++++++++++ 4 files changed, 281 insertions(+) create mode 100644 .gitignore create mode 100644 .python-cheetah.metadata create mode 100644 SOURCES/cheetah-3.0.0-dont-run-tests-twice.patch create mode 100644 SPECS/python-cheetah.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c706dcf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/Cheetah3-3.1.0.tar.gz diff --git a/.python-cheetah.metadata b/.python-cheetah.metadata new file mode 100644 index 0000000..e269ce1 --- /dev/null +++ b/.python-cheetah.metadata @@ -0,0 +1 @@ +077a43c082ab42232782d64343cae2e330975b34 SOURCES/Cheetah3-3.1.0.tar.gz diff --git a/SOURCES/cheetah-3.0.0-dont-run-tests-twice.patch b/SOURCES/cheetah-3.0.0-dont-run-tests-twice.patch new file mode 100644 index 0000000..4bc040a --- /dev/null +++ b/SOURCES/cheetah-3.0.0-dont-run-tests-twice.patch @@ -0,0 +1,10 @@ +--- Cheetah-3.0.0/Cheetah/CheetahWrapper.py.orig 2010-12-12 22:43:26.000000000 -0500 ++++ Cheetah-3.0.0/Cheetah/CheetahWrapper.py 2010-12-20 17:24:44.524608918 -0500 +@@ -263,7 +263,6 @@ + if '-v' in self.testOpts: + verbosity = 2 + runner = unittest.TextTestRunner(verbosity=verbosity) +- runner.run(unittest.TestSuite(Test.suites)) + results = runner.run(unittest.TestSuite(Test.suites)) + exit(int(not results.wasSuccessful())) + diff --git a/SPECS/python-cheetah.spec b/SPECS/python-cheetah.spec new file mode 100644 index 0000000..1419e73 --- /dev/null +++ b/SPECS/python-cheetah.spec @@ -0,0 +1,269 @@ +%bcond_with python2 + +Name: python-cheetah +Version: 3.1.0 +Release: 4%{?dist} +Summary: Template engine and code generator + +Group: Development/Libraries +License: MIT +URL: http://cheetahtemplate.org/ +Source: https://pypi.python.org/packages/54/86/ea50bb5baf1daa8ca1a56774d48150a69376679d27c4130848702efc378c/Cheetah3-3.1.0.tar.gz + +Patch0: cheetah-3.0.0-dont-run-tests-twice.patch +BuildRequires: gcc + +%global _description\ +Cheetah is an open source template engine and code generation tool,\ +written in Python. It can be used standalone or combined with other\ +tools and frameworks. Web development is its principal use, but\ +Cheetah is very flexible and is also being used to generate C++ code,\ +Java, SQL, form emails and even Python code. + +%description %{_description} + +%if %{with python2} +%package -n python2-cheetah +Summary: %summary +%{?python_provide:%python_provide python2-cheetah} + +BuildRequires: python2-devel +BuildRequires: python2-setuptools +BuildRequires: python2-markdown +BuildRequires: python2-pygments + +%description -n python2-cheetah %_description + +%endif + +%package -n python3-cheetah +Summary: %summary +%{?python_provide:%python_provide python3-cheetah} + +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-markdown +BuildRequires: python3-pygments + +%description -n python3-cheetah %_description + + +%prep +%setup -q -n Cheetah3-%{version} +%patch0 -p1 +# remove unnecessary shebang lines to silence rpmlint +%{__sed} -i -e '/^#!/,1d' Cheetah/Tests/* \ + Cheetah/DirectiveAnalyzer.py Cheetah/Utils/Misc.py + +%build +%if %{with python2} +%py2_build +%endif + +%py3_build + +%install +%if %{with python2} +%py2_install + +EGG_INFO=(%{buildroot}/%{python_sitearch}/Cheetah*.egg-info) +cp -r $EGG_INFO ${EGG_INFO//Cheetah3/Cheetah} +sed -i "s/Name: Cheetah3/Name: Cheetah/" ${EGG_INFO//Cheetah3/Cheetah}/PKG-INFO +rm %{buildroot}%{_bindir}/* +%endif + +%py3_install + + +%check +export PATH="%{buildroot}/%{_bindir}:$PATH" +%if %{with python2} +export PYTHONPATH="%{buildroot}/%{python_sitearch}" +%__python2 %{buildroot}/%{_bindir}/cheetah test +%endif +export PYTHONPATH="%{buildroot}/%{python3_sitearch}" +%{buildroot}/%{_bindir}/cheetah test + +%if %{with python2} +%files -n python2-cheetah +%defattr(-,root,root,-) +%license LICENSE +%doc ANNOUNCE.rst README.rst TODO BUGS + +%{python_sitearch}/ +%endif + +%files -n python3-cheetah +%defattr(-,root,root,-) +%license LICENSE +%doc ANNOUNCE.rst README.rst TODO BUGS + +%{_bindir}/cheetah* + +%{python3_sitearch}/ + +%changelog +* Fri Jun 15 2018 Lumír Balhar - 3.1.0-4 +- Python 2 subpackage disabled + +* Tue Jun 12 2018 Lumír Balhar - 3.1.0-3 +- Fixed python2 conditions +- Removed usage of %%{py3dir} + +* Wed Mar 28 2018 Marek Skalický - 3.1.0-2 +- Use python3 shebang in binary files + +* Tue Mar 20 2018 Marek Skalický - 3.1.0-1 +- Rebase to latest upstream release + +* Tue Feb 27 2018 Marek Skalický - 3.0.0-20 +- Add missing BuildRequires: gcc/gcc-c++ + +* Thu Feb 22 2018 Marek Skalický - 3.0.0-19 +- Add Cheetah egg-info for backward compatibility + +* Fri Feb 09 2018 Fedora Release Engineering - 3.0.0-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek - 2.4.4-17 +- Python 2 binary package renamed to python2-cheetah + See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 + +* Thu Aug 03 2017 Fedora Release Engineering - 2.4.4-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 2.4.4-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 2.4.4-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Jul 19 2016 Fedora Release Engineering - 2.4.4-13 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Thu Feb 04 2016 Fedora Release Engineering - 2.4.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Jun 18 2015 Fedora Release Engineering - 2.4.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sun Aug 17 2014 Fedora Release Engineering - 2.4.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Thu Jul 31 2014 Tom Callaway - 2.4.4-9 +- fix license handling + +* Mon Jul 21 2014 Toshio Kuratomi - 2.4.4-8 +- Since we're leaving out the dep on markdown in the rpm requirements we need + to leave it out of egginfo as well otherwise pkg_resources using code breaks + +* Thu Jun 19 2014 Matthew Miller - 2.4.4-7 +- remove python-markdown and python-pygments hard dependencies + +* Sat Jun 07 2014 Fedora Release Engineering - 2.4.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sun Aug 04 2013 Fedora Release Engineering - 2.4.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu Feb 14 2013 Fedora Release Engineering - 2.4.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Jul 21 2012 Fedora Release Engineering - 2.4.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Feb 08 2011 Fedora Release Engineering - 2.4.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Mon Dec 20 2010 Mike Bonnet - 2.4.4-1 +- update to the 2.4.4 release + +* Mon Oct 18 2010 Mike Bonnet - 2.4.3-1 +- update to the 2.4.3 release + +* Mon Oct 18 2010 Mike Bonnet - 2.4.2.1-3 +- Fix compatibility with Python 2.7 + +* Wed Jul 21 2010 David Malcolm - 2.4.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Mon May 24 2010 Mike Bonnet - 2.4.2.1-1 +- update to the 2.4.2.1 release + +* Thu Jan 14 2010 Mike Bonnet - 2.4.1-3 +- remove unnecessary shebang lines to silence rpmlint + +* Fri Jan 8 2010 Mike Bonnet - 2.4.1-2 +- fix Source url + +* Mon Jan 4 2010 Mike Bonnet - 2.4.1-1 +- update to the 2.4.1 release + +* Tue Oct 20 2009 Mike Bonnet - 2.2.2-2 +- backport significant improvements to utf-8/unicode handling from upstream + +* Mon Sep 14 2009 Mike Bonnet - 2.2.2-1 +- update to the 2.2.2 release +- add dependency on python-markdown for consistency with the egg-info + +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Fri Jun 5 2009 Mike Bonnet - 2.2.1-1 +- update to the 2.2.1 release + +* Mon May 18 2009 Mike Bonnet - 2.2.0-1 +- update to the 2.2.0 release +- remove unneeded importHook() patch, it has been included upstream + +* Thu Feb 26 2009 Fedora Release Engineering - 2.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Dec 1 2008 Toshio Kuratomi - 2.0.1-4 +- Fix cheetah enough that it will pass its unittests on python-2.6. This has + actually been broken since py-2.5 and this fix is only a workaround. + +* Sat Nov 29 2008 Ignacio Vazquez-Abrams - 2.0.1-3 +- Rebuild for Python 2.6 + +* Tue Feb 19 2008 Fedora Release Engineering - 2.0.1-2 +- Autorebuild for GCC 4.3 + +* Tue Dec 4 2007 Mike Bonnet - 2.0.1-1 +- update to the 2.0.1 release + +* Mon Oct 15 2007 Mike Bonnet - 2.0-1 +- update to the 2.0 release + +* Tue Aug 21 2007 Mike Bonnet - 2.0-0.7.rc8 +- rebuild for F8 + +* Thu May 3 2007 Mike Bonnet - 2.0-0.6.rc8 +- bump release for rebuild + +* Mon Apr 23 2007 Mike Bonnet - 2.0-0.5.rc8 +- update to 2.0rc8 + +* Mon Jan 8 2007 Mike Bonnet - 2.0-0.4.rc7 +- use setuptools and install setuptools metadata + +* Sun Dec 10 2006 Mike Bonnet - 2.0-0.3.rc7 +- rebuild against python 2.5 +- remove obsolete python-abi Requires: + +* Mon Sep 11 2006 Mike Bonnet - 2.0-0.2.rc7 +- un-%%ghost .pyo files + +* Thu Jul 13 2006 Mike Bonnet - 2.0-0.1.rc7 +- update to 2.0rc7 +- change %%release format to conform to Extras packaging guidelines + +* Sun May 21 2006 Mike Bonnet - 2.0-0.rc6.0 +- update to 2.0rc6 +- run the included test suite after install + +* Thu Feb 16 2006 Mike Bonnet - 1.0-2 +- Rebuild for Fedora Extras 5 + +* Wed Dec 7 2005 Mike Bonnet - 1.0-1 +- Initial version