r21378 - in /trunk/libpath-class-perl/debian: ./ changelog compat control copyright rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 14:43:19 UTC 2008


Author: gregoa
Date: Sun Jun 15 14:43:19 2008
New Revision: 21378

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

Added:
    trunk/libpath-class-perl/debian/
    trunk/libpath-class-perl/debian/changelog
    trunk/libpath-class-perl/debian/compat
    trunk/libpath-class-perl/debian/control
    trunk/libpath-class-perl/debian/copyright
    trunk/libpath-class-perl/debian/rules   (with props)

Added: trunk/libpath-class-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpath-class-perl/debian/changelog?rev=21378&op=file
==============================================================================
--- trunk/libpath-class-perl/debian/changelog (added)
+++ trunk/libpath-class-perl/debian/changelog Sun Jun 15 14:43:19 2008
@@ -1,0 +1,22 @@
+libpath-class-perl (0.16-0.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * New upstream release.
+
+ -- Bastian Blank <waldi at debian.org>  Mon, 07 May 2007 13:20:26 +0000
+
+libpath-class-perl (0.15-1) unstable; urgency=low
+
+  * New upstream release.
+  * Improved debian/copyright.
+  * Cleaned up debian/rules.
+  * Updated Maintainer field with my new mail address.
+
+ -- Florian Ragwitz <rafl at debian.org>  Fri, 27 Jan 2006 07:01:11 +0100
+
+libpath-class-perl (0.12-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Florian Ragwitz <florian at mookooh.org>  Mon, 30 May 2005 16:13:20 +0200
+

Added: trunk/libpath-class-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpath-class-perl/debian/compat?rev=21378&op=file
==============================================================================
--- trunk/libpath-class-perl/debian/compat (added)
+++ trunk/libpath-class-perl/debian/compat Sun Jun 15 14:43:19 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libpath-class-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpath-class-perl/debian/control?rev=21378&op=file
==============================================================================
--- trunk/libpath-class-perl/debian/control (added)
+++ trunk/libpath-class-perl/debian/control Sun Jun 15 14:43:19 2008
@@ -1,0 +1,31 @@
+Source: libpath-class-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Standards-Version: 3.6.2
+
+Package: libpath-class-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: Cross-platform path specification manipulation
+ Path::Class is a module for manipulation of file and directory specifications
+ (strings describing their locations, like '/home/ken/foo.txt' or
+ 'C:\Windows\Foo.txt') in a cross-platform manner. It supports pretty much
+ every platform Perl runs on, including Unix, Windows, Mac, VMS, Epoc, Cygwin,
+ OS/2, and NetWare.
+ .
+ The well-known module File::Spec also provides this service, but it's sort of
+ awkward to use well, so people sometimes avoid it, or use it in a way that
+ won't actually work properly on platforms significantly different than the
+ ones they've tested their code on.
+ .
+ In fact, Path::Class uses File::Spec internally, wrapping all the unsightly
+ details so you can concentrate on your application code.  Whereas File::Spec
+ provides functions for some common path manipulations, Path::Class provides an
+ object-oriented model of the world of path specifications and their underlying
+ semantics. File::Spec doesn't create any objects, and its classes represent
+ the different ways in which paths must be manipulated on various platforms
+ (not a very intuitive concept). Path::Class creates objects representing
+ files and directories, and provides methods that relate them to each other.

Added: trunk/libpath-class-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpath-class-perl/debian/copyright?rev=21378&op=file
==============================================================================
--- trunk/libpath-class-perl/debian/copyright (added)
+++ trunk/libpath-class-perl/debian/copyright Sun Jun 15 14:43:19 2008
@@ -1,0 +1,18 @@
+This package was debianized by Florian Ragwitz <florian at mookooh.org> on
+Mon, 30 May 2005 14:57:19 +0200.
+
+It was downloaded from http://search.cpan.org/~kwilliams/Path-Class/
+
+Upstream author: Ken Williams <kwilliams at cpan.org>
+
+Copyright: Ken Williams.  All rights reserved.
+
+License:
+
+ 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'.

Added: trunk/libpath-class-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpath-class-perl/debian/rules?rev=21378&op=file
==============================================================================
--- trunk/libpath-class-perl/debian/rules (added)
+++ trunk/libpath-class-perl/debian/rules Sun Jun 15 14:43:19 2008
@@ -1,0 +1,55 @@
+#!/usr/bin/make -f
+
+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) Build.PL installdirs=vendor
+	OPTIMIZE="-Wall -O2 -g" $(PERL) Build
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	-$(PERL) Build distclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(PERL) Build test
+	$(PERL) Build install destdir=$(TMP)
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	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/libpath-class-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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