python-pyqt5-sip package is retired on branch c10s for BAKERY-412
This commit is contained in:
parent
0a67d370b5
commit
2ac1af8e9f
6
.gitignore
vendored
6
.gitignore
vendored
@ -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
|
|
1
dead.package
Normal file
1
dead.package
Normal file
@ -0,0 +1 @@
|
|||||||
|
python-pyqt5-sip package is retired on branch c10s for BAKERY-412
|
@ -1,31 +0,0 @@
|
|||||||
|
|
||||||
# HG changeset patch
|
|
||||||
# User Phil Thompson <phil@riverbankcomputing.com>
|
|
||||||
# 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);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -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 <swt@techie.net> - 12.12.1-3
|
|
||||||
- Fix segfault at exit with Python 3.12
|
|
||||||
|
|
||||||
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 12.12.1-2
|
|
||||||
- Rebuilt for Python 3.12
|
|
||||||
|
|
||||||
* Wed Apr 26 2023 Scott Talbert <swt@techie.net> - 12.12.1-1
|
|
||||||
- Update to new upstream release 12.12.1 (#2185558)
|
|
||||||
|
|
||||||
* Tue Jan 31 2023 Scott Talbert <swt@techie.net> - 12.11.1-1
|
|
||||||
- Update to new upstream release 12.11.1 (#2165212)
|
|
||||||
- Modernize python packaging
|
|
||||||
|
|
||||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 12.11.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 12.11.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 20 2022 Scott Talbert <swt@techie.net> - 12.11.0-1
|
|
||||||
- Update to new upstream release 12.11.0 (#2074708)
|
|
||||||
|
|
||||||
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 12.9.1-3
|
|
||||||
- Rebuilt for Python 3.11
|
|
||||||
|
|
||||||
* Sat Mar 12 2022 Scott Talbert <swt@techie.net> - 12.9.1-2
|
|
||||||
- Fix FTBFS with Python 3.11.0a6 (#2062145)
|
|
||||||
|
|
||||||
* Fri Feb 18 2022 Scott Talbert <swt@techie.net> - 12.9.1-1
|
|
||||||
- Update to new upstream release 12.9.1 (#2049165)
|
|
||||||
|
|
||||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 12.9.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 12.9.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 10 2021 Scott Talbert <swt@techie.net> - 12.9.0-1
|
|
||||||
- Update to latest upstream release for sip 6
|
|
||||||
|
|
||||||
* Tue Jul 06 2021 Scott Talbert <swt@techie.net> - 12.8.1-2
|
|
||||||
- Correct sip-api provides (#1979409)
|
|
||||||
|
|
||||||
* Mon May 24 2021 Scott Talbert <swt@techie.net> - 12.8.1-1
|
|
||||||
- Initial package
|
|
Loading…
Reference in New Issue
Block a user