commit 47be5158a6f9812c1c6efaf14bbbd32c37e70c8234fccb368df57781ca53fca1 Author: Alexandre Rogoski Date: Mon May 30 15:11:32 2011 +0000 osc copypac from project:devel:languages:python package:python-daemon revision:8 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-daemon?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/python-daemon-1.6.tar.bz2 b/python-daemon-1.6.tar.bz2 new file mode 100644 index 0000000..58413d1 --- /dev/null +++ b/python-daemon-1.6.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d044bb910e47fe361c8177bc07b097bb1d77f0b55fa34fc06329d4f0e1c1c106 +size 34265 diff --git a/python-daemon.changes b/python-daemon.changes new file mode 100644 index 0000000..31bcced --- /dev/null +++ b/python-daemon.changes @@ -0,0 +1,42 @@ +------------------------------------------------------------------- +Fri Apr 15 23:49:04 UTC 2011 - alexandre@exatati.com.br + +- Regenerate spec filw with py2pack; +- Bzip2 source file; +- Add ChangeLog file as documentation. + +------------------------------------------------------------------- +Tue May 11 00:37:27 UTC 2010 - alexandre@exatati.com.br + +- Update to 1.6; +- Spec file cleaned with spec-cleaner. + +------------------------------------------------------------------- +Tue Mar 2 16:56:49 UTC 2010 - alexandre@exatati.com.br + +- Update to 1.5.5. + +------------------------------------------------------------------- +Sat Feb 27 20:45:03 UTC 2010 - alexandre@exatati.com.br + +- Update to 1.5.4. + +------------------------------------------------------------------- +Mon Oct 26 09:58:12 UTC 2009 - alexandre@exatati.com.br + +- Update to 1.5.2. + +------------------------------------------------------------------- +Sat Sep 26 17:54:11 UTC 2009 - alexandre@exatati.com.br + +- Update to 1.5.1. + +------------------------------------------------------------------- +Thu Sep 24 14:35:04 UTC 2009 - alexandre@exatati.com.br + +- Moved to the correct python-daemon module. + +------------------------------------------------------------------- +Tue Sep 22 14:19:09 UTC 2009 - alexandre@exatati.com.br + +- Initial package (1.0.1) for openSUSE. diff --git a/python-daemon.spec b/python-daemon.spec new file mode 100644 index 0000000..441cf3d --- /dev/null +++ b/python-daemon.spec @@ -0,0 +1,70 @@ +# +# spec file for package python-python-daemon +# +# 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 +# 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/ +# + +%{!?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 python-daemon + +Name: python-%{mod_name} +Version: 1.6 +Release: 0 +Url: http://pypi.python.org/pypi/python-daemon/ +Summary: Library to implement a well-behaved Unix daemon process +License: PSF-2+ +Group: Development/Languages/Python +Source: %{mod_name}-%{version}.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: python-devel +BuildRequires: python-minimock +BuildRequires: python-setuptools +Requires: python-lockfile +%if 0%{?suse_version} +%py_requires +%if 0%{?suse_version} > 1110 +BuildArch: noarch +%endif +%endif + +%description +This library implements the well-behaved daemon specification of PEP 3143, "Standard daemon +process library". + +A well-behaved Unix daemon process is tricky to get right, but the required steps are much the +same for every daemon program. A DaemonContext instance holds the behaviour and configured +process environment for the program; use the instance as a context manager to enter a daemon state. + +%prep +%setup -q -n %{mod_name}-%{version} + +%build +export CFLAGS="%{optflags}" +python setup.py build + +%install +python setup.py install --prefix=%{_prefix} --root=%{buildroot} + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%doc ChangeLog +%python_sitelib/daemon* +%python_sitelib/*.egg-info + +%changelog