r10171 - in /trunk/libfont-afm-perl/debian: ./ changelog compat control copyright rules watch

vdanjean at users.alioth.debian.org vdanjean at users.alioth.debian.org
Sat Dec 1 11:57:01 UTC 2007


Author: vdanjean
Date: Sat Dec  1 11:57:01 2007
New Revision: 10171

URL: http://svn.debian.org/wsvn/?sc=1&rev=10171
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libfont-afm-perl/debian/
    trunk/libfont-afm-perl/debian/changelog
    trunk/libfont-afm-perl/debian/compat
    trunk/libfont-afm-perl/debian/control
    trunk/libfont-afm-perl/debian/copyright
    trunk/libfont-afm-perl/debian/rules   (with props)
    trunk/libfont-afm-perl/debian/watch

Added: trunk/libfont-afm-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libfont-afm-perl/debian/changelog?rev=10171&op=file
==============================================================================
--- trunk/libfont-afm-perl/debian/changelog (added)
+++ trunk/libfont-afm-perl/debian/changelog Sat Dec  1 11:57:01 2007
@@ -1,0 +1,18 @@
+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 <jaybonci at debian.org>  Wed, 10 Nov 2004 13:45:16 -0500
+
+libfont-afm-perl (1.18-1) unstable; urgency=low
+
+  * New package,
+  Closes: #108208
+
+ -- Stephen Zander <gibreel at debian.org>  Sat, 27 Apr 2002 19:56:13 -0700

Added: trunk/libfont-afm-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libfont-afm-perl/debian/compat?rev=10171&op=file
==============================================================================
--- trunk/libfont-afm-perl/debian/compat (added)
+++ trunk/libfont-afm-perl/debian/compat Sat Dec  1 11:57:01 2007
@@ -1,0 +1,1 @@
+4

Added: trunk/libfont-afm-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libfont-afm-perl/debian/control?rev=10171&op=file
==============================================================================
--- trunk/libfont-afm-perl/debian/control (added)
+++ trunk/libfont-afm-perl/debian/control Sat Dec  1 11:57:01 2007
@@ -1,0 +1,19 @@
+Source: libfont-afm-perl
+Maintainer: Jay Bonci <jaybonci at debian.org>
+Section: perl
+Priority: optional
+Standards-Version: 3.6.1
+Build-Depends-Indep: debhelper (>= 4.1), 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.

Added: trunk/libfont-afm-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libfont-afm-perl/debian/copyright?rev=10171&op=file
==============================================================================
--- trunk/libfont-afm-perl/debian/copyright (added)
+++ trunk/libfont-afm-perl/debian/copyright Sat Dec  1 11:57:01 2007
@@ -1,0 +1,16 @@
+
+Copyright 1995-1998 Gisle Aas. All rights reserved.
+
+This program is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+a) the GNU General Public License as published by the Free Software
+Foundation; either version 1, or (at your option) any later version,
+or
+
+b) the "Artistic License" which comes with perl.
+
+You will find a copy of the GPL in /usr/share/common-licenses/GPL.
+
+You will find a copy of the Artistic licence in
+/usr/share/common-licenses/Artistic.

Added: trunk/libfont-afm-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libfont-afm-perl/debian/rules?rev=10171&op=file
==============================================================================
--- trunk/libfont-afm-perl/debian/rules (added)
+++ trunk/libfont-afm-perl/debian/rules Sat Dec  1 11:57:01 2007
@@ -1,0 +1,53 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatibility version to use.
+# export DH_COMPAT=4
+
+PACKAGE=`pwd | sed -e "s/.*\/\\(.*\\)-.*/\\1/"`
+
+
+build:
+	dh_testdir
+	# Add here commands to compile the package.
+	perl Makefile.PL verbose INSTALLDIRS=vendor
+clean:
+	dh_testdir
+	dh_testroot
+
+	-$(MAKE) clean
+	rm -f Makefile.old
+	dh_clean
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) PREFIX=$(CURDIR)/debian/$(PACKAGE)/usr OPTIMIZE="-O2 -g -Wall" test install
+	-find $(CURDIR)/debian -type d | xargs rmdir -p --ignore-fail-on-non-empty
+
+binary-arch:;
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installman
+	dh_installchangelogs Changes
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

Propchange: trunk/libfont-afm-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libfont-afm-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libfont-afm-perl/debian/watch?rev=10171&op=file
==============================================================================
--- trunk/libfont-afm-perl/debian/watch (added)
+++ trunk/libfont-afm-perl/debian/watch Sat Dec  1 11:57:01 2007
@@ -1,0 +1,2 @@
+version=2
+http://www.cpan.org/modules/by-module/Font/Font-AFM-([0-9].*)\.tar.gz




More information about the Pkg-perl-cvs-commits mailing list