debianized package
authorBenjamin Mako Hill <mako@atdot.cc>
Fri, 11 Feb 2011 18:42:16 +0000 (13:42 -0500)
committerBenjamin Mako Hill <mako@atdot.cc>
Fri, 11 Feb 2011 18:42:16 +0000 (13:42 -0500)
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/docs [new file with mode: 0644]
debian/rules [new file with mode: 0755]
debian/source/format [new file with mode: 0644]

diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..537aa7b
--- /dev/null
@@ -0,0 +1,5 @@
+python-iso8601 (0.1.4-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Benjamin Mako Hill <mako@debian.org>  Fri, 11 Feb 2011 00:40:18 -0500
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..7f8f011
--- /dev/null
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..cbf45ec
--- /dev/null
@@ -0,0 +1,20 @@
+Source: python-iso8601
+Section: devel
+Priority: extra
+Maintainer: Benjamin Mako Hill <mako@debian.org>
+Build-Depends: cdbs, debhelper (>= 7.0.50~), python-support
+Standards-Version: 3.8.4
+Homepage: https://code.google.com/p/pyiso8601
+XS-Python-Version: all
+
+Package: python-iso8601
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
+XB-Python-Version: ${python:Versions}
+Description: python module to parse ISO 8601 dates
+ Many file formats and standards use the ISO 8601 date format
+ (e.g. 2007-01-14T20:34:22+00:00) to store dates in a neutral,
+ unambiguous manner. This simple Python module parses the most common
+ forms encountered and returns Python datetime objects.
+
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..726e4ad
--- /dev/null
@@ -0,0 +1,43 @@
+This work was packaged for Debian by:
+
+  Benjamin Mako Hill <mako@debian.org> on Fri, 11 Feb 2011 00:40:18 -0500
+
+It was downloaded from:
+
+  https://code.google.com/p/pyiso8601/
+
+Upstream Author:
+
+ Michael Twomey <micktwomey+iso8601@gmail.com>
+
+Copyright:
+
+ Copyright (C) 2007 Michael Twomey
+ Released under the MIT license.
+
+License:
+
+  Permission is hereby granted, free of charge, to any person
+  obtaining a copy of this software and associated documentation files
+  (the "Software"), to deal in the Software without restriction,
+  including without limitation the rights to use, copy, modify, merge,
+  publish, distribute, sublicense, and/or sell copies of the Software,
+  and to permit persons to whom the Software is furnished to do so,
+  subject to the following conditions:
+
+  The above copyright notice and this permission notice shall be
+  included in all copies or substantial portions of the Software.
+
+  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+  BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+  ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+  SOFTWARE.
+
+The Debian packaging is:
+
+    Copyright (C) 2011 Benjamin Mako Hill <mako@debian.org>
+
diff --git a/debian/docs b/debian/docs
new file mode 100644 (file)
index 0000000..e845566
--- /dev/null
@@ -0,0 +1 @@
+README
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..f257297
--- /dev/null
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+DEB_PYTHON_SYSTEM=pysupport
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644 (file)
index 0000000..163aaf8
--- /dev/null
@@ -0,0 +1 @@
+3.0 (quilt)

Benjamin Mako Hill || Want to submit a patch?