--- libtext-dhcpleases-perl-0.7.orig/debian/watch +++ libtext-dhcpleases-perl-0.7/debian/watch @@ -0,0 +1,4 @@ +# format version number, currently 3; this line is compulsory! +version=3 +# URL to the package page followed by a regex to search +http://search.cpan.org/dist/Text-DHCPLeases/ .*/Text-DHCPLeases-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libtext-dhcpleases-perl-0.7.orig/debian/compat +++ libtext-dhcpleases-perl-0.7/debian/compat @@ -0,0 +1 @@ +5 --- libtext-dhcpleases-perl-0.7.orig/debian/copyright +++ libtext-dhcpleases-perl-0.7/debian/copyright @@ -0,0 +1,12 @@ +This is the debian package for the Text-DHCPLeases module. +It was created by Isaac Clerencia using dh-make-perl. + +It was downloaded from http://search.cpan.org/dist/Text-DHCPLeases/ + +Copyright: + Copyright (C) 2007-2008 Carlos Vicente . + +The software is licensed under the Perl Artistic license. + +The Debian packaging is (C) 2008, Isaac Clerencia and +is licensed under the same terms as the software itself (see above). --- libtext-dhcpleases-perl-0.7.orig/debian/rules +++ libtext-dhcpleases-perl-0.7/debian/rules @@ -0,0 +1,63 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. +# +# It was later modified by Jason Kohles +# http://www.jasonkohles.com/ to support Module::Build installed modules + +# 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) Build.PL installdirs=vendor + $(PERL) Build + $(PERL) Build test + touch $@ + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + # Add commands to clean up after the build process here + [ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + # Add commands to install the package into $(TMP) here + $(PERL) Build install destdir=$(TMP) create_packlist=0 + 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 + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- libtext-dhcpleases-perl-0.7.orig/debian/changelog +++ libtext-dhcpleases-perl-0.7/debian/changelog @@ -0,0 +1,11 @@ +libtext-dhcpleases-perl (0.7-1~ppa2~intrepid1) intrepid; urgency=low + + * Prepare packages for intrepid and hardy + + -- Javier Uruen Val Tue, 13 Jan 2009 12:21:26 +0100 + +libtext-dhcpleases-perl (0.7-1~ppa1) intrepid; urgency=low + + * Initial Release. + + -- Isaac Clerencia Wed, 26 Nov 2008 13:12:33 +0100 --- libtext-dhcpleases-perl-0.7.orig/debian/control +++ libtext-dhcpleases-perl-0.7/debian/control @@ -0,0 +1,20 @@ +Source: libtext-dhcpleases-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5), libmodule-build-perl +Build-Depends-Indep: perl (>= 5.8.0) +Maintainer: Isaac Clerencia +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Text-DHCPLeases/ + +Package: libtext-dhcpleases-perl +Architecture: all +Depends: perl (>= 5.8.0), ${misc:Depends} +Description: Parse DHCP leases file from ISC dhcpd + This module provides an object-oriented interface to ISC DHCPD leases files. + The goal is to objectify all declarations, as defined by the ISC dhcpd package + man pages. + . + This interface is useful for analyzing, reporting, converting lease files, + or as a tool for other applications that need to import dhcpd lease data + structures.