[Python-modules-commits] [django-recurrence] 02/02: Initial release (Closes: #795200).
Michael Fladischer
fladi at moszumanska.debian.org
Sun Aug 30 10:37:48 UTC 2015
This is an automated email from the git hooks/post-receive script.
fladi pushed a commit to branch master
in repository django-recurrence.
commit 189a2999d1b5b43fd39601b138a355c4e5d93aeb
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date: Sun Aug 30 12:25:06 2015 +0200
Initial release (Closes: #795200).
---
debian/changelog | 5 ++
debian/compat | 1 +
debian/control | 76 ++++++++++++++++++++++++++++
debian/copyright | 38 ++++++++++++++
debian/python-django-recurrence-doc.doc-base | 8 +++
debian/python-django-recurrence-doc.docs | 1 +
debian/rules | 21 ++++++++
debian/source/format | 1 +
debian/watch | 3 ++
9 files changed, 154 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..cf2ef17
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+django-recurrence (1.2.0-1) unstable; urgency=low
+
+ * Initial release (Closes: #795200).
+
+ -- Michael Fladischer <fladi at debian.org> Sun, 30 Aug 2015 12:31: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..091be3f
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,76 @@
+Source: django-recurrence
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9),
+ dh-python,
+ python-all,
+ python-dateutil,
+ python-django,
+ python-pytest,
+ python-setuptools,
+ python-sphinx (>= 1.0.7+dfsg),
+ python-tz,
+ python3-all,
+ python3-dateutil,
+ python3-django,
+ python3-pytest,
+ python3-setuptools,
+ python3-tz
+Standards-Version: 3.9.6
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/django-recurrence.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/django-recurrence.git
+Homepage: https://github.com/django-recurrence/django-recurrence
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.3
+
+Package: python-django-recurrence
+Architecture: all
+Depends: python-dateutil,
+ python-django,
+ python-tz,
+ ${misc:Depends},
+ ${python:Depends}
+Description: Django utility wrapping dateutil.rrule
+ django-recurrence is a utility for working with recurring dates in Django.
+ .
+ It provides:
+ * Recurrence/Rule objects using a subset of rfc2445 (wraps dateutil.rrule)
+ for specifying recurring date/times
+ * RecurrenceField for storing recurring datetimes in the database
+ * a JavaScript widget
+
+Package: python3-django-recurrence
+Architecture: all
+Depends: python3-dateutil,
+ python3-django,
+ python3-tz,
+ ${misc:Depends},
+ ${python3:Depends}
+Description: Django utility wrapping dateutil.rrule (Python3 version)
+ django-recurrence is a utility for working with recurring dates in Django.
+ .
+ It provides:
+ * Recurrence/Rule objects using a subset of rfc2445 (wraps dateutil.rrule)
+ for specifying recurring date/times
+ * RecurrenceField for storing recurring datetimes in the database
+ * a JavaScript widget
+ .
+ This package contains the Python 3 version of the library.
+
+Package: python-django-recurrence-doc
+Architecture: all
+Section: doc
+Depends: ${misc:Depends},
+ ${sphinxdoc:Depends}
+Description: Django utility wrapping dateutil.rrule (documentation)
+ django-recurrence is a utility for working with recurring dates in Django.
+ .
+ It provides:
+ * Recurrence/Rule objects using a subset of rfc2445 (wraps dateutil.rrule)
+ for specifying recurring date/times
+ * RecurrenceField for storing recurring datetimes in the database
+ * a JavaScript widget
+ .
+ This package contains the documentation.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f21cb29
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: django-recurrence
+Upstream-Contact: Tamas Kemenczy <tamas.kemenczy at gmail.com>
+Source: https://github.com/django-recurrence/django-recurrence
+
+Files: *
+Copyright: Tamas Kemenczy and individual contributors.
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2015, Fladischer Michael <fladi at debian.org>
+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:
+ .
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ .
+ 2. 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.
+ .
+ 3. Neither the name of Django nor the names of its contributors may be used
+ to endorse or promote products derived from this software without
+ specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/debian/python-django-recurrence-doc.doc-base b/debian/python-django-recurrence-doc.doc-base
new file mode 100644
index 0000000..7fb0656
--- /dev/null
+++ b/debian/python-django-recurrence-doc.doc-base
@@ -0,0 +1,8 @@
+Document: python-django-recurrence-doc
+Title: Django Recurrence Documentation
+Author: Tamas Kemenczy <tamas.kemenczy at gmail.com>
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-django-recurrence-doc/html/index.html
+Files: /usr/share/doc/python-django-recurrence-doc/html/*.html
diff --git a/debian/python-django-recurrence-doc.docs b/debian/python-django-recurrence-doc.docs
new file mode 100644
index 0000000..2981a3c
--- /dev/null
+++ b/debian/python-django-recurrence-doc.docs
@@ -0,0 +1 @@
+docs/.build/html
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..948709a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,21 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=django-recurrence
+#export PYBUILD_DISABLE=test
+
+%:
+ dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
+
+override_dh_auto_build:
+ PYTHONPATH=. sphinx-build -b html -d docs/.build/.doctrees -N docs docs/.build/html
+ dh_auto_build
+
+override_dh_clean:
+ rm -rf docs/.build
+ dh_clean
+
+override_dh_compress:
+ dh_compress -X changelog.html
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..b2d9036
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/django-recurrence/django-recurrence-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/django-recurrence.git
More information about the Python-modules-commits
mailing list