r21603 - in /trunk/libgssapi-perl/debian: ./ changelog compat control copyright rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 16:44:22 UTC 2008


Author: gregoa
Date: Sun Jun 15 16:44:22 2008
New Revision: 21603

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

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

Added: trunk/libgssapi-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgssapi-perl/debian/changelog?rev=21603&op=file
==============================================================================
--- trunk/libgssapi-perl/debian/changelog (added)
+++ trunk/libgssapi-perl/debian/changelog Sun Jun 15 16:44:22 2008
@@ -1,0 +1,22 @@
+libgssapi-perl (0.22-1.1) unstable; urgency=low
+
+  * Non-maintainer upload for the Perl 5.10 transition.
+  * Don't try to remove /usr/share/perl5 if it doesn't exist. (Closes: #463540)
+
+ -- Niko Tyni <ntyni at debian.org>  Tue, 01 Apr 2008 21:26:39 +0300
+
+libgssapi-perl (0.22-1) unstable; urgency=low
+
+  * New upstream release.
+    + Doesn't do DNS lookups during make test anymore (Closes: #367377).
+  * Bump up Standards-Version to 3.7.2 (no changes).
+  * Add build-dep to libtest-pod-perl and run the pod tests.
+
+ -- Florian Ragwitz <rafl at debian.org>  Thu,  1 Jun 2006 14:06:00 +0200
+
+libgssapi-perl (0.20-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Florian Ragwitz <rafl at debian.org>  Sun, 26 Mar 2006 15:45:08 +0200
+

Added: trunk/libgssapi-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgssapi-perl/debian/compat?rev=21603&op=file
==============================================================================
--- trunk/libgssapi-perl/debian/compat (added)
+++ trunk/libgssapi-perl/debian/compat Sun Jun 15 16:44:22 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libgssapi-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgssapi-perl/debian/control?rev=21603&op=file
==============================================================================
--- trunk/libgssapi-perl/debian/control (added)
+++ trunk/libgssapi-perl/debian/control Sun Jun 15 16:44:22 2008
@@ -1,0 +1,21 @@
+Source: libgssapi-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0), perl (>= 5.8.0-7), libkrb5-dev, libtest-pod-perl
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Standards-Version: 3.7.2
+
+Package: libgssapi-perl
+Architecture: any
+Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, 
+Description: Perl extension providing access to the GSSAPIv2 library
+ This module gives access to the routines of the GSSAPI library,
+ as described in rfc2743 and rfc2744 and implemented by the
+ Kerberos-1.2 distribution from MIT.
+ .
+ The API presented by this module is a mildly object oriented
+ reinterpretation of the C API, where opaque C structures are
+ Perl objects, but the style of function call has been left
+ mostly untouched.  As a result, most routines modify one or
+ more of the parameters passed to them, reflecting the C
+ call-by-reference (or call-by-value-return) semantics.

Added: trunk/libgssapi-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgssapi-perl/debian/copyright?rev=21603&op=file
==============================================================================
--- trunk/libgssapi-perl/debian/copyright (added)
+++ trunk/libgssapi-perl/debian/copyright Sun Jun 15 16:44:22 2008
@@ -1,0 +1,21 @@
+This is the debian package for the GSSAPI module.
+It was created by Florian Ragwitz <rafl at debian.org> using dh-make-perl.
+
+The module ist maintained by
+Achim Grolms <perl at grolmsnet.de>
+
+originally written by
+Philip Guenther <pguen at cpan.org>.
+
+
+Copyright (c) 2006 Achim Grolms All rights reserved.
+
+Copyright (c) 2000,2001,2005 Philip Guenther. 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/libgssapi-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgssapi-perl/debian/rules?rev=21603&op=file
==============================================================================
--- trunk/libgssapi-perl/debian/rules (added)
+++ trunk/libgssapi-perl/debian/rules Sun Jun 15 16:44:22 2008
@@ -1,0 +1,69 @@
+#!/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)
+
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -d $(TMP)/usr/share/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/share/perl5
+	touch install-stamp
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installexamples examples/*
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_makeshlibs
+	dh_installdeb
+	dh_perl 
+	dh_shlibdeps
+	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/libgssapi-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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