--- libunicode-maputf8-perl-1.09.orig/debian/changelog +++ libunicode-maputf8-perl-1.09/debian/changelog @@ -0,0 +1,48 @@ +libunicode-maputf8-perl (1.09-6) unstable; urgency=low + + * Adopting package. + + -- Daniel Ruoso Fri, 28 May 2004 12:14:01 -0300 + +libunicode-maputf8-perl (1.09-5) unstable; urgency=low + + * debian/copyright: updated + * debian/control: upgraded to Debian Policy 3.6.1 (no changes) + + -- Ardo van Rangelrooij Sat, 7 Feb 2004 22:53:55 -0600 + +libunicode-maputf8-perl (1.09-4) unstable; urgency=low + + * debian/rules: moved debhelper compatibility level setting to + 'debian/compat' per latest debhelper best practices + * debian/control: updated sections according to latest archive changes: + - 'libunicode-maputf8-perl' from 'interpreters' to 'perl' + * debian/control: changed build dependency on 'debhelper' to '(>= 4.1)' + * debian/control: upgraded to Debian Policy 3.6.0 (no changes) + + -- Ardo van Rangelrooij Sun, 27 Jul 2003 09:57:50 -0500 + +libunicode-maputf8-perl (1.09-3) unstable; urgency=low + + * debian/rules: upgraded to debhelper v4 + * debian/control: changed build dependency on debhelper accordingly + * debian/rules: migrated from 'dh_movefiles' to 'dh_install' + * debian/rules: split off 'install' target from 'binary-indep' target + * debian/copyright: added pointer to license + (closes: Bug#157664) + + -- Ardo van Rangelrooij Sat, 21 Sep 2002 10:32:44 -0500 + +libunicode-maputf8-perl (1.09-2) unstable; urgency=low + + * debian/control: fixed typo in long description + (closes: Bug#125060) + * debian/control: upgraded to Debian Policy 3.5.6 + + -- Ardo van Rangelrooij Sun, 23 Dec 2001 12:38:18 -0600 + +libunicode-maputf8-perl (1.09-1) unstable; urgency=low + + * Initial Release + + -- Ardo van Rangelrooij Sat, 1 Sep 2001 13:22:30 -0500 --- libunicode-maputf8-perl-1.09.orig/debian/compat +++ libunicode-maputf8-perl-1.09/debian/compat @@ -0,0 +1 @@ +4 --- libunicode-maputf8-perl-1.09.orig/debian/control +++ libunicode-maputf8-perl-1.09/debian/control @@ -0,0 +1,33 @@ +Source:libunicode-maputf8-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: Daniel Ruoso +Standards-Version: 3.6.1 +Build-Depends-Indep: debhelper (>= 4.1), perl, libjcode-pm-perl, libunicode-map8-perl, libunicode-map-perl, libunicode-string-perl + +Package: libunicode-maputf8-perl +Section: perl +Priority: optional +Architecture: all +Depends: ${perl:Depends}, libjcode-pm-perl, libunicode-map8-perl, libunicode-map-perl, libunicode-string-perl +Description: Perl module for conversing between any character sets and UTF8 + This module provides an adapter layer between core routines for + converting to and from UTF8 and other encodings. In essence, a way + to give multiple existing Unicode modules a single common interface + so you don't have to know the underlying implementations to do + simple UTF8 to-from other character set encoding conversions. As + such, it wraps the Unicode::String, Unicode::Map8, Unicode::Map and + Jcode modules in a standardized and simple API. + . + This also provides general character set conversion operation based + on UTF8 - it is possible to convert between any two compatible and + supported character sets via a simple two step chaining of + conversions. + . + As with most things Perlish - if you give it a few big chunks of text + to chew on instead of lots of small ones it will handle many more + characters per second. + . + By design, it can be easily extended to encompass any new charset + encoding conversion modules that arrive on the scene. --- libunicode-maputf8-perl-1.09.orig/debian/copyright +++ libunicode-maputf8-perl-1.09/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Ardo van Rangelrooij +on Sat, Sep 1, 2001, 13:15:33 -0500. + +It was downloaded from the Comprehensive Perl Archive Network (CPAN). +Visit to find a CPAN site near you. + +Upstream Author: Benjamin Franz + +Copyright: + +Copyright September, 2000 Benjamin Franz. All rights reserved. + +This program is free software; you can redistribute it and/or modify +it under the terms of either: + +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. + +On a Debian system the complete text of the GNU General Public License +can be found in the file `/usr/share/common-licenses/GPL' and the +complete text of the the Artistic Licence can be found in the file +`/usr/share/common-licenses/Artistic'. --- libunicode-maputf8-perl-1.09.orig/debian/libunicode-maputf8-perl.docs +++ libunicode-maputf8-perl-1.09/debian/libunicode-maputf8-perl.docs @@ -0,0 +1 @@ +README --- libunicode-maputf8-perl-1.09.orig/debian/libunicode-maputf8-perl.install +++ libunicode-maputf8-perl-1.09/debian/libunicode-maputf8-perl.install @@ -0,0 +1 @@ +usr/share --- libunicode-maputf8-perl-1.09.orig/debian/rules +++ libunicode-maputf8-perl-1.09/debian/rules @@ -0,0 +1,60 @@ +#!/usr/bin/make -f +## ---------------------------------------------------------------------- +## debian/rules : package script for libunicode-maputf8-perl +## ---------------------------------------------------------------------- + +## ---------------------------------------------------------------------- +## uncomment this to turn on verbose mode +#export DH_VERBOSE=1 + +## ---------------------------------------------------------------------- +TMP_DIR = debian/tmp + +## ---------------------------------------------------------------------- +## targets + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) realclean + dh_clean + rm -f build-stamp install-stamp + +build: build-stamp +build-stamp: + dh_testdir + perl Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-O2 -g -Wall" + $(MAKE) test + touch build-stamp + +install: install-stamp +install-stamp: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install PREFIX=$(PWD)/$(TMP_DIR)/usr + touch install-stamp + +binary-indep: build install + dh_testdir + dh_testroot + dh_install --sourcedir=$(TMP_DIR) + dh_installdocs + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: + +binary: binary-indep binary-arch + +.PHONY: clean build install binary-indep binary-arch binary + +## ---------------------------------------------------------------------- --- libunicode-maputf8-perl-1.09.orig/debian/watch +++ libunicode-maputf8-perl-1.09/debian/watch @@ -0,0 +1,3 @@ +version=2 + +http://www.cpan.org/modules/by-module/Unicode/Unicode-MapUTF8-(\d.*)\.tar\.gz