r12141 - in /trunk/libdata-password-perl/debian: ./ changelog compat control copyright rules watch

mshuler-guest at users.alioth.debian.org mshuler-guest at users.alioth.debian.org
Mon Jan 7 12:49:53 UTC 2008


Author: mshuler-guest
Date: Mon Jan  7 12:49:53 2008
New Revision: 12141

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

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

Added: trunk/libdata-password-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libdata-password-perl/debian/changelog?rev=12141&op=file
==============================================================================
--- trunk/libdata-password-perl/debian/changelog (added)
+++ trunk/libdata-password-perl/debian/changelog Mon Jan  7 12:49:53 2008
@@ -1,0 +1,5 @@
+libdata-password-perl (1.07-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- Michael Shuler <michael at pbandjelly.org>  Sun, 06 Jan 2008 15:57:57 -0600

Added: trunk/libdata-password-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libdata-password-perl/debian/compat?rev=12141&op=file
==============================================================================
--- trunk/libdata-password-perl/debian/compat (added)
+++ trunk/libdata-password-perl/debian/compat Mon Jan  7 12:49:53 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libdata-password-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libdata-password-perl/debian/control?rev=12141&op=file
==============================================================================
--- trunk/libdata-password-perl/debian/control (added)
+++ trunk/libdata-password-perl/debian/control Mon Jan  7 12:49:53 2008
@@ -1,0 +1,22 @@
+Source: libdata-password-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/Data-Password/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdata-password-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-password-perl/
+
+Package: libdata-password-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Suggests: ispell | aspell
+Description:  Perl extension for assessing password quality
+ Data::Password checks potential passwords for crackability. It checks
+ that the password is in the appropriate length, that it has enough
+ character groups, that it does not contain the same chars repeatedly or
+ ascending or descending characters, or characters close to each other in
+ the keyboard. It will also attempt to search the ispell word file for
+ existance of whole words.

Added: trunk/libdata-password-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libdata-password-perl/debian/copyright?rev=12141&op=file
==============================================================================
--- trunk/libdata-password-perl/debian/copyright (added)
+++ trunk/libdata-password-perl/debian/copyright Mon Jan  7 12:49:53 2008
@@ -1,0 +1,30 @@
+This is the debian package for the Data-Password module.
+It was created by Michael Shuler <michael at pbandjelly.org> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/Data-Password/
+
+This copyright info was automatically extracted from the perl module.
+It may not be accurate, so you better check the module sources
+if don't want to get into legal troubles.
+
+The upstream author is: 
+
+Raz Information Systems, razinf at cpan.org, raz at raz.co.il..
+
+
+Copyright (c) 2001 - 2006  Raz Information Systems Ltd.
+http://www.raz.co.il/
+
+This package is distributed under the same terms as Perl itself, see the
+Artistic License on Perl's home page.
+
+
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License.  On Debian GNU/Linux systems, the complete text of the
+GNU General Public License can be found in `/usr/share/common-licenses/GPL'
+and the Artistic Licence in `/usr/share/common-licenses/Artistic'.
+
+
+The Debian packaging is (C) 2008, Michael Shuler <michael at pbandjelly.org> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libdata-password-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libdata-password-perl/debian/rules?rev=12141&op=file
==============================================================================
--- trunk/libdata-password-perl/debian/rules (added)
+++ trunk/libdata-password-perl/debian/rules Mon Jan  7 12:49:53 2008
@@ -1,0 +1,81 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# As this is a architecture independent package, we are not
+	# supposed to install stuff to /usr/lib. MakeMaker creates
+	# the dirs, we prevent this by setting the INSTALLVENDORARCH
+	# and VENDORARCHEXP environment variables.
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor \
+		INSTALLVENDORARCH=/usr/share/perl5/ \
+		VENDORARCHEXP=/usr/share/perl5/
+	$(MAKE)
+	$(MAKE) test
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	dh_clean build-stamp install-stamp
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary

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

Added: trunk/libdata-password-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libdata-password-perl/debian/watch?rev=12141&op=file
==============================================================================
--- trunk/libdata-password-perl/debian/watch (added)
+++ trunk/libdata-password-perl/debian/watch Mon Jan  7 12:49:53 2008
@@ -1,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://search.cpan.org/dist/Data-Password/ .*/Data-Password-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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