forked from pool/python-setproctitle
Accepting request 133716 from home:poorboywilly:branches:devel:languages:python
Update to 1.1.6, simplify %build section, fix %files section. OBS-URL: https://build.opensuse.org/request/show/133716 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setproctitle?expand=0&rev=17
This commit is contained in:
committed by
Git OBS Bridge
parent
ff4df3922d
commit
8cce1b3b52
@@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 12 04:08:16 UTC 2012 - os-dev@jacraig.com
|
||||||
|
|
||||||
|
- Update to 1.1.6:
|
||||||
|
* The module can be compiled again on Windows (issue #21).
|
||||||
|
- Changes from 1.1.5:
|
||||||
|
* No module bug, but a packaging issue: files ``README`` and ``HISTORY``
|
||||||
|
added back into the distribution.
|
||||||
|
- Changes from 1.1.4:
|
||||||
|
* The module works correctly in embedded Python.
|
||||||
|
* ``setproctitle()`` accepts a keyword argument.
|
||||||
|
* Debug output support always compiled in: the variable ``SPT_DEBUG`` can be
|
||||||
|
used to emit debug log.
|
||||||
|
- Simplify %build sections to one line
|
||||||
|
- HISTORY and README files are now .rst files, update %files section
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 10 14:11:01 UTC 2012 - idonmez@suse.com
|
Tue Jan 10 14:11:01 UTC 2012 - idonmez@suse.com
|
||||||
|
|
||||||
|
@@ -22,7 +22,7 @@
|
|||||||
%define mod_name setproctitle
|
%define mod_name setproctitle
|
||||||
|
|
||||||
Name: python-setproctitle
|
Name: python-setproctitle
|
||||||
Version: 1.1.3
|
Version: 1.1.6
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python module to allow customization of the process title
|
Summary: Python module to allow customization of the process title
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@@ -45,15 +45,14 @@ the OpenSSH Server for example.
|
|||||||
%setup -q -n %{mod_name}-%{version}
|
%setup -q -n %{mod_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%{optflags}"
|
CFLAGS="%{optflags}" python setup.py build
|
||||||
python setup.py build
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc COPYRIGHT HISTORY README
|
%doc COPYRIGHT HISTORY.rst README.rst
|
||||||
%python_sitearch/%{mod_name}*
|
%python_sitearch/%{mod_name}*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 12 04:08:16 UTC 2012 - os-dev@jacraig.com
|
||||||
|
|
||||||
|
- Update to 1.1.6:
|
||||||
|
* The module can be compiled again on Windows (issue #21).
|
||||||
|
- Changes from 1.1.5:
|
||||||
|
* No module bug, but a packaging issue: files ``README`` and ``HISTORY``
|
||||||
|
added back into the distribution.
|
||||||
|
- Changes from 1.1.4:
|
||||||
|
* The module works correctly in embedded Python.
|
||||||
|
* ``setproctitle()`` accepts a keyword argument.
|
||||||
|
* Debug output support always compiled in: the variable ``SPT_DEBUG`` can be
|
||||||
|
used to emit debug log.
|
||||||
|
- Simplify %build sections to one line
|
||||||
|
- HISTORY and README files are now .rst files, update %files section
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 26 14:59:11 UTC 2012 - toddrme2178@gmail.com
|
Thu Apr 26 14:59:11 UTC 2012 - toddrme2178@gmail.com
|
||||||
|
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
%define modname setproctitle
|
%define modname setproctitle
|
||||||
|
|
||||||
Name: python3-setproctitle
|
Name: python3-setproctitle
|
||||||
Version: 1.1.3
|
Version: 1.1.6
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python module to allow customization of the process title
|
Summary: Python module to allow customization of the process title
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@@ -41,8 +41,7 @@ the OpenSSH Server for example.
|
|||||||
%setup -q -n %{modname}-%{version}
|
%setup -q -n %{modname}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%{optflags}"
|
CFLAGS="%{optflags}" python3 setup.py build
|
||||||
python3 setup.py build
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
|
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:4af97eb01a2febb810a08b46f7f53b460c1eda6beba07895c13ebe756f422306
|
|
||||||
size 19286
|
|
3
setproctitle-1.1.6.tar.gz
Normal file
3
setproctitle-1.1.6.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f2926abd47803e288f665401268a9950961be734e981035bde9acb4af80a032d
|
||||||
|
size 22589
|
Reference in New Issue
Block a user