--- python-ooolib-0.0.22.orig/debian/changelog +++ python-ooolib-0.0.22/debian/changelog @@ -0,0 +1,101 @@ +python-ooolib (0.0.22-5) unstable; urgency=medium + + * remove obsolete debian/pycompat and Python-Provides: + * rm -rf rm -f ooolib/__pycache__ instead of version-specifc .pyc + (thanks Scott Kitterman) + + -- Rene Engelhard Sun, 15 Sep 2019 21:10:44 +0200 + +python-ooolib (0.0.22-4) unstable; urgency=medium + + * update debian/watch... + + -- Rene Engelhard Sun, 01 Sep 2019 10:38:56 +0200 + +python-ooolib (0.0.22-3) unstable; urgency=medium + + * build-depend against dh-python3, thanks lintian + + -- Rene Engelhard Sat, 31 Aug 2019 07:48:31 +0200 + +python-ooolib (0.0.22-2) unstable; urgency=medium + + * add Homepage: + * update debian/copyright (update URL, authors, copyright) + (closes: #931329) + + -- Rene Engelhard Fri, 30 Aug 2019 21:32:00 +0200 + +python-ooolib (0.0.22-1) unstable; urgency=medium + + * "New" upstream release + - supports python3 + + * debian/rules, debian/control: build python3-ooolib instead of + python-ooolib (closes: #937190) + + -- Rene Engelhard Fri, 30 Aug 2019 20:40:04 +0200 + +ooolib-python (0.0.17-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Rebuild to add Python 2.7 support + + -- Piotr Ożarowski Sun, 08 May 2011 16:46:01 +0200 + +ooolib-python (0.0.17-2) unstable; urgency=low + + * move to LibreOffice Maintainers + * build with dh_python2 (closes: #616924) + + -- Rene Engelhard Tue, 08 Mar 2011 18:34:55 +0100 + +ooolib-python (0.0.17-1) unstable; urgency=low + + * New upstream release (closes: #564590) + + -- Rene Engelhard Thu, 28 Jan 2010 22:41:33 +0100 + +ooolib-python (0.0.16-1) unstable; urgency=low + + * New upstream release + - fixes handling of "" in formulas (closes: #492582) + + -- Rene Engelhard Sun, 03 Aug 2008 15:26:43 +0200 + +ooolib-python (0.0.13-1) unstable; urgency=low + + * New upstream release + + -- Rene Engelhard Fri, 06 Jun 2008 09:55:17 +0200 + +ooolib-python (0.0.11-1) unstable; urgency=low + + * New upstream release + + -- Rene Engelhard Fri, 19 Oct 2007 16:11:40 +0200 + +ooolib-python (0.0.9-1) unstable; urgency=low + + * New upstream release + + -- Rene Engelhard Wed, 04 Jul 2007 19:11:21 +0200 + +ooolib-python (0.0.8-3) unstable; urgency=low + + * another typo (closes: #419977) + + -- Rene Engelhard Thu, 19 Apr 2007 17:46:32 +0200 + +ooolib-python (0.0.8-2) unstable; urgency=low + + * fix typo in package description (closes: #418512) + + -- Rene Engelhard Wed, 11 Apr 2007 16:37:09 +0200 + +ooolib-python (0.0.8-1) unstable; urgency=low + + * Initial release + + -- Rene Engelhard Wed, 21 Feb 2007 10:47:47 +0100 + --- python-ooolib-0.0.22.orig/debian/compat +++ python-ooolib-0.0.22/debian/compat @@ -0,0 +1 @@ +5 --- python-ooolib-0.0.22.orig/debian/control +++ python-ooolib-0.0.22/debian/control @@ -0,0 +1,19 @@ +Source: python-ooolib +Section: python +Priority: optional +Maintainer: Debian LibreOffice Team +Uploaders: Rene Engelhard , Chris Halls +Build-Depends: debhelper (>= 5), python3-all, python3, dh-python +Standards-Version: 3.7.2 + +Package: python3-ooolib +Architecture: all +XB-Python-Version: ${python3:Versions} +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python3:Depends} +Description: Python module for creating OpenDocument documents (sp.sheet/text) + ooolib is a python module to be used to create simple OpenDocument + spreadsheet and text documents. + . + In contrast to libooolib-perl this supports ODT but *not* the + old format. + --- python-ooolib-0.0.22.orig/debian/copyright +++ python-ooolib-0.0.22/debian/copyright @@ -0,0 +1,19 @@ +This package was debianized by Rene Engelhard on +Sat, 27 Jan 2007 22:49:26 +0100. + +It was downloaded from https://github.com/zbohm/python-ooolib/releases + +Upstream Author: + Joseph Colton + Zdeněk Böhm + +Copyright: Copyright (C) 2006-2009 Joseph Colton + +License: + +GNU LGPL; on Debian systems you can find the full text of the LGPL +in /usr/share/common-licenses/LGPL + +The Debian packaging is (C) 2007, Rene Engelhard and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. + --- python-ooolib-0.0.22.orig/debian/docs +++ python-ooolib-0.0.22/debian/docs @@ -0,0 +1 @@ +README --- python-ooolib-0.0.22.orig/debian/rules +++ python-ooolib-0.0.22/debian/rules @@ -0,0 +1,61 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + touch $@ + +clean: + dh_testdir + dh_testroot + rm -rf build + rm -rf ooolib/__pycache__ + rm -f build-stamp configure-stamp + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + for i in `py3versions -rs`; do \ + $$i ./setup.py install --prefix=debian/python3-ooolib/usr \ + --install-layout=deb; \ + done + +binary-arch: build install + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples examples/*ex*.py + dh_python3 + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- python-ooolib-0.0.22.orig/debian/watch +++ python-ooolib-0.0.22/debian/watch @@ -0,0 +1,3 @@ +version=4 +opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/python-ooolib-$1\.tar\.gz/ \ + https://github.com/zbohm/python-ooolib/tags .*/v?(\d\S+)\.tar\.gz