--- parsedatetime-1.1.2.orig/debian/changelog +++ parsedatetime-1.1.2/debian/changelog @@ -0,0 +1,83 @@ +parsedatetime (1.1.2-0ubuntu1) trusty; urgency=medium + + * New upstream version. + * Build using source format 3. + + -- Matthias Klose Tue, 14 Jan 2014 11:17:43 +0100 + +parsedatetime (0.8.7-3ubuntu1) precise; urgency=low + + * Build using dh_python2 + + -- Matthias Klose Sat, 17 Dec 2011 13:25:58 +0000 + +parsedatetime (0.8.7-3) unstable; urgency=low + + * Team Upload + * No change rebuild to add python2.7 support and drop python2.5 + + -- Scott Kitterman Sun, 01 May 2011 15:07:24 -0400 + +parsedatetime (0.8.7-2) unstable; urgency=low + + * Adding a patch to avoid a deprecation warning: PyICU was renamed to icu. + + -- Bernd Zeimetz Sun, 11 Jul 2010 00:13:41 +0200 + +parsedatetime (0.8.7-1) unstable; urgency=low + + [ Sandro Tosi ] + * debian/control + - switch Vcs-Browser field to viewsvn + + [ Bernd Zeimetz ] + * New upstream version. + * debian/README.source: Adding file as required by policy. + * debian/rules: Remove MacOS ressource files from documentation directory. + * debian/copyright: Updating file, removing embedded Apache 2.0 license, + link to common-licenses. + * debian/control: + - Depends on base-files >= 4.0.4 to have the Apache + License copy installed. + - Bumping Standards-Version to 3.8.1 + + -- Bernd Zeimetz Fri, 27 Mar 2009 09:10:42 +0100 + +parsedatetime (0.8.6-1) unstable; urgency=low + + [ Sandro Tosi ] + * debian/control + - uniforming Vcs-Browser field + + [ Bernd Zeimetz ] + * New upstream version. + * debian/patches: + - Dropping locale-de.dpatch, patch was applied by upstream. + * debian/rules: + - Enabling build tests again, as they were fixed by uptsream. + + -- Bernd Zeimetz Mon, 21 Apr 2008 10:09:17 +0200 + +parsedatetime (0.8.5-2) unstable; urgency=low + + * debian/patches: + - Adding locale-de.dpatch to add de_DE locale constants to + parsedatetime_consts.py. + + -- Bernd Zeimetz Wed, 19 Dec 2007 15:06:33 +0100 + +parsedatetime (0.8.5-1) unstable; urgency=low + + * New upstream version. + * debian/control: + - Updating my email address. + - Updating Standards-Version to 3.7.3. + + -- Bernd Zeimetz Thu, 13 Dec 2007 20:13:20 +0100 + +parsedatetime (0.8.4-1) unstable; urgency=low + + * Initial release (Closes: #449034). + + -- Bernd Zeimetz Sun, 18 Nov 2007 23:43:16 +0100 + --- parsedatetime-1.1.2.orig/debian/compat +++ parsedatetime-1.1.2/debian/compat @@ -0,0 +1 @@ +5 --- parsedatetime-1.1.2.orig/debian/control +++ parsedatetime-1.1.2/debian/control @@ -0,0 +1,36 @@ +Source: parsedatetime +Section: python +Priority: optional +Maintainer: Debian Python Modules Team +Uploaders: Bernd Zeimetz +Build-Depends: debhelper (>= 5.0.37.3), python-all (>= 2.6.6-3~), dpatch +Standards-Version: 3.8.1 +Homepage: https://pypi.python.org/pypi/parsedatetime/ +Vcs-Svn: svn://svn.debian.org/python-modules/packages/parsedatetime/trunk +Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/parsedatetime/trunk/ + +Package: python-parsedatetime +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, base-files (>= 4.0.4) +Recommends: python-pyicu +Description: Python module to parse human-readable date/time expressions + parsedatetime is able to parse, for example, the following: + . + * August 25th, 2008 + * 25 Aug 2008 + * Aug 25 5pm + * 5pm August 25 + * next saturday + * tomorrow + * next thursday at 4pm + * at 4pm + * eod + * tomorrow eod + * eod tuesday + * eoy + * eom + * in 5 minutes + * 5 minutes from now + * 5 hours before now + * 2 hours before noon + * 2 days from tomorrow --- parsedatetime-1.1.2.orig/debian/copyright +++ parsedatetime-1.1.2/debian/copyright @@ -0,0 +1,37 @@ +This package was debianized by Bernd Zeimetz on +Mon, 05 Nov 2007 01:29:28 +0100. + +It was downloaded from http://code.google.com/p/parsedatetime/downloads/list + +Upstream Authors: + + Mike Taylor + Darshana Chhajed + +Copyright: + + Copyright (c) 2004-2007 Mike Taylor + Copyright (c) 2006-2007 Darshana Chhajed + All rights reserved. + +License: + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +On Debian systems a full copy of the License can be found in +/usr/share/common-licenses/Apache-2.0 + +The Debian packaging is +Copyright (C) 2007-2009 Bernd Zeimetz +and is licensed under the Apache License, Version 2.0, see above. + --- parsedatetime-1.1.2.orig/debian/rules +++ parsedatetime-1.1.2/debian/rules @@ -0,0 +1,66 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PKGNAME:=python-parsedatetime +PYVERS:=$(shell pyversions -r) + + +build: build-stamp +build-stamp: + dh_testdir + + set -e; \ + for py in $(PYVERS); do \ + $$py setup.py build; \ + done + +ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) +endif + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f install-stamp build-stamp + -for py in $(PYVERS); do \ + $$py setup.py clean; \ + done + find . -name '*.pyc' | xargs rm -f + rm -rf build + rm -f *-stamp + dh_clean + +install: install-stamp +install-stamp: + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + set -e; \ + for py in $(PYVERS); do \ + $$py setup.py install --root=debian/$(PKGNAME); \ + done + + dh_installdocs -A + touch install-stamp + +binary-arch: build install +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_compress -X.py + dh_fixperms + dh_python2 + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install + --- parsedatetime-1.1.2.orig/debian/source/format +++ parsedatetime-1.1.2/debian/source/format @@ -0,0 +1 @@ +1.0 --- parsedatetime-1.1.2.orig/debian/watch +++ parsedatetime-1.1.2/debian/watch @@ -0,0 +1,2 @@ +version=3 +https://pypi.python.org/packages/source/p/parsedatetime/parsedatetime-([0-9.]*).tar.gz