r15480 - in /trunk/libdbix-sequence-perl/debian: ./ changelog compat control copyright rules

sukria at users.alioth.debian.org sukria at users.alioth.debian.org
Sat Feb 23 22:56:17 UTC 2008


Author: sukria
Date: Sat Feb 23 22:56:16 2008
New Revision: 15480

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

Added:
    trunk/libdbix-sequence-perl/debian/
    trunk/libdbix-sequence-perl/debian/changelog
    trunk/libdbix-sequence-perl/debian/compat
    trunk/libdbix-sequence-perl/debian/control
    trunk/libdbix-sequence-perl/debian/copyright
    trunk/libdbix-sequence-perl/debian/rules   (with props)

Added: trunk/libdbix-sequence-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libdbix-sequence-perl/debian/changelog?rev=15480&op=file
==============================================================================
--- trunk/libdbix-sequence-perl/debian/changelog (added)
+++ trunk/libdbix-sequence-perl/debian/changelog Sat Feb 23 22:56:16 2008
@@ -1,0 +1,5 @@
+libdbix-sequence-perl (1.5-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #467211)
+
+ -- Alexis Sukrieh <sukria at debian.org>  Sat, 23 Feb 2008 23:53:20 +0100

Added: trunk/libdbix-sequence-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libdbix-sequence-perl/debian/compat?rev=15480&op=file
==============================================================================
--- trunk/libdbix-sequence-perl/debian/compat (added)
+++ trunk/libdbix-sequence-perl/debian/compat Sat Feb 23 22:56:16 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libdbix-sequence-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libdbix-sequence-perl/debian/control?rev=15480&op=file
==============================================================================
--- trunk/libdbix-sequence-perl/debian/control (added)
+++ trunk/libdbix-sequence-perl/debian/control Sat Feb 23 22:56:16 2008
@@ -1,0 +1,22 @@
+Source: libdbix-sequence-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.8-12), libdbi-perl
+Maintainer: Alexis Sukrieh <sukria at debian.org>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/DBIx::Sequence/
+
+Package: libdbix-sequence-perl
+Architecture: all
+Depends: libdbi-perl
+Description:  A simple SQL92 ID generator
+ This module is intended to give easier portability to Perl database application by providing
+ a database independant unique ID generator. This way, an application developer is not
+ bound to use his database's SEQUENCE or auto_increment thus making his application 
+ portable on multiple database environnements.
+ .
+ This module implements a simple Spin Locker mechanism and is garanteed to return
+ a unique value every time it is called, even with concurrent processes. It uses
+ your database for its state storage with ANSI SQL92 compliant SQL. All SQL queries
+ inside DBIx::Sequence are pre cached and very efficient especially under mod_perl.

Added: trunk/libdbix-sequence-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libdbix-sequence-perl/debian/copyright?rev=15480&op=file
==============================================================================
--- trunk/libdbix-sequence-perl/debian/copyright (added)
+++ trunk/libdbix-sequence-perl/debian/copyright Sat Feb 23 22:56:16 2008
@@ -1,0 +1,18 @@
+This is the debian package for the DBIx::Sequence module.
+It was created by Alexis Sukrieh <sukria at debian.org> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/DBIx::Sequence/
+
+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: Benoit Beausejour <bbeausej at pobox.com>.
+
+Copyright (c) 2000 Benoit Beausejour <bbeausej at pobox.com>
+All rights reserved. This program is free software, you can
+redistribute it and/or modify it under the same terms as
+Perl itself.
+
+The Debian packaging is (C) 2008, Alexis Sukrieh <sukria at debian.org> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libdbix-sequence-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libdbix-sequence-perl/debian/rules?rev=15480&op=file
==============================================================================
--- trunk/libdbix-sequence-perl/debian/rules (added)
+++ trunk/libdbix-sequence-perl/debian/rules Sat Feb 23 22:56:16 2008
@@ -1,0 +1,76 @@
+#!/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
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(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 $(TMP) here
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
+
+	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.html 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/libdbix-sequence-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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