--- delimmatch-1.03.orig/debian/README.debian +++ delimmatch-1.03/debian/README.debian @@ -0,0 +1,6 @@ +delimmatch for DEBIAN +---------------------- + +Comments regarding the Package + +Christian Leutloff , Thu, 6 Nov 1997 12:43:07 +0100 --- delimmatch-1.03.orig/debian/changelog +++ delimmatch-1.03/debian/changelog @@ -0,0 +1,17 @@ +delimmatch (1.03-1) unstable; urgency=low + + * New upstream release + * lintian bugs fixed + + -- Christian Leutloff Fri, 20 Feb 1998 16:52:02 +0100 + +delimmatch (1.02-1) unstable; urgency=low + + * Initial Release. + + -- Christian Leutloff Thu, 6 Nov 1997 12:43:07 +0100 + +Local variables: +mode: debian-changelog +add-log-mailing-address: "leutloff@debian.org" +End: --- delimmatch-1.03.orig/debian/copyright +++ delimmatch-1.03/debian/copyright @@ -0,0 +1,12 @@ +This package was debianized by Christian Leutloff leutloff@debian.org on +Thu, 6 Nov 1997 12:43:07 +0100. + +It was downloaded from +http://www.berkshire.net/~norm/perl/DelimMatch-1.02.tar.gz + +Copyright: + +Copyright (c) 1997 Norman Walsh. All rights reserved. This +program is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + --- delimmatch-1.03.orig/debian/dirs +++ delimmatch-1.03/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin --- delimmatch-1.03.orig/debian/rules +++ delimmatch-1.03/debian/rules @@ -0,0 +1,69 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: build-stamp +build-stamp: + dh_testdir + # Add here commands to compile the pacckage. +# perl Makefile.PL PREFIX=/ INSTALLSITELIB=debian/tmp/usr/lib/perl5 INSTALLPRIVLIB=debian/tmp/usr/lib/perl5 INSTALLARCHLIB=debian/tmp/usr/lib/perl5/i386-linux/5.004 INSTALLBIN=debian/tmp/usr/bin INSTALLSCRIPT=debian/tmp/usr/bin INSTALLMAN1DIR=debian/tmp/usr/man/man1 INSTALLMAN3DIR=debian/tmp/usr/man/man3 + perl Makefile.PL + $(MAKE) + $(MAKE) test + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean + + dh_clean + +# Build architecture-independent files here. +binary-indep: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the files into debian/tmp + install -d `pwd`/debian/tmp/usr/lib/perl5/Text + install -d `pwd`/debian/tmp/usr/lib/perl5/auto/Text/DelimMatch + #$(MAKE) pure_install + install -m 444 blib/lib/Text/DelimMatch.pm `pwd`/debian/tmp/usr/lib/perl5/Text + install -m 444 blib/lib/auto/Text/DelimMatch/autosplit.ix `pwd`/debian/tmp/usr/lib/perl5/auto/Text/DelimMatch + dh_installdocs + dh_installexamples + dh_installmenu + dh_installcron + dh_installmanpages blib/man3 +# dh_undocumented + dh_installchangelogs + dh_strip + dh_compress + dh_fixperms + dh_suidregister + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build +# We have nothing to do by default. + +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 -d debian/tmp +# cd debian/tmp && install -d `cat ../dirs` --- delimmatch-1.03.orig/debian/control +++ delimmatch-1.03/debian/control @@ -0,0 +1,21 @@ +Source: delimmatch +Section: text +Priority: optional +Maintainer: Christian Leutloff +Standards-Version: 2.4.0.0 + +Package: libdelimmatch-perl +Replaces: delimmatch +Conflicts: delimmatch +Provides: delimmatch +Architecture: all +Depends: perl (>=5.000) +Description: Perl Module to match delimited substrings + DelimMatch allows you to match delimited substrings in a buffer. The + delimiters can be specified with any regular expression and the start + and end delimiters need not be the same. If the delimited text is + properly nested, entire nested groups are returned. + . + In addition, you may specify quoting and escaping characters that + contribute to the recognition of start and end delimiters. +