--- libwordnet-querydata-perl-1.48.orig/debian/control +++ libwordnet-querydata-perl-1.48/debian/control @@ -0,0 +1,23 @@ +Source: libwordnet-querydata-perl +Section: perl +Priority: extra +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.8.8), wordnet-sense-index, wordnet-base +Maintainer: Debian Perl Group +Uploaders: Damyan Ivanov , + Franck Joncourt +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/WordNet-QueryData/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libwordnet-querydata-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libwordnet-querydata-perl/ + +Package: libwordnet-querydata-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, wordnet-sense-index +Description: Perl interface to WordNet database + WordNet::QueryData provides a direct interface to the WordNet database files. + It allows the user direct access to the full WordNet semantic lexicon. All + parts of speech are supported and access is generally very efficient because + the index and morphical exclusion tables are loaded at initialization. This + initialization step is slow (appx. 10-15 seconds), but queries are very fast + thereafter -- thousands of queries can be completed every second. --- libwordnet-querydata-perl-1.48.orig/debian/copyright +++ libwordnet-querydata-perl-1.48/debian/copyright @@ -0,0 +1,31 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Name: WordNet-QueryData +Upstream-Maintainer: Jason Rennie +Upstream-Source: http://search.cpan.org/dist/WordNet-QueryData/ + +Files: * +Copyright: © Copyright 1999-2006 Jason Rennie. All rights reserved. +License-Alias: Perl +License: GPL-1+ | Artistic + +Files: debian/* +Copyright: + © 2007, Kjetil Kjernsmo + © 2009, gregor herrmann + © 2009, Franck Joncourt +License: GPL-1+ | Artistic + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + On Debian GNU/Linux systems, the complete text of the Artistic License + can be found in `/usr/share/common-licenses/Artistic' + +License: GPL-1+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' --- libwordnet-querydata-perl-1.48.orig/debian/watch +++ libwordnet-querydata-perl-1.48/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/WordNet-QueryData/ .*/WordNet-QueryData-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libwordnet-querydata-perl-1.48.orig/debian/compat +++ libwordnet-querydata-perl-1.48/debian/compat @@ -0,0 +1 @@ +7 --- libwordnet-querydata-perl-1.48.orig/debian/changelog +++ libwordnet-querydata-perl-1.48/debian/changelog @@ -0,0 +1,73 @@ +libwordnet-querydata-perl (1.48-1) unstable; urgency=low + + [ Franck Joncourt ] + [Franck Joncourt] + * New upstream release + * Switched to dh7 + + Updated d.{control,rules,compat}. + * d.control + + Bumped up Standards-Version to 3.8.1 (no changes). + + Updated BDI to perl >= 5.8.8. + + Set priority to extra due to override disparity. + + Add /me to uploaders. + * Refreshed d.copyright. + * Do not ship README anymore (not useful). + + [ gregor herrmann ] + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + * debian/watch: extended regexp for matching upstream releases. + * debian/control: slightly tweak short and long description. + + -- Franck Joncourt Sat, 11 Apr 2009 19:49:56 +0200 + +libwordnet-querydata-perl (1.47-1) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. + * debian/rules: delete /usr/lib/perl5 only if it exists. + + [ Rene Mayorga ] + * New upstream release + * debian/rules + + remove commented-out dh_calls + + touch $@ instead of *-stamps + * debian/control + + set dehlper version to >= 6.0.0 + + clean-up uploaders field + + Standarts-version set to 3.7.3 (no changes requiered) + * debian/compat: set to 6 + * set debian/watch to dist instead of by module + + -- Roberto C. Sanchez Sat, 12 Jan 2008 12:41:04 -0500 + +libwordnet-querydata-perl (1.46-1) unstable; urgency=low + + [ gregor herrmann ] + * New upstream release. + * Separate Build-Depends and Build-Depends-Indep. + * Add wordnet-base to build dependencies. + * Extend debian/copyright. + * Set WNHOME and WNSEARCHDIR in debian/rules. + + [ Damyan Ivanov ] + * Cleaned up debian/rules + + Drop unneeded OPTIMIZE="..." + + Drop unneeded dh_* calls + + Move dh_clean $stamp_files before distclean + + Move test suite from install to build target + * debian/copyright: + + Added upstream source URL + + Fixed copyright years from README + * Added myself to Uploaders (and wrapped it) + + -- Damyan Ivanov Mon, 17 Sep 2007 15:16:19 +0300 + +libwordnet-querydata-perl (1.45-1) unstable; urgency=low + + * Initial Release. + + -- Kjetil Kjernsmo Mon, 4 Dec 2006 14:25:45 +0100 + --- libwordnet-querydata-perl-1.48.orig/debian/rules +++ libwordnet-querydata-perl-1.48/debian/rules @@ -0,0 +1,26 @@ +#!/usr/bin/make -f + +export WNHOME=/usr/share/wordnet +export WNSEARCHDIR=/usr/share/wordnet + +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-indep: install + dh $@ + +binary-arch: + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build