diff -Nru archipel-agent-action-scheduler-0.5.0/debian/changelog archipel-agent-action-scheduler-0.6.0/debian/changelog --- archipel-agent-action-scheduler-0.5.0/debian/changelog 2012-12-11 20:10:00.000000000 +0000 +++ archipel-agent-action-scheduler-0.6.0/debian/changelog 2013-05-05 07:11:51.000000000 +0000 @@ -1,3 +1,11 @@ +archipel-agent-action-scheduler (0.6.0-1) unstable; urgency=low + + * New upstream beta release. + * New maintainer (closes: #704308). + * Add watch file. + + -- Laszlo Boszormenyi (GCS) Tue, 30 Apr 2013 07:52:52 +0000 + archipel-agent-action-scheduler (0.5.0-2) unstable; urgency=low * Adding dpkg-source local options. diff -Nru archipel-agent-action-scheduler-0.5.0/debian/clean archipel-agent-action-scheduler-0.6.0/debian/clean --- archipel-agent-action-scheduler-0.5.0/debian/clean 1970-01-01 00:00:00.000000000 +0000 +++ archipel-agent-action-scheduler-0.6.0/debian/clean 2013-04-30 07:54:28.000000000 +0000 @@ -0,0 +1 @@ +archipel_agent_action_scheduler.egg-info/* diff -Nru archipel-agent-action-scheduler-0.5.0/debian/control archipel-agent-action-scheduler-0.6.0/debian/control --- archipel-agent-action-scheduler-0.5.0/debian/control 2012-11-23 09:29:20.000000000 +0000 +++ archipel-agent-action-scheduler-0.6.0/debian/control 2013-04-30 07:53:41.000000000 +0000 @@ -1,7 +1,7 @@ Source: archipel-agent-action-scheduler Section: python Priority: optional -Maintainer: Daniel Baumann +Maintainer: Laszlo Boszormenyi (GCS) Build-Depends: debhelper (>= 9), python, python-setuptools Standards-Version: 3.9.4 Homepage: http://archipelproject.org/ diff -Nru archipel-agent-action-scheduler-0.5.0/debian/copyright archipel-agent-action-scheduler-0.6.0/debian/copyright --- archipel-agent-action-scheduler-0.5.0/debian/copyright 2012-11-23 09:29:20.000000000 +0000 +++ archipel-agent-action-scheduler-0.6.0/debian/copyright 2013-05-05 07:12:35.000000000 +0000 @@ -9,7 +9,8 @@ License: AGPL-3+ Files: debian/* -Copyright: 2012 Daniel Baumann +Copyright: 2013 Laszlo Boszormenyi (GCS) , + 2012 Daniel Baumann License: AGPL-3+ License: AGPL-3+ diff -Nru archipel-agent-action-scheduler-0.5.0/debian/watch archipel-agent-action-scheduler-0.6.0/debian/watch --- archipel-agent-action-scheduler-0.5.0/debian/watch 1970-01-01 00:00:00.000000000 +0000 +++ archipel-agent-action-scheduler-0.6.0/debian/watch 2013-05-05 07:11:19.000000000 +0000 @@ -0,0 +1,3 @@ +version=3 +opts="uversionmangle=s/(\d[\.\d]*)/0.$1.0/" \ +https://github.com/ArchipelProject/Archipel/tags .*/@beta(\d[\.\d]*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz)) diff -Nru archipel-agent-action-scheduler-0.5.0/setup.py archipel-agent-action-scheduler-0.6.0/setup.py --- archipel-agent-action-scheduler-0.5.0/setup.py 2012-11-02 13:52:39.000000000 +0000 +++ archipel-agent-action-scheduler-0.6.0/setup.py 2013-03-21 00:58:52.000000000 +0000 @@ -1,23 +1,23 @@ -# +# # setup.py -# +# # Copyright (C) 2010 Antoine Mercadal # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . from setuptools import setup, find_packages -VERSION = '0.5.0' +VERSION = '0.6.0' AUTHOR = 'Antoine Mercadal' MAIL = 'antoine.mercadal@archipelproject.org' @@ -77,7 +77,7 @@ zip_safe=False, install_requires=[ "apscheduler>=1.3.1", - "archipel-core>=0.5.0beta" + "archipel-core>=0.6.0beta" ], entry_points=ENTRY_POINTS )