r21258 - in /trunk/libfile-desktopentry-perl/debian: ./ changelog compat control copyright rules watch

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 13:53:46 UTC 2008


Author: gregoa
Date: Sun Jun 15 13:53:46 2008
New Revision: 21258

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

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

Added: trunk/libfile-desktopentry-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-desktopentry-perl/debian/changelog?rev=21258&op=file
==============================================================================
--- trunk/libfile-desktopentry-perl/debian/changelog (added)
+++ trunk/libfile-desktopentry-perl/debian/changelog Sun Jun 15 13:53:46 2008
@@ -1,0 +1,20 @@
+libfile-desktopentry-perl (0.04-0.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * New upstream version. Closes: #453236
+  * Switched debian/compat to 5 and adjusted debhelper build-dependency.
+  * Added a debian/watch file.
+  * Added libtest-pod-perl and libtest-pod-coverage-perl to
+    Build-Depends-Indep to enable all tests.
+  * Add libfile-basedir-perl (>= 0.03) to Depends and Build-Depends-Indep
+    fields (needed for runtime and tests).
+  * Add libmodule-build-perl to Build-Depends as it's the new build system.
+
+ -- Raphael Hertzog <hertzog at debian.org>  Sat, 01 Dec 2007 18:36:20 +0100
+
+libfile-desktopentry-perl (0.02-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Florian Ragwitz <rafl at debian.org>  Wed, 30 Nov 2005 16:16:46 +0100
+

Added: trunk/libfile-desktopentry-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-desktopentry-perl/debian/compat?rev=21258&op=file
==============================================================================
--- trunk/libfile-desktopentry-perl/debian/compat (added)
+++ trunk/libfile-desktopentry-perl/debian/compat Sun Jun 15 13:53:46 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libfile-desktopentry-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-desktopentry-perl/debian/control?rev=21258&op=file
==============================================================================
--- trunk/libfile-desktopentry-perl/debian/control (added)
+++ trunk/libfile-desktopentry-perl/debian/control Sun Jun 15 13:53:46 2008
@@ -1,0 +1,16 @@
+Source: libfile-desktopentry-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.8.0-7), libtest-pod-perl, libtest-pod-coverage-perl, libfile-basedir-perl (>= 0.03)
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Standards-Version: 3.6.2
+
+Package: libfile-desktopentry-perl
+Architecture: all
+Depends: ${perl:Depends}, libfile-basedir-perl (>= 0.03)
+Description: Perl module to handle freedesktop .desktop files
+ This module is used to work with .desktop files. The format of these files
+ is specified by the freedesktop "Desktp Entry" specification.
+ See http://freedesktop.org/wiki/Standards_2fdesktop_2dentry_2dspec.
+ For this module version 0.9.4 of the specification was used.

Added: trunk/libfile-desktopentry-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-desktopentry-perl/debian/copyright?rev=21258&op=file
==============================================================================
--- trunk/libfile-desktopentry-perl/debian/copyright (added)
+++ trunk/libfile-desktopentry-perl/debian/copyright Sun Jun 15 13:53:46 2008
@@ -1,0 +1,16 @@
+This package was debianized by Florian Ragwitz <rafl at debian.org> on
+Wed, 30 Nov 2005 16:19:50 +0100.
+
+It was downloaded from: http://search.cpan.org/~pardus/File-DesktopEntry/
+
+The upstream author is: Jaap Karssenberg <pardus at cpan.org>
+
+Copyright (c) 2005 Jaap G Karssenberg. All rights reserved.
+
+This program 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/libfile-desktopentry-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-desktopentry-perl/debian/rules?rev=21258&op=file
==============================================================================
--- trunk/libfile-desktopentry-perl/debian/rules (added)
+++ trunk/libfile-desktopentry-perl/debian/rules Sun Jun 15 13:53:46 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
+	./Build
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -x Build ] || ./Build realclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	./Build test
+	./Build install --destdir=$(TMP) --installdirs=vendor
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	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/libfile-desktopentry-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libfile-desktopentry-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-desktopentry-perl/debian/watch?rev=21258&op=file
==============================================================================
--- trunk/libfile-desktopentry-perl/debian/watch (added)
+++ trunk/libfile-desktopentry-perl/debian/watch Sun Jun 15 13:53:46 2008
@@ -1,0 +1,3 @@
+version=3
+
+http://www.perl.com/CPAN/modules/by-module/File/File-DesktopEntry-(.*)\.tar\.gz




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