r53813 - in /trunk/libconfig-yaml-perl/debian: ./ changelog compat control copyright rules watch

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Mar 7 01:51:02 UTC 2010


Author: jawnsy-guest
Date: Sun Mar  7 01:50:57 2010
New Revision: 53813

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

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

Added: trunk/libconfig-yaml-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-yaml-perl/debian/changelog?rev=53813&op=file
==============================================================================
--- trunk/libconfig-yaml-perl/debian/changelog (added)
+++ trunk/libconfig-yaml-perl/debian/changelog Sun Mar  7 01:50:57 2010
@@ -1,0 +1,20 @@
+libconfig-yaml-perl (1.42-1) unstable; urgency=low
+
+  * New upstream release
+  * Switched to my debian.org email address.
+
+ -- Stephen Quinney <sjq at debian.org>  Mon, 26 Sep 2005 08:57:58 +0100
+
+libconfig-yaml-perl (1.41-1) unstable; urgency=low
+
+  * New upstream release
+  * First upload, closes: #304442.
+
+ -- Stephen Quinney <sjq at debian.org>  Fri, 15 Apr 2005 19:41:41 +0100
+
+libconfig-yaml-perl (1.37-1) unstable; urgency=low
+
+  * Initial Release
+
+ -- Stephen Quinney <sjq at debian.org>  Fri,  4 Feb 2005 12:50:16 +0000
+

Added: trunk/libconfig-yaml-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-yaml-perl/debian/compat?rev=53813&op=file
==============================================================================
--- trunk/libconfig-yaml-perl/debian/compat (added)
+++ trunk/libconfig-yaml-perl/debian/compat Sun Mar  7 01:50:57 2010
@@ -1,0 +1,1 @@
+4

Added: trunk/libconfig-yaml-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-yaml-perl/debian/control?rev=53813&op=file
==============================================================================
--- trunk/libconfig-yaml-perl/debian/control (added)
+++ trunk/libconfig-yaml-perl/debian/control Sun Mar  7 01:50:57 2010
@@ -1,0 +1,16 @@
+Source: libconfig-yaml-perl
+Section: perl
+Priority: optional
+Maintainer: Stephen Quinney <sjq at debian.org>
+Build-Depends-Indep: debhelper (>= 4), perl (>= 5.6.0-16), libyaml-perl (>= 0.35), libtest-simple-perl | perl (>= 5.8.3)
+Standards-Version: 3.6.2
+
+Package: libconfig-yaml-perl
+Architecture: all
+Depends: ${perl:Depends}, libyaml-perl (>= 0.35)
+Description: Simple configuration automation
+ This is a somewhat object-oriented wrapper around the YAML module
+ which makes reading and writing configuration files simple. Handling
+ multiple config files (e.g. system and per-user configuration, or a
+ gallery app with per-directory configuration) is a snap.
+

Added: trunk/libconfig-yaml-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-yaml-perl/debian/copyright?rev=53813&op=file
==============================================================================
--- trunk/libconfig-yaml-perl/debian/copyright (added)
+++ trunk/libconfig-yaml-perl/debian/copyright Sun Mar  7 01:50:57 2010
@@ -1,0 +1,25 @@
+This package was debianized by Stephen Quinney <sjq at debian.org> on
+Fri,  4 Feb 2005 12:55:09 +0000
+
+It was downloaded from http://search.cpan.org/CPAN/authors/id/M/MD/MDXI/
+
+Upstream Author: Shawn Boyette <mdxi at cpan.org>
+
+Original implementation by Kirrily "Skud" Robert (as YAML::ConfigFile).
+
+Copyright:
+
+    Copyright (C) 2004 Shawn Boyette,  All Rights Reserved.
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of either:
+
+    a) the GNU General Public License as published by the Free Software
+       Foundation; either version 1, or (at your option) any later
+       version, or
+
+    b) the "Artistic License" which comes with Perl.
+
+    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/libconfig-yaml-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-yaml-perl/debian/rules?rev=53813&op=file
==============================================================================
--- trunk/libconfig-yaml-perl/debian/rules (added)
+++ trunk/libconfig-yaml-perl/debian/rules Sun Mar  7 01:50:57 2010
@@ -1,0 +1,68 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE = $(shell dh_listpackages)
+
+TMP     =`pwd`/debian/$(PACKAGE)
+
+PERL = /usr/bin/perl
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+
+	perl Makefile.PL verbose INSTALLDIRS=vendor
+
+	touch configure-stamp
+
+build: build-stamp
+build-stamp: configure-stamp 
+	dh_testdir
+
+	$(MAKE)
+	$(MAKE) test
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	[ ! -e Makefile ] || $(MAKE) distclean
+
+	dh_clean build-stamp configure-stamp
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) install PREFIX=$(TMP)/usr
+
+	# Remove any empty directories
+
+	find $(TMP)/usr -type d -empty -print0 | xargs --no-run-if-empty --null rmdir -p --ignore-fail-on-non-empty
+
+binary-arch: build install
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_perl
+	dh_installdocs README
+	dh_installman
+	dh_installchangelogs Changes
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

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

Added: trunk/libconfig-yaml-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-yaml-perl/debian/watch?rev=53813&op=file
==============================================================================
--- trunk/libconfig-yaml-perl/debian/watch (added)
+++ trunk/libconfig-yaml-perl/debian/watch Sun Mar  7 01:50:57 2010
@@ -1,0 +1,7 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# Site		Directory		Pattern			Version	Script
+version=2
+http://www.cpan.org/authors/id/M/MD/MDXI/Config-YAML-(\d+\.\d+)\.tar\.gz debian uupdate
+




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