r9441 - in /trunk/libvi-quickfix-perl/debian: ./ changelog compat control copyright rules watch

emhn-guest at users.alioth.debian.org emhn-guest at users.alioth.debian.org
Fri Nov 16 20:07:37 UTC 2007


Author: emhn-guest
Date: Fri Nov 16 20:07:37 2007
New Revision: 9441

URL: http://svn.debian.org/wsvn/?sc=1&rev=9441
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libvi-quickfix-perl/debian/
    trunk/libvi-quickfix-perl/debian/changelog
    trunk/libvi-quickfix-perl/debian/compat
    trunk/libvi-quickfix-perl/debian/control
    trunk/libvi-quickfix-perl/debian/copyright
    trunk/libvi-quickfix-perl/debian/rules   (with props)
    trunk/libvi-quickfix-perl/debian/watch

Added: trunk/libvi-quickfix-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libvi-quickfix-perl/debian/changelog?rev=9441&op=file
==============================================================================
--- trunk/libvi-quickfix-perl/debian/changelog (added)
+++ trunk/libvi-quickfix-perl/debian/changelog Fri Nov 16 20:07:37 2007
@@ -1,0 +1,6 @@
+libvi-quickfix-perl (1.129-1) unstable; urgency=low
+
+  * Initial Release.
+  * Moved package into Debian Pkg Perl Project SVN.
+
+ -- Ernesto Hernández-Novich (USB) <emhn at usb.ve>  Fri, 16 Nov 2007 15:53:26 -0400

Added: trunk/libvi-quickfix-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libvi-quickfix-perl/debian/compat?rev=9441&op=file
==============================================================================
--- trunk/libvi-quickfix-perl/debian/compat (added)
+++ trunk/libvi-quickfix-perl/debian/compat Fri Nov 16 20:07:37 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libvi-quickfix-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libvi-quickfix-perl/debian/control?rev=9441&op=file
==============================================================================
--- trunk/libvi-quickfix-perl/debian/control (added)
+++ trunk/libvi-quickfix-perl/debian/control Fri Nov 16 20:07:37 2007
@@ -1,0 +1,27 @@
+Source: libvi-quickfix-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.0)
+Maintainer: Debian Pkg Perl <pkg-perl at lists.alioth.debian.org>
+Uploaders: Ernesto Hernández-Novich (USB) <emhn at usb.ve>
+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.2
+
+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.

Added: trunk/libvi-quickfix-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libvi-quickfix-perl/debian/copyright?rev=9441&op=file
==============================================================================
--- trunk/libvi-quickfix-perl/debian/copyright (added)
+++ trunk/libvi-quickfix-perl/debian/copyright Fri Nov 16 20:07:37 2007
@@ -1,0 +1,22 @@
+This package was debianized by Ernesto Hernández-Novich (USB) <emhn at usb.ve>
+on Fri, 16 Nov 2007 15:49:58 -0400
+
+It was downloaded from http://search.cpan.org/dist/Vi-QuickFix/
+
+Upstream Author: 
+
+Anno Siegel <siegel at zrz.tu-berlin.de>
+
+Copyright:
+
+Copyright (c) Anno Siegel
+
+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.
+
+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.

Added: trunk/libvi-quickfix-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libvi-quickfix-perl/debian/rules?rev=9441&op=file
==============================================================================
--- trunk/libvi-quickfix-perl/debian/rules (added)
+++ trunk/libvi-quickfix-perl/debian/rules Fri Nov 16 20:07:37 2007
@@ -1,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 <marc at 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)
+
+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
+	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_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

Propchange: trunk/libvi-quickfix-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libvi-quickfix-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libvi-quickfix-perl/debian/watch?rev=9441&op=file
==============================================================================
--- trunk/libvi-quickfix-perl/debian/watch (added)
+++ trunk/libvi-quickfix-perl/debian/watch Fri Nov 16 20:07:37 2007
@@ -1,0 +1,2 @@
+version=3
+http://www.cpan.org/modules/by-module/Vi/Vi-Quickfix-([\d\.]+)\.(?:tar\.gz|tar|tgz)




More information about the Pkg-perl-cvs-commits mailing list