Compare commits
10 Commits
162849168e
...
0ab95f215e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0ab95f215e | ||
|
|
05249ae363 | ||
|
|
a2f0304998 | ||
|
|
3223a3abc0 | ||
|
|
7034ad6a47 | ||
|
|
0d7f287d9a | ||
|
|
9e09ad318d | ||
|
|
c20e69c308 | ||
|
|
f34849696e | ||
|
|
a532cb3979 |
48
huawei-fix-sender_seen-memory-leak.patch
Normal file
48
huawei-fix-sender_seen-memory-leak.patch
Normal file
@ -0,0 +1,48 @@
|
||||
From 48c8032695fedbd92bb24a2c2d4c3a4d83732409 Mon Sep 17 00:00:00 2001
|
||||
From: zhuofeng <zhuofeng2@huawei.com>
|
||||
Date: Mon, 6 Mar 2023 15:19:06 +0800
|
||||
Subject: [PATCH] fix sender_seen memory leak
|
||||
|
||||
---
|
||||
slip/dbus/service.py | 17 +++++++++--------
|
||||
1 file changed, 9 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/slip/dbus/service.py b/slip/dbus/service.py
|
||||
index 5d276f8..bf4cb77 100644
|
||||
--- a/slip/dbus/service.py
|
||||
+++ b/slip/dbus/service.py
|
||||
@@ -224,11 +224,12 @@ class Object(with_metaclass(InterfaceType, dbus.service.Object)):
|
||||
if not new_owner and (old_owner, conn) in Object.senders:
|
||||
Object.senders.remove((old_owner, conn))
|
||||
Object.connections_senders[conn].remove(old_owner)
|
||||
+ if old_owner in Object.connections_smobjs:
|
||||
+ Object.connections_smobjs[old_owner].remove()
|
||||
+ del Object.connections_smobjs[old_owner]
|
||||
|
||||
if len(Object.connections_senders[conn]) == 0:
|
||||
- Object.connections_smobjs[conn].remove()
|
||||
del Object.connections_senders[conn]
|
||||
- del Object.connections_smobjs[conn]
|
||||
|
||||
if not self.persistent and len(Object.senders) == 0 and \
|
||||
Object.current_source is None:
|
||||
@@ -251,10 +252,10 @@ class Object(with_metaclass(InterfaceType, dbus.service.Object)):
|
||||
Object.senders.add((sender, self.connection))
|
||||
if self.connection not in Object.connections_senders:
|
||||
Object.connections_senders[self.connection] = set()
|
||||
- Object.connections_smobjs[self.connection] = \
|
||||
- self.connection.add_signal_receiver(
|
||||
- handler_function=self._name_owner_changed,
|
||||
- signal_name='NameOwnerChanged',
|
||||
- dbus_interface='org.freedesktop.DBus',
|
||||
- arg1=sender)
|
||||
+ Object.connections_smobjs[sender] = \
|
||||
+ self.connection.add_signal_receiver(
|
||||
+ handler_function=self._name_owner_changed,
|
||||
+ signal_name='NameOwnerChanged',
|
||||
+ dbus_interface='org.freedesktop.DBus',
|
||||
+ arg1=sender)
|
||||
Object.connections_senders[self.connection].add(sender)
|
||||
--
|
||||
2.27.0
|
||||
|
||||
@ -1,31 +1,21 @@
|
||||
Name: python-slip
|
||||
Version: 0.6.5
|
||||
Release: 3
|
||||
Release: 7
|
||||
Summary: Library for Python 2.x with Convenience, extension and workaround
|
||||
License: GPLv2+
|
||||
URL: https://github.com/nphilipp/%{name}
|
||||
Source0: https://github.com/nphilipp/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.bz2
|
||||
|
||||
Patch9000: huawei-fix-sender_seen-memory-leak.patch
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python2 python2-devel python3 python3-devel
|
||||
BuildRequires: python3 python3-devel
|
||||
|
||||
%description
|
||||
The Simple Library for Python 2.x and Python 3.x packages contain
|
||||
miscellaneous code for convenience, extension and workaround purposes.
|
||||
This package provides the "slip" and the "slip.util" modules.
|
||||
|
||||
%package -n python2-slip
|
||||
Summary: Convenience, extension and workaround code for Python 2.x
|
||||
Requires: python2-libselinux python2-six python2-decorator
|
||||
Requires: python2-slip = %{version}-%{release}
|
||||
Requires: python2-dbus >= 0.80
|
||||
%{?python_provide:%python_provide python2-slip}
|
||||
%{?python_provide:%python_provide python2-slip-dbus}
|
||||
Obsoletes: python2-slip-dbus
|
||||
|
||||
%description -n python2-slip
|
||||
Slip for Python 2.x packages
|
||||
|
||||
%package -n python3-slip
|
||||
Summary: Convenience, extension and workaround code for Python 3.x
|
||||
Requires: python3-libselinux python3-decorator python3-six
|
||||
@ -38,46 +28,16 @@ Obsoletes: python3-slip-dbus
|
||||
%description -n python3-slip
|
||||
Slip for Python 3.x packages
|
||||
|
||||
%package -n python2-slip-gtk
|
||||
Summary: Code to make auto-wrapping gtk labels
|
||||
Requires: python2-slip = %{version}-%{release}
|
||||
Requires: pygtk2
|
||||
%{?python_provide:%python_provide python2-slip-gtk}
|
||||
|
||||
%description -n python2-slip-gtk
|
||||
Auto-wrapping function for Python 2.x packages
|
||||
|
||||
%prep
|
||||
%autosetup
|
||||
%autosetup -n %{name}-%{version} -p1
|
||||
|
||||
rm -rf %{py3dir}
|
||||
cp -a . %{py3dir}
|
||||
find %{py3dir} -name '*.py' -o -name '*.py.in' | xargs sed -i '1s|^#!python|#!%{__python3}|'
|
||||
find . -name '*.py' -o -name '*.py.in' | xargs sed -i '1s|^#!python|#!%{__python3}|'
|
||||
|
||||
%build
|
||||
%make_build PYTHON=%{__python2}
|
||||
|
||||
cd %{py3dir}
|
||||
%make_build PYTHON=%{__python3}
|
||||
cd ..
|
||||
|
||||
%install
|
||||
%make_install PYTHON=%{__python2}
|
||||
|
||||
cd %{py3dir}
|
||||
%make_install PYTHON=%{__python3}
|
||||
cd ..
|
||||
|
||||
%files -n python2-slip
|
||||
%doc doc/dbus
|
||||
%license COPYING
|
||||
%dir %{python2_sitelib}/slip/
|
||||
%{python2_sitelib}/slip/__init__.py*
|
||||
%{python2_sitelib}/slip/util
|
||||
%{python2_sitelib}/slip/_wrappers
|
||||
%{python2_sitelib}/slip/dbus
|
||||
%{python2_sitelib}/slip*-%{version}-py%{python2_version}.egg-info
|
||||
%exclude %{python2_sitelib}/slip.gtk-%{version}-py%{python2_version}.egg-info
|
||||
|
||||
%files -n python3-slip
|
||||
%doc doc/dbus
|
||||
@ -90,11 +50,25 @@ cd ..
|
||||
%{python3_sitelib}/slip/dbus
|
||||
%{python3_sitelib}/slip*-%{version}-py%{python3_version}.egg-info
|
||||
|
||||
%files -n python2-slip-gtk
|
||||
%{python2_sitelib}/slip/gtk
|
||||
%{python2_sitelib}/slip.gtk-%{version}-py%{python2_version}.egg-info
|
||||
|
||||
%changelog
|
||||
* Tue Mar 14 2023 zhuofeng <zhuofeng@huawei.com> - 0.6.5-7
|
||||
- Type:bugfix
|
||||
- CVE:NA
|
||||
- SUG:NA
|
||||
- DESC:fix sender_seen memory leak
|
||||
|
||||
* Thu Oct 27 2022 zhangruifang <zhangruifang1@h-partners.com> - 0.6.5-6
|
||||
- Rebuild for next release
|
||||
|
||||
* Wed Nov 4 2020 wangjie<wangjie294@huawei.com> -0.6.5-5
|
||||
- Type:NA
|
||||
- ID:NA
|
||||
- SUG:NA
|
||||
- DESC:remove python2
|
||||
|
||||
* Sat Jan 11 2020 openEuler Buildteam <buildteam@openeuler.org> - 0.6.5-4
|
||||
- provides python2-slip-dbus
|
||||
|
||||
* Fri Oct 18 2019 Yufa Fang <fangyufa1@huawei.com> - 0.6.5-3
|
||||
- Type:bugfix
|
||||
- ID:NA
|
||||
|
||||
4
python-slip.yaml
Normal file
4
python-slip.yaml
Normal file
@ -0,0 +1,4 @@
|
||||
version_control: github
|
||||
src_repo: nphilipp/python-slip
|
||||
tag_prefix: ^python-slip-
|
||||
seperator: .
|
||||
Loading…
x
Reference in New Issue
Block a user