[Python-modules-commits] [django-background-tasks] 02/03: initial packaging
Hans-Christoph Steiner
eighthave at moszumanska.debian.org
Tue Sep 26 11:47:18 UTC 2017
This is an automated email from the git hooks/post-receive script.
eighthave pushed a commit to branch master
in repository django-background-tasks.
commit e24bffb58e31ea4bb0d00d489ddd08b1160b2ab4
Author: Hans-Christoph Steiner <hans at eds.org>
Date: Mon Sep 25 22:49:39 2017 +0200
initial packaging
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++
debian/copyright | 39 +++++++++++++++++++++++++++++++++
debian/gbp.conf | 3 +++
debian/rules | 8 +++++++
debian/source/format | 1 +
debian/watch | 3 +++
8 files changed, 122 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..79859f7
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+django-background-tasks (1.1.11-1) unstable; urgency=low
+
+ * Initial release (Closes: #)
+
+ -- Hans-Christoph Steiner <hans at eds.org> Fri, 22 Sep 2017 13:09:01 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..dd700b4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,62 @@
+Source: django-background-tasks
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Hans-Christoph Steiner <hans at eds.org>
+Build-Depends: debhelper (>=9),
+ dh-python,
+ python-all (>= 2.6.6-3~),
+ python-django (>= 1.4),
+ python-mock,
+ python-setuptools,
+ python3-all,
+ python3-django (>= 1.4),
+ python3-mock,
+ python3-setuptools,
+Standards-Version: 4.1.0
+Homepage: https://github.com/ierror/django-background-tasks
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/django-background-tasks.git
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/django-background-tasks.git
+X-Python-Version: >= 2.6
+
+Package: python-django-background-tasks
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends},
+Description: databased-backed work queue for Django
+ Django Background Task is a databased-backed work queue for Django,
+ loosely based around Ruby's DelayedJob library. This project was
+ adopted and adapted from lilspikey django-background-task.
+ .
+ To avoid conflicts on PyPI we renamed it to django-background-tasks
+ (plural). For an easy upgrade from django-background-task to
+ django-background-tasks, the internal module structure were left
+ untouched.
+ .
+ In Django Background Task, all tasks are implemented as functions (or
+ any other callable).
+ .
+ There are two parts to using background tasks:
+ * creating the task functions and registering them with the
+ * scheduler setup a cron task (or long running process) to execute the
+ tasks
+
+Package: python3-django-background-tasks
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends},
+Description:databased-backed work queue for Django
+ Django Background Task is a databased-backed work queue for Django,
+ loosely based around Ruby's DelayedJob library. This project was
+ adopted and adapted from lilspikey django-background-task.
+ .
+ To avoid conflicts on PyPI we renamed it to django-background-tasks
+ (plural). For an easy upgrade from django-background-task to
+ django-background-tasks, the internal module structure were left
+ untouched.
+ .
+ In Django Background Task, all tasks are implemented as functions (or
+ any other callable).
+ .
+ There are two parts to using background tasks:
+ * creating the task functions and registering them with the
+ * scheduler setup a cron task (or long running process) to execute the
+ tasks
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..9274c7b
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,39 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: django-background-tasks
+Upstream-Contact: John Montgomery and contributors
+Source: https://pypi.python.org/pypi/django-background-tasks
+
+Files: *
+Copyright: 2010-2017, John Montgomery (lilspikey & johnsensible, initiator)
+ 2010-2017, Yannik Ammann (yannik-ammann)
+ 2010-2017, Luthaf (luthaf)
+ 2010-2017, Philippe O. Wagner (philippeowagner)
+ 2010-2017, weijia (weijia)
+ 2010-2017, tdruez (tdruez)
+ 2010-2017, Chad G. Hansen (chadgh)
+ 2010-2017, Grant McConnaughey (grantmcconnaughey)
+ 2010-2017, James Mason (bear454)
+ 2010-2017, Pavel Zagrebelin (Zagrebelin)
+ 2010-2017, Stephen Brown (december1981)
+ 2010-2017, Adam Johnson (adamchainz)
+ 2010-2017, (kherrett)
+ 2010-2017, Johannes Dillmann (kleingeist)
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2017, Hans-Christoph Steiner
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in
+ the documentation and/or other materials provided with the
+ distribution.
+ * Neither the name of Jonas Obrist nor the names of its contributors
+ may be used to endorse or promote products derived from this
+ software without specific prior written permission.
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..5474c60
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,3 @@
+[DEFAULT]
+pristine-tar = True
+sign-tags = True
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..93087d3
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+export PYBUILD_NAME=django-background-tasks
+
+%:
+ dh $@ --with python2,python3 --buildsystem=pybuild
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..8159def
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/django-sass-processor/django-sass-processor-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/django-background-tasks.git
More information about the Python-modules-commits
mailing list