r17852 - in /trunk/libconfig-ini-simple-perl/debian: ./ changelog compat control copyright rules

roberto at users.alioth.debian.org roberto at users.alioth.debian.org
Wed Mar 19 03:46:13 UTC 2008


Author: roberto
Date: Wed Mar 19 03:46:12 2008
New Revision: 17852

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

Added:
    trunk/libconfig-ini-simple-perl/debian/
    trunk/libconfig-ini-simple-perl/debian/changelog
    trunk/libconfig-ini-simple-perl/debian/compat
    trunk/libconfig-ini-simple-perl/debian/control
    trunk/libconfig-ini-simple-perl/debian/copyright
    trunk/libconfig-ini-simple-perl/debian/rules   (with props)

Added: trunk/libconfig-ini-simple-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-ini-simple-perl/debian/changelog?rev=17852&op=file
==============================================================================
--- trunk/libconfig-ini-simple-perl/debian/changelog (added)
+++ trunk/libconfig-ini-simple-perl/debian/changelog Wed Mar 19 03:46:12 2008
@@ -1,0 +1,5 @@
+libconfig-ini-simple-perl (0.02-1) unstable; urgency=low
+
+  * Initial Release (Closes: #471573).
+
+ -- Roberto C. Sanchez <roberto at connexer.com>  Tue, 18 Mar 2008 21:27:07 -0400

Added: trunk/libconfig-ini-simple-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-ini-simple-perl/debian/compat?rev=17852&op=file
==============================================================================
--- trunk/libconfig-ini-simple-perl/debian/compat (added)
+++ trunk/libconfig-ini-simple-perl/debian/compat Wed Mar 19 03:46:12 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libconfig-ini-simple-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-ini-simple-perl/debian/control?rev=17852&op=file
==============================================================================
--- trunk/libconfig-ini-simple-perl/debian/control (added)
+++ trunk/libconfig-ini-simple-perl/debian/control Wed Mar 19 03:46:12 2008
@@ -1,0 +1,20 @@
+Source: libconfig-ini-simple-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.8.7)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Roberto C. Sanchez <roberto at connexer.com>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/Config::INI::Simple/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libconfig-ini-simple-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-ini-simple-perl/
+
+Package: libconfig-ini-simple-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Simple reading and writing from an INI file
+ Config::INI::Simple is for very simplistic reading and writing of INI files. A new object must
+ be created for each INI file (an object keeps all the data read in from an INI which is used
+ on the write method to write to the INI). It also keeps all your comments and original order
+ intact.

Added: trunk/libconfig-ini-simple-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-ini-simple-perl/debian/copyright?rev=17852&op=file
==============================================================================
--- trunk/libconfig-ini-simple-perl/debian/copyright (added)
+++ trunk/libconfig-ini-simple-perl/debian/copyright Wed Mar 19 03:46:12 2008
@@ -1,0 +1,20 @@
+Upstream source location: http://search.cpan.org/dist/Config-INI-Simple/
+
+Files: *
+Copyright: (c) 2006, C. J. Kirsle <kirsle at cuvou.net>
+License: GPL-1+ | Artistic
+ You may redistribute them [the files in this directory] under the same
+ terms as Perl itself, either Perl version 5.8.7 or, at your option,
+ any later version of Perl 5 you may have available.
+
+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'.
+
+Files: debian/*
+Copyright: (c) 2008, Roberto C. Sanchez <roberto at connexer.com>
+License: GPL-1+ | Artistic
+ It is assumed that all contributors release their packaging works under the
+ same term as the module itself.
+

Added: trunk/libconfig-ini-simple-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-ini-simple-perl/debian/rules?rev=17852&op=file
==============================================================================
--- trunk/libconfig-ini-simple-perl/debian/rules (added)
+++ trunk/libconfig-ini-simple-perl/debian/rules Wed Mar 19 03:46:12 2008
@@ -1,0 +1,66 @@
+#!/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
+
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+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_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 install source diff

Propchange: trunk/libconfig-ini-simple-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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