r21552 - in /trunk/libxml-opml-perl/debian: ./ changelog compat control copyright docs rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 16:01:31 UTC 2008


Author: gregoa
Date: Sun Jun 15 16:01:31 2008
New Revision: 21552

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

Added:
    trunk/libxml-opml-perl/debian/
    trunk/libxml-opml-perl/debian/changelog
    trunk/libxml-opml-perl/debian/compat
    trunk/libxml-opml-perl/debian/control
    trunk/libxml-opml-perl/debian/copyright
    trunk/libxml-opml-perl/debian/docs
    trunk/libxml-opml-perl/debian/rules   (with props)

Added: trunk/libxml-opml-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-opml-perl/debian/changelog?rev=21552&op=file
==============================================================================
--- trunk/libxml-opml-perl/debian/changelog (added)
+++ trunk/libxml-opml-perl/debian/changelog Sun Jun 15 16:01:31 2008
@@ -1,0 +1,6 @@
+libxml-opml-perl (0.26-1) unstable; urgency=low
+
+  * Initial Release (Closes: #240116).
+
+ -- Florian Ragwitz <florian at mookooh.org>  Sun,  2 May 2004 01:38:28 +0200
+

Added: trunk/libxml-opml-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-opml-perl/debian/compat?rev=21552&op=file
==============================================================================
--- trunk/libxml-opml-perl/debian/compat (added)
+++ trunk/libxml-opml-perl/debian/compat Sun Jun 15 16:01:31 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libxml-opml-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-opml-perl/debian/control?rev=21552&op=file
==============================================================================
--- trunk/libxml-opml-perl/debian/control (added)
+++ trunk/libxml-opml-perl/debian/control Sun Jun 15 16:01:31 2008
@@ -1,0 +1,16 @@
+Source: libxml-opml-perl
+Section: perl
+Priority: optional
+Maintainer: Florian Ragwitz <florian at mookooh.org>
+Build-Depends: debhelper (>= 4.0.0)
+Build-Depends-Indep: perl (>= 5.6.0-16), libxml-parser-perl, libxml-simpleobject-perl
+Standards-Version: 3.6.1
+
+Package: libxml-opml-perl
+Architecture: all
+Depends: ${perl:Depends}, libxml-parser-perl, libxml-simpleobject-perl
+Description: A Perl module to create and update OPML files
+ This module is designed to allow for easy creation and manipulation of
+ OPML files. OPML files are most commonly used for the sharing of
+ blogrolls or subscriptions - an outlined list of what other blogs an
+ Internet blogger reads.

Added: trunk/libxml-opml-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-opml-perl/debian/copyright?rev=21552&op=file
==============================================================================
--- trunk/libxml-opml-perl/debian/copyright (added)
+++ trunk/libxml-opml-perl/debian/copyright Sun Jun 15 16:01:31 2008
@@ -1,0 +1,17 @@
+This package was debianized by Florian Ragwitz <florian at mookooh.org> on
+Sun,  2 May 2004 01:38:28 +0200.
+
+It was downloaded from http://search.cpan.org/~madghoul/XML-OPML/
+
+Upstream Author: Michael Szul <opml-dev at blogenstein.com>
+
+Copyright: GNU/GPL, Artistic
+
+ copyright (c) 2004 Michael Szul <opml-dev at blogenstein.com>
+
+ XML::OPML is free software. It may be redistributed and/or modified
+ under the same terms as Perl (GPL or Artistic).
+
+ 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/libxml-opml-perl/debian/docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-opml-perl/debian/docs?rev=21552&op=file
==============================================================================
--- trunk/libxml-opml-perl/debian/docs (added)
+++ trunk/libxml-opml-perl/debian/docs Sun Jun 15 16:01:31 2008
@@ -1,0 +1,1 @@
+README

Added: trunk/libxml-opml-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-opml-perl/debian/rules?rev=21552&op=file
==============================================================================
--- trunk/libxml-opml-perl/debian/rules (added)
+++ trunk/libxml-opml-perl/debian/rules Sun Jun 15 16:01:31 2008
@@ -1,0 +1,58 @@
+#!/usr/bin/make -f
+
+ifndef PERL
+	PERL=/usr/bin/perl
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	touch configure-stamp
+
+build: build-stamp
+
+build-stamp: configure
+	dh_testdir
+	$(MAKE)
+	$(MAKE) test
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	-$(MAKE) realclean
+	dh_clean configure-stamp build-stamp
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/libxml-opml-perl
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs Changes
+	dh_installdocs
+	dh_installexamples Examples
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_perl
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

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




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