r21293 - in /trunk/libgtk2-gladexml-simple-perl/debian: ./ changelog compat control copyright rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 14:06:36 UTC 2008


Author: gregoa
Date: Sun Jun 15 14:06:36 2008
New Revision: 21293

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

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

Added: trunk/libgtk2-gladexml-simple-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-gladexml-simple-perl/debian/changelog?rev=21293&op=file
==============================================================================
--- trunk/libgtk2-gladexml-simple-perl/debian/changelog (added)
+++ trunk/libgtk2-gladexml-simple-perl/debian/changelog Sun Jun 15 14:06:36 2008
@@ -1,0 +1,15 @@
+libgtk2-gladexml-simple-perl (0.32-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/control: Recommend libxml-sax-perl (needed by gpsketcher, which is
+    not always used) (Closes: #439797)
+  * debian/rules: Don't fail when perl is smart enough not to create empty
+    dirs (Closes: #467944)
+
+ -- Marc 'HE' Brockschmidt <he at debian.org>  Sat, 05 Apr 2008 18:43:27 +0200
+
+libgtk2-gladexml-simple-perl (0.32-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Florian Ragwitz <rafl at debian.org>  Sun, 22 Jul 2007 14:38:11 +0200

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

Added: trunk/libgtk2-gladexml-simple-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-gladexml-simple-perl/debian/control?rev=21293&op=file
==============================================================================
--- trunk/libgtk2-gladexml-simple-perl/debian/control (added)
+++ trunk/libgtk2-gladexml-simple-perl/debian/control Sun Jun 15 14:06:36 2008
@@ -1,0 +1,23 @@
+Source: libgtk2-gladexml-simple-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl, libgtk2-perl, libgtk2-gladexml-perl
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Standards-Version: 3.7.2
+
+Package: libgtk2-gladexml-simple-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libgtk2-perl, libgtk2-gladexml-perl
+Recommends: libxml-sax-perl
+Description: clean object-oriented perl interface to Gtk2::GladeXML
+ Gtk2::GladeXML::Simple is a module that provides a clean and easy interface
+ for Gnome/Gtk2 and Glade applications using an object-oriented syntax. You just
+ make Gtk2::GladeXML::Simple your application's base class, have your new call
+ SUPER::new, and the module will do the tedious and dirty work for you.
+ .
+ Gtk2::GladeXML::Simple offers:
+  * Signal handler callbacks as methods of your class.
+  * Autoconnection of signal handlers.
+  * Autocalling of creation functions for custom widgets.
+  * Access to the widgets as instance attributes.

Added: trunk/libgtk2-gladexml-simple-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-gladexml-simple-perl/debian/copyright?rev=21293&op=file
==============================================================================
--- trunk/libgtk2-gladexml-simple-perl/debian/copyright (added)
+++ trunk/libgtk2-gladexml-simple-perl/debian/copyright Sun Jun 15 14:06:36 2008
@@ -1,0 +1,18 @@
+This is the debian package for the Gtk2-GladeXML-Simple module.
+It was created by Florian Ragwitz <rafl at debian.org> using dh-make-perl.
+
+It was downloaded from the Comprehensive Perl Archive Network (CPAN).
+Visit <http://www.cpan.org/> to find a CPAN site near you.
+
+The upstream author is: Marco Antonio Manzo <marcoam at perl.org.mx>
+
+Copyright (C) 2005 by Marco Antonio Manzo
+
+This library is free software; you can redistribute it and/or modify it under
+the same terms as Perl itself, either Perl version 5.8.6 or, at your option,
+any later version of Perl 5 you may have available.
+
+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/libgtk2-gladexml-simple-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-gladexml-simple-perl/debian/rules?rev=21293&op=file
==============================================================================
--- trunk/libgtk2-gladexml-simple-perl/debian/rules (added)
+++ trunk/libgtk2-gladexml-simple-perl/debian/rules Sun Jun 15 14:06:36 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
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(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 examples/*
+	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/libgtk2-gladexml-simple-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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