r56709 - in /trunk/libdata-entropy-perl/debian: ./ changelog compat control copyright libdata-entropy-perl.docs rules watch

ivan at users.alioth.debian.org ivan at users.alioth.debian.org
Sat Apr 24 01:13:51 UTC 2010


Author: ivan
Date: Sat Apr 24 01:13:42 2010
New Revision: 56709

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

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

Added: trunk/libdata-entropy-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-entropy-perl/debian/changelog?rev=56709&op=file
==============================================================================
--- trunk/libdata-entropy-perl/debian/changelog (added)
+++ trunk/libdata-entropy-perl/debian/changelog Sat Apr 24 01:13:42 2010
@@ -1,0 +1,21 @@
+libdata-entropy-perl (0.005-1) unstable; urgency=low
+
+  * New upstream release
+  * dh-make-perl --refresh
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Sat, 28 Mar 2009 04:55:51 -0700
+
+libdata-entropy-perl (0.004-1) unstable; urgency=low
+
+  * New upstream release
+  * Update debian/rules to current dh-make-perl template to fix "unconditional
+    rmdir" FTBFS (closes: Bug#467748)
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Tue, 26 Feb 2008 21:28:56 -0800
+
+libdata-entropy-perl (0.003-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#411715).
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Tue, 20 Feb 2007 07:47:06 -0800
+

Added: trunk/libdata-entropy-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-entropy-perl/debian/compat?rev=56709&op=file
==============================================================================
--- trunk/libdata-entropy-perl/debian/compat (added)
+++ trunk/libdata-entropy-perl/debian/compat Sat Apr 24 01:13:42 2010
@@ -1,0 +1,1 @@
+7

Added: trunk/libdata-entropy-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-entropy-perl/debian/control?rev=56709&op=file
==============================================================================
--- trunk/libdata-entropy-perl/debian/control (added)
+++ trunk/libdata-entropy-perl/debian/control Sat Apr 24 01:13:42 2010
@@ -1,0 +1,28 @@
+Source: libdata-entropy-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl (>= 5.8.4-8), libcrypt-rijndael-perl, libdata-float-perl, libwww-perl, libparams-classify-perl 
+Maintainer: Ivan Kohler <ivan-debian at 420.am>
+Standards-Version: 3.7.2
+
+Package: libdata-entropy-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libcrypt-rijndael-perl, libdata-float-perl, libwww-perl, libparams-classify-perl 
+Description: Perl module for entropy (randomness) management
+ This module maintains a concept of a current selection of entropy source.
+ Algorithms that require entropy can use the source nominated by this
+ module, avoiding the need for entropy source objects to be explicitly
+ passed around.  This is convenient because usually one entropy source
+ will be used for an entire program run and so an explicit entropy source
+ parameter would rarely vary.  There is also a default entropy source,
+ avoiding the need to explicitly configure a source at all.
+ .
+ If nothing is done to set a source then it defaults to the use of Rijndael
+ (AES) in counter mode (see Data::Entropy::RawSource::CryptCounter
+ and Crypt::Rijndael), keyed using Perl's built-in rand function.
+ This gives a data stream that looks like concentrated entropy, but really
+ only has at most the entropy of the rand seed.  Within a single run it
+ is cryptographically difficult to detect the correlation between parts
+ of the pseudo-entropy stream.  If more true entropy is required then it
+ is necessary to configure a different entropy source.

Added: trunk/libdata-entropy-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-entropy-perl/debian/copyright?rev=56709&op=file
==============================================================================
--- trunk/libdata-entropy-perl/debian/copyright (added)
+++ trunk/libdata-entropy-perl/debian/copyright Sat Apr 24 01:13:42 2010
@@ -1,0 +1,28 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Andrew Main (Zefram) <zefram at fysh.org>
+Upstream-Source: http://search.cpan.org/dist/Data-Entropy/
+Upstream-Name: Data-Entropy
+
+Files: *
+Copyright: Andrew Main (Zefram) <zefram at fysh.org>
+License-Alias: Perl
+License: Artistic | GPL-1+
+
+Files: debian/*
+Copyright: 2009, Ivan Kohler <ivan-debian at 420.am>
+License: Artistic | 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 GNU/Linux 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 GNU/Linux systems, the complete text of the GNU General
+    Public License can be found in `/usr/share/common-licenses/GPL'

Added: trunk/libdata-entropy-perl/debian/libdata-entropy-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-entropy-perl/debian/libdata-entropy-perl.docs?rev=56709&op=file
==============================================================================
--- trunk/libdata-entropy-perl/debian/libdata-entropy-perl.docs (added)
+++ trunk/libdata-entropy-perl/debian/libdata-entropy-perl.docs Sat Apr 24 01:13:42 2010
@@ -1,0 +1,1 @@
+README

Added: trunk/libdata-entropy-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-entropy-perl/debian/rules?rev=56709&op=file
==============================================================================
--- trunk/libdata-entropy-perl/debian/rules (added)
+++ trunk/libdata-entropy-perl/debian/rules Sat Apr 24 01:13:42 2010
@@ -1,0 +1,23 @@
+#!/usr/bin/make -f
+
+build: build-stamp
+build-stamp:
+	dh build
+	touch $@
+
+clean:
+	dh $@
+
+install: install-stamp
+install-stamp: build-stamp
+	dh install
+	touch $@
+
+binary-arch:
+
+binary-indep: install
+	dh $@
+
+binary: binary-arch binary-indep
+
+.PHONY: binary binary-arch binary-indep install clean build

Propchange: trunk/libdata-entropy-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libdata-entropy-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-entropy-perl/debian/watch?rev=56709&op=file
==============================================================================
--- trunk/libdata-entropy-perl/debian/watch (added)
+++ trunk/libdata-entropy-perl/debian/watch Sat Apr 24 01:13:42 2010
@@ -1,0 +1,3 @@
+# format version number, currently 2; this line is compulsory!
+version=2
+http://www.cpan.org/modules/by-module/Data/Data-Entropy-(.*).(tar.gz|tar|tgz)




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