From a37b545ce2aba502881f64c9763008a655d15635 Mon Sep 17 00:00:00 2001 From: Charalampos Stratakis Date: Tue, 29 Nov 2022 23:01:03 +0100 Subject: [PATCH] RHEL: Convert from Fedora for the Python 3.11 stack in RHEL Resolves: rhbz#2157715 --- python3.11-psycopg2.spec | 538 ++++----------------------------------- 1 file changed, 51 insertions(+), 487 deletions(-) diff --git a/python3.11-psycopg2.spec b/python3.11-psycopg2.spec index 5ab1d68..569b090 100644 --- a/python3.11-psycopg2.spec +++ b/python3.11-psycopg2.spec @@ -1,26 +1,11 @@ -%if 0%{?fedora} - %bcond_without python3 - %bcond_without python3_debug - %if 0%{?fedora} > 31 - %bcond_with python2 - %bcond_with python2_debug - %else - %bcond_without python2 - %bcond_without python2_debug - %endif -%else - %if 0%{?rhel} > 7 - %bcond_with python2 - %bcond_without python3 - %bcond_with python2_debug - %bcond_without python3_debug - %else - %bcond_without python2 - %bcond_with python3 - %bcond_without python2_debug - %bcond_with python3_debug - %endif -%endif +%global __python3 /usr/bin/python3.11 +%global python3_pkgversion 3.11 + +# RHEL python3.11: Python 3 and Python 3 debug enabled, both Python 2 builds disabled +%bcond_without python3 +%bcond_without python3_debug +%bcond_with python2 +%bcond_with python2_debug %bcond_without tests @@ -34,8 +19,8 @@ features offered by PostgreSQL. %global python_runtimes \\\ %{?with_python2:python2} \\\ %{?with_python2_debug:python2-debug} \\\ - %{?with_python3:python3} \\\ - %{?with_python3_debug:python3-debug} + %{?with_python3:python%{python3_pkgversion}} \\\ + %{?with_python3_debug:python%{python3_pkgversion}d} %{!?with_python2:%{!?with_python3:%{error:one python version needed}}} @@ -48,23 +33,22 @@ features offered by PostgreSQL. Summary: %{sum} -Name: python-%{srcname} +Name: python%{python3_pkgversion}-%{srcname} Version: 2.9.3 -Release: 6%{?dist} +Release: 1%{?dist} # The exceptions allow linking to OpenSSL and PostgreSQL's libpq License: LGPLv3+ with exceptions -Url: http://initd.org/psycopg/ +Url: http://initd.org/psycopg/ Source0: http://initd.org/psycopg/tarballs/PSYCOPG-2-8/psycopg2-%{version}.tar.gz %{?with_python2:BuildRequires: python2-devel python2-setuptools} -%{?with_python3:BuildRequires: python3-devel python3-setuptools} +%{?with_python3:BuildRequires: python%{python3_pkgversion}-devel python%{python3_pkgversion}-rpm-macros python%{python3_pkgversion}-setuptools} %{?with_python2_debug:BuildRequires: python2-debug} -%{?with_python3_debug:BuildRequires: python3-debug} +%{?with_python3_debug:BuildRequires: python%{python3_pkgversion}-debug} BuildRequires: gcc BuildRequires: libpq-devel -BuildRequires: python-sphinx # For testsuite %if %{with tests} @@ -114,46 +98,28 @@ build of Python 2. %if %{with python3} -%package -n python3-psycopg2 -Summary: %{sum} 3 -%{?python_provide:%python_provide python3-%{srcname}} - -%description -n python3-psycopg2 -%{desc} - - -%package -n python3-%{srcname}-tests +%package -n python%{python3_pkgversion}-%{srcname}-tests Summary: A testsuite for %sum 2 -Requires: python3-%srcname = %version-%release +Requires: python%{python3_pkgversion}-%{srcname} = %version-%release -%description -n python3-%{srcname}-tests +%description -n python%{python3_pkgversion}-%{srcname}-tests %desc This sub-package delivers set of tests for the adapter. %endif %if %{with python3_debug} -%package -n python3-psycopg2-debug +%package -n python%{python3_pkgversion}-psycopg2-debug Summary: A PostgreSQL database adapter for Python 3 (debug build) # Require base python 3 package, as we're sharing .py/.pyc files: -Requires: python3-psycopg2 = %{version}-%{release} +Requires: python%{python3_pkgversion}-psycopg2 = %{version}-%{release} -%description -n python3-%{srcname}-debug +%description -n python%{python3_pkgversion}-%{srcname}-debug This is a build of the psycopg PostgreSQL database adapter for the debug build of Python 3. %endif -%package doc -Summary: Documentation for psycopg python PostgreSQL database adapter -%{?with_python2:Provides: python2-%{srcname}-doc = %{version}-%{release}} -%{?with_python3:Provides: python3-%{srcname}-doc = %{version}-%{release}} - -%description doc -Documentation and example files for the psycopg python PostgreSQL -database adapter. - - %if %zope %package zope Summary: Zope Database Adapter ZPsycopgDA @@ -182,24 +148,6 @@ for python in %{python_runtimes} ; do $python setup.py build done -# Fix for wrong-file-end-of-line-encoding problem; upstream also must fix this. -for i in `find doc -iname "*.html"`; do sed -i 's/\r//' $i; done -for i in `find doc -iname "*.css"`; do sed -i 's/\r//' $i; done - -# Get rid of a "hidden" file that rpmlint complains about -%{__rm} -f doc/html/.buildinfo - -# We can not build docs now: -# https://www.postgresql.org/message-id/2741387.dvL6Cb0VMB@nb.usersys.redhat.com -# as the bug was sorted, we can build the documentation again - -# Remove design formatting package -sed -i '/better_theme_path/d' doc/src/conf.py -sed -i "/html_theme = 'better'/d" doc/src/conf.py - -make html -C doc/src - - %check %if %{with tests} export PGTESTS_LOCALE=C.UTF-8 @@ -236,7 +184,7 @@ done %if %{with python3} cp -r tests/ %{buildroot}%{python3_sitearch}/%{srcname}/tests/ for i in `find %{buildroot}%{python3_sitearch}/%{srcname}/tests/ -iname "*.py"`; do - sed -i 's|#!/usr/bin/env python|#!/usr/bin/python3|' $i + sed -i 's|#!/usr/bin/env python|#!%{__python3}|' $i done %endif @@ -270,7 +218,7 @@ done %if %{with python3} -%files -n python3-psycopg2 +%files -n python%{python3_pkgversion}-psycopg2 %license LICENSE %doc AUTHORS NEWS README.rst %dir %{python3_sitearch}/psycopg2 @@ -281,23 +229,18 @@ done %{python3_sitearch}/psycopg2-%{version}-py3*.egg-info -%files -n python3-%{srcname}-tests +%files -n python%{python3_pkgversion}-%{srcname}-tests %{python3_sitearch}/psycopg2/tests %endif %if %{with python3_debug} -%files -n python3-psycopg2-debug +%files -n python%{python3_pkgversion}-psycopg2-debug %license LICENSE %{python3_sitearch}/psycopg2/_psycopg.cpython-%{python3_version_nodots}d*.so %endif -%files doc -%license LICENSE -%doc doc/src/_build/html - - %if %zope %files zope %license LICENSE @@ -311,408 +254,29 @@ done %changelog -* Fri Jul 22 2022 Fedora Release Engineering - 2.9.3-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Tue Jun 14 2022 Filip Janus - 2.9.3-5 -- Build directly with libpq-devel - -* Mon Jun 13 2022 Python Maint - 2.9.3-4 -- Rebuilt for Python 3.11 - -* Fri May 13 2022 Ondrej Sloup - 2.9.3-3 -- Remove test test_from_tables failing on s390x -- Make docs - -* Fri Jan 21 2022 Fedora Release Engineering - 2.9.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jan 7 2022 Devrim Gündüz - 2.9.3-1 -- Update to 2.9.3 - -* Tue Aug 03 2021 Filip Januš - 2.9.1-1 -- Update to 2.9.1 - -* Fri Jul 23 2021 Fedora Release Engineering - 2.8.6-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Thu Jun 03 2021 Python Maint - 2.8.6-4 -- Rebuilt for Python 3.10 - -* Mon Feb 08 2021 Pavel Raiskup - 2.8.6-3 -- rebuild for libpq ABI fix rhbz#1908268 - -* Wed Jan 27 2021 Fedora Release Engineering - 2.8.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Thu Sep 17 2020 Patrik Novotný - 2.8.6-1 -- Rebase to upstream version 2.8.6 - -* Wed Jul 29 2020 Fedora Release Engineering - 2.8.5-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Sat May 23 2020 Miro Hrončok - 2.8.5-2 -- Rebuilt for Python 3.9 - -* Tue Apr 21 2020 Patrik Novotný - 2.8.5-1 -- Rebase to upstream version 2.8.5 - -* Thu Jan 30 2020 Fedora Release Engineering - 2.8.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Wed Nov 06 2019 Lumír Balhar - 2.8.4-1 -- New upstream version 2.8.4 -- bcond check renamed to bcond tests - -* Sun Oct 20 2019 Miro Hrončok - 2.8.3-2 -- Package python2-psycopg2 removed on Fedora 32+ (rhbz#1761216) - -* Mon Sep 09 2019 Devrim Gündüz - 2.8.3-1 -- Update to 2.8.3 - -* Mon Sep 09 2019 Miro Hrončok - 2.7.7-5 -- Package python2-psycopg2-debug removed on Fedora 32+ (rhbz#1747670) - -* Fri Aug 16 2019 Miro Hrončok - 2.7.7-4 -- Rebuilt for Python 3.8 - -* Fri Jul 26 2019 Fedora Release Engineering - 2.7.7-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Tue May 14 2019 Miro Hrončok - 2.7.7-2 -- Fixes for 3.8.0a4 rebuild - Resolves: 1693641 - -* Tue Feb 05 2019 Pavel Raiskup - 2.7.7-1 -- update to the latest upstream release - -* Sat Feb 02 2019 Fedora Release Engineering - 2.7.5-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Wed Oct 03 2018 Pavel Raiskup - 2.7.5-5 -- prepare --without=debugrpms option (rhbz#1635166) -- get the python2 packages back for a while (rhbz#1634973) - -* Wed Oct 03 2018 Pavel Raiskup - 2.7.5-4 -- drop python2* on f30+ (rhbz#1634973) -- use proper compiler/linker flags (rhbz#1631713) -- correct the (build)requires - -* Tue Jul 17 2018 Pavel Raiskup - 2.7.5-3 -- standalone installable doc subpackage - -* Sat Jul 14 2018 Fedora Release Engineering - 2.7.5-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Mon Jul 02 2018 Miro Hrončok - 2.7.5-2 -- Rebuilt for Python 3.7 - -* Mon Jun 18 2018 Pavel Raiskup - 2.7.5-1 -- rebase to latest upstream release, per release notes: - http://initd.org/psycopg/articles/2018/06/17/psycopg-275-released/ - -* Sat Jun 16 2018 Miro Hrončok - 2.7.4-5 -- Rebuilt for Python 3.7 - -* Mon May 21 2018 Pavel Raiskup - 2.7.4-4 -- fix for python 3.7, by mhroncok - -* Fri Apr 13 2018 Pavel Raiskup - 2.7.4-3 -- depend on postgresql-test-rpm-macros - -* Fri Apr 13 2018 Pavel Raiskup - 2.7.4-2 -- re-enable testsuite - -* Mon Feb 12 2018 Pavel Raiskup - 2.7.4-1 -- rebase to latest upstream release, per release notes: - http://initd.org/psycopg/articles/2018/02/08/psycopg-274-released/ - -* Fri Feb 09 2018 Fedora Release Engineering - 2.7.3.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Dec 14 2017 Pavel Raiskup - 2.7.3.2-2 -- treat python3/python2 equally - -* Wed Oct 25 2017 Pavel Raiskup - 2.7.3.2-1 -- update to 2.7.3.2, per release notes: - http://initd.org/psycopg/articles/2017/10/24/psycopg-2732-released/ - -* Mon Aug 28 2017 Pavel Raiskup - 2.7.3.1-1 -- http://initd.org/psycopg/articles/2017/08/26/psycopg-2731-released/ - -* Sun Aug 13 2017 Pavel Raiskup - 2.7.3-1 -- rebase to latest upstream release, per release notes: - http://initd.org/psycopg/articles/2017/07/24/psycopg-273-released/ - -* Thu Aug 03 2017 Fedora Release Engineering - 2.7.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 2.7.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Sun Jul 23 2017 Pavel Raiskup - 2.7.2-1 -- rebase to latest upstream release, per release notes: - http://initd.org/psycopg/articles/2017/07/22/psycopg-272-released/ - -* Mon Mar 13 2017 Pavel Raiskup - 2.7.1-1 -- rebase to latest upstream release, per release notes: - http://initd.org/psycopg/articles/2017/03/01/psycopg-271-released/ -- fix testsuite - -* Thu Mar 02 2017 Pavel Raiskup - 2.7-1 -- rebase to latest upstream release, per release notes: - http://initd.org/psycopg/articles/2017/03/01/psycopg-27-released/ -- enable testsuite during build, and package it - -* Sat Feb 11 2017 Fedora Release Engineering - 2.6.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Fri Dec 09 2016 Charalampos Stratakis - 2.6.2-3 -- Rebuild for Python 3.6 - -* Tue Jul 19 2016 Fedora Release Engineering - 2.6.2-2 -- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages - -* Thu Jul 07 2016 Pavel Raiskup - 2.6.2-1 -- rebase (rhbz#1353545), per release notes - http://initd.org/psycopg/articles/2016/07/07/psycopg-262-released/ - -* Sun May 29 2016 Pavel Raiskup - 2.6.1-6 -- provide python2-psycopg2 (rhbz#1306025) -- cleanup obsoleted packaging stuff - -* Thu Feb 04 2016 Fedora Release Engineering - 2.6.1-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Sun Nov 15 2015 Pavel Raiskup - 2.6.1-4 -- again bump for new Python 3.5, not build previously? -- fix rpmlint issues -- no pyo files with python 3.5 - -* Tue Nov 10 2015 Fedora Release Engineering -- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 - -* Thu Jun 18 2015 Fedora Release Engineering - 2.6.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Mon Jun 15 2015 Jozef Mlich 2.6.1-1 -- Update to 2.6.1 - -* Mon Feb 9 2015 Devrim Gündüz 2.6-1 -- Update to 2.6, per changes described at: - http://www.psycopg.org/psycopg/articles/2015/02/09/psycopg-26-and-255-released/ - -* Tue Jan 13 2015 Devrim Gündüz 2.5.4-1 -- Update to 2.5.4, per changes described at: - http://www.psycopg.org/psycopg/articles/2014/08/30/psycopg-254-released - -* Sun Aug 17 2014 Fedora Release Engineering - 2.5.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Fri Jul 04 2014 Pavel Raiskup - 2.5.3-1 -- rebase to most recent upstream version, per release notes: - http://www.psycopg.org/psycopg/articles/2014/05/13/psycopg-253-released/ - -* Sat Jun 07 2014 Fedora Release Engineering - 2.5.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Tue May 13 2014 Bohuslav Kabrda - 2.5.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 - -* Tue Jan 7 2014 Devrim Gündüz 2.5.2-1 -- Update to 2.5.2, per changes described at: - http://www.psycopg.org/psycopg/articles/2014/01/07/psycopg-252-released - -* Sun Aug 04 2013 Fedora Release Engineering - 2.5.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Sun Jul 07 2013 Pavel Raiskup - 2.5.1-1 -- rebase to 2.5.1 - -* Thu May 16 2013 Devrim Gündüz 2.5-1 -- Update to 2.5, per changes described at: - http://www.psycopg.org/psycopg/articles/2013/04/07/psycopg-25-released/ - -* Thu Feb 14 2013 Fedora Release Engineering - 2.4.5-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Sat Aug 04 2012 David Malcolm - 2.4.5-6 -- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3 - -* Fri Aug 3 2012 David Malcolm - 2.4.5-5 -- generalize python 3 fileglobbing to work with both Python 3.2 and 3.3 - -* Fri Aug 3 2012 David Malcolm - 2.4.5-4 -- replace "python3.2dmu" with "python3-debug"; with_python3 fixes - -* Fri Aug 3 2012 David Malcolm - 2.4.5-3 -- add with_python3 conditional - -* Sat Jul 21 2012 Fedora Release Engineering - 2.4.5-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Apr 7 2012 Tom Lane 2.4.5-1 -- Update to 2.4.5 - -* Thu Feb 2 2012 Tom Lane 2.4.4-1 -- Update to 2.4.4 -- More specfile neatnik-ism - -* Sat Jan 14 2012 Fedora Release Engineering - 2.4.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Tue Nov 29 2011 Tom Lane 2.4.2-2 -- Fix mistaken %%dir marking on python3 files, per Dan Horak - -* Sat Jun 18 2011 Tom Lane 2.4.2-1 -- Update to 2.4.2 -Related: #711095 -- Some neatnik specfile cleanups - -* Thu Feb 10 2011 David Malcolm - 2.4-0.beta2 -- 2.4.0-beta2 -- add python 2 debug, python3 (optimized) and python3-debug subpackages - -* Tue Feb 08 2011 Fedora Release Engineering - 2.3.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Wed Dec 29 2010 Tom Lane 2.3.2-1 -- Update to 2.3.2 -- Clean up a few rpmlint warnings - -* Fri Dec 03 2010 Jason L Tibbitts III - 2.2.2-3 -- Fix incorrect (and invalid) License: tag. - -* Thu Jul 22 2010 David Malcolm - 2.2.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild - -* Tue Jul 20 2010 Devrim GUNDUZ - 2.2.2-1 -- Update to 2.2.2 - -* Tue May 18 2010 Devrim GUNDUZ - 2.2.1-1 -- Update to 2.2.1 -- Improve description for 2.2 features. -- Changelog for 2.2.0 is: - http://initd.org/pub/software/psycopg/ChangeLog-2.2 - -* Wed Mar 17 2010 Devrim GUNDUZ - 2.0.14-1 -- Update to 2.0.14 -- Update license (upstream switched to LGPL3) - -* Sun Jan 24 2010 Tom Lane 2.0.13-2 -- Fix rpmlint complaints: remove unneeded explicit Requires:, use Conflicts: - instead of bogus Obsoletes: to indicate lack of zope subpackage - -* Sun Oct 18 2009 Devrim GUNDUZ - 2.0.13-1 -- Update to 2.0.13 - -* Fri Aug 14 2009 Devrim GUNDUZ - 2.0.12-1 -- Update to 2.0.12 - -* Sun Jul 26 2009 Fedora Release Engineering - 2.0.11-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Tue May 19 2009 Devrim GUNDUZ - 2.0.11-1 -- Update to 2.0.11 - -* Tue Apr 21 2009 Devrim GUNDUZ - 2.0.10-1 -- Update to 2.0.10 - -* Fri Mar 20 2009 Devrim GUNDUZ - 2.0.9-1 -- Update to 2.0.9 - -* Thu Feb 26 2009 Fedora Release Engineering - 2.0.8-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Thu Dec 04 2008 Ignacio Vazquez-Abrams - 2.0.8-2 -- Rebuild for Python 2.6 - -* Sat Nov 29 2008 Devrim GUNDUZ - 2.0.8-1 -- Update to 2.0.8 - -* Sat Nov 29 2008 Devrim GUNDUZ - 2.0.8-1 -- Update to 2.0.8 - -* Sat Nov 29 2008 Ignacio Vazquez-Abrams - 2.0.7-3 -- Rebuild for Python 2.6 - -* Thu May 29 2008 Todd Zullinger - 2.0.7-2 -- fix license tags - -* Wed Apr 30 2008 Devrim GUNDUZ 2.0.7-1 -- Update to 2.0.7 - -* Mon Feb 18 2008 Fedora Release Engineering - 2.0.6-4.1 -- Autorebuild for GCC 4.3 - -* Mon Jan 21 2008 - Devrim GUNDUZ 2.0.6-3.1 -- Rebuilt against PostgreSQL 8.3 - -* Thu Jan 3 2008 - Devrim GUNDUZ 2.0.6-3 -- Rebuild for rawhide changes - -* Tue Aug 28 2007 Fedora Release Engineering - 2.0.6-2 -- Rebuild for selinux ppc32 issue. - -* Fri Jun 15 2007 - Devrim GUNDUZ 2.0.6-1 -- Update to 2.0.6 - -* Thu Apr 26 2007 - Devrim GUNDUZ 2.0.5.1-8 -- Disabled zope package temporarily. - -* Wed Dec 6 2006 - Devrim GUNDUZ 2.0.5.1-7 -- Rebuilt - -* Wed Dec 6 2006 - Devrim GUNDUZ 2.0.5.1-5 -- Bumped up spec version - -* Wed Dec 6 2006 - Devrim GUNDUZ 2.0.5.1-4 -- Rebuilt for PostgreSQL 8.2.0 - -* Mon Sep 11 2006 - Devrim GUNDUZ 2.0.5.1-3 -- Rebuilt - -* Wed Sep 6 2006 - Devrim GUNDUZ 2.0.5.1-2 -- Remove ghost'ing, per Python Packaging Guidelines - -* Mon Sep 4 2006 - Devrim GUNDUZ 2.0.5.1-1 -- Update to 2.0.5.1 - -* Sun Aug 6 2006 - Devrim GUNDUZ 2.0.3-3 -- Fixed zope package dependencies and macro definition, per bugzilla review (#199784) -- Fixed zope package directory ownership, per bugzilla review (#199784) -- Fixed cp usage for zope subpackage, per bugzilla review (#199784) - -* Mon Jul 31 2006 - Devrim GUNDUZ 2.0.3-2 -- Fixed 64 bit builds -- Fixed license -- Added Zope subpackage -- Fixed typo in doc description -- Added macro for zope subpackage dir - -* Mon Jul 31 2006 - Devrim GUNDUZ 2.0.3-1 -- Update to 2.0.3 -- Fixed spec file, per bugzilla review (#199784) - -* Sat Jul 22 2006 - Devrim GUNDUZ 2.0.2-3 -- Removed python dependency, per bugzilla review. (#199784) -- Changed doc package group, per bugzilla review. (#199784) -- Replaced dos2unix with sed, per guidelines and bugzilla review (#199784) -- Fix changelog dates - -* Sat Jul 22 2006 - Devrim GUNDUZ 2.0.2-2 -- Added dos2unix to buildrequires -- removed python related part from package name - -* Fri Jul 21 2006 - Devrim GUNDUZ 2.0.2-1 -- Fix rpmlint errors, including dos2unix solution -- Re-engineered spec file - -* Mon Jan 23 2006 - Devrim GUNDUZ -- First 2.0.X build - -* Mon Jan 23 2006 - Devrim GUNDUZ -- Update to 1.2.21 - -* Tue Dec 06 2005 - Devrim GUNDUZ -- Initial release for 1.1.20 +* Tue Nov 29 2022 Charalampos Stratakis - 2.9.3-1 +- Initial package +- Fedora contributions by: + Bill Nottingham + Charalampos Stratakis + David Malcolm + Dennis Gilmore + Devrim GÜNDÜZ + Filip Januš + Honza Horak + Ignacio Vazquez-Abrams + Igor Gnatenko + Jason Tibbitts + Jesse Keating + Jozef Mlich + Lumir Balhar + Miro Hrončok + Ondřej Sloup + Patrik Novotný + Pavel Raiskup + Peter Robinson + Petr Kubat + Slavek Kabrda + Todd Zullinger + Tomas Hrnciar + Tom Lane