From 343596807cc29ea712bdc95d735bc9b41f14b7f0 Mon Sep 17 00:00:00 2001 Message-Id: <343596807cc29ea712bdc95d735bc9b41f14b7f0.1714833606.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 6 Feb 2006 17:34:28 +0000 Subject: [PATCH] Fix Debianization. Organization: Straylight/Edgeware From: mdw --- debian/changelog | 2 +- debian/control | 11 ++++++----- debian/copyright | 16 ++-------------- debian/rules | 2 ++ 4 files changed, 11 insertions(+), 20 deletions(-) diff --git a/debian/changelog b/debian/changelog index 42d1a28..85c7400 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -getdate-python (1.0.0) experimental; urgency=low +python-getdate (1.0.0) experimental; urgency=low * Written! diff --git a/debian/control b/debian/control index 6e4cdf8..7c9ed6b 100644 --- a/debian/control +++ b/debian/control @@ -1,26 +1,27 @@ -Source: getdate-python +Source: python-getdate Section: libs Priority: extra -Maintainer: Mark Wooding +Build-Depends: python +Maintainer: Mark Wooding Standards-Version: 3.1.1 Package: python-getdate Architecture: all -Depends: python, python2.3-getdate +Depends: ${python:Depends} Description: Python binding for date parser This is a dummy package for making sure you have the right package for the default Debian Python installation. Package: python2.3-getdate Architecture: any -Depends: ${shlibs:Depends}, python2.3 +Depends: ${shlibs:Depends}, ${python:Depends} Description: Python binding for date parser This is a dummy package for making sure you have the right package for the default Debian Python installation. Package: python2.4-getdate Architecture: any -Depends: ${shlibs:Depends}, python2.4 +Depends: ${shlibs:Depends}, ${python:Depends} Description: Python binding for date parser This is a dummy package for making sure you have the right package for the default Debian Python installation. diff --git a/debian/copyright b/debian/copyright index b8c21f4..cfc2ffc 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,16 +1,4 @@ getdate-python is copyright (c) 2003 Straylight/Edgeware -getdate-python is free software; you can redistribute it and/or modify it -under the terms of the GNU Library General Public License as published by the -Free Software Foundation; either version 2 of the License, or (at your -option) any later version. - -getdate-python 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 Library General Public License for -more details. - -You should have a copy of the GNU Library General Public License in -/usr/share/common-licenses/LGPL-2; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, -USA. +The copyright holder places no restrictions on the modification, +redistribution or use of this software. It's just not worth the effort. diff --git a/debian/rules b/debian/rules index 596bbe2..c03e3e6 100755 --- a/debian/rules +++ b/debian/rules @@ -28,6 +28,7 @@ binary-indep: install dh_testroot -i dh_compress -i dh_installdocs -i + dh_python -i dh_gencontrol -i dh_fixperms -i dh_installdeb -i @@ -41,6 +42,7 @@ binary-arch: install dh_installdocs -a dh_strip -a dh_shlibdeps -a + dh_python -a dh_gencontrol -a dh_fixperms -a dh_installdeb -a -- [mdw]