r8473 - in /trunk/libpod-spell-perl/debian: ./ changelog compat control copyright rules watch

rmayorga-guest at users.alioth.debian.org rmayorga-guest at users.alioth.debian.org
Mon Oct 22 19:42:19 UTC 2007


Author: rmayorga-guest
Date: Mon Oct 22 19:42:19 2007
New Revision: 8473

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

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

Added: trunk/libpod-spell-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libpod-spell-perl/debian/changelog?rev=8473&op=file
==============================================================================
--- trunk/libpod-spell-perl/debian/changelog (added)
+++ trunk/libpod-spell-perl/debian/changelog Mon Oct 22 19:42:19 2007
@@ -1,0 +1,6 @@
+libpod-spell-perl (1.01-1) unstable; urgency=low
+
+  * Initial release ( Closes: #442764 )
+
+ -- Rene Mayorga <rmayorga at debian.org.sv>  Mon, 22 Oct 2007 08:30:19 -0600
+

Added: trunk/libpod-spell-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libpod-spell-perl/debian/compat?rev=8473&op=file
==============================================================================
--- trunk/libpod-spell-perl/debian/compat (added)
+++ trunk/libpod-spell-perl/debian/compat Mon Oct 22 19:42:19 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libpod-spell-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libpod-spell-perl/debian/control?rev=8473&op=file
==============================================================================
--- trunk/libpod-spell-perl/debian/control (added)
+++ trunk/libpod-spell-perl/debian/control Mon Oct 22 19:42:19 2007
@@ -1,0 +1,22 @@
+Source: libpod-spell-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Rene Mayorga <rmayorga at debian.org.sv>
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl, libpod-escapes-perl, 
+Standards-Version: 3.7.2
+Homepage: http://search.cpan.org/dist/Pod-Spell/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libpod-spell-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-spell-perl/
+
+Package: libpod-spell-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: formatter for spellchecking Pod
+ Pod::Spell is a Pod formatter whose output is good for spellchecking.
+ Pod::Spell rather like Pod::Text, except that it doesn't put much effort
+ into actual formatting, and it suppresses things that look like Perl
+ symbols or Perl jargon (so that your spellchecking program won't
+ complain about mystery words like "`$thing'" or "`Foo::Bar'" or
+ "hashref").

Added: trunk/libpod-spell-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libpod-spell-perl/debian/copyright?rev=8473&op=file
==============================================================================
--- trunk/libpod-spell-perl/debian/copyright (added)
+++ trunk/libpod-spell-perl/debian/copyright Mon Oct 22 19:42:19 2007
@@ -1,0 +1,23 @@
+This package was debianized by Rene Mayorga <rmayorga at debian.org.sv> on
+Mon, 22 Oct 2007 08:30:19 -0600.
+
+It was downloaded from: http://search.cpan.org/dist/Pod-Spell/
+
+Upstream Author: 
+
+    Sean M. Burke `sburke at cpan.org'
+
+Copyright: 
+    Copyright (c) 2001 Sean M. Burke. All rights reserved.
+
+    This library 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'.
+
+
+The Debian packaging is (C) 2007, Rene Mayorga <rmayorga at debian.org.sv> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: trunk/libpod-spell-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libpod-spell-perl/debian/rules?rev=8473&op=file
==============================================================================
--- trunk/libpod-spell-perl/debian/rules (added)
+++ trunk/libpod-spell-perl/debian/rules Mon Oct 22 19:42:19 2007
@@ -1,0 +1,54 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+
+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 $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean build-stamp
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+
+
+binary-arch: 
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs README
+	dh_compress
+	dh_fixperms
+	dh_perl
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

Propchange: trunk/libpod-spell-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libpod-spell-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libpod-spell-perl/debian/watch?rev=8473&op=file
==============================================================================
--- trunk/libpod-spell-perl/debian/watch (added)
+++ trunk/libpod-spell-perl/debian/watch Mon Oct 22 19:42:19 2007
@@ -1,0 +1,3 @@
+version=3
+
+http://www.cpan.org/modules/by-module/Pod/Pod-Spell-(.*)\.tar\.gz




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