r68680 - in /trunk/libmath-base85-perl/debian: ./ changelog compat control copyright libmath-base85-perl.docs rules watch

takaki at users.alioth.debian.org takaki at users.alioth.debian.org
Tue Feb 15 04:52:18 UTC 2011


Author: takaki
Date: Tue Feb 15 04:52:09 2011
New Revision: 68680

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=68680
Log:
[svn-inject] Applying Debian modifications (0.2-1) to trunk

Added:
    trunk/libmath-base85-perl/debian/
    trunk/libmath-base85-perl/debian/changelog
    trunk/libmath-base85-perl/debian/compat
    trunk/libmath-base85-perl/debian/control
    trunk/libmath-base85-perl/debian/copyright
    trunk/libmath-base85-perl/debian/libmath-base85-perl.docs
    trunk/libmath-base85-perl/debian/rules   (with props)
    trunk/libmath-base85-perl/debian/watch

Added: trunk/libmath-base85-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-base85-perl/debian/changelog?rev=68680&op=file
==============================================================================
--- trunk/libmath-base85-perl/debian/changelog (added)
+++ trunk/libmath-base85-perl/debian/changelog Tue Feb 15 04:52:09 2011
@@ -1,0 +1,5 @@
+libmath-base85-perl (0.2-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #611422)
+
+ -- TANIGUCHI Takaki <takaki at debian.org>  Fri, 04 Feb 2011 13:49:45 +0900

Added: trunk/libmath-base85-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-base85-perl/debian/compat?rev=68680&op=file
==============================================================================
--- trunk/libmath-base85-perl/debian/compat (added)
+++ trunk/libmath-base85-perl/debian/compat Tue Feb 15 04:52:09 2011
@@ -1,0 +1,1 @@
+7

Added: trunk/libmath-base85-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-base85-perl/debian/control?rev=68680&op=file
==============================================================================
--- trunk/libmath-base85-perl/debian/control (added)
+++ trunk/libmath-base85-perl/debian/control Tue Feb 15 04:52:09 2011
@@ -1,0 +1,30 @@
+Source: libmath-base85-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: TANIGUCHI Takaki <takaki at debian.org>
+Standards-Version: 3.9.1
+Homepage: http://search.cpan.org/dist/Math-Base85/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmath-base85-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libmath-base85-perl/
+
+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.

Added: trunk/libmath-base85-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-base85-perl/debian/copyright?rev=68680&op=file
==============================================================================
--- trunk/libmath-base85-perl/debian/copyright (added)
+++ trunk/libmath-base85-perl/debian/copyright Tue Feb 15 04:52:09 2011
@@ -1,0 +1,28 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Tony Monroe <tmonroe+perl at nog.net>
+Source: http://search.cpan.org/dist/Math-Base85/
+Name: Math-Base85
+
+Files: *
+Copyright: Tony Monroe <tmonroe+perl at nog.net>
+License: 
+
+Files: debian/*
+Copyright: 2011, TANIGUCHI Takaki <takaki at debian.org>
+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'.

Added: trunk/libmath-base85-perl/debian/libmath-base85-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-base85-perl/debian/libmath-base85-perl.docs?rev=68680&op=file
==============================================================================
--- trunk/libmath-base85-perl/debian/libmath-base85-perl.docs (added)
+++ trunk/libmath-base85-perl/debian/libmath-base85-perl.docs Tue Feb 15 04:52:09 2011
@@ -1,0 +1,1 @@
+README

Added: trunk/libmath-base85-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-base85-perl/debian/rules?rev=68680&op=file
==============================================================================
--- trunk/libmath-base85-perl/debian/rules (added)
+++ trunk/libmath-base85-perl/debian/rules Tue Feb 15 04:52:09 2011
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/libmath-base85-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libmath-base85-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-base85-perl/debian/watch?rev=68680&op=file
==============================================================================
--- trunk/libmath-base85-perl/debian/watch (added)
+++ trunk/libmath-base85-perl/debian/watch Tue Feb 15 04:52:09 2011
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Math-Base85/   .*/Math-Base85-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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