debian/0000755000000000000000000000000011635111523007164 5ustar debian/watch0000644000000000000000000000017011635111120010204 0ustar version=3 http://search.cpan.org/dist/Perldoc-Search/ .+/Perldoc-Search-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/rules0000755000000000000000000000003611635111236010244 0ustar #!/usr/bin/make -f %: dh $@ debian/changelog0000644000000000000000000000357011635111523011043 0ustar libperldoc-search-perl (0.01-3) unstable; urgency=low * Team upload. [ gregor herrmann ] * debian/control: Added: ${misc:Depends} to Depends: field. * Remove Florian Ragwitz from Uploaders (closes: #523266). [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. * Use source format 3.0 (quilt). * Use tiny debian/rules with debhelper 8. * debian/copyright: Formatting changes. * Make build-dep on perl unversioned. * Bump Standards-Version to 3.9.2. -- Ansgar Burchardt Sat, 17 Sep 2011 14:32:13 +0200 libperldoc-search-perl (0.01-2) unstable; urgency=medium * Take over for the Debian Perl Group with maintainer's permission (http://lists.debian.org/debian-perl/2008/06/msg00039.html) * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); Homepage field (source stanza). Changed: Maintainer set to Debian Perl Group (was: Florian Ragwitz ); Florian Ragwitz moved to Uploaders. * Add debian/watch. * debian/rules: delete /usr/lib/perl5 only if it exists (closes: #493435). * Set urgency to medium because of the RC bug. * Switch patch system from dpatch to quilt. * Refresh debian/rules, changes: don't ignore errors of make clean. * Remove debian/source.lintian-overrides, not needed any more. * Set debhelper compatibility level to 5. * Add /me to Uploaders. * Set Standards-Version to 3.8.0; add debian/README.source to document quilt usage. -- gregor herrmann Mon, 04 Aug 2008 17:57:11 -0300 libperldoc-search-perl (0.01-1) unstable; urgency=low * Initial Release (Closes: #324730). -- Florian Ragwitz Wed, 24 Aug 2005 00:53:30 +0200 debian/control0000644000000000000000000000217411635111462010575 0ustar Source: libperldoc-search-perl Section: perl Priority: optional Build-Depends: debhelper (>= 8) Build-Depends-Indep: perl, libpod-simple-perl, libswish-api-common-perl, libsysadm-install-perl Maintainer: Debian Perl Group Uploaders: gregor herrmann Standards-Version: 3.9.2 Homepage: http://search.cpan.org/dist/Perldoc-Search/ Vcs-Git: git://git.debian.org/pkg-perl/packages/libperldoc-search-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libperldoc-search-perl.git Package: libperldoc-search-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libpod-simple-perl, libswish-api-common-perl, libshell-posix-select-perl Description: Index and Search local Perl Documentation Perldoc::Search uses the swish-e engine to index the local Perl documentation. It provides both the command line utility perldig and an API to perform searches on the index. It uses SWISH::API::Common as the indexing and search engine. . This package also contains the command line utility perldig, which digs up keywords in the local Perl documentation debian/compat0000644000000000000000000000000211635111222010356 0ustar 8 debian/source/0000755000000000000000000000000011635111210010455 5ustar debian/source/format0000644000000000000000000000001411635111210011663 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000011635111120010604 5ustar debian/patches/series0000644000000000000000000000002211635111120012013 0ustar 20Search.pm.patch debian/patches/20Search.pm.patch0000644000000000000000000000155111635111120013611 0ustar Author: Florian Ragwitz Description: Add all installvendorlib and installvendorarch to the search directories Don't die if we can't chdir to a directory which does not exist --- a/lib/Perldoc/Search.pm +++ b/lib/Perldoc/Search.pm @@ -21,6 +21,8 @@ sub new { $Config{installsitelib}, $Config{installarchlib}, $Config{installprivlib}, + $Config{installvendorlib}, + $Config{installvendorarch} ], swish_options => { swish_adm_dir => "$ENV{HOME}/.perldig", @@ -32,6 +34,7 @@ sub new { # will figure out the real paths for(@{$self->{dirs}}) { my $cwd = cwd(); + next unless -e; chdir $_ or die "Cannot cwd to $_"; $_ = File::Spec->rel2abs("."); chdir $cwd; debian/copyright0000644000000000000000000000221611635111416011121 0ustar Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=59 Maintainer: Mike Schilli Source: http://search.cpan.org/dist/Perldoc-Search/ Name: Perldoc-Search Files: * Copyright: 2005, Mike Schilli License: Artistic or GPL-1+ Files: debian/* Copyright: 2005, Florian Ragwitz 2008, gregor herrmann 2011, Ansgar Burchardt License: Artistic or GPL-1+ 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 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 systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'.