r21279 - in /trunk/libgtk2-ex-simple-list-perl/debian: ./ changelog compat control copyright rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 14:01:41 UTC 2008


Author: gregoa
Date: Sun Jun 15 14:01:41 2008
New Revision: 21279

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

Added:
    trunk/libgtk2-ex-simple-list-perl/debian/
    trunk/libgtk2-ex-simple-list-perl/debian/changelog
    trunk/libgtk2-ex-simple-list-perl/debian/compat
    trunk/libgtk2-ex-simple-list-perl/debian/control
    trunk/libgtk2-ex-simple-list-perl/debian/copyright
    trunk/libgtk2-ex-simple-list-perl/debian/rules   (with props)

Added: trunk/libgtk2-ex-simple-list-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-ex-simple-list-perl/debian/changelog?rev=21279&op=file
==============================================================================
--- trunk/libgtk2-ex-simple-list-perl/debian/changelog (added)
+++ trunk/libgtk2-ex-simple-list-perl/debian/changelog Sun Jun 15 14:01:41 2008
@@ -1,0 +1,13 @@
+libgtk2-ex-simple-list-perl (0.50-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix FTBFS with Perl 5.10.  Closes: #467939
+
+ -- Mark Hymers <mhy at debian.org>  Sat, 05 Apr 2008 21:09:15 +0100
+
+libgtk2-ex-simple-list-perl (0.50-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Florian Ragwitz <rafl at debian.org>  Fri, 16 Jun 2006 12:00:54 +0200
+

Added: trunk/libgtk2-ex-simple-list-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-ex-simple-list-perl/debian/compat?rev=21279&op=file
==============================================================================
--- trunk/libgtk2-ex-simple-list-perl/debian/compat (added)
+++ trunk/libgtk2-ex-simple-list-perl/debian/compat Sun Jun 15 14:01:41 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libgtk2-ex-simple-list-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-ex-simple-list-perl/debian/control?rev=21279&op=file
==============================================================================
--- trunk/libgtk2-ex-simple-list-perl/debian/control (added)
+++ trunk/libgtk2-ex-simple-list-perl/debian/control Sun Jun 15 14:01:41 2008
@@ -1,0 +1,15 @@
+Source: libgtk2-ex-simple-list-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.0-7), xvfb, xbase-clients, xfonts-base, libglib-perl, libgtk2-perl
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Standards-Version: 3.7.2
+
+Package: libgtk2-ex-simple-list-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libglib-perl, libgtk2-perl
+Description:  A simple interface to Gtk2's complex MVC list widget
+ SimpleList is a simple interface to the powerful but complex Gtk2::TreeView
+ and Gtk2::ListStore combination, implementing using tied arrays to make thing
+ simple and easy.

Added: trunk/libgtk2-ex-simple-list-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-ex-simple-list-perl/debian/copyright?rev=21279&op=file
==============================================================================
--- trunk/libgtk2-ex-simple-list-perl/debian/copyright (added)
+++ trunk/libgtk2-ex-simple-list-perl/debian/copyright Sun Jun 15 14:01:41 2008
@@ -1,0 +1,25 @@
+This is the debian package for the Gtk2-Ex-Simple-List module.
+It was created by Florian Ragwitz <rafl at debian.org> using dh-make-perl.
+
+The upstream authors are:
+
+ muppet <scott at asofyet dot org>
+ Ross McFarland <rwmcfa1 at neces dot com>
+ Gavin Brown <gavin dot brown at uk dot com>.
+
+
+Copyright 2004 by the Gtk2-Perl team.
+
+This library is free software; you can redistribute it and/or modify it under
+the terms of the GNU Library General Public License as published by the Free
+Software Foundation; either version 2.1 of the License, or (at your option) any
+later version.
+
+This library is distributed in the hope that it will be useful, but WITHOUT ANY
+WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+PARTICULAR PURPOSE. See the GNU Library General Public License for more
+details.
+
+
+On Debian GNU/Linux systems, the complete text of the GNU Library General
+Public License can be found in `/usr/share/common-licenses/LGPL'.

Added: trunk/libgtk2-ex-simple-list-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-ex-simple-list-perl/debian/rules?rev=21279&op=file
==============================================================================
--- trunk/libgtk2-ex-simple-list-perl/debian/rules (added)
+++ trunk/libgtk2-ex-simple-list-perl/debian/rules Sun Jun 15 14:01:41 2008
@@ -1,0 +1,58 @@
+#!/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) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp install-stamp
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	xvfb-run -a $(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -d $(TMP)/usr/lib/perl5 ] || 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_installexamples
+	dh_installdocs 
+	dh_installchangelogs 
+	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/libgtk2-ex-simple-list-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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