--- libvi-quickfix-perl-1.134.orig/debian/watch +++ libvi-quickfix-perl-1.134/debian/watch @@ -0,0 +1,4 @@ +version=3 +http://search.cpan.org/dist/Vi-QuickFix/ \ + .*/Vi-QuickFix-([\d\.]+)\.(?:tar\.gz|tar|tgz) +#http://search.cpan.org/CPAN/authors/id/A/AN/ANNO/Vi-QuickFix-([\d\.]+)\.(?:tar\.gz|tar|tgz) --- libvi-quickfix-perl-1.134.orig/debian/control +++ libvi-quickfix-perl-1.134/debian/control @@ -0,0 +1,27 @@ +Source: libvi-quickfix-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 6) +Build-Depends-Indep: perl (>= 5.8.0) +Maintainer: Debian Perl Project +Uploaders: Roberto C. Sanchez +Homepage: http://search.cpan.org/dist/Vi-QuickFix/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libvi-quickfix-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libvi-quickfix-perl/ +Standards-Version: 3.7.3 + +Package: libvi-quickfix-perl +Architecture: all +Depends: ${perl:Depends} +Suggests: vim +Description: Perl support for vim's QuickFix mode + If a Perl program or module uses Vi::QuickFix, Perl logs errors and + warnings to an error file. While editing that program or module with vim + you can ask Perl to compile it. If there are errors during compilation, + the error file is picked when you type a special QuickFix command and + Vim will jump to the location of the first error recorded. Other + QuickFix commands allow you to jump to other error messages, switching + files if necessary. + . + This module is intended as a debugging tool for Perl programmers using + Vim. --- libvi-quickfix-perl-1.134.orig/debian/compat +++ libvi-quickfix-perl-1.134/debian/compat @@ -0,0 +1 @@ +6 --- libvi-quickfix-perl-1.134.orig/debian/copyright +++ libvi-quickfix-perl-1.134/debian/copyright @@ -0,0 +1,24 @@ +The source for this package was downloaded from +http://search.cpan.org/dist/Vi-QuickFix/ + +Upstream Author: Anno Siegel + +Files: * +Copyright: © 2004-2008 Anno Siegel +License: Artistic | GPL-1+ + This module 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. + . + This information has been synthetized from the source code, the LICENSE file + and the Changes file, as there wasn't a complete copyright notice in the code. + +Files: debian/* +Copyright: © 2007, 2008 Debian Perl Project +License: Artistic | GPL-1+ + +The complete text of the GNU General Public License can be found in +/usr/share/common-licenses/GPL and the Artistic License can be found +in /usr/share/common-licenses/Artistic. --- libvi-quickfix-perl-1.134.orig/debian/rules +++ libvi-quickfix-perl-1.134/debian/rules @@ -0,0 +1,65 @@ +#!/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) + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + touch build-stamp + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -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_installdocs README Todo + dh_installchangelogs Changes + dh_perl + 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 --- libvi-quickfix-perl-1.134.orig/debian/changelog +++ libvi-quickfix-perl-1.134/debian/changelog @@ -0,0 +1,5 @@ +libvi-quickfix-perl (1.134-1) unstable; urgency=low + + * Initial Release (packaged by Ernesto Hernández-Novich) (Closes: #451545). + + -- Roberto C. Sanchez Tue, 15 Jan 2008 22:55:54 -0500