Accepting request 992692 from GNOME:Factory
New stable release (forwarded request 990655 from iznogood) OBS-URL: https://build.opensuse.org/request/show/992692 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-gobject?expand=0&rev=92
This commit is contained in:
commit
008b409ea5
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1f34b5f7624de35e44eb5a7eb428353285bd03004d55131a5f7f7fa9b90f3cc9
|
||||
size 557904
|
3
pygobject-3.42.2.tar.xz
Normal file
3
pygobject-3.42.2.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ade8695e2a7073849dd0316d31d8728e15e1e0bc71d9ff6d1c09e86be52bc957
|
||||
size 558724
|
@ -1,3 +1,27 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 22 10:00:02 UTC 2022 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 3.42.2:
|
||||
+ Error out instead of crashing when marshaling unsupported
|
||||
fundamental types in some cases.
|
||||
+ Add a workaround for a PyPy 3.9+ bug when threads are used.
|
||||
+ Fix crashes when marshaling zero terminated arrays for certain
|
||||
item types.
|
||||
+ Fix a crash/refcounting error in case marshaling a hash table
|
||||
fails.
|
||||
+ Make the test suite pass again with PyPy.
|
||||
+ tests: support running tests with (MSVC) CPython 3.8+ on
|
||||
Windows.
|
||||
+ interface: Fix leak when overriding GInterfaceInfo.
|
||||
+ setup.py: look up pycairo headers without importing the module
|
||||
(helps with building on Windows and MSVC CPython 3.8+).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jul 16 22:53:44 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Work around vendored distutils in setuptools >= 60 incorrectly
|
||||
installing pkgconfig files into the wrong libdir
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 9 12:51:17 UTC 2022 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
||||
%global __requires_exclude_from ^%{_libdir}/python.*/site-packages/gi/__init__.py$
|
||||
%define _name pygobject
|
||||
Name: python-gobject
|
||||
Version: 3.42.1
|
||||
Version: 3.42.2
|
||||
Release: 0
|
||||
Summary: Python bindings for GObject
|
||||
License: LGPL-2.1-or-later
|
||||
@ -124,6 +124,12 @@ export CFLAGS="%{optflags}"
|
||||
|
||||
%install
|
||||
%python_install
|
||||
# Incorrectly installed by a python38-setuptools vendored distutils
|
||||
# which does not play well with the distro patched python38.
|
||||
# Later flavors installed the correct files into lib64 as well
|
||||
if [ "%{_libdir}" != "%{_prefix}/lib" -a -d %{buildroot}%{_prefix}/lib/pkgconfig ]; then
|
||||
rm -r %{buildroot}%{_prefix}/lib/pkgconfig
|
||||
fi
|
||||
|
||||
%{python_expand # delete unwanted python scripts and their compiled cache files
|
||||
# Drop pygtkcompat layer - It's useless and we lack other stuff for it to work
|
||||
|
Loading…
Reference in New Issue
Block a user