[Python-modules-commits] r33742 - in packages/python-aniso8601/trunk (11 files)

highvoltage-guest at users.alioth.debian.org highvoltage-guest at users.alioth.debian.org
Thu Aug 13 17:25:03 UTC 2015


    Date: Thursday, August 13, 2015 @ 17:25:02
  Author: highvoltage-guest
Revision: 33742

[svn-inject] Applying Debian modifications (0.83-1) to trunk

Added:
  packages/python-aniso8601/trunk/debian/
  packages/python-aniso8601/trunk/debian/changelog
  packages/python-aniso8601/trunk/debian/compat
  packages/python-aniso8601/trunk/debian/control
  packages/python-aniso8601/trunk/debian/copyright
  packages/python-aniso8601/trunk/debian/python-aniso8601.docs
  packages/python-aniso8601/trunk/debian/python3-aniso8601.docs
  packages/python-aniso8601/trunk/debian/rules
  packages/python-aniso8601/trunk/debian/source/
  packages/python-aniso8601/trunk/debian/source/format
  packages/python-aniso8601/trunk/debian/watch


Property changes on: packages/python-aniso8601/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-aniso8601/trunk/debian/changelog
===================================================================
--- packages/python-aniso8601/trunk/debian/changelog	                        (rev 0)
+++ packages/python-aniso8601/trunk/debian/changelog	2015-08-13 17:25:02 UTC (rev 33742)
@@ -0,0 +1,5 @@
+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

Added: packages/python-aniso8601/trunk/debian/compat
===================================================================
--- packages/python-aniso8601/trunk/debian/compat	                        (rev 0)
+++ packages/python-aniso8601/trunk/debian/compat	2015-08-13 17:25:02 UTC (rev 33742)
@@ -0,0 +1 @@
+9

Added: packages/python-aniso8601/trunk/debian/control
===================================================================
--- packages/python-aniso8601/trunk/debian/control	                        (rev 0)
+++ packages/python-aniso8601/trunk/debian/control	2015-08-13 17:25:02 UTC (rev 33742)
@@ -0,0 +1,43 @@
+Source: python-aniso8601
+Section: python
+Priority: optional
+Maintainer: Jonathan Carter <jonathan at ubuntu.com>
+Build-Depends:
+ debhelper (>= 9),
+ dh-python,
+ python-all,
+ python3-all,
+ python-setuptools,
+ python3-setuptools
+Standards-Version: 3.9.6
+Homepage: https://bitbucket.org/nielsenb/aniso8601
+
+Package: python-aniso8601
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python: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: ${shlibs:Depends}, ${misc:Depends}, ${python3: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.
+

Added: packages/python-aniso8601/trunk/debian/copyright
===================================================================
--- packages/python-aniso8601/trunk/debian/copyright	                        (rev 0)
+++ packages/python-aniso8601/trunk/debian/copyright	2015-08-13 17:25:02 UTC (rev 33742)
@@ -0,0 +1,42 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: aniso8601
+Source: https://bitbucket.org/nielsenb/aniso8601
+
+Files: *
+Copyright: 2013-2014 Brandon Nielsen <nielsenb at jetfuse.net>
+License: GPL-3+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU 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 General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems the full text of the GNU General Public License
+ version 3 can be found in the file
+ `/usr/share/common-licenses/GPL-3'.
+
+Files: debian/*
+Copyright: 2014 Jonathan Carter <jonathan at ubuntu.com>
+License: GPL-2+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This package 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 General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".

Added: packages/python-aniso8601/trunk/debian/python-aniso8601.docs
===================================================================
--- packages/python-aniso8601/trunk/debian/python-aniso8601.docs	                        (rev 0)
+++ packages/python-aniso8601/trunk/debian/python-aniso8601.docs	2015-08-13 17:25:02 UTC (rev 33742)
@@ -0,0 +1 @@
+README.rst

Added: packages/python-aniso8601/trunk/debian/python3-aniso8601.docs
===================================================================
--- packages/python-aniso8601/trunk/debian/python3-aniso8601.docs	                        (rev 0)
+++ packages/python-aniso8601/trunk/debian/python3-aniso8601.docs	2015-08-13 17:25:02 UTC (rev 33742)
@@ -0,0 +1 @@
+README.rst

Added: packages/python-aniso8601/trunk/debian/rules
===================================================================
--- packages/python-aniso8601/trunk/debian/rules	                        (rev 0)
+++ packages/python-aniso8601/trunk/debian/rules	2015-08-13 17:25:02 UTC (rev 33742)
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=aniso8601
+
+%:
+	dh $@ --buildsystem=pybuild --with=python2,python3
+


Property changes on: packages/python-aniso8601/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-aniso8601/trunk/debian/source/format
===================================================================
--- packages/python-aniso8601/trunk/debian/source/format	                        (rev 0)
+++ packages/python-aniso8601/trunk/debian/source/format	2015-08-13 17:25:02 UTC (rev 33742)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-aniso8601/trunk/debian/watch
===================================================================
--- packages/python-aniso8601/trunk/debian/watch	                        (rev 0)
+++ packages/python-aniso8601/trunk/debian/watch	2015-08-13 17:25:02 UTC (rev 33742)
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/a/aniso8601/aniso8601-(.+).tar.gz




More information about the Python-modules-commits mailing list