[Python-modules-commits] [python-aniso8601] 01/01: Re-add missing debian dir
Jonathan Carter
highvoltage-guest at moszumanska.debian.org
Tue Jun 6 07:43:28 UTC 2017
This is an automated email from the git hooks/post-receive script.
highvoltage-guest pushed a commit to branch master
in repository python-aniso8601.
commit 518f2043b63bb56e50282e3377b9d5a51e44ee2f
Author: Jonathan Carter <jcarter at linux.com>
Date: Tue Jun 6 09:43:18 2017 +0200
Re-add missing debian dir
---
debian/changelog | 28 +++++++++++++++++++++++++++
debian/compat | 1 +
debian/control | 45 +++++++++++++++++++++++++++++++++++++++++++
debian/copyright | 37 +++++++++++++++++++++++++++++++++++
debian/python-aniso8601.docs | 1 +
debian/python3-aniso8601.docs | 1 +
debian/rules | 7 +++++++
debian/source/format | 1 +
debian/watch | 3 +++
9 files changed, 124 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..aa643b2
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,28 @@
+python-aniso8601 (1.2.1-1) experimental; urgency=medium
+
+ * New upstream version
+
+ -- Jonathan Carter <jcarter at linux.com> Sat, 27 May 2017 15:57:51 +0200
+
+python-aniso8601 (1.2.0-1) unstable; urgency=medium
+
+ * New upstream version
+ * Set new maintainer address
+ * Update standards version to 0.9.8 (no changes)
+ * Update copyright to 2016 in copyright file
+ * New upstream license (GPL-3+ -> BSD)
+ * Add build-deps: python-dateutil, python3-dateutil
+
+ -- Jonathan Carter <jcarter at linux.com> Sun, 30 Oct 2016 09:41:38 +0200
+
+python-aniso8601 (1.1.0-1) unstable; urgency=medium
+
+ * New upstream version
+
+ -- Jonathan Carter <jonathan at ubuntu.com> Wed, 20 Jan 2016 09:36:36 +0200
+
+python-aniso8601 (0.83-1) unstable; urgency=low
+
+ * Initial release (Closes: #763996)
+
+ -- Jonathan Carter <jonathan at ubuntu.com> Sat, 04 Oct 2014 17:05:31 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..8e4abc4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,45 @@
+Source: python-aniso8601
+Section: python
+Priority: optional
+Maintainer: Jonathan Carter <jcarter at linux.com>
+Build-Depends: debhelper (>= 10),
+ dh-python,
+ python-all,
+ python-dateutil,
+ python-setuptools,
+ python3-all,
+ python3-dateutil,
+ python3-setuptools
+Standards-Version: 3.9.8
+Homepage: https://bitbucket.org/nielsenb/aniso8601
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-aniso8601.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-aniso8601.git
+
+Package: python-aniso8601
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}
+Description: python2 library for parsing dates and time
+ Library for parsing the following:
+ - Parse a time, get a datetime.time
+ - Parse a date, get a datetime.date
+ - Parse a datetime, get a datetime.datetime
+ - Parse a duration, get a datetime.timedelta
+ - Parse an interval, get a tuple of dates or datetimes
+ - Parse a repeating interval, get a date or datetime generator
+ .
+ This package provides the python2 version, a python3 package
+ is also available.
+
+Package: python3-aniso8601
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
+Description: python3 library for parsing dates and time
+ Library for parsing the following:
+ - Parse a time, get a datetime.time
+ - Parse a date, get a datetime.date
+ - Parse a datetime, get a datetime.datetime
+ - Parse a duration, get a datetime.timedelta
+ - Parse an interval, get a tuple of dates or datetimes
+ - Parse a repeating interval, get a date or datetime generator
+ .
+ This package provides the python3 version.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..792b012
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,37 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: aniso8601
+Source: https://bitbucket.org/nielsenb/aniso8601
+
+Files: *
+Copyright: 2016 Brandon Nielsen <nielsenb at jetfuse.net>
+License: BSD-3-Clause
+
+Files: debian/*
+Copyright: 2016 Jonathan Carter <jonathan at ubuntu.com>
+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 the copyright holder 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 HOLDER 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-aniso8601.docs b/debian/python-aniso8601.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-aniso8601.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-aniso8601.docs b/debian/python3-aniso8601.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-aniso8601.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..6837277
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=aniso8601
+
+%:
+ dh $@ --buildsystem=pybuild --with=python2,python3
+
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..771478f
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/aniso8601/aniso8601-(.+)\.(?: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/python-aniso8601.git
More information about the Python-modules-commits
mailing list