r56842 - in /trunk/libcrypt-mysql-perl/debian: ./ changelog compat control copyright rules watch

ivan at users.alioth.debian.org ivan at users.alioth.debian.org
Sun Apr 25 05:54:47 UTC 2010


Author: ivan
Date: Sun Apr 25 05:54:40 2010
New Revision: 56842

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

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

Added: trunk/libcrypt-mysql-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-mysql-perl/debian/changelog?rev=56842&op=file
==============================================================================
--- trunk/libcrypt-mysql-perl/debian/changelog (added)
+++ trunk/libcrypt-mysql-perl/debian/changelog Sun Apr 25 05:54:40 2010
@@ -1,0 +1,13 @@
+libcrypt-mysql-perl (0.04-2) unstable; urgency=low
+
+  * Move libdigest-sha1-perl from Build-Depends-Indep to Build-Depends,
+    (closes: Bug#419588)
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Mon, 16 Apr 2007 12:15:19 -0700
+
+libcrypt-mysql-perl (0.04-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#411711).
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Tue, 20 Feb 2007 07:39:41 -0800
+

Added: trunk/libcrypt-mysql-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-mysql-perl/debian/compat?rev=56842&op=file
==============================================================================
--- trunk/libcrypt-mysql-perl/debian/compat (added)
+++ trunk/libcrypt-mysql-perl/debian/compat Sun Apr 25 05:54:40 2010
@@ -1,0 +1,1 @@
+4

Added: trunk/libcrypt-mysql-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-mysql-perl/debian/control?rev=56842&op=file
==============================================================================
--- trunk/libcrypt-mysql-perl/debian/control (added)
+++ trunk/libcrypt-mysql-perl/debian/control Sun Apr 25 05:54:40 2010
@@ -1,0 +1,13 @@
+Source: libcrypt-mysql-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.0), libmodule-build-perl, perl (>= 5.8.4-8), libdigest-sha1-perl
+Maintainer: Ivan Kohler <ivan-debian at 420.am>
+Standards-Version: 3.7.2
+
+Package: libcrypt-mysql-perl
+Architecture: any
+Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, libdigest-sha1-perl
+Description: Perl module to emulate the MySQL PASSWORD() function.
+ Crypt::MySQL emulates MySQL PASSWORD() SQL function, without libmysqlclient.
+ You can compare encrypted passwords, without real MySQL environment.

Added: trunk/libcrypt-mysql-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-mysql-perl/debian/copyright?rev=56842&op=file
==============================================================================
--- trunk/libcrypt-mysql-perl/debian/copyright (added)
+++ trunk/libcrypt-mysql-perl/debian/copyright Sun Apr 25 05:54:40 2010
@@ -1,0 +1,12 @@
+This is the debian package for the Crypt-MySQL module.
+It was created by Ivan Kohler <ivan-debian at 420.am> using dh-make-perl.
+
+IKEBE Tomohiro <ikebe at shebang.jp>
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+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'.

Added: trunk/libcrypt-mysql-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-mysql-perl/debian/rules?rev=56842&op=file
==============================================================================
--- trunk/libcrypt-mysql-perl/debian/rules (added)
+++ trunk/libcrypt-mysql-perl/debian/rules Sun Apr 25 05:54:40 2010
@@ -1,0 +1,92 @@
+#!/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)
+
+# Allow disabling build optimation by setting noopt in
+# $DEB_BUILD_OPTIONS
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add commands to compile the package here
+	$(PERL) Build.PL installdirs=vendor
+	OPTIMIZE="$(CFLAGS)" $(PERL) Build
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Build ] || $(PERL) Build distclean
+
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(PERL) Build test
+	$(PERL) Build install destdir=$(TMP)
+
+	touch install-stamp
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installexamples 
+#	dh_installmenu
+#	dh_installcron
+#	dh_installman
+	dh_installchangelogs Changes
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_makeshlibs
+	dh_installdeb
+	dh_perl 
+	dh_shlibdeps
+	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/libcrypt-mysql-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libcrypt-mysql-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-mysql-perl/debian/watch?rev=56842&op=file
==============================================================================
--- trunk/libcrypt-mysql-perl/debian/watch (added)
+++ trunk/libcrypt-mysql-perl/debian/watch Sun Apr 25 05:54:40 2010
@@ -1,0 +1,3 @@
+# format version number, currently 2; this line is compulsory!
+version=2
+http://www.cpan.org/modules/by-module/Crypt/Crypt-MySQL-(.*).(tar.gz|tar|tgz)




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