--- libconfig-augeas-perl-0.301.orig/debian/compat +++ libconfig-augeas-perl-0.301/debian/compat @@ -0,0 +1 @@ +5 --- libconfig-augeas-perl-0.301.orig/debian/control +++ libconfig-augeas-perl-0.301/debian/control @@ -0,0 +1,18 @@ +Source: libconfig-augeas-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5), libmodule-build-perl, perl (>= 5.6.10-12), libaugeas-dev, pkg-config +Maintainer: Jose Parrella +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Config-Augeas/ + +Package: libconfig-augeas-perl +Architecture: any +Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends} +Description: Perl module which allows to edit configuration files through Augeas + Augeas is a library and command line tool that focuses on the most basic + problem in handling Linux configurations programmatically: editing actual + configuration files in a controlled manner. + . + This module provides an object oriented Perl interface for Augeas configuration + edition library with a more "perlish" API than Augeas C counterpart. --- libconfig-augeas-perl-0.301.orig/debian/changelog +++ libconfig-augeas-perl-0.301/debian/changelog @@ -0,0 +1,11 @@ +libconfig-augeas-perl (0.301-1) unstable; urgency=low + + * New upstream version. (Closes: #493340) + + -- Jose Parrella Wed, 22 Oct 2008 10:24:58 -0430 + +libconfig-augeas-perl (0.201-1) unstable; urgency=low + + * Initial Release (Closes: #490956) + + -- Jose Parrella Tue, 22 Jul 2008 01:08:31 -0430 --- libconfig-augeas-perl-0.301.orig/debian/copyright +++ libconfig-augeas-perl-0.301/debian/copyright @@ -0,0 +1,17 @@ +This is the debian package for the Config-Augeas module. +It was created by Jose Parrella using dh-make-perl. + +It was downloaded from http://search.cpan.org/dist/Config-Augeas/ + +The upstream author is: Dominique Dumont (ddumont at cpan dot org). + + Copyright (C) 2008 by Dominique Dumont + + This library is free software; you can redistribute it and/or modify it + under the LGPL terms. + +On Debian systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL'. + +The Debian packaging is (C) 2008, Jose Parrella and +is licensed under the same terms as the software itself (see above). --- libconfig-augeas-perl-0.301.orig/debian/rules +++ libconfig-augeas-perl-0.301/debian/rules @@ -0,0 +1,73 @@ +#!/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. + +# 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) + +# Allow disabling build optimisation by setting noopt in +# $DEB_BUILD_OPTIONS +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +build: build-stamp +build-stamp: + dh_testdir + # Add commands to compile the package here + $(PERL) Build.PL installdirs=vendor config=optimize="$(CFLAGS)" + OPTIMIZE="$(CFLAGS)" $(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 $@ + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do here for an architecture-dependent package + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs README + dh_installchangelogs ChangeLog + dh_shlibdeps + dh_strip + 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 --- libconfig-augeas-perl-0.301.orig/debian/watch +++ libconfig-augeas-perl-0.301/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/Config-Augeas/ .*/Config-Augeas-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$