--- libdbix-fulltextsearch-perl-0.73.orig/debian/changelog +++ libdbix-fulltextsearch-perl-0.73/debian/changelog @@ -0,0 +1,56 @@ +libdbix-fulltextsearch-perl (0.73-9) unstable; urgency=low + + * Upload targetted at Debian (closes: #280319) + + -- Dominic Hargreaves 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 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 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 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 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 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 Mon, 20 Sep 2004 00:40:04 +0100 + +libdbix-fulltextsearch-perl (0.73-2) unstable; urgency=low + + * Include correct dependencies. + + -- Dominic Hargreaves Mon, 20 Sep 2004 00:30:11 +0100 + +libdbix-fulltextsearch-perl (0.73-1) unstable; urgency=low + + * Initial Release. + + -- Dominic Hargreaves Sun, 19 Sep 2004 23:57:51 +0100 + --- 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/control +++ libdbix-fulltextsearch-perl-0.73/debian/control @@ -0,0 +1,36 @@ +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 +Standards-Version: 3.7.2 + +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/copyright +++ libdbix-fulltextsearch-perl-0.73/debian/copyright @@ -0,0 +1,24 @@ +This software was Debianized by Dominic Hargreaves on +Sun, 19 Sep 2004 23:57:51 +0100. + +It was downloaded from CPAN + +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.. + +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/rules +++ libdbix-fulltextsearch-perl-0.73/debian/rules @@ -0,0 +1,92 @@ +#!/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) + +# 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 + -$(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 + + # 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: + rmdir --ignore-fail-on-non-empty --parents $(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