debian/0000755000000000000000000000000012231176373007173 5ustar debian/watch0000644000000000000000000000017211711210553010213 0ustar version=3 http://search.cpan.org/dist/Unicode-String/ .*/Unicode-String-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip|rar) debian/rules0000755000000000000000000000003611711210553010241 0ustar #!/usr/bin/make -f %: dh $@ debian/copyright0000644000000000000000000000731311711210553011121 0ustar Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=174 Upstream-Name: Unicode-String Upstream-Contact: Gisle Aas Source: http://search.cpan.org/dist/Unicode-String/ Files: * Copyright: 1997-2000,2005 Gisle Aas. All rights reserved. License: Artistic or GPL-1+ Files: lib/Unicode/CharName.pm Copyright: 1997,2005 Gisle Aas. 1991-2005 Unicode, Inc. All Rights reserved. License: Perl-plus-Unicode The code portions of this file are released under the user's choice of the Artistic or GPLv1 or later licenses, the same as the other files in this package. See the Artistic and GPL-1+ license statements below. . The mappings of Unicode character names to characters is taken from the Unicode 4.1 Character Database, which is covered by the following license: . Copyright © 1991-2011 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in http://www.unicode.org/copyright.html. . Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode data files and any associated documentation (the "Data Files") or Unicode software and any associated documentation (the "Software") to deal in the Data Files or Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Data Files or Software, and to permit persons to whom the Data Files or Software are furnished to do so, provided that (a) the above copyright notice(s) and this permission notice appear with all copies of the Data Files or Software, (b) both the above copyright notice(s) and this permission notice appear in associated documentation, and (c) there is clear notice in each modified Data File or in the Software as well as in the documentation associated with the Data File(s) or Software that the data or software has been modified. . THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE. . Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. Files: debian/* Copyright: 1999, 2000-2003, 2005, Jaldhar H. Vyas 2005, Niko Tyni 2007, 2011, Russ Allbery 2008, Damyan Ivanov 2008, gregor herrmann License: Artistic or GPL-1+ License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. . On Debian systems, the complete text of the Artistic License can be found in /usr/share/common-licenses/Artistic. License: GPL-1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. . On Debian systems, the complete text of version 1 of the GNU General Public License can be found in /usr/share/common-licenses/GPL-1. debian/docs0000644000000000000000000000000711711210553010032 0ustar README debian/source/0000755000000000000000000000000011711210553010462 5ustar debian/source/format0000644000000000000000000000001411711210553011670 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000011711210553010611 5ustar debian/patches/fix-defined-hash-deprecation-warning.patch0000644000000000000000000000106511711210553020675 0ustar Description: Fix deprecation warning caused by defined(%hash) use Origin: vendor Bug: http://rt.cpan.org/Public/Bug/Display.html?id=74354 Bug-Debian: http://bugs.debian.org/657144 Forwarded: yes Author: Justin B Rye Reviewed-by: Salvatore Bonaccorso Last-Update: 2012-01-29 --- a/lib/Unicode/CharName.pm +++ b/lib/Unicode/CharName.pm @@ -77,7 +77,7 @@ return join("", "HANGUL SYLLABLE ", @s) } } - _init_names() unless defined %NAMES; + _init_names() unless %NAMES; $NAMES{sprintf("%04X",$code)} } debian/patches/series0000644000000000000000000000005311711210553012024 0ustar fix-defined-hash-deprecation-warning.patch debian/compat0000644000000000000000000000000211711210553010360 0ustar 9 debian/control0000644000000000000000000000261111711210553010565 0ustar Source: libunicode-string-perl Section: perl Priority: optional Build-Depends: debhelper (>= 9), perl Maintainer: Debian Perl Group Uploaders: Jaldhar H. Vyas , Niko Tyni , gregor herrmann , Damyan Ivanov Standards-Version: 3.9.2 Homepage: http://search.cpan.org/dist/Unicode-String/ Vcs-Git: git://git.debian.org/pkg-perl/packages/libunicode-string-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libunicode-string-perl.git Package: libunicode-string-perl Architecture: any Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends} Description: Older Perl modules for Unicode string manipulation This package provides Unicode::String, which manipulates strings of characters in various Unicode representations, and Unicode::CharName, which maps Unicode characters to official character names. . These modules predate native Unicode support inside Perl. Normally, the integrated Perl Unicode support and modules such as Encode should be used instead of these modules. They are provided primarily for their additional utility functions and to support other Perl code with dependencies on these modules. Be aware that Unicode::CharName only includes Unicode characters up to Unicode 4.1 and the character name tables included with Perl are more complete. debian/changelog0000644000000000000000000001603212231176373011047 0ustar libunicode-string-perl (2.09-5build1) trusty; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Mon, 21 Oct 2013 11:07:55 +0100 libunicode-string-perl (2.09-5) unstable; urgency=low * Team upload. [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * Bump Debhelper compat level to 9. Adjust versioned Build-Depends on debhelper to (>= 9). * Update debian/copyright file. Update to revision 174 of format specification of DEP5 proposal for machine readable copyright file information. * Add fix-defined-hash-deprecation-warning.patch patch. Fix 'defined(%hash) is deprecated' warning. Thanks to Justin B Rye for the patch (Closes: #657144) * Bump Standards-Version to 3.9.2 * Drop Depends on libmime-base64-perl. Dependency for MIME::Base64 is already satisfied by perl package. -- Salvatore Bonaccorso Sun, 29 Jan 2012 10:28:07 +0100 libunicode-string-perl (2.09-4) unstable; urgency=low * Team upload. [ gregor herrmann ] * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). * debian/control: Added: ${misc:Depends} to Depends: field. * Change my email address. [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ Russ Allbery ] * Remove myself from Uploaders. * Update debhelper compatibility level to V8. - Use debhelper rule minimization. * Remove versioned build dependency on Perl satisfied by oldstable. * Change Debian source package format to 3.0 (quilt). * Rewrite debian/copyright in DEP-5 format. * Add the Unicode Character Database license, since Unicode::CharMap is derived from it. * Expand the long description to note that these modules are older and predate native Unicode support, and the character mapping table is somewhat out of date. Recommend using native facilities instead where possible. * Update standards version to 3.9.1 (no changes required). -- Russ Allbery Sun, 06 Mar 2011 15:18:49 -0800 libunicode-string-perl (2.09-3) unstable; urgency=low [ gregor herrmann ] * debian/rules: delete /usr/share/perl5 only if it exists. [ Damyan Ivanov ] * debian/rules: cleanup + allow overriding of perl being used (by $(PERL)) + use dh_listpackages instead of hard-coded package name + use $(CURDIR) instead of $(shell pwd) + allow disabling build optimation by setting noopt in $DEB_BUILD_OPTIONS + do not ignore test suite errors + use "$@" when touching stamps + use dh_clean for removing stamp files + remove unused dh_installdirs and dh_installman + move dh_installdocs and dh_installchangelogs deom install-stamp to binary-arch target + add dh_testroot to binary-arch target + .PHONY: remove checkroot, add install and build * add README to dh_installdocs, remove debian/docs * debhelper compatibility level 6 * add myself to Uploaders * debian/copyright: update years of copyright -- Damyan Ivanov Fri, 25 Jan 2008 12:59:45 +0200 libunicode-string-perl (2.09-2) unstable; urgency=low [ gregor herrmann ] * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); Homepage field (source stanza). Removed: XS- Vcs-Svn fields. * Don't install empty /usr/share/perl5 directory. * Install upstream changelog. * Convert debian/copyright to UTF-8. * Set Standards-Version to 3.7.3 (no changes needed). * Remove lintian override, not needed anymore. [ Frank Lichtenheld ] * debian/control: Remove superfluous quotes around group name. [ Russ Allbery ] * Switch to a dist-based watch file. * Use a search.cpan.org URL in debian/copyright. * Capitalize Perl and punctuate the long description better. -- Russ Allbery Wed, 26 Dec 2007 13:53:54 -0800 libunicode-string-perl (2.09-1) unstable; urgency=low * New upstream release. * Added lintian override for pod2man bug #328305. -- Niko Tyni Sat, 17 Dec 2005 00:36:17 +0200 libunicode-string-perl (2.07-3) unstable; urgency=low * Add missing dependencies on shared libraries (${shlibs:Depends}). * Switched to debhelper compatibility level 5. * Upgraded Standards-Version to 3.6.2. No changes needed. * Added debian/watch. -- Niko Tyni Tue, 13 Dec 2005 22:20:19 +0000 libunicode-string-perl (2.07-2) unstable; urgency=low * Package now maintained by the Debian Perl group. -- Jaldhar H. Vyas Wed, 15 Jun 2005 08:42:01 -0400 libunicode-string-perl (2.07-1) unstable; urgency=low * New upstream version. (Closes: #188984) * Section changed to perl. -- Jaldhar H. Vyas Mon, 14 Apr 2003 14:15:38 -0400 libunicode-string-perl (2.06-7) unstable; urgency=low * Added proper pointer to licenses in copyright file. (Closes: #157665) -- Jaldhar H. Vyas Thu, 5 Sep 2002 14:50:31 -0400 libunicode-string-perl (2.06-6) unstable; urgency=low * Added proper build depends for perl 5.8.0 -- Jaldhar H. Vyas Sat, 17 Aug 2002 22:34:39 -0400 libunicode-string-perl (2.06-5) unstable; urgency=low * recompiled for perl 5.8.0. -- Jaldhar H. Vyas Thu, 1 Aug 2002 00:29:10 -0400 libunicode-string-perl (2.06-4) unstable; urgency=low * Removed useless README.Debian file (closes: #119244) -- Jaldhar H. Vyas Fri, 16 Nov 2001 00:27:16 -0500 libunicode-string-perl (2.06-3) unstable; urgency=low * Recompiled for latest perl policy (Closes: #95509) -- Jaldhar H. Vyas Sat, 28 Apr 2001 01:53:19 -0400 libunicode-string-perl (2.06-2) unstable; urgency=low * Recompiled for perl 5.6 (closes: #80708) -- Jaldhar H. Vyas Sun, 31 Dec 2000 09:42:09 -0500 libunicode-string-perl (2.06-1) unstable; urgency=low * New upstream version. -- Jaldhar H. Vyas Mon, 28 Aug 2000 13:29:34 -0400 libunicode-string-perl (2.05-1) unstable; urgency=low * New upstream version. -- Jaldhar H. Vyas Tue, 29 Feb 2000 12:33:51 -0500 libunicode-string-perl (2.01-5) unstable; urgency=low * Now that the perl insanity is over, I can remove a kludge I placed in the rules file. (fixes: #41666) -- Jaldhar H. Vyas Wed, 21 Jul 1999 00:51:49 -0400 libunicode-string-perl (2.01-4) unstable; urgency=low * Recompiled for perl-5.005 -- Jaldhar H. Vyas Wed, 7 Jul 1999 17:49:45 -0400 libunicode-string-perl (2.01-3) unstable; urgency=low * No longer hard codes i386 in debian/rules (fixes #38692) -- Jaldhar H. Vyas Tue, 1 Jun 1999 06:41:34 -0400 libunicode-string-perl (2.01-2) unstable; urgency=low * Added proper targets to debian/rules (fixes #38340) -- Jaldhar H. Vyas Wed, 26 May 1999 17:22:10 -0400 libunicode-string-perl (2.01-1) unstable; urgency=low * Initial Release. -- Jaldhar H. Vyas Mon, 5 Apr 1999 9:57:09 -0500