libdbix-fulltextsearch-perl (0.73-10) debian-dir only changes

Summary

 debian/changelog |   68 ++++++++++++++++++++++++++++++++++++++++
 debian/compat    |    1 
 debian/control   |   37 +++++++++++++++++++++
 debian/copyright |   27 +++++++++++++++
 debian/rules     |   93 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/watch     |    3 +
 6 files changed, 229 insertions(+)

    
download this patch

Patch contents

--- libdbix-fulltextsearch-perl-0.73.orig/debian/compat
+++ libdbix-fulltextsearch-perl-0.73/debian/compat
@@ -0,0 +1 @@
+4
--- libdbix-fulltextsearch-perl-0.73.orig/debian/watch
+++ libdbix-fulltextsearch-perl-0.73/debian/watch
@@ -0,0 +1,3 @@
+version=3
+# URL to the package page followed by a regex to search
+http://search.cpan.org/dist/DBIx-FullTextSearch/   .*/DBIx-FullTextSearch-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)
--- libdbix-fulltextsearch-perl-0.73.orig/debian/copyright
+++ libdbix-fulltextsearch-perl-0.73/debian/copyright
@@ -0,0 +1,27 @@
+This software was Debianized by Dominic Hargreaves on
+Sun, 19 Sep 2004 23:57:51 +0100.
+
+It was downloaded from CPAN <http://search.cpan.org/dist/DBIx-FullTextSearch/>
+
+The upstream author is: 
+
+(Original) Jan Pazdziora, adelton@fi.muni.cz,
+http://www.fi.muni.cz/~adelton/ at Faculty of Informatics, Masaryk University in Brno, Czech
+Republic
+
+(Current Maintainer) T.J. Mather, tjmather@maxmind.com,
+http://www.maxmind.com/app/opensourceservices Princeton, NJ USA
+
+Paid support is available from directly from the maintainers of this package.
+Please see http://www.maxmind.com/app/opensourceservices for more details..
+
+Copyright: (c) 2000,2001 Thomas J. Mather, tjmather@maxmind.com,
+           (c) 1999 Jan Pazdziora, adelton@fi.muni.cz. 
+
+All rights reserved. This package is free software; you can
+redistribute it and/or modify it under the same terms as Perl itself.
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License.  On Debian GNU/Linux systems, the complete text of the
+GNU General Public License can be found in `/usr/share/common-licenses/GPL'
+and the Artistic Licence in `/usr/share/common-licenses/Artistic'.
--- libdbix-fulltextsearch-perl-0.73.orig/debian/control
+++ libdbix-fulltextsearch-perl-0.73/debian/control
@@ -0,0 +1,37 @@
+Source: libdbix-fulltextsearch-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7), libdbd-mysql-perl
+Maintainer: Dominic Hargreaves <dom@earth.li>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/DBIx-FullTextSearch/
+
+Package: libdbix-fulltextsearch-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libparse-recdescent-perl,
+         libdbd-mysql-perl, libwww-perl
+Description: Indexing documents with MySQL as storage
+ DBIx::FullTextSearch is a flexible solution for indexing contents of documents.
+ It uses the MySQL database to store the information about words and
+ documents and provides Perl interface for indexing new documents,
+ making changes and searching for matches.  For DBIx::FullTextSearch, a document
+ is nearly anything -- Perl scalar, file, Web document, database field.
+ .
+ The basic style of interface is shown above. What you need is a MySQL
+ database and a DBI with DBD::mysql. Then you create a DBIx::FullTextSearch
+ index  -- a set of tables that maintain all necessary information. Once created
+ it can be accessed many times, either for updating the index (adding
+ documents) or searching.
+ .
+ DBIx::FullTextSearch uses one basic table to store parameters of the index.
+ Second table is used to store the actual information about documents and words,
+ and depending on the type of the index (specified during index creation)
+ there may be more tables to store additional information (like
+ conversion from external string names (eg. URL's) to internal numeric
+ form). For a user, these internal thingies and internal behaviour of the
+ index are not important. The important part is the API, the methods to
+ index document and ask questions about words in documents. However,
+ certain understanding of how it all works may be useful when you are
+ deciding if this module is for you and what type of index will best
+ suit your needs.
--- libdbix-fulltextsearch-perl-0.73.orig/debian/rules
+++ libdbix-fulltextsearch-perl-0.73/debian/rules
@@ -0,0 +1,93 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc@dch-faq.de> 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)
+
+# Allow disabling build optimation 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) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)"
+	
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) distclean
+	
+	dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	#$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+        # Remove this since the binary doesn't get installed
+	rm $(TMP)/usr/share/man/man1/ftsadmin.1
+	rmdir $(TMP)/usr/share/man/man1
+	
+	# As this is a architecture independent package, we are not supposed to install
+	# stuff to /usr/lib. MakeMaker creates the dirs, we delete them from the deb:
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
+
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installcron
+#	dh_installmenu
+	dh_installexamples admin.cgi ftsadmin
+	dh_installdocs README.developer TODO README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_link
+	dh_strip
+	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
--- libdbix-fulltextsearch-perl-0.73.orig/debian/changelog
+++ libdbix-fulltextsearch-perl-0.73/debian/changelog
@@ -0,0 +1,68 @@
+libdbix-fulltextsearch-perl (0.73-10) unstable; urgency=low
+
+  * Fix debian/rules rmdir bug (closes: #467755)
+  * Update Standards-Version (no changes)
+  * Add debian/watch
+  * debian/control: add Homepage field
+  * Fix make distclean lintian warning
+  * Make copyright notice explicit
+  * Remove empty man directory
+
+ -- Dominic Hargreaves <dom@earth.li>  Thu, 28 Feb 2008 00:08:19 +0000
+
+libdbix-fulltextsearch-perl (0.73-9) unstable; urgency=low
+
+  * Upload targetted at Debian (closes: #280319)
+
+ -- Dominic Hargreaves <dom@earth.li>  Wed,  7 Jun 2006 20:48:36 +0100
+
+libdbix-fulltextsearch-perl (0.73-8) unstable; urgency=low
+
+  * Remove bogus liblingua-stem-perl dependency.
+
+ -- Dominic Hargreaves <dom@earth.li>  Sun,  8 May 2005 00:42:53 +0100
+
+libdbix-fulltextsearch-perl (0.73-7) unstable; urgency=low
+
+  * Add build-dep on libdbd-mysql-perl.
+  * Add watch file.
+
+ -- Dominic Hargreaves <dom@earth.li>  Sun,  8 May 2005 00:29:09 +0100
+
+libdbix-fulltextsearch-perl (0.73-6) unstable; urgency=low
+
+  * Add missing dependencies on liblingua-stem-perl and libwww-perl.
+  * Add more information to debian/copyright.
+
+ -- Dominic Hargreaves <dom@earth.li>  Thu,  2 Dec 2004 23:50:15 +0000
+
+libdbix-fulltextsearch-perl (0.73-5) unstable; urgency=low
+
+  * Remove ftsadmin manpage since it isn't being installed.
+
+ -- Dominic Hargreaves <dom@earth.li>  Sat,  2 Oct 2004 19:50:10 +0100
+
+libdbix-fulltextsearch-perl (0.73-4) unstable; urgency=low
+
+  * Rebuild to revert to orig.tar.gz upload
+
+ -- Dominic Hargreaves <dom@earth.li>  Wed, 22 Sep 2004 00:41:49 +0100
+
+libdbix-fulltextsearch-perl (0.73-3) unstable; urgency=low
+
+  * Add missing dependencies on libdbd-mysql-perl
+
+ -- Dominic Hargreaves <dom@earth.li>  Mon, 20 Sep 2004 00:40:04 +0100
+
+libdbix-fulltextsearch-perl (0.73-2) unstable; urgency=low
+
+  * Include correct dependencies.
+
+ -- Dominic Hargreaves <dom@earth.li>  Mon, 20 Sep 2004 00:30:11 +0100
+
+libdbix-fulltextsearch-perl (0.73-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Dominic Hargreaves <dom@earth.li>  Sun, 19 Sep 2004 23:57:51 +0100
+