r2940 - in /packages/librpc-xml-perl/trunk: debian/ debian/changelog debian/compat debian/control debian/copyright debian/rules debian/watch etc/make_method

dam-guest at users.alioth.debian.org dam-guest at users.alioth.debian.org
Mon Jun 12 19:18:25 UTC 2006


Author: dam-guest
Date: Mon Jun 12 19:18:25 2006
New Revision: 2940

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=2940
Log:
Load librpc-xml-perl-0.57 into packages/librpc-xml-perl/trunk.

Added:
    packages/librpc-xml-perl/trunk/debian/
    packages/librpc-xml-perl/trunk/debian/changelog
    packages/librpc-xml-perl/trunk/debian/compat
    packages/librpc-xml-perl/trunk/debian/control
    packages/librpc-xml-perl/trunk/debian/copyright
    packages/librpc-xml-perl/trunk/debian/rules   (with props)
    packages/librpc-xml-perl/trunk/debian/watch
Modified:
    packages/librpc-xml-perl/trunk/etc/make_method   (props changed)

Added: packages/librpc-xml-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/librpc-xml-perl/trunk/debian/changelog?rev=2940&op=file
==============================================================================
--- packages/librpc-xml-perl/trunk/debian/changelog (added)
+++ packages/librpc-xml-perl/trunk/debian/changelog Mon Jun 12 19:18:25 2006
@@ -1,0 +1,20 @@
+librpc-xml-perl (0.57-1) unstable; urgency=low
+
+  * New upstream release (closes: Bug#280699)
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Fri, 21 Jan 2005 19:12:09 -0800
+
+librpc-xml-perl (0.54-1) unstable; urgency=low
+
+  * New upstream release
+  * Change Section: from interpreters to perl
+  * debhelper compat v4
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Sat,  7 Aug 2004 20:59:52 -0700
+
+librpc-xml-perl (0.53-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#186036).
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Sun, 23 Mar 2003 17:54:53 -0800
+

Added: packages/librpc-xml-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/librpc-xml-perl/trunk/debian/compat?rev=2940&op=file
==============================================================================
--- packages/librpc-xml-perl/trunk/debian/compat (added)
+++ packages/librpc-xml-perl/trunk/debian/compat Mon Jun 12 19:18:25 2006
@@ -1,0 +1,1 @@
+4

Added: packages/librpc-xml-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/librpc-xml-perl/trunk/debian/control?rev=2940&op=file
==============================================================================
--- packages/librpc-xml-perl/trunk/debian/control (added)
+++ packages/librpc-xml-perl/trunk/debian/control Mon Jun 12 19:18:25 2006
@@ -1,0 +1,16 @@
+Source: librpc-xml-perl
+Section: perl
+Priority: optional
+Build-Depends: libxml-parser-perl, libwww-perl, debhelper (>= 4), perl (>= 5.8.0-7)
+Maintainer: Ivan Kohler <ivan-debian at 420.am>
+Standards-Version: 3.5.1
+
+Package: librpc-xml-perl
+Architecture: all
+Depends: libxml-parser-perl, libwww-perl
+Description: Perl module implementation of XML-RPC
+ The RPC::XML package is an implementation of XML-RPC. The module provides
+ classes for sample client and server implementations, a server designed as an
+ Apache location-handler, and a suite of data-manipulation classes that are
+ used by them.
+

Added: packages/librpc-xml-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/librpc-xml-perl/trunk/debian/copyright?rev=2940&op=file
==============================================================================
--- packages/librpc-xml-perl/trunk/debian/copyright (added)
+++ packages/librpc-xml-perl/trunk/debian/copyright Mon Jun 12 19:18:25 2006
@@ -1,0 +1,16 @@
+This is the debian package for the RPC::XML module.
+It was created by Ivan Kohler <ivan-debian at 420.am> using dh-make-perl.
+
+###############################################################################
+#
+# This file copyright (c) 2001 by Randy J. Ray <rjray at blackperl.com>,
+# all rights reserved
+#
+# Copying and distribution are permitted under the terms of the Artistic
+# License as distributed with Perl versions 5.005 and later. See
+# http://language.perl.com/misc/Artistic.html
+#
+###############################################################################
+
+On Debian GNU/Linux systems, the complete text of the Artistic Licence can 
+be found in `/usr/share/common-licenses/Artistic'.

Added: packages/librpc-xml-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/librpc-xml-perl/trunk/debian/rules?rev=2940&op=file
==============================================================================
--- packages/librpc-xml-perl/trunk/debian/rules (added)
+++ packages/librpc-xml-perl/trunk/debian/rules Mon Jun 12 19:18:25 2006
@@ -1,0 +1,87 @@
+#!/usr/bin/make -f
+#-*- makefile -*-
+# Made with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Christoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+ifndef DESTDIR
+DESTDIR=..
+endif
+TMP     =`pwd`/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	
+	# Add here commands to compile the package.
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) realclean
+
+	dh_clean
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp.
+	#$(MAKE) install DESTDIR=`pwd`/debian/tmp
+	$(MAKE) install PREFIX=$(TMP)/usr
+
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+#	dh_testversion
+	dh_testdir
+	dh_testroot
+	dh_installdocs README.apache2 README.apache README ex/README
+	dh_installexamples
+	dh_installmenu
+#	dh_installemacsen
+#	dh_installinit
+	dh_installcron
+	dh_installman
+#	dh_undocumented
+	dh_installchangelogs ChangeLog
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_makeshlibs
+	dh_installdeb
+	dh_perl 
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+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: packages/librpc-xml-perl/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/librpc-xml-perl/trunk/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/librpc-xml-perl/trunk/debian/watch?rev=2940&op=file
==============================================================================
--- packages/librpc-xml-perl/trunk/debian/watch (added)
+++ packages/librpc-xml-perl/trunk/debian/watch Mon Jun 12 19:18:25 2006
@@ -1,0 +1,7 @@
+# watch control file for uscan
+# you can run the "uscan" command
+# to check for upstream updates and more.
+# Site          Directory               Pattern                 Version Script
+version=2
+ftp://ftp.cpan.org/pub/CPAN/modules/by-module/RPC/RPC-XML-([\d\.]+)\.tar\.gz \
+  debian uupdate

Propchange: packages/librpc-xml-perl/trunk/etc/make_method
------------------------------------------------------------------------------
--- svn:executable (original)
+++ svn:executable Mon Jun 12 19:18:25 2006
@@ -1,0 +1,1 @@
+*




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