r13526 - in /trunk/libconfig-json-perl/debian: ./ changelog compat control copyright rules watch

emhn-guest at users.alioth.debian.org emhn-guest at users.alioth.debian.org
Fri Jan 25 13:54:04 UTC 2008


Author: emhn-guest
Date: Fri Jan 25 13:54:03 2008
New Revision: 13526

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

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

Added: trunk/libconfig-json-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libconfig-json-perl/debian/changelog?rev=13526&op=file
==============================================================================
--- trunk/libconfig-json-perl/debian/changelog (added)
+++ trunk/libconfig-json-perl/debian/changelog Fri Jan 25 13:54:03 2008
@@ -1,0 +1,5 @@
+libconfig-json-perl (1.1.2-1) UNRELEASED; urgency=low
+
+  * Initial Release (Closes: Waiting for ITP).
+
+ -- Ernesto Hernández-Novich (USB) <emhn at usb.ve>  Fri, 25 Jan 2008 08:49:50 -0430

Added: trunk/libconfig-json-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libconfig-json-perl/debian/compat?rev=13526&op=file
==============================================================================
--- trunk/libconfig-json-perl/debian/compat (added)
+++ trunk/libconfig-json-perl/debian/compat Fri Jan 25 13:54:03 2008
@@ -1,0 +1,1 @@
+6

Added: trunk/libconfig-json-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libconfig-json-perl/debian/control?rev=13526&op=file
==============================================================================
--- trunk/libconfig-json-perl/debian/control (added)
+++ trunk/libconfig-json-perl/debian/control Fri Jan 25 13:54:03 2008
@@ -1,0 +1,19 @@
+Source: libconfig-json-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 6)
+Build-Depends-Indep: perl (>= 5.8.0),
+ libclass-insideout-perl, libjson-perl, libversion-perl, libtest-deep-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/Config-JSON/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libconfig-json-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-json-perl/
+
+Package: libconfig-json-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+ libclass-insideout-perl, libjson-perl, libversion-perl, libtest-deep-perl
+Description:  A parser for JSON-based configuration files
+ Config::JSON parses configuration files written in JSON. It also does
+ some non-JSON stuff, like allowing comments in files.

Added: trunk/libconfig-json-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libconfig-json-perl/debian/copyright?rev=13526&op=file
==============================================================================
--- trunk/libconfig-json-perl/debian/copyright (added)
+++ trunk/libconfig-json-perl/debian/copyright Fri Jan 25 13:54:03 2008
@@ -1,0 +1,27 @@
+This package was debianized by Ernesto Hernández-Novich (USB) <emhn at usb.ve>
+using dh-make-perl on Fri, 25 Jan 2008 08:59:15 -0430.
+
+Upstream source:
+    http://search.cpan.org/dist/Config-JSON/
+
+Upstream author:
+    JT Smith <jt at plainblack.com>
+
+Files: *
+Copyright: © 2006-2008, Plain Black Corporation http://www.plainblack.com/.
+ All rights reserved.
+License: GPL-1+|Artistic
+ 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.
+ .
+ The complete text of the GNU General Public License can be found in
+ /usr/share/common-licenses/GPL and the Artistic License can be found in
+ /usr/share/common-licenses/Artistic.don't want to get into legal troubles.
+
+Files: debian/*
+Copyright: © 2008 Debian Perl Group <debian-perl at lists.debian.org>
+License: GPL-1|Artistic
+ Packaging is licensed under the same terms as the software itself (see above).

Added: trunk/libconfig-json-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libconfig-json-perl/debian/rules?rev=13526&op=file
==============================================================================
--- trunk/libconfig-json-perl/debian/rules (added)
+++ trunk/libconfig-json-perl/debian/rules Fri Jan 25 13:54:03 2008
@@ -1,0 +1,81 @@
+#!/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
+
+	# As this is a architecture independent package, we are not
+	# supposed to install stuff to /usr/lib. MakeMaker creates
+	# the dirs, we prevent this by setting the INSTALLVENDORARCH
+	# and VENDORARCHEXP environment variables.
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor \
+		INSTALLVENDORARCH=/usr/share/perl5/ \
+		VENDORARCHEXP=/usr/share/perl5/
+	$(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 debian/$PACKAGE_NAME here
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	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
+	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/libconfig-json-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libconfig-json-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libconfig-json-perl/debian/watch?rev=13526&op=file
==============================================================================
--- trunk/libconfig-json-perl/debian/watch (added)
+++ trunk/libconfig-json-perl/debian/watch Fri Jan 25 13:54:03 2008
@@ -1,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://search.cpan.org/dist/Config-JSON/ .*/Config-JSON-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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