debian/0000755000000000000000000000000011647317212007172 5ustar debian/control0000644000000000000000000000236211647317212010600 0ustar Source: libmath-base85-perl Section: perl Priority: optional Build-Depends: debhelper (>= 8) Build-Depends-Indep: perl Maintainer: Debian Perl Group Uploaders: TANIGUCHI Takaki , gregor herrmann Standards-Version: 3.9.2 Homepage: http://search.cpan.org/dist/Math-Base85/ Vcs-Git: git://git.debian.org/pkg-perl/packages/libmath-base85-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libmath-base85-perl.git Package: libmath-base85-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends} Description: Perl extension for base 85 numbers, as referenced by RFC 1924 RFC 1924 describes a compact, fixed-size representation of IPv6 addresses which uses a base 85 number system. Math::Base85 handles some of the uglier details of it. . The base 85 numbers (from 0 to 84) are as follows: . 0..9 A..Z a..z ! # $ % & ( ) * + - ; < = > ? @ ^ _ ` { | } ~ . At the moment, there's not much in this module. But it should be sufficient for the purposes of RFC 1924. . This module has a variable called $Math::Base85::base85_digits, which is a string containing the digits of the base 85 alphabet from lowest (0) to highest (~), in that order. debian/copyright0000644000000000000000000000213611647317212011127 0ustar Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135 Maintainer: Tony Monroe Source: http://search.cpan.org/dist/Math-Base85/ Name: Math-Base85 Files: * Copyright: 2001-2002, Tony Monroe License: Artistic or GPL-1+ Files: debian/* Copyright: 2011, TANIGUCHI Takaki 2011, 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/watch0000644000000000000000000000026511647317212010226 0ustar version=3 opts=dversionmangle=s/\+dfsg// \ http://search.cpan.org/dist/Math-Base85/ .*/Math-Base85-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ \ debian sh debian/repack.stub debian/compat0000644000000000000000000000000211647317212010370 0ustar 8 debian/repack.local0000644000000000000000000000003211647317212011446 0ustar MANIFEST=1 rm rfc1924.txt debian/changelog0000644000000000000000000000175111647317212011050 0ustar libmath-base85-perl (0.2+dfsg-1) unstable; urgency=low [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. [ gregor herrmann ] * Add repacking framework to get rid of non-free rfc1924.txt. Thanks to Simon Josefsson for the bug report. (Closes: #645754) * Switch to source format 3.0 (quilt). * Don't install README anymore. * Add some missing pieces of information to debian/copyright. * Set Standards-Version to 3.9.2 (no changes). * Bump debhelper compatibility level to 8. * Add /me to Uploaders. * Add a lintian override to avoid a false warning about a duplicate word. -- gregor herrmann Tue, 18 Oct 2011 17:39:56 +0200 libmath-base85-perl (0.2-1) unstable; urgency=low * Initial Release. (Closes: #611422) -- TANIGUCHI Takaki Fri, 04 Feb 2011 13:49:45 +0900 debian/source/0000755000000000000000000000000011647317212010472 5ustar debian/source/format0000644000000000000000000000001411647317212011700 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000003611647317212010251 0ustar #!/usr/bin/make -f %: dh $@ debian/libmath-base85-perl.lintian-overrides0000644000000000000000000000014711647317212016221 0ustar # well, this is case-sensitive ... libmath-base85-perl: description-contains-duplicated-word A..Z a..z debian/repack.stub0000755000000000000000000000331211647317212011340 0ustar #!/bin/sh : <<=cut =pod =head1 NAME repack.stub - script to repack upstream tarballs from uscan =head1 INSTRUCTIONS put this in debian/repack.stub and add "debian sh debian/repack.stub" to the end of the line in debian/watch. you will also need to add a version mangle to debian/watch. then create a debian/repack.local. this is a shell script that is sourced under "set -e", so be careful to check returns codes. =head1 FUNCTIONS =over 4 =item rm rm is replaced by a function that does some magic ("rm -rv" by default), but also changes MANIFEST if $MANIFEST is 1 =item mv mv is replaced by a function that just does mv (by default), but also changes MANIFEST if $MANIFEST is 1 =item requires_version requires_version is there for future usage for requiring certain versions of the script =back =head1 VARIABLES =over 4 =item SUFFIX defaults to +dfsg what to append to the upstream version =item RM_OPTS defaults to -vrf options to pass to rm =item MANIFEST defaults to 0, set to 1 to turn on. this will manipulate MANIFEST files in CPAN tarballs. =item UP_BASE this is the directory where the upstream source is. =back =cut if [ -z "$REPACK_SH" ]; then if [ -f ../../scripts/repack.sh ]; then REPACK_SH=../../scripts/repack.sh fi if [ -z "$REPACK_SH" ] && which repack.sh > /dev/null; then REPACK_SH=$(which repack.sh) fi fi if [ ! -f "$REPACK_SH" ]; then echo "Couldn't find a repack.sh. please put it in your PATH, put it at ../../scripts/repack.sh, or put it somewhere else and set the REPACK_SH variable" echo "You can get it from http://anonscm.debian.org/gitweb/?p=pkg-perl/scripts.git;a=blob_plain;f=repack.sh;hb=HEAD" exit 1 fi exec "$REPACK_SH" "$@"