--- libfont-afm-perl-1.20.orig/debian/control +++ libfont-afm-perl-1.20/debian/control @@ -0,0 +1,24 @@ +Source: libfont-afm-perl +Maintainer: Debian Perl Group +Uploaders: Jay Bonci , gregor herrmann +Section: perl +Priority: optional +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Font-AFM/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libfont-afm-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libfont-afm-perl/ +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl (>= 5.6.1) + +Package: libfont-afm-perl +Architecture: all +Depends: ${perl:Depends} +Description: Font::AFM - Interface to Adobe Font Metrics files + This module implements the Font::AFM class. Objects of this class are + initialised from an AFM-file and allows you to obtain information + about the font and the metrics of the various glyphs in the font. + . + All measurements in AFM files are given in terms of units equal to + 1/1000 of the scale factor of the font being used. To compute actual + sizes in a document, these amounts should be multiplied by (scale + factor of font)/1000. --- libfont-afm-perl-1.20.orig/debian/copyright +++ libfont-afm-perl-1.20/debian/copyright @@ -0,0 +1,21 @@ +Upstream source location: http://search.cpan.org/dist/Font-AFM/ + +Files: * +Copyright: Copyright 1995-1998 Gisle Aas. All rights reserved. +License: GPL-1+ | Artistic + This program is free software; you can redistribute it and/or modify + it under the same terms as Perl itself. + +Files: debian/* +Copyright: + 2002, Stephen Zander + 2004, Jay Bonci + 2007-2008, Debian Perl Group +License: GPL-1+ | Artistic + It is assumed that the packaging is put under the same terms as the module + itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'. --- libfont-afm-perl-1.20.orig/debian/watch +++ libfont-afm-perl-1.20/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Font-AFM/ .*/Font-AFM-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libfont-afm-perl-1.20.orig/debian/compat +++ libfont-afm-perl-1.20/debian/compat @@ -0,0 +1 @@ +5 --- libfont-afm-perl-1.20.orig/debian/changelog +++ libfont-afm-perl-1.20/debian/changelog @@ -0,0 +1,38 @@ +libfont-afm-perl (1.20-1) unstable; urgency=low + + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). + * Set Maintainer to Debian Perl Group. + * Use dist-based URL in debian/watch. + * debian/rules: delete /usr/lib/perl5 only if it exists. + + * New upstream release. + * debian/watch: extended regexp for matching upstream releases. + * Refresh debian/rules, no functional changes. + * Set Standards-Version to 3.7.3 (no changes). + * Add /me to Uploaders. + * Set debhelper compatibility level to 5. + * Move debhelper from Build-Depends-Indep to Build-Depends. + * debian/copyright: add upstream source location and packaging information, + improve pointer to common-licenses. + + -- gregor herrmann Wed, 04 Jun 2008 22:38:31 +0200 + +libfont-afm-perl (1.19-1) unstable; urgency=low + + * New maintainer. (Closes: #279785) + * Changed section from interpreters to perl + * Bumped policy-version to 3.6.1 + * New upstream version + * Added debian/watch file + * Changed to my standard rules template + * Moved to debhelper 4 + + -- Jay Bonci Wed, 10 Nov 2004 13:45:16 -0500 + +libfont-afm-perl (1.18-1) unstable; urgency=low + + * New package, + Closes: #108208 + + -- Stephen Zander Sat, 27 Apr 2002 19:56:13 -0700 --- libfont-afm-perl-1.20.orig/debian/rules +++ libfont-afm-perl-1.20/debian/rules @@ -0,0 +1,60 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PERL ?= /usr/bin/perl +PACKAGE = $(shell dh_listpackages) +TMP = $(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + touch $@ + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/lib/perl5 ] || \ + rmdir --ignore-fail-on-non-empty --parents --verbose \ + $(TMP)/usr/lib/perl5 + touch $@ + +binary-arch: +# We have nothing to do here for an architecture-independent package + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_perl + 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