r20563 - in /trunk/libiptables-parse-perl/debian: ./ changelog compat control copyright rules watch

thialme-guest at users.alioth.debian.org thialme-guest at users.alioth.debian.org
Sat May 31 12:50:00 UTC 2008


Author: thialme-guest
Date: Sat May 31 12:50:00 2008
New Revision: 20563

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

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

Added: trunk/libiptables-parse-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libiptables-parse-perl/debian/changelog?rev=20563&op=file
==============================================================================
--- trunk/libiptables-parse-perl/debian/changelog (added)
+++ trunk/libiptables-parse-perl/debian/changelog Sat May 31 12:50:00 2008
@@ -1,0 +1,12 @@
+libiptables-parse-perl (0.6-1) unstable; urgency=low
+
+  * New upstream release with perl documentation.
+
+ -- Franck Joncourt <franck.mail at dthconnex.com>  Tue, 20 May 2008 22:45:32 +0200
+
+libiptables-parse-perl (0.5-1) unstable; urgency=low
+
+  * Initial release (Closes: #481973)
+
+ -- Franck Joncourt <franck.mail at dthconnex.com>  Sun, 20 Apr 2008 14:44:15 +0200
+

Added: trunk/libiptables-parse-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libiptables-parse-perl/debian/compat?rev=20563&op=file
==============================================================================
--- trunk/libiptables-parse-perl/debian/compat (added)
+++ trunk/libiptables-parse-perl/debian/compat Sat May 31 12:50:00 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libiptables-parse-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libiptables-parse-perl/debian/control?rev=20563&op=file
==============================================================================
--- trunk/libiptables-parse-perl/debian/control (added)
+++ trunk/libiptables-parse-perl/debian/control Sat May 31 12:50:00 2008
@@ -1,0 +1,23 @@
+Source: libiptables-parse-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Franck Joncourt <franck.mail at dthconnex.com>
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.6.10-12)
+Standards-Version: 3.7.3
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libiptables-parse-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libiptables-parse-perl/
+HomePage: http://cipherdyne.org/modules/
+
+Package: libiptables-parse-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: Perl extension for parsing iptables firewall rulesets 
+ The "IPTables::Parse" package provides an interface to parse iptables rules 
+ on Linux systems through the direct execution of iptables commands, or from
+ a file.
+ .
+ You can get the current policy applied to a table/chain, look for a specific
+ user-defined chain, check for a default DROP policy, or know whether or not
+ logging rules exist.

Added: trunk/libiptables-parse-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libiptables-parse-perl/debian/copyright?rev=20563&op=file
==============================================================================
--- trunk/libiptables-parse-perl/debian/copyright (added)
+++ trunk/libiptables-parse-perl/debian/copyright Sat May 31 12:50:00 2008
@@ -1,0 +1,21 @@
+This package was debianized by Franck Joncourt <franck.mail at dthconnex.com> on
+Sun, 20 Apr 2008 14:44:15 +0200.
+
+It was downloaded from http://www.cipherdyne.org
+
+Upstream Author: 
+
+    Michael B. Rash <mbr at cipherdyne.com>
+
+Copyright: 
+
+    Copyright (C) by 2008 Michael B. Rash
+
+License:
+    This library is free software; you can redistribute it and/or modify
+    it under the same terms as Perl itself, either Perl version 5.8.5 or,
+    at your option, any later version of Perl 5 you may have available.
+
+Debian packaging is (C) 2008, Franck Joncourt <franck.mail at dthconnex.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+

Added: trunk/libiptables-parse-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libiptables-parse-perl/debian/rules?rev=20563&op=file
==============================================================================
--- trunk/libiptables-parse-perl/debian/rules (added)
+++ trunk/libiptables-parse-perl/debian/rules Sat May 31 12:50:00 2008
@@ -1,0 +1,53 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+DESTDIR = $(CURDIR)/debian/$(PACKAGE)/
+
+build: build-stamp
+build-stamp:  
+	dh_testdir
+	
+	$(PERL) Makefile.PL \
+		PREFIX=$(DESTDIR)usr \
+		INSTALLVENDORLIB=$(DESTDIR)usr/share/perl5
+	
+	$(MAKE) 
+	$(MAKE) test
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	$(MAKE) install_vendor
+	touch $@
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs Changes
+	dh_installdocs README
+	dh_perl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-arch:
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install

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

Added: trunk/libiptables-parse-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libiptables-parse-perl/debian/watch?rev=20563&op=file
==============================================================================
--- trunk/libiptables-parse-perl/debian/watch (added)
+++ trunk/libiptables-parse-perl/debian/watch Sat May 31 12:50:00 2008
@@ -1,0 +1,3 @@
+version=3
+
+http://www.cipherdyne.com/modules/IPTables-Parse-(.*)\.tar\.gz debian uupdate




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