--- libjavascript-rpc-perl-0.10.orig/debian/changelog +++ libjavascript-rpc-perl-0.10/debian/changelog @@ -0,0 +1,40 @@ +libjavascript-rpc-perl (0.10-1.3) unstable; urgency=medium + + * Non-maintainer upload + * Bump debhelper compat level. Closes: #817533 + + -- Christoph Biedl Sat, 17 Dec 2016 14:03:22 +0100 + +libjavascript-rpc-perl (0.10-1.2) unstable; urgency=medium + + * Non-maintainer upload. + * Add build dependency on libcgi-pm-perl | perl (<< 5.19) + Closes: #789342 + + -- Damyan Ivanov Fri, 24 Jul 2015 12:10:04 +0000 + +libjavascript-rpc-perl (0.10-1.1) unstable; urgency=low + + * Non-maintainer upload. + * debian/rules: Don't fail when perl is smart enough not to create empty + dirs (Closes: #467943) + + -- Marc 'HE' Brockschmidt Sat, 05 Apr 2008 18:39:40 +0200 + +libjavascript-rpc-perl (0.10-1) unstable; urgency=low + + * New Maintainer (Closes: #329898) + * New Upstream Release (Closes: #329571) + * Bumped up to new standards Version + * debian/rules cleanup + * debian/copyright added upstream homepage url + * debian/copyright added upstream email address + + -- Jonas Genannt Thu, 22 Dec 2005 13:51:37 +0000 + +libjavascript-rpc-perl (0.05-1) unstable; urgency=low + + * Initial Release (closes: Bug#292272). + + -- Ivan Kohler Tue, 25 Jan 2005 17:51:57 -0800 + --- libjavascript-rpc-perl-0.10.orig/debian/compat +++ libjavascript-rpc-perl-0.10/debian/compat @@ -0,0 +1 @@ +10 --- libjavascript-rpc-perl-0.10.orig/debian/control +++ libjavascript-rpc-perl-0.10/debian/control @@ -0,0 +1,19 @@ +Source: libjavascript-rpc-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 10~) +Build-Depends-Indep: perl (>= 5.6), libcgi-pm-perl | perl (<< 5.19), libcgi-simple-perl, libtest-pod-coverage-perl, libtest-pod-perl +Maintainer: Jonas Genannt +Standards-Version: 3.6.2 + +Package: libjavascript-rpc-perl +Architecture: all +Depends: ${perl:Depends} +Description: Perl module to process Remote procedure calls from JavaScript + JavaScript::RPC::Server::CGI is a CGI-based server library for use with Brent + Ashley's JavaScript Remote Scripting (JSRS) client library. It works + asynchronously and uses DHTML to deal with the payload. + . + The most current version (as of the release of this module) of the client + library as well as a demo application have been included in this + distribution. --- libjavascript-rpc-perl-0.10.orig/debian/copyright +++ libjavascript-rpc-perl-0.10/debian/copyright @@ -0,0 +1,46 @@ +This is the debian package for the JavaScript-RPC module. +It was created by Ivan Kohler using dh-make-perl. + +It was downloaded from http://search.cpan.org/~bricas/ + +The Javascript::RPC perl module is covered by the following copyright: + + Copyright 2005 by Brian Cassidy + + This library 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'. + + +The JSRS client library (jsrsClient.js) is covered by the follwing copyright: + + No Nonsense Copyright and License for JSRS JavaScript Remote Scripting + ====================================================================== + + Copyright: + + This JSRS stuff was written by me. I find it useful. Others find it useful. + You are welcome to use it, modify it to suit your needs, distribute it as you + see fit. I'm happy if you use it for personal stuff or for commercial gain. + + The only thing you can't do is to restrict anyone else from using it however + they see fit. You may not copyright it yourself or change the rules I have + set on how it can be used. + + JSRS Javascript Remote Scripting Copyright (C) 2001 by Brent Ashley + + License: + + You can use this however you like. I make no guarantees whatsoever that it + will suit your purpose. You take full responsibility for getting it working + properly and for any implications of its failure or inability to satisfy your + every need. + + ====================================================================== + +Repackaged and renamed the upstream tarball from 0.1 to 0.10 +-- Jonas Genannt 23. Dec 2005 --- libjavascript-rpc-perl-0.10.orig/debian/rules +++ libjavascript-rpc-perl-0.10/debian/rules @@ -0,0 +1,72 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt 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 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +# Allow disabling build optimation 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 + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="$(CFLAGS)" + touch build-stamp + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || make distclean + dh_clean build-stamp install-stamp + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) test + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5 + touch install-stamp + +binary-arch: +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot + dh_installexamples demo/* + dh_installdocs + 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