r156 - in packages/libunicode-maputf8-perl/trunk: . debian t

Allard Hoeve hoeve-guest@haydn.debian.org
Thu, 10 Jun 2004 08:35:58 -0600


Author: hoeve-guest
Date: 2004-06-10 08:35:55 -0600 (Thu, 10 Jun 2004)
New Revision: 156

Added:
   packages/libunicode-maputf8-perl/trunk/debian/
   packages/libunicode-maputf8-perl/trunk/debian/changelog
   packages/libunicode-maputf8-perl/trunk/debian/compat
   packages/libunicode-maputf8-perl/trunk/debian/control
   packages/libunicode-maputf8-perl/trunk/debian/copyright
   packages/libunicode-maputf8-perl/trunk/debian/libunicode-maputf8-perl.docs
   packages/libunicode-maputf8-perl/trunk/debian/libunicode-maputf8-perl.install
   packages/libunicode-maputf8-perl/trunk/debian/rules
   packages/libunicode-maputf8-perl/trunk/debian/watch
Modified:
   packages/libunicode-maputf8-perl/trunk/t/01_unicode_maputf8.t
Log:
Load libunicode-maputf8-perl-1.09 into
packages/libunicode-maputf8-perl/trunk.


Added: packages/libunicode-maputf8-perl/trunk/debian/changelog
===================================================================
--- packages/libunicode-maputf8-perl/trunk/debian/changelog	2004-06-10 14:34:10 UTC (rev 155)
+++ packages/libunicode-maputf8-perl/trunk/debian/changelog	2004-06-10 14:35:55 UTC (rev 156)
@@ -0,0 +1,48 @@
+libunicode-maputf8-perl (1.09-6) unstable; urgency=low
+
+  * Adopting package.
+
+ -- Daniel Ruoso <daniel@ruoso.com>  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 <ardo@debian.org>  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 <ardo@debian.org>  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 <ardo@debian.org>  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 <ardo@debian.org>  Sun, 23 Dec 2001 12:38:18 -0600
+
+libunicode-maputf8-perl (1.09-1) unstable; urgency=low
+
+  * Initial Release
+
+ -- Ardo van Rangelrooij <ardo@debian.org>  Sat,  1 Sep 2001 13:22:30 -0500

Added: packages/libunicode-maputf8-perl/trunk/debian/compat
===================================================================
--- packages/libunicode-maputf8-perl/trunk/debian/compat	2004-06-10 14:34:10 UTC (rev 155)
+++ packages/libunicode-maputf8-perl/trunk/debian/compat	2004-06-10 14:35:55 UTC (rev 156)
@@ -0,0 +1 @@
+4

Added: packages/libunicode-maputf8-perl/trunk/debian/control
===================================================================
--- packages/libunicode-maputf8-perl/trunk/debian/control	2004-06-10 14:34:10 UTC (rev 155)
+++ packages/libunicode-maputf8-perl/trunk/debian/control	2004-06-10 14:35:55 UTC (rev 156)
@@ -0,0 +1,33 @@
+Source:libunicode-maputf8-perl 
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Daniel Ruoso <daniel@ruoso.com>
+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.

Added: packages/libunicode-maputf8-perl/trunk/debian/copyright
===================================================================
--- packages/libunicode-maputf8-perl/trunk/debian/copyright	2004-06-10 14:34:10 UTC (rev 155)
+++ packages/libunicode-maputf8-perl/trunk/debian/copyright	2004-06-10 14:35:55 UTC (rev 156)
@@ -0,0 +1,25 @@
+This package was debianized by Ardo van Rangelrooij <ardo@debian.org>
+on Sat, Sep  1, 2001, 13:15:33 -0500.
+
+It was downloaded from the Comprehensive Perl Archive Network (CPAN).
+Visit <http://www.cpan.org/> to find a CPAN site near you.
+
+Upstream Author: Benjamin Franz <snowhare@nihongo.org>
+
+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'.

Added: packages/libunicode-maputf8-perl/trunk/debian/libunicode-maputf8-perl.docs
===================================================================
--- packages/libunicode-maputf8-perl/trunk/debian/libunicode-maputf8-perl.docs	2004-06-10 14:34:10 UTC (rev 155)
+++ packages/libunicode-maputf8-perl/trunk/debian/libunicode-maputf8-perl.docs	2004-06-10 14:35:55 UTC (rev 156)
@@ -0,0 +1 @@
+README

Added: packages/libunicode-maputf8-perl/trunk/debian/libunicode-maputf8-perl.install
===================================================================
--- packages/libunicode-maputf8-perl/trunk/debian/libunicode-maputf8-perl.install	2004-06-10 14:34:10 UTC (rev 155)
+++ packages/libunicode-maputf8-perl/trunk/debian/libunicode-maputf8-perl.install	2004-06-10 14:35:55 UTC (rev 156)
@@ -0,0 +1 @@
+usr/share

Added: packages/libunicode-maputf8-perl/trunk/debian/rules
===================================================================
--- packages/libunicode-maputf8-perl/trunk/debian/rules	2004-06-10 14:34:10 UTC (rev 155)
+++ packages/libunicode-maputf8-perl/trunk/debian/rules	2004-06-10 14:35:55 UTC (rev 156)
@@ -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
+
+## ----------------------------------------------------------------------


Property changes on: packages/libunicode-maputf8-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/libunicode-maputf8-perl/trunk/debian/watch
===================================================================
--- packages/libunicode-maputf8-perl/trunk/debian/watch	2004-06-10 14:34:10 UTC (rev 155)
+++ packages/libunicode-maputf8-perl/trunk/debian/watch	2004-06-10 14:35:55 UTC (rev 156)
@@ -0,0 +1,3 @@
+version=2
+
+http://www.cpan.org/modules/by-module/Unicode/Unicode-MapUTF8-(\d.*)\.tar\.gz


Property changes on: packages/libunicode-maputf8-perl/trunk/t/01_unicode_maputf8.t
___________________________________________________________________
Name: svn:executable
   - 
   + *