r36864 - in /trunk/libtest-mockrandom-perl/debian: ./ changelog compat control copyright libtest-mockrandom-perl.docs libtest-mockrandom-perl.examples rules watch

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Sat May 30 18:31:01 UTC 2009


Author: carnil-guest
Date: Sat May 30 18:30:56 2009
New Revision: 36864

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

Added:
    trunk/libtest-mockrandom-perl/debian/
    trunk/libtest-mockrandom-perl/debian/changelog
    trunk/libtest-mockrandom-perl/debian/compat
    trunk/libtest-mockrandom-perl/debian/control
    trunk/libtest-mockrandom-perl/debian/copyright
    trunk/libtest-mockrandom-perl/debian/libtest-mockrandom-perl.docs
    trunk/libtest-mockrandom-perl/debian/libtest-mockrandom-perl.examples
    trunk/libtest-mockrandom-perl/debian/rules   (with props)
    trunk/libtest-mockrandom-perl/debian/watch

Added: trunk/libtest-mockrandom-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mockrandom-perl/debian/changelog?rev=36864&op=file
==============================================================================
--- trunk/libtest-mockrandom-perl/debian/changelog (added)
+++ trunk/libtest-mockrandom-perl/debian/changelog Sat May 30 18:30:56 2009
@@ -1,0 +1,5 @@
+libtest-mockrandom-perl (1.00-1) unstable; urgency=low
+
+  * Initial Release (Closes: #531200).
+
+ -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Sat, 30 May 2009 20:22:46 +0200

Added: trunk/libtest-mockrandom-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mockrandom-perl/debian/compat?rev=36864&op=file
==============================================================================
--- trunk/libtest-mockrandom-perl/debian/compat (added)
+++ trunk/libtest-mockrandom-perl/debian/compat Sat May 30 18:30:56 2009
@@ -1,0 +1,1 @@
+7

Added: trunk/libtest-mockrandom-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mockrandom-perl/debian/control?rev=36864&op=file
==============================================================================
--- trunk/libtest-mockrandom-perl/debian/control (added)
+++ trunk/libtest-mockrandom-perl/debian/control Sat May 30 18:30:56 2009
@@ -1,0 +1,30 @@
+Source: libtest-mockrandom-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.6.0-12)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>
+Standards-Version: 3.8.1
+Homepage: http://search.cpan.org/dist/Test-MockRandom/
+
+Package: libtest-mockrandom-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}
+Description: Replaces random number generation with non-random number generation
+ This perhaps ridiculous-seeming module was created to test routines that
+ manipulate random numbers by providing a known output from rand. Given a
+ list of seeds with srand, it will return each in turn. After seeded
+ random numbers are exhausted, it will always return 0. Seed numbers must
+ be of a form that meets the expected output from rand as called with no
+ arguments -- i.e. they must be between 0 (inclusive) and 1 (exclusive).
+ In order to facilitate generating and testing a nearly-one number, this
+ module exports the function oneish, which returns a number just
+ fractionally less than one.
+ .
+ Depending on how this module is called with use, it will export rand to
+ a specified package (e.g. a class being tested) effectively overriding
+ and intercepting calls in that package to the built-in rand. It can also
+ override rand in the current package or even globally. In all of these
+ cases, it also exports srand and oneish to the current package in order
+ to control the output of rand.

Added: trunk/libtest-mockrandom-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mockrandom-perl/debian/copyright?rev=36864&op=file
==============================================================================
--- trunk/libtest-mockrandom-perl/debian/copyright (added)
+++ trunk/libtest-mockrandom-perl/debian/copyright Sat May 30 18:30:56 2009
@@ -1,0 +1,26 @@
+Format-Specification: http://dep.debian.net/deps/dep5/
+Maintainer: David A. Golden <dagolden at cpan.org>
+Source: http://search.cpan.org/dist/Test-MockRandom/
+Name: Test-MockRandom
+
+Files: *
+Copyright: David A. Golden <dagolden at cpan.org>
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2009, Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>
+License: Apache-2.0
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+     http://www.apache.org/licenses/LICENSE-2.0
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+X-Comment:
+ On Debian GNU/Linux systems, the complete text of the Apache License,
+ Version 2.0 can be found in `/usr/share/common-licenses/Apache-2.0'

Added: trunk/libtest-mockrandom-perl/debian/libtest-mockrandom-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mockrandom-perl/debian/libtest-mockrandom-perl.docs?rev=36864&op=file
==============================================================================
--- trunk/libtest-mockrandom-perl/debian/libtest-mockrandom-perl.docs (added)
+++ trunk/libtest-mockrandom-perl/debian/libtest-mockrandom-perl.docs Sat May 30 18:30:56 2009
@@ -1,0 +1,2 @@
+Todo
+README

Added: trunk/libtest-mockrandom-perl/debian/libtest-mockrandom-perl.examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mockrandom-perl/debian/libtest-mockrandom-perl.examples?rev=36864&op=file
==============================================================================
--- trunk/libtest-mockrandom-perl/debian/libtest-mockrandom-perl.examples (added)
+++ trunk/libtest-mockrandom-perl/debian/libtest-mockrandom-perl.examples Sat May 30 18:30:56 2009
@@ -1,0 +1,1 @@
+examples/*

Added: trunk/libtest-mockrandom-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mockrandom-perl/debian/rules?rev=36864&op=file
==============================================================================
--- trunk/libtest-mockrandom-perl/debian/rules (added)
+++ trunk/libtest-mockrandom-perl/debian/rules Sat May 30 18:30:56 2009
@@ -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/libtest-mockrandom-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libtest-mockrandom-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-mockrandom-perl/debian/watch?rev=36864&op=file
==============================================================================
--- trunk/libtest-mockrandom-perl/debian/watch (added)
+++ trunk/libtest-mockrandom-perl/debian/watch Sat May 30 18:30:56 2009
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Test-MockRandom/   .*/Test-MockRandom-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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