r24742 - in /trunk/libmldbm-sync-perl: MANIFEST.bak debian/ debian/changelog debian/compat debian/control debian/copyright debian/rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Aug 31 14:48:24 UTC 2008


Author: gregoa
Date: Sun Aug 31 14:48:21 2008
New Revision: 24742

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

Added:
    trunk/libmldbm-sync-perl/debian/
    trunk/libmldbm-sync-perl/debian/changelog
    trunk/libmldbm-sync-perl/debian/compat
    trunk/libmldbm-sync-perl/debian/control
    trunk/libmldbm-sync-perl/debian/copyright
    trunk/libmldbm-sync-perl/debian/rules   (with props)
Removed:
    trunk/libmldbm-sync-perl/MANIFEST.bak

Added: trunk/libmldbm-sync-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmldbm-sync-perl/debian/changelog?rev=24742&op=file
==============================================================================
--- trunk/libmldbm-sync-perl/debian/changelog (added)
+++ trunk/libmldbm-sync-perl/debian/changelog Sun Aug 31 14:48:21 2008
@@ -1,0 +1,24 @@
+libmldbm-sync-perl (0.30-2) unstable; urgency=low
+
+  * Orphan package, change maintainer to Debian QA Group
+    <packages at qa.debian.org>
+  * Add Depends: on libmldbm-perl (closes: Bug#344297)
+  * Added debian/compat and removed DH_COMPAT from debian/rules
+  * Change Section: from interpreters to perl
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Wed, 21 Dec 2005 10:51:27 -0800
+
+libmldbm-sync-perl (0.30-1) unstable; urgency=low
+
+  * New upstream release
+  * debian/copyright pedantry (closes: Bug#153342, Bug#153385)
+  * binary-arch vs. binary-indep (closes: Bug#153360)
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Sat,  7 Sep 2002 06:12:59 -0700
+
+libmldbm-sync-perl (0.25-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#134295).
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Sat, 16 Feb 2002 12:34:56 -0800
+

Added: trunk/libmldbm-sync-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmldbm-sync-perl/debian/compat?rev=24742&op=file
==============================================================================
--- trunk/libmldbm-sync-perl/debian/compat (added)
+++ trunk/libmldbm-sync-perl/debian/compat Sun Aug 31 14:48:21 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libmldbm-sync-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmldbm-sync-perl/debian/control?rev=24742&op=file
==============================================================================
--- trunk/libmldbm-sync-perl/debian/control (added)
+++ trunk/libmldbm-sync-perl/debian/control Sun Aug 31 14:48:21 2008
@@ -1,0 +1,15 @@
+Source: libmldbm-sync-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4), perl (>= 5.6.0-17)
+Maintainer: Debian QA Group <packages at qa.debian.org>
+Standards-Version: 3.5.1
+
+Package: libmldbm-sync-perl
+Architecture: all
+Depends: ${perl:Depends}, libmldbm-perl
+Description: Perl module for safe concurrent access to MLDBM databases
+ This module wraps around the MLDBM interface, by handling concurrent
+ access to MLDBM databases with file locking, and flushes i/o explicity
+ per lock/unlock.  The new [Read]Lock()/UnLock() API can be used to serialize
+ requests logically and improve performance for bundled reads & writes.

Added: trunk/libmldbm-sync-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmldbm-sync-perl/debian/copyright?rev=24742&op=file
==============================================================================
--- trunk/libmldbm-sync-perl/debian/copyright (added)
+++ trunk/libmldbm-sync-perl/debian/copyright Sun Aug 31 14:48:21 2008
@@ -1,0 +1,14 @@
+This is the debian package for the MLDBM::Sync module.
+It was created by Ivan Kohler <ivan-debian at 420.am> using dh-make-perl.
+
+Copyright (c) 2001 Joshua Chamas, Chamas Enterprises Inc.  All rights reserved.
+Sponsored by development on NodeWorks http://www.nodeworks.com
+
+This program 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/libmldbm-sync-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmldbm-sync-perl/debian/rules?rev=24742&op=file
==============================================================================
--- trunk/libmldbm-sync-perl/debian/rules (added)
+++ trunk/libmldbm-sync-perl/debian/rules Sun Aug 31 14:48:21 2008
@@ -1,0 +1,87 @@
+#!/usr/bin/make -f
+#-*- makefile -*-
+# Made with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Christoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+ifndef DESTDIR
+DESTDIR=..
+endif
+TMP     =`pwd`/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	
+	# Add here commands to compile the package.
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) realclean
+
+	dh_clean
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp.
+	#$(MAKE) install DESTDIR=`pwd`/debian/tmp
+	$(MAKE) install PREFIX=$(TMP)/usr
+
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+#	dh_testversion
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installexamples
+	dh_installmenu
+#	dh_installemacsen
+#	dh_installinit
+	dh_installcron
+	dh_installman
+#	dh_undocumented
+	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 --destdir=$(DESTDIR)
+
+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/libmldbm-sync-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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