r36135 - in /trunk/libsocialtext-resting-utils-perl: debian/ debian/changelog debian/compat debian/control debian/copyright debian/rules debian/watch t/rester.conf

myon at users.alioth.debian.org myon at users.alioth.debian.org
Fri May 22 11:45:10 UTC 2009


Author: myon
Date: Fri May 22 11:45:06 2009
New Revision: 36135

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

Added:
    trunk/libsocialtext-resting-utils-perl/debian/
    trunk/libsocialtext-resting-utils-perl/debian/changelog
    trunk/libsocialtext-resting-utils-perl/debian/compat
    trunk/libsocialtext-resting-utils-perl/debian/control
    trunk/libsocialtext-resting-utils-perl/debian/copyright
    trunk/libsocialtext-resting-utils-perl/debian/rules   (with props)
    trunk/libsocialtext-resting-utils-perl/debian/watch
Modified:
    trunk/libsocialtext-resting-utils-perl/t/rester.conf

Added: trunk/libsocialtext-resting-utils-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsocialtext-resting-utils-perl/debian/changelog?rev=36135&op=file
==============================================================================
--- trunk/libsocialtext-resting-utils-perl/debian/changelog (added)
+++ trunk/libsocialtext-resting-utils-perl/debian/changelog Fri May 22 11:45:06 2009
@@ -1,0 +1,11 @@
+libsocialtext-resting-utils-perl (0.19-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Christoph Berg <myon at debian.org>  Fri, 22 May 2009 13:24:17 +0200
+
+libsocialtext-resting-utils-perl (0.17-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Christoph Berg <myon at debian.org>  Thu, 13 Dec 2007 13:56:10 +0100

Added: trunk/libsocialtext-resting-utils-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsocialtext-resting-utils-perl/debian/compat?rev=36135&op=file
==============================================================================
--- trunk/libsocialtext-resting-utils-perl/debian/compat (added)
+++ trunk/libsocialtext-resting-utils-perl/debian/compat Fri May 22 11:45:06 2009
@@ -1,0 +1,1 @@
+5

Added: trunk/libsocialtext-resting-utils-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsocialtext-resting-utils-perl/debian/control?rev=36135&op=file
==============================================================================
--- trunk/libsocialtext-resting-utils-perl/debian/control (added)
+++ trunk/libsocialtext-resting-utils-perl/debian/control Fri May 22 11:45:06 2009
@@ -1,0 +1,19 @@
+Source: libsocialtext-resting-utils-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl, libtest-mock-lwp-perl, libsocialtext-resting-perl
+Maintainer: Christoph Berg <myon at debian.org>
+Standards-Version: 3.8.1
+Homepage: http://search.cpan.org/dist/Socialtext-Resting-Utils/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libsocialtext-resting-utils-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libsocialtext-resting-utils-perl/
+
+Package: libsocialtext-resting-utils-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libsocialtext-resting-perl
+Description: Utilities for Socialtext REST APIs
+ These are several utilities for Socialtext REST APIs.
+ .
+ Socialtext::EditPage - Edit a wiki page using your favourite EDITOR
+ Socialtext::WikiObject - Represent wiki markup as a data structure and object

Added: trunk/libsocialtext-resting-utils-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsocialtext-resting-utils-perl/debian/copyright?rev=36135&op=file
==============================================================================
--- trunk/libsocialtext-resting-utils-perl/debian/copyright (added)
+++ trunk/libsocialtext-resting-utils-perl/debian/copyright Fri May 22 11:45:06 2009
@@ -1,0 +1,16 @@
+This is the debian package for the Socialtext-Resting-Utils module.
+It was created by Christoph Berg <myon at debian.org> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/Socialtext-Resting-Utils/
+
+The upstream author is: Luke Closs <cpan at 5thplane.com>.
+
+Copyright 2006 Luke Closs, 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/libsocialtext-resting-utils-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsocialtext-resting-utils-perl/debian/rules?rev=36135&op=file
==============================================================================
--- trunk/libsocialtext-resting-utils-perl/debian/rules (added)
+++ trunk/libsocialtext-resting-utils-perl/debian/rules Fri May 22 11:45:06 2009
@@ -1,0 +1,74 @@
+#!/usr/bin/make -f
+
+# 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
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# As this is a architecture independent package, we are not
+	# supposed to install stuff to /usr/lib. MakeMaker creates
+	# the dirs, we prevent this by setting the INSTALLVENDORARCH
+	# and VENDORARCHEXP environment variables.
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor \
+		INSTALLVENDORARCH=/usr/share/perl5/ \
+		VENDORARCHEXP=/usr/share/perl5/
+	$(MAKE)
+	-$(MAKE) test
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	dh_clean build-stamp install-stamp baz.sav baz.sav.1
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installexamples
+	dh_installdocs README
+	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/libsocialtext-resting-utils-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libsocialtext-resting-utils-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsocialtext-resting-utils-perl/debian/watch?rev=36135&op=file
==============================================================================
--- trunk/libsocialtext-resting-utils-perl/debian/watch (added)
+++ trunk/libsocialtext-resting-utils-perl/debian/watch Fri May 22 11:45:06 2009
@@ -1,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://search.cpan.org/dist/Socialtext-Resting-Utils/ .*/Socialtext-Resting-Utils-([\.\d]+)\.(?:tar\.gz|tar|tgz)$

Modified: trunk/libsocialtext-resting-utils-perl/t/rester.conf
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsocialtext-resting-utils-perl/t/rester.conf?rev=36135&op=diff
==============================================================================
--- trunk/libsocialtext-resting-utils-perl/t/rester.conf (original)
+++ trunk/libsocialtext-resting-utils-perl/t/rester.conf Fri May 22 11:45:06 2009
@@ -1,5 +1,5 @@
 username  = user-name
-password = CRYPTED_53616c7465645f5f05bdca0f948bd38f4fb20f162e7cee1ab58a0a7ddd046269
+password  = pass-word
 workspace = work-space
 server    = http://socialtext.net
 class     = Socialtext::Resting::Mock




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