r8479 - in /trunk/libreadonly-perl/debian: ./ changelog compat control copyright rules watch

rmayorga-guest at users.alioth.debian.org rmayorga-guest at users.alioth.debian.org
Tue Oct 23 04:51:34 UTC 2007


Author: rmayorga-guest
Date: Tue Oct 23 04:51:33 2007
New Revision: 8479

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

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

Added: trunk/libreadonly-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libreadonly-perl/debian/changelog?rev=8479&op=file
==============================================================================
--- trunk/libreadonly-perl/debian/changelog (added)
+++ trunk/libreadonly-perl/debian/changelog Tue Oct 23 04:51:33 2007
@@ -1,0 +1,6 @@
+libreadonly-perl (1.03-1) unstable; urgency=low
+
+  * Initial release (Closes: #447685)
+
+ -- Rene Mayorga <rmayorga at debian.org.sv>  Mon, 22 Oct 2007 20:42:47 -0600
+

Added: trunk/libreadonly-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libreadonly-perl/debian/compat?rev=8479&op=file
==============================================================================
--- trunk/libreadonly-perl/debian/compat (added)
+++ trunk/libreadonly-perl/debian/compat Tue Oct 23 04:51:33 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libreadonly-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libreadonly-perl/debian/control?rev=8479&op=file
==============================================================================
--- trunk/libreadonly-perl/debian/control (added)
+++ trunk/libreadonly-perl/debian/control Tue Oct 23 04:51:33 2007
@@ -1,0 +1,18 @@
+Source: libreadonly-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Rene Mayorga <rmayorga at debian.org.sv>
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl
+Standards-Version: 3.7.2
+Homepage: http://search.cpan.org/dist/Readonly/
+
+Package: libreadonly-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Facility for creating read-only scalars, arrays and hashes 
+ Readonly is a facility for creating non-modifiable variables. 
+ This is useful for configuration files, headers, etc. 
+ It can also be useful as a development and debugging tool, for catching 
+ updates to variables that should not be changed.

Added: trunk/libreadonly-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libreadonly-perl/debian/copyright?rev=8479&op=file
==============================================================================
--- trunk/libreadonly-perl/debian/copyright (added)
+++ trunk/libreadonly-perl/debian/copyright Tue Oct 23 04:51:33 2007
@@ -1,0 +1,21 @@
+This package was debianized by Rene Mayorga <rmayorga at debian.org.sv> on
+Mon, 22 Oct 2007 20:42:47 -0600.
+
+It was downloaded from: http://search.cpan.org/dist/Readonly/
+
+Upstream Author: 
+    Eric J. Roode <roode at cpan.org>
+
+Copyright: 
+
+   Copyright (c) 2001-2004 by Eric J. Roode. All Rights Reserved
+   This module 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'.
+
+The Debian packaging is (C) 2007, Rene Mayorga <rmayorga at debian.org.sv> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: trunk/libreadonly-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libreadonly-perl/debian/rules?rev=8479&op=file
==============================================================================
--- trunk/libreadonly-perl/debian/rules (added)
+++ trunk/libreadonly-perl/debian/rules Tue Oct 23 04:51:33 2007
@@ -1,0 +1,53 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+
+build-stamp: 
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	$(MAKE) test
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+	rm -f $(TMP)/usr/share/perl5/benchmark.pl
+binary-arch:
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs Changes
+	dh_installdocs README
+	dh_compress
+	dh_installexamples benchmark.pl
+	dh_fixperms
+	dh_perl
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

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

Added: trunk/libreadonly-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libreadonly-perl/debian/watch?rev=8479&op=file
==============================================================================
--- trunk/libreadonly-perl/debian/watch (added)
+++ trunk/libreadonly-perl/debian/watch Tue Oct 23 04:51:33 2007
@@ -1,0 +1,3 @@
+version=3
+
+http://www.cpan.org/modules/by-module/Readonly/Readonly-([0-9].*)\.tar\.gz




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