From c91b235a765439bf6ccafa39df29e98e57dc4974 Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Fri, 11 Feb 2011 13:42:16 -0500 Subject: [PATCH] debianized package --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 20 ++++++++++++++++++++ debian/copyright | 43 +++++++++++++++++++++++++++++++++++++++++++ debian/docs | 1 + debian/rules | 7 +++++++ debian/source/format | 1 + 7 files changed, 78 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..537aa7b --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +python-iso8601 (0.1.4-1) unstable; urgency=low + + * Initial release. + + -- Benjamin Mako Hill Fri, 11 Feb 2011 00:40:18 -0500 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..cbf45ec --- /dev/null +++ b/debian/control @@ -0,0 +1,20 @@ +Source: python-iso8601 +Section: devel +Priority: extra +Maintainer: Benjamin Mako Hill +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 index 0000000..726e4ad --- /dev/null +++ b/debian/copyright @@ -0,0 +1,43 @@ +This work was packaged for Debian by: + + Benjamin Mako Hill on Fri, 11 Feb 2011 00:40:18 -0500 + +It was downloaded from: + + https://code.google.com/p/pyiso8601/ + +Upstream Author: + + Michael Twomey + +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 + diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..f257297 --- /dev/null +++ b/debian/rules @@ -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 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) -- 2.30.2