[libsession-token-perl] 01/03: Initial packaging by dh-make-perl 0.84

Per Carlson p8n-guest at moszumanska.debian.org
Sat Jan 10 21:39:33 UTC 2015


This is an automated email from the git hooks/post-receive script.

p8n-guest pushed a commit to branch master
in repository libsession-token-perl.

commit ca1fbfa6eaf99f032c4fcfa4b5ea48f8f1c64f8b
Author: Per Carlson <pelle at hemmop.com>
Date:   Sat Jan 10 22:32:44 2015 +0100

    Initial packaging by dh-make-perl 0.84
---
 debian/changelog         |  5 +++++
 debian/compat            |  1 +
 debian/control           | 50 ++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright         | 36 ++++++++++++++++++++++++++++++++++
 debian/rules             |  4 ++++
 debian/source/format     |  1 +
 debian/upstream/metadata |  6 ++++++
 debian/watch             |  2 ++
 8 files changed, 105 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..04b221f
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libsession-token-perl (1.008-1) UNRELEASED; urgency=low
+
+  * Initial Release. (Closes: #771581)
+
+ -- Per Carlson <pelle at hemmop.com>  Sat, 10 Jan 2015 22:32:44 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c3d4e98
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,50 @@
+Source: libsession-token-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Per Carlson <pelle at hemmop.com>
+Build-Depends: debhelper (>= 9.20120312~),
+ perl
+Standards-Version: 3.9.6
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libsession-token-perl.git
+Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libsession-token-perl.git
+Homepage: https://metacpan.org/release/Session-Token
+Testsuite: autopkgtest-pkg-perl
+
+Package: libsession-token-perl
+Architecture: any
+Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}
+Description: unknown
+ Session::Token provides a secure, efficient, and simple interface for
+ creating session tokens, password reset codes, temporary passwords, random
+ identifiers, and anything else you can think of.
+ .
+ When a Session::Token object is created, 1024 bytes are read from
+ /dev/urandom (Linux, Solaris, most BSDs), /dev/arandom (some older BSDs), or
+ Crypt::Random::Source::Strong::Win32 (Windows). These bytes are used to seed
+ the ISAAC-32|http://www.burtleburtle.net/bob/rand/isaacafa.html pseudo random
+ number generator.
+ .
+ Once a generator is created, you can repeatedly call the get method on the
+ generator object and it will return a new token each time.
+ .
+ IMPORTANT: If your application calls fork, make sure that any generators are
+ re-created in one of the processes after the fork since forking will
+ duplicate the generator state and both parent and child processes will go on
+ to produce identical tokens (just like perl's rand after it is seeded).
+ .
+ After the generator context is created, no system calls are used to generate
+ tokens. This is one way that Session::Token helps with efficiency. However,
+ this is only important for certain use cases (generally not web sessions).
+ .
+ ISAAC is a cryptographically secure PRNG that improves on the well-known RC4
+ algorithm in some important areas. For instance, it doesn't have short cycles
+ or initial bias like RC4 does. A theoretical shortest possible cycle in ISAAC
+ is 2**40, although no cycles this short have ever been found (and probably
+ don't exist at all). On average, ISAAC cycles are 2**8295.
+ .
+ Creators of server applications must choose whether a single generator will
+ be kept around and used to generate all tokens, or if a new Session::Token
+ object will be created every time a token is needed.
+ .
+ This description was automagically extracted from the module by dh-make-perl.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..9d0f7c6
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: https://metacpan.org/release/Session-Token
+Upstream-Contact: unknown
+Upstream-Name: Session-Token
+DISCLAIMER: This copyright info was automatically extracted 
+ from the perl module. It may not be accurate, so you better 
+ check the module sources in order to ensure the module for its 
+ inclusion in Debian or for general legal information. Please, 
+ if licensing information is incorrectly generated, file a bug 
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: unknown
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2015, Per Carlson <pelle at hemmop.com>
+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'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..96a6232
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,6 @@
+---
+Archive: CPAN
+Bug-Database: https://github.com/hoytech/Session-Token/issues
+Contact: unknown
+Name: Session-Token
+Repository: git://github.com/hoytech/Session-Token.git
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..f02faaf
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://metacpan.org/release/Session-Token   .*/Session-Token-v?(\d[\d.-]*)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libsession-token-perl.git



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