From a420e4a1546ceeeb98a987e4f9f029ffbbf9a4700c8bebe88676614639587c47 Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Thu, 31 Mar 2011 13:55:51 +0000 Subject: [PATCH 1/5] Updating link to change in openSUSE:Factory/python-setproctitle revision 7.0 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setproctitle?expand=0&rev=9c3542c72bd695e2a57dd543429ae29f --- python-setproctitle.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python-setproctitle.spec b/python-setproctitle.spec index e9df2ac..0c8ee89 100644 --- a/python-setproctitle.spec +++ b/python-setproctitle.spec @@ -15,6 +15,7 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} @@ -22,7 +23,7 @@ Name: python-setproctitle Version: 1.1 -Release: 0 +Release: 6 License: BSD3c Summary: Python module to allow customization of the process title Url: http://pypi.python.org/pypi/setproctitle/ From b91939221a42faceca2687177e25c67ea8abeae41d10cc1265a6487a04f664cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= Date: Thu, 7 Apr 2011 23:58:12 +0000 Subject: [PATCH 2/5] Accepting request 66473 from home:jengelh:dev OBS-URL: https://build.opensuse.org/request/show/66473 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setproctitle?expand=0&rev=8 --- python-setproctitle.changes | 5 ++++ python3-setproctitle.spec | 54 +++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 python3-setproctitle.spec diff --git a/python-setproctitle.changes b/python-setproctitle.changes index ac9ce7e..4c1bff1 100644 --- a/python-setproctitle.changes +++ b/python-setproctitle.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Apr 4 14:50:32 UTC 2011 - jengelh@medozas.de + +- Provide python3 spec file + ------------------------------------------------------------------- Tue Mar 29 13:48:10 UTC 2011 - saschpe@suse.de diff --git a/python3-setproctitle.spec b/python3-setproctitle.spec new file mode 100644 index 0000000..eeb8c35 --- /dev/null +++ b/python3-setproctitle.spec @@ -0,0 +1,54 @@ +# +# spec file for package python-setproctitle (Version 1.1) +# +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +%define modname setproctitle + +Name: python3-setproctitle +Version: 1.1 +Release: 1 +License: BSD3c +Summary: Python module to allow customization of the process title +Url: http://pypi.python.org/pypi/setproctitle/ +Group: Development/Libraries/Python +Source: %{modname}-%{version}.tar.bz2 +BuildRequires: python3-devel +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +Changing the title is mostly useful in multi-process systems, for example when +a master process is forked: changing the children's title allows to identify +the task each process is busy with. The technique is used by PostgreSQL and +the OpenSSH Server for example. + +%prep +%setup -q -n %{modname}-%{version} + +%build +export CFLAGS="%{optflags}" +python3 setup.py build + +%install +python3 setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES + +%clean +rm -rf %{buildroot} + +%files -f INSTALLED_FILES +%defattr(-,root,root) + +%changelog From 43a4f2422c26fd38a16ee1ac73196212a95fc247ac73571425108de430b88b56 Mon Sep 17 00:00:00 2001 From: Pascal Bleser Date: Mon, 12 Dec 2011 11:02:24 +0000 Subject: [PATCH 3/5] remove %debug_package OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setproctitle?expand=0&rev=9 --- python3-setproctitle.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python3-setproctitle.spec b/python3-setproctitle.spec index eeb8c35..e2a1577 100644 --- a/python3-setproctitle.spec +++ b/python3-setproctitle.spec @@ -1,7 +1,7 @@ # -# spec file for package python-setproctitle (Version 1.1) +# spec file for package python3-setproctitle # -# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed From aa372e4bfc08eafaf433561d2972ad841e483cf1c70503db218559781441fd72 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Wed, 11 Jan 2012 10:07:40 +0000 Subject: [PATCH 4/5] Accepting request 99643 from home:namtrac:bugfix - Update to v1.1.3 * Don't clobber environ if the variable SPT_NOENV is set * Fixed segfault when the module is imported under vim (bnc#739242) OBS-URL: https://build.opensuse.org/request/show/99643 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setproctitle?expand=0&rev=10 --- python-setproctitle.changes | 7 +++++++ python-setproctitle.spec | 16 ++++++---------- python3-setproctitle.spec | 13 ++++++------- setproctitle-1.1.3.tar.gz | 3 +++ setproctitle-1.1.tar.bz2 | 3 --- 5 files changed, 22 insertions(+), 20 deletions(-) create mode 100644 setproctitle-1.1.3.tar.gz delete mode 100644 setproctitle-1.1.tar.bz2 diff --git a/python-setproctitle.changes b/python-setproctitle.changes index 4c1bff1..def09a9 100644 --- a/python-setproctitle.changes +++ b/python-setproctitle.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jan 10 14:11:01 UTC 2012 - idonmez@suse.com + +- Update to v1.1.3 + * Don't clobber environ if the variable SPT_NOENV is set + * Fixed segfault when the module is imported under vim (bnc#739242) + ------------------------------------------------------------------- Mon Apr 4 14:50:32 UTC 2011 - jengelh@medozas.de diff --git a/python-setproctitle.spec b/python-setproctitle.spec index 0c8ee89..79e7479 100644 --- a/python-setproctitle.spec +++ b/python-setproctitle.spec @@ -1,7 +1,7 @@ # # spec file for package python-setproctitle # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -15,20 +15,19 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # - %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} %define mod_name setproctitle Name: python-setproctitle -Version: 1.1 -Release: 6 -License: BSD3c +Version: 1.1.3 +Release: 0 Summary: Python module to allow customization of the process title -Url: http://pypi.python.org/pypi/setproctitle/ +License: BSD-3-Clause Group: Development/Libraries/Python -Source: %{mod_name}-%{version}.tar.bz2 +Url: http://pypi.python.org/pypi/setproctitle/ +Source: http://pypi.python.org/packages/source/s/setproctitle/setproctitle-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python-devel %if 0%{?suse_version} @@ -51,9 +50,6 @@ python setup.py build %install python setup.py install --prefix=%{_prefix} --root=%{buildroot} -%clean -rm -rf %{buildroot} - %files %defattr(-,root,root) %doc COPYRIGHT HISTORY README diff --git a/python3-setproctitle.spec b/python3-setproctitle.spec index e2a1577..766772b 100644 --- a/python3-setproctitle.spec +++ b/python3-setproctitle.spec @@ -1,7 +1,7 @@ # # spec file for package python3-setproctitle # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -15,17 +15,16 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # - %define modname setproctitle Name: python3-setproctitle -Version: 1.1 -Release: 1 -License: BSD3c +Version: 1.1.3 +Release: 0 Summary: Python module to allow customization of the process title -Url: http://pypi.python.org/pypi/setproctitle/ +License: BSD-3-Clause Group: Development/Libraries/Python -Source: %{modname}-%{version}.tar.bz2 +Url: http://pypi.python.org/pypi/setproctitle/ +Source: http://pypi.python.org/packages/source/s/setproctitle/setproctitle-%{version}.tar.gz BuildRequires: python3-devel BuildRoot: %{_tmppath}/%{name}-%{version}-build diff --git a/setproctitle-1.1.3.tar.gz b/setproctitle-1.1.3.tar.gz new file mode 100644 index 0000000..47f9a12 --- /dev/null +++ b/setproctitle-1.1.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af97eb01a2febb810a08b46f7f53b460c1eda6beba07895c13ebe756f422306 +size 19286 diff --git a/setproctitle-1.1.tar.bz2 b/setproctitle-1.1.tar.bz2 deleted file mode 100644 index bd868ef..0000000 --- a/setproctitle-1.1.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:aabd080645cd3db6df375b66e997de82d61efa679144a113421db61e90c8c455 -size 16178 From b465deb5101906c9c16eab15883209a7a6d46a9443740b97efd79b2a5cde3137 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Thu, 12 Jan 2012 10:07:18 +0000 Subject: [PATCH 5/5] Add python3-setproctitle.changes to survive factory-auto OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setproctitle?expand=0&rev=11 --- python-setproctitle.spec | 1 + python3-setproctitle.changes | 32 ++++++++++++++++++++++++++++++++ python3-setproctitle.spec | 1 + 3 files changed, 34 insertions(+) create mode 100644 python3-setproctitle.changes diff --git a/python-setproctitle.spec b/python-setproctitle.spec index 79e7479..f158cde 100644 --- a/python-setproctitle.spec +++ b/python-setproctitle.spec @@ -15,6 +15,7 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} diff --git a/python3-setproctitle.changes b/python3-setproctitle.changes new file mode 100644 index 0000000..def09a9 --- /dev/null +++ b/python3-setproctitle.changes @@ -0,0 +1,32 @@ +------------------------------------------------------------------- +Tue Jan 10 14:11:01 UTC 2012 - idonmez@suse.com + +- Update to v1.1.3 + * Don't clobber environ if the variable SPT_NOENV is set + * Fixed segfault when the module is imported under vim (bnc#739242) + +------------------------------------------------------------------- +Mon Apr 4 14:50:32 UTC 2011 - jengelh@medozas.de + +- Provide python3 spec file + +------------------------------------------------------------------- +Tue Mar 29 13:48:10 UTC 2011 - saschpe@suse.de + +- Spec file cleanup: + * changed license to BSD3c + * packaded documentation files + * fixed build non-SUSE distros + +------------------------------------------------------------------- +Thu Nov 18 15:52:28 UTC 2010 - hvogel@novell.com + +- Update to version 1.1 + * add support python3 + +------------------------------------------------------------------- +Wed Jun 23 14:54:43 UTC 2010 - hvogel@novell.com + +- Initial package, Version 1.0.1 + + diff --git a/python3-setproctitle.spec b/python3-setproctitle.spec index 766772b..81974aa 100644 --- a/python3-setproctitle.spec +++ b/python3-setproctitle.spec @@ -15,6 +15,7 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + %define modname setproctitle Name: python3-setproctitle