--- libset-nestedgroups-perl-0.01.orig/debian/control +++ libset-nestedgroups-perl-0.01/debian/control @@ -0,0 +1,31 @@ +Source: libset-nestedgroups-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.8-7) +Maintainer: Debian Perl Group +Uploaders: Gunnar Wolf , + gregor herrmann +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Set-NestedGroups/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libset-nestedgroups-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libset-nestedgroups-perl/ + +Package: libset-nestedgroups-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, +Description: Simple implementation of nested groups + Set::NestedGroups gives an implementation of nested groups, + access control lists (ACLs) would be one example of + nested groups. + . + For example, if Joe is a Manager, and Managers have access to payroll, + you can create an ACL which implements these rules, then ask the ACL + if Joe has access to payroll. + . + Another example, you may wish to track which city, state and country + people are in, by adding people to cities, cities to states, and states + to countries. + . + This module includes some facilities to integrate its data structures + with either files in the local filesystem and with tables in a RDBMS. --- libset-nestedgroups-perl-0.01.orig/debian/rules +++ libset-nestedgroups-perl-0.01/debian/rules @@ -0,0 +1,70 @@ +#!/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 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + + touch $@ + +clean: + dh_testdir + dh_testroot + + dh_clean build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5 + + touch $@ + +binary-arch: +# We have nothing to do here for an architecture-independent package + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- libset-nestedgroups-perl-0.01.orig/debian/watch +++ libset-nestedgroups-perl-0.01/debian/watch @@ -0,0 +1,3 @@ +# format version number, currently 2; this line is compulsory! +version=3 +http://search.cpan.org/dist/Set-NestedGroups/ .*/Set-NestedGroups-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libset-nestedgroups-perl-0.01.orig/debian/copyright +++ libset-nestedgroups-perl-0.01/debian/copyright @@ -0,0 +1,18 @@ +This is the debian package for the Set::NestedGroups module. +It was created by Gunnar Wolf , and is maintained by +the Debian Pkg-perl group + +The upstream author is: + +Copyright (c) 1998 Alan R. Barclay, gorilla@elaine.drink.com. + +The module was downloaded from CPAN; it can be found at +http://www.cpan.org/modules/by-module/Set/ + +This program is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + +Perl is licensed under both the GPL and the Artistic licenses (at your +choice). In Debian systems, the full text of the licenses can be found +respectively at /usr/share/common-licenses/GPL and +/usr/share/common-licenses/Artistic --- libset-nestedgroups-perl-0.01.orig/debian/compat +++ libset-nestedgroups-perl-0.01/debian/compat @@ -0,0 +1 @@ +5 --- libset-nestedgroups-perl-0.01.orig/debian/changelog +++ libset-nestedgroups-perl-0.01/debian/changelog @@ -0,0 +1,23 @@ +libset-nestedgroups-perl (0.01-2) unstable; urgency=low + + [ Damyan Ivanov ] + * [debian/watch] Stop capturing file extension + + [ gregor herrmann ] + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. Added: /me to Uploaders. + * debian/rules: + - delete /usr/lib/perl5 only if it exists (closes: #467771) + - update based on dh-make-perl's templates + - don't install README any more (text version of the POD documentation) + * debian/watch: use dist-based URL. + * Set Standards-Version to 3.7.3 (no changes). + + -- gregor herrmann Wed, 12 Mar 2008 21:36:17 +0100 + +libset-nestedgroups-perl (0.01-1) unstable; urgency=low + + * Initial Release. (Closes: #433535) + + -- Gunnar Wolf Tue, 17 Jul 2007 13:07:32 -0500