debian/0000775000000000000000000000000012311632370007166 5ustar debian/rules0000775000000000000000000000102312163455472010255 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/python-distutils.mk build/python-iso8601:: python setup.py build build/python-iso8601:: python setup.py install --root=$(CURDIR)/debian/python-iso8601 --install-layout=deb dh_python2 -ppython-iso8601 build/python3-iso8601:: python3 setup.py build install/python3-iso8601:: python3 setup.py install --root=$(CURDIR)/debian/python3-iso8601 --install-layout=deb dh_python3 -ppython3-iso8601 clean:: rm -rf iso8601.egg-info debian/source/0000775000000000000000000000000011740425773010502 5ustar debian/source/format0000664000000000000000000000001411740425773011710 0ustar 3.0 (quilt) debian/docs0000664000000000000000000000001312232257575010047 0ustar README.rst debian/compat0000664000000000000000000000000211740425773010400 0ustar 7 debian/copyright0000664000000000000000000000271211740425773011137 0ustar 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 debian/control0000664000000000000000000000233212232256670010600 0ustar Source: python-iso8601 Section: python Priority: extra Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Benjamin Mako Hill Build-Depends: cdbs (>= 0.4.90~), debhelper (>= 7.0.50~), python-all (>= 2.6.6-3~), python3-all Standards-Version: 3.9.3 Homepage: https://code.google.com/p/pyiso8601 XS-Python-Version: >= 2.5 Package: python-iso8601 Architecture: all Depends: ${python:Depends}, ${misc:Depends} Provides: ${python:Provides} Description: python module to parse ISO 8601 dates (python2) 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. Package: python3-iso8601 Architecture: all Depends: ${python3:Depends}, ${misc:Depends} Provides: ${python3:Provides} Description: python module to parse ISO 8601 dates (python3) 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. debian/changelog0000664000000000000000000000274412311632370011047 0ustar python-iso8601 (0.1.10-0ubuntu1) trusty; urgency=medium * New upstream release. -- Chuck Short Mon, 17 Mar 2014 13:46:22 -0400 python-iso8601 (0.1.8-0ubuntu2) trusty; urgency=medium * Rebuild to drop files installed into /usr/share/pyshared. -- Matthias Klose Sun, 23 Feb 2014 13:51:50 +0000 python-iso8601 (0.1.8-0ubuntu1) trusty; urgency=low * New upstream release. * debian/patches/0001-fixed-issue-with-distutils-that-does-not-work-in-new.patch: Dropped -- Chuck Short Thu, 24 Oct 2013 10:44:37 -0700 python-iso8601 (0.1.4-2ubuntu3) saucy; urgency=low * debian/rules: Fix python typo not install the py3 eggs. -- Chuck Short Fri, 28 Jun 2013 22:57:53 -0500 python-iso8601 (0.1.4-2ubuntu2) saucy; urgency=low * debian/rules: Fix python-iso8601 package. -- Chuck Short Fri, 28 Jun 2013 14:05:31 -0500 python-iso8601 (0.1.4-2ubuntu1) saucy; urgency=low * debian/rules, debian/control: Build for python3. -- Chuck Short Wed, 26 Jun 2013 10:43:30 -0500 python-iso8601 (0.1.4-2) unstable; urgency=low * Convert to dh_python2 (Closes: #661534) * Bumped standard version to 3.9.3. -- Benjamin Mako Hill Sun, 08 Apr 2012 20:25:40 -0400 python-iso8601 (0.1.4-1) unstable; urgency=low * Initial release of package in Debian. (Closes: #612941) -- Benjamin Mako Hill Fri, 11 Feb 2011 00:40:18 -0500 debian/patches/0000775000000000000000000000000012232256744010626 5ustar debian/patches/0001-fixed-issue-with-distutils-that-does-not-work-in-new.patch0000664000000000000000000000127712232256705024310 0ustar From 66eb3fa3ed269470155b08d63dc848b0760ed48b Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Fri, 11 Feb 2011 14:22:11 -0500 Subject: fixed issue with distutils that does not work in new version of python diff -Naurp python-iso8601-0.1.8.orig/setup.py python-iso8601-0.1.8/setup.py --- python-iso8601-0.1.8.orig/setup.py 2013-10-22 09:03:57.000000000 -0700 +++ python-iso8601-0.1.8/setup.py 2013-10-24 10:49:01.125883450 -0700 @@ -3,7 +3,7 @@ import os try: from setuptools import setup except ImportError: - from distutils import setup + from distutils.core import setup long_description = open(os.path.join(os.path.dirname(__file__), "README.rst")).read() debian/patches/series0000664000000000000000000000010012232256744012032 0ustar 0001-fixed-issue-with-distutils-that-does-not-work-in-new.patch