r45750 - in /trunk/libgtk2-ex-entry-pango-perl/debian: ./ changelog compat control copyright rules watch

potyl-guest at users.alioth.debian.org potyl-guest at users.alioth.debian.org
Tue Oct 13 21:22:46 UTC 2009


Author: potyl-guest
Date: Tue Oct 13 21:22:40 2009
New Revision: 45750

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

Added:
    trunk/libgtk2-ex-entry-pango-perl/debian/
    trunk/libgtk2-ex-entry-pango-perl/debian/changelog
    trunk/libgtk2-ex-entry-pango-perl/debian/compat
    trunk/libgtk2-ex-entry-pango-perl/debian/control
    trunk/libgtk2-ex-entry-pango-perl/debian/copyright
    trunk/libgtk2-ex-entry-pango-perl/debian/rules   (with props)
    trunk/libgtk2-ex-entry-pango-perl/debian/watch

Added: trunk/libgtk2-ex-entry-pango-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-ex-entry-pango-perl/debian/changelog?rev=45750&op=file
==============================================================================
--- trunk/libgtk2-ex-entry-pango-perl/debian/changelog (added)
+++ trunk/libgtk2-ex-entry-pango-perl/debian/changelog Tue Oct 13 21:22:40 2009
@@ -1,0 +1,5 @@
+libgtk2-ex-entry-pango-perl (0.07-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Emmanuel Rodriguez <emmanuel.rodriguez at gmail.com>  Wed, 14 Oct 2009 00:40:23 +0200

Added: trunk/libgtk2-ex-entry-pango-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-ex-entry-pango-perl/debian/compat?rev=45750&op=file
==============================================================================
--- trunk/libgtk2-ex-entry-pango-perl/debian/compat (added)
+++ trunk/libgtk2-ex-entry-pango-perl/debian/compat Tue Oct 13 21:22:40 2009
@@ -1,0 +1,1 @@
+5

Added: trunk/libgtk2-ex-entry-pango-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-ex-entry-pango-perl/debian/control?rev=45750&op=file
==============================================================================
--- trunk/libgtk2-ex-entry-pango-perl/debian/control (added)
+++ trunk/libgtk2-ex-entry-pango-perl/debian/control Tue Oct 13 21:22:40 2009
@@ -1,0 +1,27 @@
+Source: libgtk2-ex-entry-pango-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.6.10-12)
+Maintainer: Emmanuel Rodriguez <emmanuel.rodriguez at gmail.com>
+Standards-Version: 3.8.0
+Homepage: http://search.cpan.org/dist/Gtk2-Ex-Entry-Pango/
+
+Package: libgtk2-ex-entry-pango-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Gtk2::Entry that accepts pango markup.
+ Gtk2::Ex::Entry::Pango is a Gtk2::Entry that can accept Pango markup for
+ various purposes (for more information about Pango text markup language see 
+ http://library.gnome.org/devel/pango/stable/PangoMarkupFormat.html).
+ .
+ The widget allows Pango markup to be used for input as an alternative to
+ set_text or for setting a default value when the widget is empty. The default
+ value when empty is ideal for standalone text entries that have no accompanying
+ label (such as a text field for a search).
+ .
+ This widget allows for the text data to be entered either through the normal
+ methods provided by Gtk2::Entry or to use the method /set_markup. It's
+ possible to switch between two methods for applying the text. The standard
+ Gtk2::Entry methods will always apply a text without styles while
+ set_markup() will use a style.

Added: trunk/libgtk2-ex-entry-pango-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-ex-entry-pango-perl/debian/copyright?rev=45750&op=file
==============================================================================
--- trunk/libgtk2-ex-entry-pango-perl/debian/copyright (added)
+++ trunk/libgtk2-ex-entry-pango-perl/debian/copyright Tue Oct 13 21:22:40 2009
@@ -1,0 +1,14 @@
+This is the debian package for the Gtk2-Ex-Entry-Pango module.
+It was created by Emmanuel Rodriguez <emmanuel.rodriguez at gmail.com> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/Gtk2-Ex-Entry-Pango/
+
+This copyright info was automatically extracted from the perl module.
+It may not be accurate, so you better check the module sources
+if you don't want to get into legal troubles.
+
+The upstream author is: Emmanuel Rodriguez <potyl at cpan.org>.
+
+
+The Debian packaging is (C) 2009, Emmanuel Rodriguez <emmanuel.rodriguez at gmail.com> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libgtk2-ex-entry-pango-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-ex-entry-pango-perl/debian/rules?rev=45750&op=file
==============================================================================
--- trunk/libgtk2-ex-entry-pango-perl/debian/rules (added)
+++ trunk/libgtk2-ex-entry-pango-perl/debian/rules Tue Oct 13 21:22:40 2009
@@ -1,0 +1,64 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+export PERL_MM_USE_DEFAULT=1
+
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	$(MAKE) test
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean build-stamp install-stamp
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	# Add commands to install the package into $(TMP) here
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -d $(TMP)/usr/lib/perl5 ] || \
+		rmdir --ignore-fail-on-non-empty --parents --verbose \
+		$(TMP)/usr/lib/perl5
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installexamples examples/*
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install

Propchange: trunk/libgtk2-ex-entry-pango-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libgtk2-ex-entry-pango-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-ex-entry-pango-perl/debian/watch?rev=45750&op=file
==============================================================================
--- trunk/libgtk2-ex-entry-pango-perl/debian/watch (added)
+++ trunk/libgtk2-ex-entry-pango-perl/debian/watch Tue Oct 13 21:22:40 2009
@@ -1,0 +1,4 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+# URL to the package page followed by a regex to search
+http://search.cpan.org/dist/Gtk2-Ex-Entry-Pango/   .*/Gtk2-Ex-Entry-Pango-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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