commit python-zdaemon for openSUSE:Factory

2019-09-13 Thread root
Hello community,

here is the log from the commit of package python-zdaemon for openSUSE:Factory 
checked in at 2019-09-13 15:03:20

Comparing /work/SRC/openSUSE:Factory/python-zdaemon (Old)
 and  /work/SRC/openSUSE:Factory/.python-zdaemon.new.7948 (New)


Package is "python-zdaemon"

Fri Sep 13 15:03:20 2019 rev:21 rq:730634 version:4.3

Changes:

--- /work/SRC/openSUSE:Factory/python-zdaemon/python-zdaemon.changes
2019-05-14 13:30:31.527364961 +0200
+++ /work/SRC/openSUSE:Factory/.python-zdaemon.new.7948/python-zdaemon.changes  
2019-09-13 15:04:54.849261892 +0200
@@ -1,0 +2,6 @@
+Thu Sep 12 17:12:56 UTC 2019 - Tomáš Chvátal 
+
+- Patch out flaky tests that seldomly fails in obs:
+  * obs-timeout.patch
+
+---

New:

  obs-timeout.patch



Other differences:
--
++ python-zdaemon.spec ++
--- /var/tmp/diff_new_pack.b2LXJQ/_old  2019-09-13 15:04:55.213261814 +0200
+++ /var/tmp/diff_new_pack.b2LXJQ/_new  2019-09-13 15:04:55.217261814 +0200
@@ -26,6 +26,7 @@
 Group:  Development/Languages/Python
 URL:https://github.com/zopefoundation/zdaemon
 Source: 
https://files.pythonhosted.org/packages/source/z/zdaemon/%{modname}-%{version}.tar.gz
+Patch0: obs-timeout.patch
 BuildRequires:  %{python_module ZConfig}
 BuildRequires:  %{python_module manuel}
 BuildRequires:  %{python_module mock}
@@ -49,6 +50,7 @@
 
 %prep
 %setup -q -n %{modname}-%{version}
+%patch0 -p1
 # remove unwanted shebang
 sed -i '1 { /^#!/ d }' src/zdaemon/tests/nokill.py
 rm -rf src/zdaemon.egg-info

++ obs-timeout.patch ++
Index: zdaemon-4.3/src/zdaemon/tests/tests.py
===
--- zdaemon-4.3.orig/src/zdaemon/tests/tests.py
+++ zdaemon-4.3/src/zdaemon/tests/tests.py
@@ -264,77 +264,6 @@ def test_log_rotation():
 """
 
 
-def test_start_test_program():
-"""
->>> write('t.py',
-... '''
-... import time
-... time.sleep(1)
-... open('x', 'w').close()
-... time.sleep(99)
-... ''')
-
->>> write('conf',
-... '''
-... 
-...   program %s t.py
-...   start-test-program cat x
-... 
-... ''' % sys.executable)
-
->>> import os
-
->>> system("./zdaemon -Cconf start")
-. .
-daemon process started, pid=21446
-
->>> os.path.exists('x')
-True
->>> os.remove('x')
-
->>> system("./zdaemon -Cconf restart")
-. . .
-daemon process restarted, pid=19622
->>> os.path.exists('x')
-True
-
->>> system("./zdaemon -Cconf stop")
-
-daemon process stopped
-"""
-
-
-def test_start_timeout():
-"""
->>> write('t.py',
-... '''
-... import time
-... time.sleep(9)
-... ''')
-
->>> write('conf',
-... '''
-... 
-...   program %s t.py
-...   start-test-program cat x
-...   start-timeout 1
-... 
-... ''' % sys.executable)
-
->>> import time
->>> start = time.time()
-
->>> system("./zdaemon -Cconf start")
-
-Program took too long to start
-Failed: 1
-
->>> system("./zdaemon -Cconf stop")
-
-daemon process stopped
-"""
-
-
 def DAEMON_MANAGER_MODE_leak():
 """
 Zdaemon used an environment variable to flag that it's running in



commit python-zdaemon for openSUSE:Factory

2019-05-14 Thread root
Hello community,

here is the log from the commit of package python-zdaemon for openSUSE:Factory 
checked in at 2019-05-14 13:30:30

Comparing /work/SRC/openSUSE:Factory/python-zdaemon (Old)
 and  /work/SRC/openSUSE:Factory/.python-zdaemon.new.5148 (New)


Package is "python-zdaemon"

Tue May 14 13:30:30 2019 rev:20 rq:693221 version:4.3

Changes:

--- /work/SRC/openSUSE:Factory/python-zdaemon/python-zdaemon.changes
2018-12-13 19:46:15.704870729 +0100
+++ /work/SRC/openSUSE:Factory/.python-zdaemon.new.5148/python-zdaemon.changes  
2019-05-14 13:30:31.527364961 +0200
@@ -1,0 +2,8 @@
+Tue Apr  9 10:53:45 UTC 2019 - Marketa Calabkova 
+
+- update to version 4.3
+  * Add support for Python 3.6 and 3.7.
+  * Drop support for Python 3.3.
+- Launch tests.
+
+---

Old:

  zdaemon-4.2.0.tar.gz

New:

  zdaemon-4.3.tar.gz



Other differences:
--
++ python-zdaemon.spec ++
--- /var/tmp/diff_new_pack.coxDVN/_old  2019-05-14 13:30:32.859368116 +0200
+++ /var/tmp/diff_new_pack.coxDVN/_new  2019-05-14 13:30:32.867368135 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zdaemon
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %define modname zdaemon
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-%{modname}
-Version:4.2.0
+Version:4.3
 Release:0
 Summary:Daemon process control library and tools
 License:ZPL-2.1
@@ -27,7 +27,12 @@
 URL:https://github.com/zopefoundation/zdaemon
 Source: 
https://files.pythonhosted.org/packages/source/z/zdaemon/%{modname}-%{version}.tar.gz
 BuildRequires:  %{python_module ZConfig}
+BuildRequires:  %{python_module manuel}
+BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module zc.customdoctests}
+BuildRequires:  %{python_module zope.testing}
+BuildRequires:  %{python_module zope.testrunner}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-ZConfig
@@ -53,10 +58,13 @@
 
 %install
 %python_install
-%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %python_clone -a %{buildroot}%{_bindir}/zdaemon
 
+%check
+%python_exec setup.py test
+
 %post
 %python_install_alternative zdaemon
 

++ zdaemon-4.2.0.tar.gz -> zdaemon-4.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zdaemon-4.2.0/.coveragerc new/zdaemon-4.3/.coveragerc
--- old/zdaemon-4.2.0/.coveragerc   2016-12-07 08:13:25.0 +0100
+++ new/zdaemon-4.3/.coveragerc 2018-10-30 10:11:37.0 +0100
@@ -1,6 +1,6 @@
 [run]
 source = $COVERAGE_HOME/src/zdaemon
-omit = */tests/*, */__main__.py
+omit = */__main__.py
 parallel = true
 data_file = $COVERAGE_HOME/.coverage
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zdaemon-4.2.0/.gitignore new/zdaemon-4.3/.gitignore
--- old/zdaemon-4.2.0/.gitignore1970-01-01 01:00:00.0 +0100
+++ new/zdaemon-4.3/.gitignore  2018-10-30 10:11:37.0 +0100
@@ -0,0 +1,11 @@
+*.pyc
+*.egg-info
+__pycache__
+.tox/
+.installed.cfg
+bin/
+develop-eggs/
+eggs/
+parts/
+.coverage
+.coverage.*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zdaemon-4.2.0/.travis.yml new/zdaemon-4.3/.travis.yml
--- old/zdaemon-4.2.0/.travis.yml   1970-01-01 01:00:00.0 +0100
+++ new/zdaemon-4.3/.travis.yml 2018-10-30 10:11:37.0 +0100
@@ -0,0 +1,29 @@
+language: python
+sudo: false
+python:
+- 2.7
+- 3.4
+- 3.5
+- 3.6
+- pypy
+- pypy3
+matrix:
+include:
+- python: "3.7"
+  dist: xenial
+  sudo: true
+install:
+- pip install -U pip setuptools
+- pip install -U coverage coveralls
+- pip install -U -e .[test]
+script:
+- export COVERAGE_HOME=$(pwd)
+- export COVERAGE_PROCESS_START=$COVERAGE_HOME/.coveragerc
+- coverage run -m zope.testrunner --test-path=src
+- coverage combine
+after_success:
+- coveralls
+notifications:
+email: false
+cache: pip
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zdaemon-4.2.0/CHANGES.rst new/zdaemon-4.3/CHANGES.rst
--- old/zdaemon-4.2.0/CHANGES.rst   2016-12-07 08:13:25.0 +0100
+++ new/zdaemon-4.3/CHANGES.rst 2018-10-30 10:11:37.000

commit python-zdaemon for openSUSE:Factory

2018-12-13 Thread root
Hello community,

here is the log from the commit of package python-zdaemon for openSUSE:Factory 
checked in at 2018-12-13 19:46:13

Comparing /work/SRC/openSUSE:Factory/python-zdaemon (Old)
 and  /work/SRC/openSUSE:Factory/.python-zdaemon.new.28833 (New)


Package is "python-zdaemon"

Thu Dec 13 19:46:13 2018 rev:19 rq:654085 version:4.2.0

Changes:

--- /work/SRC/openSUSE:Factory/python-zdaemon/python-zdaemon.changes
2017-07-11 08:25:23.279318367 +0200
+++ /work/SRC/openSUSE:Factory/.python-zdaemon.new.28833/python-zdaemon.changes 
2018-12-13 19:46:15.704870729 +0100
@@ -1,0 +2,5 @@
+Tue Dec  4 12:56:25 UTC 2018 - Matej Cepl 
+
+- Remove superfluous devel dependency for noarch package
+
+---



Other differences:
--
++ python-zdaemon.spec ++
--- /var/tmp/diff_new_pack.LHJyJK/_old  2018-12-13 19:46:16.548869633 +0100
+++ /var/tmp/diff_new_pack.LHJyJK/_new  2018-12-13 19:46:16.556869622 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zdaemon
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -24,17 +24,15 @@
 Summary:Daemon process control library and tools
 License:ZPL-2.1
 Group:  Development/Languages/Python
-Url:https://github.com/zopefoundation/zdaemon
+URL:https://github.com/zopefoundation/zdaemon
 Source: 
https://files.pythonhosted.org/packages/source/z/zdaemon/%{modname}-%{version}.tar.gz
 BuildRequires:  %{python_module ZConfig}
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-ZConfig
 Requires(post): update-alternatives
 Requires(preun): update-alternatives
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 %python_subpackages
 
@@ -66,8 +64,8 @@
 %python_uninstall_alternative zdaemon
 
 %files %{python_files}
-%defattr(-,root,root)
-%doc README.rst CHANGES.rst LICENSE.txt
+%license LICENSE.txt
+%doc README.rst CHANGES.rst
 %python_alternative %{_bindir}/zdaemon
 %{python_sitelib}/*
 




commit python-zdaemon for openSUSE:Factory

2017-07-10 Thread root
Hello community,

here is the log from the commit of package python-zdaemon for openSUSE:Factory 
checked in at 2017-07-11 08:25:22

Comparing /work/SRC/openSUSE:Factory/python-zdaemon (Old)
 and  /work/SRC/openSUSE:Factory/.python-zdaemon.new (New)


Package is "python-zdaemon"

Tue Jul 11 08:25:22 2017 rev:18 rq:508499 version:4.2.0

Changes:

--- /work/SRC/openSUSE:Factory/python-zdaemon/python-zdaemon.changes
2015-05-25 11:14:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-zdaemon.new/python-zdaemon.changes   
2017-07-11 08:25:23.279318367 +0200
@@ -1,0 +2,8 @@
+Sat Jun 24 13:13:12 UTC 2017 - aloi...@gmx.com
+
+- Update to version 4.2.0:
+  * Add support for Python 3.5.
+  * Drop support for Python 2.6 and 3.2.
+- Converted to single-spec
+
+---

Old:

  zdaemon-4.1.0.zip

New:

  zdaemon-4.2.0.tar.gz



Other differences:
--
++ python-zdaemon.spec ++
--- /var/tmp/diff_new_pack.I3LXyK/_old  2017-07-11 08:25:23.927226984 +0200
+++ /var/tmp/diff_new_pack.I3LXyK/_new  2017-07-11 08:25:23.931226419 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zdaemon
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,27 +17,26 @@
 
 
 %define modname zdaemon
-
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-%{modname}
-Version:4.1.0
+Version:4.2.0
 Release:0
 Summary:Daemon process control library and tools
 License:ZPL-2.1
 Group:  Development/Languages/Python
 Url:https://github.com/zopefoundation/zdaemon
-Source: 
https://pypi.python.org/packages/source/z/zdaemon/%{modname}-%{version}.zip
-BuildRequires:  python-devel
-BuildRequires:  python-setuptools
-BuildRequires:  unzip
-Requires(post):  update-alternatives
-Requires(postun):  update-alternatives
+Source: 
https://files.pythonhosted.org/packages/source/z/zdaemon/%{modname}-%{version}.tar.gz
+BuildRequires:  %{python_module ZConfig}
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
 Requires:   python-ZConfig
+Requires(post): update-alternatives
+Requires(preun): update-alternatives
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
 BuildArch:  noarch
-%endif
+%python_subpackages
 
 %description
 zdaemon is a Python package which provides APIs for managing
@@ -47,35 +46,29 @@
 
 %prep
 %setup -q -n %{modname}-%{version}
-sed -i "s|%{modname} =|%{modname}-%{py_ver} =|" setup.py
 # remove unwanted shebang
 sed -i '1 { /^#!/ d }' src/zdaemon/tests/nokill.py
+rm -rf src/zdaemon.egg-info
 
 %build
-python setup.py build
+%python_build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
-# create a dummy target for /etc/alternatives/zdaemon
-mkdir -p %{buildroot}%{_sysconfdir}/alternatives
-touch %{buildroot}%{_sysconfdir}/alternatives/%{modname}
-ln -s -f %{_sysconfdir}/alternatives/%{modname} 
%{buildroot}/%{_bindir}/%{modname}
+%python_install
+%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
+
+%python_clone -a %{buildroot}%{_bindir}/zdaemon
 
 %post
-update-alternatives \
---install %{_bindir}/%{modname} %{modname} %{_bindir}/%{modname}-%{py_ver} 
20
+%python_install_alternative zdaemon
 
 %postun
-if [ $1 -eq 0 ] ; then
-update-alternatives --remove %{modname} %{_bindir}/%{modname}-%{py_ver}
-fi
+%python_uninstall_alternative zdaemon
 
-%files
+%files %{python_files}
 %defattr(-,root,root)
 %doc README.rst CHANGES.rst LICENSE.txt
-%ghost %{_sysconfdir}/alternatives/%{modname}
+%python_alternative %{_bindir}/zdaemon
 %{python_sitelib}/*
-%{_bindir}/%{modname}
-%{_bindir}/%{modname}-%{py_ver}
 
 %changelog




commit python-zdaemon for openSUSE:Factory

2014-02-25 Thread h_root
Hello community,

here is the log from the commit of package python-zdaemon for openSUSE:Factory 
checked in at 2014-02-26 06:55:19

Comparing /work/SRC/openSUSE:Factory/python-zdaemon (Old)
 and  /work/SRC/openSUSE:Factory/.python-zdaemon.new (New)


Package is "python-zdaemon"

Changes:

--- /work/SRC/openSUSE:Factory/python-zdaemon/python-zdaemon.changes
2013-10-25 11:36:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-zdaemon.new/python-zdaemon.changes   
2014-02-26 06:55:25.0 +0100
@@ -1,0 +2,18 @@
+Sun Feb 16 18:16:37 UTC 2014 - os-...@jacraig.com
+
+- Update to 4.0.0:
+  * Note / test support for Python 3.2.
+- Add requirement for python-ZConfig, see setup.py.
+- Update source URL, .zip not available for this version.
+
+---
+Fri Feb  7 13:17:03 UTC 2014 - p.drou...@gmail.com
+
+- Fix wrong implementation
+
+---
+Fri Feb  7 12:43:58 UTC 2014 - p.drou...@gmail.com
+
+- Implement update-alternative
+
+---

Old:

  zdaemon-4.0.0a1.zip

New:

  zdaemon-4.0.0.tar.gz



Other differences:
--
++ python-zdaemon.spec ++
--- /var/tmp/diff_new_pack.HkfHT8/_old  2014-02-26 06:55:25.0 +0100
+++ /var/tmp/diff_new_pack.HkfHT8/_new  2014-02-26 06:55:25.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zdaemon
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -18,19 +18,19 @@
 
 %define modname zdaemon
 
-Name:   python-zdaemon
-Version:4.0.0a1
+Name:   python-%{modname}
+Version:4.0.0
 Release:0
 Summary:Daemon process control library and tools
 License:ZPL-2.1
-Group:  Development/Libraries/Python
+Group:  Development/Languages/Python
 Url:http://pypi.python.org/pypi/zdaemon
-Source: 
https://pypi.python.org/packages/source/z/zdaemon/%{modname}-%{version}.zip
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{py_requires}
+Source: 
https://pypi.python.org/packages/source/z/zdaemon/%{modname}-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
-BuildRequires:  unzip
+BuildRequires:  update-alternatives
+Requires(pre):  update-alternatives
+Requires:   python-ZConfig
 BuildArch:  noarch
 
 %description
@@ -41,15 +41,33 @@
 
 %prep
 %setup -q -n %{modname}-%{version}
+sed -i "s|%{modname} =|%{modname}-%{py_ver} =|" setup.py
 
 %build
 python setup.py build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT 
--record-rpm=INSTALLED_FILES
+python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+# create a dummy target for /etc/alternatives/zdaemon
+mkdir -p %{buildroot}%{_sysconfdir}/alternatives
+touch %{buildroot}%{_sysconfdir}/alternatives/%{modname}
+ln -s -f %{_sysconfdir}/alternatives/%{modname} 
%{buildroot}/%{_bindir}/%{modname}
+
+%post
+update-alternatives \
+--install %{_bindir}/%{modname} %{modname} %{_bindir}/%{modname}-%{py_ver} 
20
+
+%preun
+if [ $1 -eq 0 ] ; then
+update-alternatives --remove %{modname} %{_bindir}/%{modname}-%{py_ver}
+fi
 
-%files -f INSTALLED_FILES
+%files
 %defattr(-,root,root)
 %doc README.txt CHANGES.txt
+%ghost %{_sysconfdir}/alternatives/%{modname}
+%{python_sitelib}
+%{_bindir}/%{modname}
+%{_bindir}/%{modname}-%{py_ver}
 
 %changelog

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-zdaemon for openSUSE:Factory

2013-10-25 Thread h_root
Hello community,

here is the log from the commit of package python-zdaemon for openSUSE:Factory 
checked in at 2013-10-25 11:36:44

Comparing /work/SRC/openSUSE:Factory/python-zdaemon (Old)
 and  /work/SRC/openSUSE:Factory/.python-zdaemon.new (New)


Package is "python-zdaemon"

Changes:

--- /work/SRC/openSUSE:Factory/python-zdaemon/python-zdaemon.changes
2013-04-17 23:17:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-zdaemon.new/python-zdaemon.changes   
2013-10-25 11:36:48.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct 24 11:17:46 UTC 2013 - speili...@suse.com
+
+- Require python-setuptools instead of distribute (upstreams merged)
+
+---



Other differences:
--
++ python-zdaemon.spec ++
--- /var/tmp/diff_new_pack.tbsMF6/_old  2013-10-25 11:36:49.0 +0200
+++ /var/tmp/diff_new_pack.tbsMF6/_new  2013-10-25 11:36:49.0 +0200
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define modname zdaemon
 
 Name:   python-zdaemon
@@ -28,7 +29,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{py_requires}
 BuildRequires:  python-devel
-BuildRequires:  python-distribute
+BuildRequires:  python-setuptools
 BuildRequires:  unzip
 BuildArch:  noarch
 


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-zdaemon for openSUSE:Factory

2013-04-17 Thread h_root
Hello community,

here is the log from the commit of package python-zdaemon for openSUSE:Factory 
checked in at 2013-04-17 23:17:28

Comparing /work/SRC/openSUSE:Factory/python-zdaemon (Old)
 and  /work/SRC/openSUSE:Factory/.python-zdaemon.new (New)


Package is "python-zdaemon", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-zdaemon/python-zdaemon.changes
2013-01-17 10:35:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-zdaemon.new/python-zdaemon.changes   
2013-04-17 23:17:29.0 +0200
@@ -1,0 +2,10 @@
+Tue Apr 16 11:59:54 UTC 2013 - p.drou...@gmail.com
+
+- Update to version 4.0.0a1
+  + Added tox support and MANIFEST.in for proper releasing.
+  + Added Python 3.3 support.
+  + Drop Python 2.4 and 2.5 support.
+- Added url as source; add BuildRequires: unzip
+  Please see http://en.opensuse.org/SourceUrls
+ 
+---

Old:

  zdaemon-3.0.5.tar.bz2

New:

  zdaemon-4.0.0a1.zip



Other differences:
--
++ python-zdaemon.spec ++
--- /var/tmp/diff_new_pack.7H7ryj/_old  2013-04-17 23:17:36.0 +0200
+++ /var/tmp/diff_new_pack.7H7ryj/_new  2013-04-17 23:17:36.0 +0200
@@ -18,17 +18,18 @@
 %define modname zdaemon
 
 Name:   python-zdaemon
-Version:3.0.5
+Version:4.0.0a1
 Release:0
 Summary:Daemon process control library and tools
 License:ZPL-2.1
 Group:  Development/Libraries/Python
 Url:http://pypi.python.org/pypi/zdaemon
-Source: %{modname}-%{version}.tar.bz2
+Source: 
https://pypi.python.org/packages/source/z/zdaemon/%{modname}-%{version}.zip
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{py_requires}
 BuildRequires:  python-devel
-BuildRequires:  python-setuptools
+BuildRequires:  python-distribute
+BuildRequires:  unzip
 BuildArch:  noarch
 
 %description

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-zdaemon for openSUSE:Factory

2013-01-17 Thread h_root
Hello community,

here is the log from the commit of package python-zdaemon for openSUSE:Factory 
checked in at 2013-01-17 10:35:10

Comparing /work/SRC/openSUSE:Factory/python-zdaemon (Old)
 and  /work/SRC/openSUSE:Factory/.python-zdaemon.new (New)


Package is "python-zdaemon", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-zdaemon/python-zdaemon.changes
2011-12-09 15:25:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-zdaemon.new/python-zdaemon.changes   
2013-01-17 10:35:12.0 +0100
@@ -1,0 +2,19 @@
+Mon Jan 14 14:39:30 UTC 2013 - p.drou...@gmail.com
+
+-Update to 3.0.5 version:
+ * Fixed: the status command didn't return a non-zero exit status when
+   the program wasn't running. This made it impossible for other software
+   (e.g. Puppet) to tell if a process was running.
+- Update to 3.0.0 version:
+  * Added an option, start-test-program to supply a test command to test
+whether the program managed by zdaemon is up and operational, rather 
+than just running. When starting a program, the start command doesn't 
+return until the test passes. You could, for example, use this to wait
+until a web server is actually accepting connections.
+  * Added a start-timeout option to error if a program takes too long to start.
+This is especially useful in combination with the start-test-program 
option.
+  * Added an option, stop-timeout, to control how long to wait for a graceful 
shutdown.
+  * Previously, this was controlled by backoff-limit, which didn't make much 
sense.
+  * Several undocumented, untested, and presumably unused features were 
removed.
+
+---

Old:

  zdaemon-2.0.4.tar.bz2

New:

  zdaemon-3.0.5.tar.bz2



Other differences:
--
++ python-zdaemon.spec ++
--- /var/tmp/diff_new_pack.pl7Asi/_old  2013-01-17 10:35:13.0 +0100
+++ /var/tmp/diff_new_pack.pl7Asi/_new  2013-01-17 10:35:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zdaemon
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -18,7 +18,7 @@
 %define modname zdaemon
 
 Name:   python-zdaemon
-Version:2.0.4
+Version:3.0.5
 Release:0
 Summary:Daemon process control library and tools
 License:ZPL-2.1
@@ -41,15 +41,11 @@
 %setup -q -n %{modname}-%{version}
 
 %build
-export CFLAGS="$RPM_OPT_FLAGS"
 python setup.py build
 
 %install
 python setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT 
--record-rpm=INSTALLED_FILES
 
-%clean
-rm -rf %{buildroot}
-
 %files -f INSTALLED_FILES
 %defattr(-,root,root)
 %doc README.txt CHANGES.txt

++ zdaemon-2.0.4.tar.bz2 -> zdaemon-3.0.5.tar.bz2 ++
 4415 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-zdaemon for openSUSE:Factory

2011-12-09 Thread h_root
Hello community,

here is the log from the commit of package python-zdaemon for openSUSE:Factory 
checked in at 2011-12-09 15:25:25

Comparing /work/SRC/openSUSE:Factory/python-zdaemon (Old)
 and  /work/SRC/openSUSE:Factory/.python-zdaemon.new (New)


Package is "python-zdaemon", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-zdaemon/python-zdaemon.changes
2011-09-23 12:43:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-zdaemon.new/python-zdaemon.changes   
2011-12-09 15:25:26.0 +0100
@@ -1,0 +2,11 @@
+Thu Dec  8 12:29:11 UTC 2011 - cfarr...@suse.com
+
+- license update: ZPL-2.1
+  Simplify to ZPL-2.1
+
+---
+Wed Dec  7 14:20:45 UTC 2011 - co...@suse.com
+
+- most is ZPL-2.1, only one test is ZPL-2.0
+
+---



Other differences:
--
++ python-zdaemon.spec ++
--- /var/tmp/diff_new_pack.47BV2d/_old  2011-12-09 15:25:27.0 +0100
+++ /var/tmp/diff_new_pack.47BV2d/_new  2011-12-09 15:25:27.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package python-zdaemon (Version 2.0.4)
+# spec file for package python-zdaemon
 #
-# 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
@@ -15,20 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 %define modname zdaemon
 
 Name:   python-zdaemon
 Version:2.0.4
-Release:4
+Release:0
 Summary:Daemon process control library and tools
-Url:http://pypi.python.org/pypi/zdaemon
-License:BSD
+License:ZPL-2.1
 Group:  Development/Libraries/Python
+Url:http://pypi.python.org/pypi/zdaemon
 Source: %{modname}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{py_requires}
-BuildRequires:  python-devel python-setuptools
+BuildRequires:  python-devel
+BuildRequires:  python-setuptools
 BuildArch:  noarch
 
 %description

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org