--- python-gammu-0.28.orig/debian/compat +++ python-gammu-0.28/debian/compat @@ -0,0 +1 @@ +4 --- python-gammu-0.28.orig/debian/pycompat +++ python-gammu-0.28/debian/pycompat @@ -0,0 +1 @@ +2 --- python-gammu-0.28.orig/debian/control +++ python-gammu-0.28/debian/control @@ -0,0 +1,56 @@ +Source: python-gammu +Section: python +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Michal Čihař +Build-Depends: debhelper (>= 5.0.37.2), + python-all-dev (>= 2.3.5-11), + python-all-dbg, + libgammu-dev (>= 1.21.95), + python-epydoc, + pkg-config, + python-central (>= 0.5.6) +Standards-Version: 3.8.0 +XS-Python-Version: all +Vcs-Svn: svn://svn.cihar.com/debian-python-gammu/trunk +Vcs-Browser: http://viewsvn.cihar.com/debian-python-gammu/trunk +Homepage: http://cihar.com/gammu/python + +Package: python-gammu +Architecture: any +Replaces: python2.4-gammu (<< 0.14-1), python2.3-gammu (<< 0.14-1) +Conflicts: python2.4-gammu (<< 0.14-1), python2.3-gammu (<< 0.14-1) +Provides: ${python:Provides} +XB-Python-Version: ${python:Versions} +Suggests: python-gammu-doc (>= ${source:Version}) +Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends} +Description: Python module to communicate with mobile phones + This provides gammu module, that can work with any phone Gammu + supports - many Nokias, Siemens, Alcatel, ... + . + This package contains modules for all Python versions supported in Debian. + +Package: python-gammu-dbg +Architecture: any +Priority: extra +Provides: ${python:Provides} +XB-Python-Version: ${python:Versions} +Suggests: python-gammu-doc (>= ${source:Version}) +Depends: python-gammu (= ${binary:Version}), python-dbg, ${shlibs:Depends}, ${python:Depends}, ${misc:Depends} +Description: Python module to communicate with mobile phones + This provides gammu module, that can work with any phone Gammu + supports - many Nokias, Siemens, Alcatel, ... + . + This package contains modules for all Python versions supported in + Debian built for Python debug interpreter. + +Package: python-gammu-doc +Architecture: all +Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends}, python-gammu (>= ${source:Version}) +Section: doc +Description: Documentation for Python module to communicate with mobile phones + This provides gammu module, that can work with any phone Gammu + supports - many Nokias, Siemens, Alcatel, ... + . + This package contains documentation and examples. + --- python-gammu-0.28.orig/debian/copyright +++ python-gammu-0.28/debian/copyright @@ -0,0 +1,29 @@ +This package was debianized by Michal Čihař on +Sun, 04 Jan 2004 16:47:08 +0100. + +It was downloaded from http://cihar.com/gammu/python + +Upstream Author: Michal Čihař + +Copyright: + +Copyright © 2003 - 2008 Michal Čihař + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-2'. + +The Debian packaging is (C) 2004 - 2007, Michal Čihař and is +licensed under the GPL, see above. --- python-gammu-0.28.orig/debian/watch +++ python-gammu-0.28/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://dl.cihar.com/python-gammu/latest/python-gammu-(.*)\.tar.gz --- python-gammu-0.28.orig/debian/rules +++ python-gammu-0.28/debian/rules @@ -0,0 +1,91 @@ +#!/usr/bin/make -f + +include /usr/share/python/python.mk + +#export DH_VERBOSE=1 + +PYVERSIONS=$(shell pyversions -r) +# default is first version +DEFAULTPY=$(shell pyversions -d -v) + +build: build-stamp + +build-stamp: + dh_testdir + # Build normal modules + set -e; \ + for python in $(PYVERSIONS) ; do \ + $$python setup.py build ; \ + done + # Build documentation + set -e; \ + cd build/lib*$(DEFAULTPY) ; \ + epydoc --verbose --name python-gammu --url http://cihar.com/gammu/python/ gammu gammu.Core ; \ + mv html ../../ ; \ + rm gammu/*.pyc + # Build debug modules + set -e; \ + for python in $(PYVERSIONS) ; do \ + $$python-dbg setup.py build ; \ + done + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + rm -rf build + rm -rf html + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + # Install normal modules + set -e; \ + for python in $(PYVERSIONS) ; do \ + PYTMP="debian/python-gammu" ; \ + $$python setup.py install --no-compile --root=$$PYTMP $(py_setup_install_args) ; \ + done + # Install debug modules + set -e; \ + for python in $(PYVERSIONS) ; do \ + PYTMP="debian/python-gammu-dbg" ; \ + $$python-dbg setup.py install --no-compile --root=$$PYTMP $(py_setup_install_args) ; \ + find $$PYTMP \( -name '*.py' -o -name '*.egg-info' \) -print0 | xargs -0 rm ; \ + done + + +# Used by later rules in another make process +binary-common: + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples +ifeq (,$(findstring -a, $(DH_OPTIONS))) + DH_OPTIONS= dh_strip -ppython-gammu --dbg-package=python-gammu-dbg + rm -rf debian/python-gammu-dbg/usr/share/doc/python-gammu-dbg + mkdir -p debian/python-gammu-dbg/usr/share/doc + ln -s python-gammu debian/python-gammu-dbg/usr/share/doc/python-gammu-dbg +endif + dh_pycentral + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-indep: install + $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common + +binary-arch: install + $(MAKE) -f debian/rules DH_OPTIONS=-a binary-common + +binary: binary-indep binary-arch + +.PHONY: build clean binary-indep binary-arch binary install --- python-gammu-0.28.orig/debian/python-gammu-doc.docs +++ python-gammu-0.28/debian/python-gammu-doc.docs @@ -0,0 +1,3 @@ +html +AUTHORS +README --- python-gammu-0.28.orig/debian/python-gammu-doc.examples +++ python-gammu-0.28/debian/python-gammu-doc.examples @@ -0,0 +1 @@ +examples/*.py --- python-gammu-0.28.orig/debian/changelog +++ python-gammu-0.28/debian/changelog @@ -0,0 +1,282 @@ +python-gammu (0.28-1ubuntu1) jaunty; urgency=low + + * debian/rules: + - Include /usr/share/python/python.mk. + - Add py_setup_install_args macro top setup.py install to build with + Python 2.6 (LP: #336930). + + -- Alessio Treglia Fri, 13 Mar 2009 09:34:16 +0000 + +python-gammu (0.28-1) unstable; urgency=low + + * New upstream version. + * Build depend on gammu >= 1.21.95. + + -- Michal Čihař Thu, 18 Dec 2008 14:16:37 +0100 + +python-gammu (0.27-1) unstable; urgency=low + + * New upstream version. + * Update standards to 3.8.0 (no changes needed). + + -- Michal Čihař Fri, 03 Oct 2008 16:33:59 +0200 + +python-gammu (0.26-1) unstable; urgency=low + + * New upstream version. + + -- Michal Čihař Sun, 11 May 2008 00:32:18 +0200 + +python-gammu (0.25-2) unstable; urgency=low + + * Avoid conflicting files in normal and dbg package. + * Fix section in doc-base file. + + -- Michal Čihař Thu, 06 Mar 2008 09:53:09 +0100 + +python-gammu (0.25-1) unstable; urgency=low + + * New upstream version. + * Build depend on Gammu >= 1.18.91 which is needed for build. + * Upstream now has ChangeLog. + * Adjusted Vcs-* headers to point to trunk. + * Drop not needed debian/patches. + * Fix spelling of Python in description and doc base abstract. + * Update upstream copyright. + + -- Michal Čihař Wed, 05 Mar 2008 22:45:42 +0100 + +python-gammu (0.24-1) unstable; urgency=low + + * New upstream version. + * This package is GPL2 only, so it should be stated in + debian/copyright. + * Update policy to 3.7.3 (no changes needed). + * Drop dpatch build dependency, it's actually not being used. + + -- Michal Čihař Sun, 16 Dec 2007 23:05:26 +0900 + +python-gammu (0.23-1) unstable; urgency=low + + * New upstream release. + - Builds correctly with current Gammu (Closes: #450436). + - Patch for removing library version check is not needed. + * Convert XS-Vcs fields to Vcs. + + -- Michal Čihař Thu, 08 Nov 2007 13:03:13 +0900 + +python-gammu (0.22-3) unstable; urgency=low + + * Now uses python-central to add dependency on python (Closes: #445370). + * Use new Homepage field. + + -- Michal Čihař Sat, 06 Oct 2007 12:29:44 +0900 + +python-gammu (0.22-2) unstable; urgency=low + + * python-gammu-dbg has extra priority. + * Do not check version in addition to soname (Closes: #441197). + + -- Michal Čihař Fri, 07 Sep 2007 23:15:31 +0900 + +python-gammu (0.22-1) unstable; urgency=low + + * New upstream release. + + -- Michal Čihař Sat, 25 Aug 2007 22:49:58 +0900 + +python-gammu (0.21-4) unstable; urgency=low + + * Fix typo in control file ptyhon -> python. + + -- Michal Čihař Tue, 24 Jul 2007 10:08:36 +0200 + +python-gammu (0.21-3) unstable; urgency=low + + * Provide debug package. + * Run epydoc in verbose mode. + + -- Michal Čihař Fri, 20 Jul 2007 11:59:36 +0200 + +python-gammu (0.21-2) unstable; urgency=low + + * Fix parameters to epydoc to fix FTBFS (Closes: #433902). + + -- Michal Čihař Fri, 20 Jul 2007 11:09:17 +0200 + +python-gammu (0.21-1) unstable; urgency=low + + * New upstream release. + + -- Michal Čihař Fri, 15 Jun 2007 21:22:39 +0200 + +python-gammu (0.20-1) unstable; urgency=low + + * New upstream release. + * Improve generating of epydoc documentation. + * Add XS-Vcs headers. + * Use my Debian email address. + + -- Michal Čihař Mon, 14 May 2007 09:58:57 +0200 + +python-gammu (0.19-1) unstable; urgency=low + + * New upstream release. + * Fixes segfault on startup (Closes: #410345). + + -- Michal Čihař Mon, 12 Mar 2007 09:17:31 +0100 + +python-gammu (0.18-1) unstable; urgency=low + + * New upstream release. + + -- Michal Čihař Wed, 7 Feb 2007 21:43:39 +0100 + +python-gammu (0.17-1) unstable; urgency=low + + * New upstream release. + + -- Michal Čihař Mon, 18 Dec 2006 17:32:11 +0100 + +python-gammu (0.16-1) unstable; urgency=low + + * New upstream release. + + -- Michal Čihař Mon, 4 Dec 2006 22:41:59 +0100 + +python-gammu (0.15-1) unstable; urgency=low + + * New upstream release. + + -- Michal Čihař Wed, 20 Sep 2006 08:13:34 +0200 + +python-gammu (0.14-2) unstable; urgency=low + + * python-gammu is not dummy package anymore, don't say so in description. + * Rebuild against current libgammu0 (Closes: #376486). + + -- Michal Čihař Wed, 12 Jul 2006 10:12:41 +0200 + +python-gammu (0.14-1) unstable; urgency=low + + * New upstream release. + * Build for all python version at once according to new Python policy + (Closes: #373536). + + -- Michal Čihař Thu, 29 Jun 2006 22:03:29 +0200 + +python-gammu (0.13-1) unstable; urgency=low + + * New upstream release. + * Updated policy to 3.7.2.0 (no changes needed). + * Add watch file. + * Section of python-gammu-doc is doc. + + -- Michal Čihař Sun, 14 May 2006 17:07:43 +0200 + +python-gammu (0.12-2) unstable; urgency=low + + * Rebuilt against gammu 1.06.00. + + -- Michal Čihař Tue, 25 Apr 2006 18:48:23 +0200 + +python-gammu (0.12-1) unstable; urgency=low + + * New upstream release. + * Build depends on pkg-config. + + -- Michal Čihař Fri, 24 Mar 2006 23:14:03 +0100 + +python-gammu (0.11-4) unstable; urgency=low + + * Change build deps to libgammu-dev. + + -- Michal Čihař Thu, 16 Mar 2006 22:14:30 +0100 + +python-gammu (0.11-3) unstable; urgency=low + + * Rebuilt agains gammu 1.05.00-2. + + -- Michal Čihař Wed, 15 Mar 2006 19:56:46 +0100 + +python-gammu (0.11-2) unstable; urgency=low + + * Rebuilt against gammu 1.05.00. + + -- Michal Čihař Mon, 13 Mar 2006 21:53:05 +0100 + +python-gammu (0.11-1) unstable; urgency=low + + * Not native package any more, it is better for expected inclusion in + Debian. + * New upstream version. + * Initial release for Debian archives (Closes: #326711). + + -- Michal Čihař Thu, 9 Mar 2006 20:46:00 +0100 + +python-gammu (0.10.1) unstable; urgency=low + + * Rebuilt against fixed gammu. + + -- Michal Čihař Wed, 25 Jan 2006 20:47:20 +0100 + +python-gammu (0.10) unstable; urgency=low + + * New version. + * Fix homepage in control file to fit current recommendations. + + -- Michal Čihař Sun, 8 Jan 2006 19:48:41 +0100 + +python-gammu (0.9) unstable; urgency=low + + * Drop bug.control file. + * Build for both python 2.3 and 2.4. + * Add epydoc documentation to python-gammu-doc package. + * Move exaples to -doc package. + * This was supposed to be initial upload to Debian archives, howerver I + still lack sponsor. + + -- Michal Čihař Sat, 24 Dec 2005 01:21:30 +0100 + +python-gammu (0.8) unstable; urgency=low + + * New release. + + -- Michal Čihař Tue, 17 May 2005 14:30:52 +0200 + +python-gammu (0.7) unstable; urgency=low + + * New version. + + -- Michal Čihař Sun, 23 Jan 2005 22:27:30 +0100 + +python-gammu (0.6) unstable; urgency=low + + * New version. + + -- Michal Čihař Mon, 6 Sep 2004 10:26:02 +0200 + +python-gammu (0.5) unstable; urgency=low + + * New version. + + -- Michal Cihar Wed, 3 Mar 2004 22:40:32 +0100 + +python-gammu (0.4) unstable; urgency=low + + * New version. + * Included examples. + + -- Michal Cihar Sun, 18 Jan 2004 17:13:31 +0100 + +python-gammu (0.3.1) unstable; urgency=low + + * New version, not publicly released. + + -- Michal Cihar Wed, 14 Jan 2004 22:09:21 +0100 + +python-gammu (0.3) unstable; urgency=low + + * Initial packaging. + + -- Michal Cihar Sun, 4 Jan 2004 16:49:04 +0100 --- python-gammu-0.28.orig/debian/python-gammu-doc.doc-base +++ python-gammu-0.28/debian/python-gammu-doc.doc-base @@ -0,0 +1,11 @@ +Document: python-gammu +Title: python-gammu documentation +Author: Michal Čihař +Abstract: This manual describes python-gammu internals. It has been + generated usign epydoc so it contains basically same information as + online help in Python. +Section: Programming/Python + +Format: HTML +Index: /usr/share/doc/python-gammu-doc/html/index.html +Files: /usr/share/doc/python-gammu-doc/html/*.html