diff --git a/.gitignore b/.gitignore deleted file mode 100644 index a184fa7..0000000 --- a/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -/PyQt5_sip-12.8.1.tar.gz -/PyQt5_sip-12.9.0.tar.gz -/PyQt5_sip-12.9.1.tar.gz -/PyQt5_sip-12.11.0.tar.gz -/PyQt5_sip-12.11.1.tar.gz -/PyQt5_sip-12.12.1.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index fbbbcb0..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# python-pyqt5-sip - -The python-pyqt5-sip package diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..d1ba9eb --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +python-pyqt5-sip package is retired on branch c10s for BAKERY-412 \ No newline at end of file diff --git a/fix-py3.12-segfault-at-exit.patch b/fix-py3.12-segfault-at-exit.patch deleted file mode 100644 index 9fceb00..0000000 --- a/fix-py3.12-segfault-at-exit.patch +++ /dev/null @@ -1,31 +0,0 @@ - -# HG changeset patch -# User Phil Thompson -# Date 1686925181 -3600 -# Node ID 312476401030130daed2eecfd1c93413f49e4458 -# Parent 88452293f4e4cdc9d22cb5dfca02ba83216f662b -sipMalloc() and sipFree() are now implemented using PyMem_RawMalloc() and -PyMem_RawFree() so that they should be safe to call from functions registered -with Py_AtExit(). - -diff -r 88452293f4e4 -r 312476401030 sipbuild/module/source/12/siplib.c ---- a/siplib.c Thu Jun 08 14:30:02 2023 +0100 -+++ b/siplib.c Fri Jun 16 15:19:41 2023 +0100 -@@ -2147,7 +2147,7 @@ - { - void *mem; - -- if ((mem = PyMem_Malloc(nbytes)) == NULL) -+ if ((mem = PyMem_RawMalloc(nbytes)) == NULL) - PyErr_NoMemory(); - - return mem; -@@ -2159,7 +2159,7 @@ - */ - void sip_api_free(void *mem) - { -- PyMem_Free(mem); -+ PyMem_RawFree(mem); - } - - diff --git a/python-pyqt5-sip.spec b/python-pyqt5-sip.spec deleted file mode 100644 index 2cf1513..0000000 --- a/python-pyqt5-sip.spec +++ /dev/null @@ -1,99 +0,0 @@ -%global pkg_name pyqt5-sip -%global pypi_name PyQt5_sip -%global _sip_api_major 12 -%global _sip_api_minor 12 -%global _sip_api %{_sip_api_major}.%{_sip_api_minor} - -Name: python-%{pkg_name} -Version: 12.12.1 -Release: 3%{?dist} -Summary: The sip module support for PyQt5 - -License: GPLv2 or GPLv3 -URL: https://www.riverbankcomputing.com/software/sip/ -Source0: %{pypi_source} -Patch0: fix-py3.12-segfault-at-exit.patch - -BuildRequires: gcc -BuildRequires: python3-devel - -%global _description %{expand: -The sip extension module provides support for the PyQt5 package. -} - -%description %_description - -%package -n python3-%{pkg_name} -Summary: %{summary} -%{?python_provide:%python_provide python3-%{pkg_name}} -Provides: python3-pyqt5-sip-api(%{_sip_api_major}) = %{_sip_api} -Provides: python3-pyqt5-sip-api(%{_sip_api_major})%{?_isa} = %{_sip_api} - -%description -n python3-%{pkg_name} %_description - -%prep -%autosetup -n %{pypi_name}-%{version} - -%generate_buildrequires -%pyproject_buildrequires - -%build -%pyproject_wheel - -%install -%pyproject_install - -%check -%py3_check_import PyQt5.sip - -%files -n python3-%{pkg_name} -%doc README -%{python3_sitearch}/PyQt5_sip* -%{python3_sitearch}/PyQt5/ - -%changelog -* Fri Jun 16 2023 Scott Talbert - 12.12.1-3 -- Fix segfault at exit with Python 3.12 - -* Tue Jun 13 2023 Python Maint - 12.12.1-2 -- Rebuilt for Python 3.12 - -* Wed Apr 26 2023 Scott Talbert - 12.12.1-1 -- Update to new upstream release 12.12.1 (#2185558) - -* Tue Jan 31 2023 Scott Talbert - 12.11.1-1 -- Update to new upstream release 12.11.1 (#2165212) -- Modernize python packaging - -* Fri Jan 20 2023 Fedora Release Engineering - 12.11.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Fri Jul 22 2022 Fedora Release Engineering - 12.11.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Wed Jul 20 2022 Scott Talbert - 12.11.0-1 -- Update to new upstream release 12.11.0 (#2074708) - -* Mon Jun 13 2022 Python Maint - 12.9.1-3 -- Rebuilt for Python 3.11 - -* Sat Mar 12 2022 Scott Talbert - 12.9.1-2 -- Fix FTBFS with Python 3.11.0a6 (#2062145) - -* Fri Feb 18 2022 Scott Talbert - 12.9.1-1 -- Update to new upstream release 12.9.1 (#2049165) - -* Fri Jan 21 2022 Fedora Release Engineering - 12.9.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jul 23 2021 Fedora Release Engineering - 12.9.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Sat Jul 10 2021 Scott Talbert - 12.9.0-1 -- Update to latest upstream release for sip 6 - -* Tue Jul 06 2021 Scott Talbert - 12.8.1-2 -- Correct sip-api provides (#1979409) - -* Mon May 24 2021 Scott Talbert - 12.8.1-1 -- Initial package diff --git a/sources b/sources deleted file mode 100644 index 47a83d7..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (PyQt5_sip-12.12.1.tar.gz) = 683e7164a55070d3473a5b7f1a6b2aa6a42ca78b97f78d5f6b9dc55fc8a0007993e74762766838bb42a097e924bfa00c1fc112db1d98ad2c55c97165d5eeac78