r23047 - in /trunk/libgtk2-sexy-perl/debian: ./ changelog compat control copyright rules watch

azatoth-guest at users.alioth.debian.org azatoth-guest at users.alioth.debian.org
Fri Jul 11 21:49:39 UTC 2008


Author: azatoth-guest
Date: Fri Jul 11 21:49:39 2008
New Revision: 23047

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

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

Added: trunk/libgtk2-sexy-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-sexy-perl/debian/changelog?rev=23047&op=file
==============================================================================
--- trunk/libgtk2-sexy-perl/debian/changelog (added)
+++ trunk/libgtk2-sexy-perl/debian/changelog Fri Jul 11 21:49:39 2008
@@ -1,0 +1,6 @@
+libgtk2-sexy-perl (0.03-1) unstable; urgency=low
+
+  * Initial release. (Closes: #488859: RFP: libgtk2-sexy-perl -- Perl
+    interface to the sexy widget collection)
+
+ -- Carl Fürstenberg <azatoth at gmail.com>  Fri, 11 Jul 2008 21:28:04 +0200

Added: trunk/libgtk2-sexy-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-sexy-perl/debian/compat?rev=23047&op=file
==============================================================================
--- trunk/libgtk2-sexy-perl/debian/compat (added)
+++ trunk/libgtk2-sexy-perl/debian/compat Fri Jul 11 21:49:39 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libgtk2-sexy-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-sexy-perl/debian/control?rev=23047&op=file
==============================================================================
--- trunk/libgtk2-sexy-perl/debian/control (added)
+++ trunk/libgtk2-sexy-perl/debian/control Fri Jul 11 21:49:39 2008
@@ -1,0 +1,17 @@
+Source: libgtk2-sexy-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5), perl (>= 5.8.0), libextutils-pkgconfig-perl, libextutils-depends-perl, libgtk2-perl, libsexy-dev
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Carl Fürstenberg <azatoth at gmail.com>
+Standards-Version: 3.8.0
+Homepage: http://search.cpan.org/dist/Gtk2-Sexy/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libgtk2-sexy-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-sexy-perl/
+
+Package: libgtk2-sexy-perl
+Architecture: any
+Depends: perl (>= 5.8.0), ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, libgtk2-perl
+Description: Perl interface to the sexy widget collection
+ This module allows a perl developer to access the widgets of the sexy 
+ widget collection.

Added: trunk/libgtk2-sexy-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-sexy-perl/debian/copyright?rev=23047&op=file
==============================================================================
--- trunk/libgtk2-sexy-perl/debian/copyright (added)
+++ trunk/libgtk2-sexy-perl/debian/copyright Fri Jul 11 21:49:39 2008
@@ -1,0 +1,15 @@
+This is the debian package for the Gtk2-Sexy module.
+It was created by Carl Fürstenberg <azatoth at gmail.com> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/Gtk2-Sexy/
+
+The upstream author is: Florian Ragwitz <rafl at debian.org>.
+
+Copyright (C) 2005-2008 by Florian Ragwitz
+
+This is free software, licensed under:
+
+The GNU Lesser General Public License Version 2.1, February 1999
+
+The Debian packaging is (C) 2008, Carl Fürstenberg <azatoth at gmail.com> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libgtk2-sexy-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-sexy-perl/debian/rules?rev=23047&op=file
==============================================================================
--- trunk/libgtk2-sexy-perl/debian/rules (added)
+++ trunk/libgtk2-sexy-perl/debian/rules Fri Jul 11 21:49:39 2008
@@ -1,0 +1,77 @@
+#!/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)
+
+# Allow disabling build optimisation by setting noopt in
+# $DEB_BUILD_OPTIONS
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
+	$(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)
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -d $(TMP)/usr/share/perl5 ] || \
+		rmdir --ignore-fail-on-non-empty --parents --verbose \
+		$(TMP)/usr/share/perl5
+	touch $@
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do here for an architecture-dependent package
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installexamples examples/*
+	dh_installdocs README
+	dh_installchangelogs ChangeLog
+	dh_shlibdeps
+	dh_strip
+	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-sexy-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libgtk2-sexy-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-sexy-perl/debian/watch?rev=23047&op=file
==============================================================================
--- trunk/libgtk2-sexy-perl/debian/watch (added)
+++ trunk/libgtk2-sexy-perl/debian/watch Fri Jul 11 21:49:39 2008
@@ -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-Sexy/   .*/Gtk2-Sexy-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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