--- libhtml-prototype-perl-1.36.orig/debian/control +++ libhtml-prototype-perl-1.36/debian/control @@ -0,0 +1,21 @@ +Source: libhtml-prototype-perl +Section: perl +Priority: optional +Build-Depends-Indep: debhelper (>= 4.0.2), perl (>= 5.8.0-7), libmodule-build-perl, libtest-pod-perl, libtest-pod-coverage-perl, libclass-accessor-perl, libhtml-tree-perl +Maintainer: Debian Catalyst Maintainers +Uploaders: Krzysztof Krzyzaniak (eloy) , Florian Ragwitz +Standards-Version: 3.6.2 + +Package: libhtml-prototype-perl +Architecture: all +Depends: ${perl:Depends}, libclass-accessor-perl, libhtml-tree-perl +Description: Generate HTML and Javascript for the Prototype library + The module contains some code generators for Prototype, the famous + JavaScript OO library and the script.aculous extensions. + . + The Prototype library (http://prototype.conio.net/) is designed to make + AJAX easy. Catalyst::Plugin::Prototype makes it easy to connect to the + Prototype library. + . + This is mostly a port of the Ruby on Rails helper tags for JavaScript + for use in Catalyst. --- libhtml-prototype-perl-1.36.orig/debian/compat +++ libhtml-prototype-perl-1.36/debian/compat @@ -0,0 +1 @@ +4 --- libhtml-prototype-perl-1.36.orig/debian/watch +++ libhtml-prototype-perl-1.36/debian/watch @@ -0,0 +1,3 @@ +# format version number, currently 2; this line is compulsory! +version=2 +ftp://ftp.icm.edu.pl/mirrors/ftp.cpan.org/pub/CPAN/modules/by-module/HTML/HTML-Prototype-([\.\d]+).tar.gz --- libhtml-prototype-perl-1.36.orig/debian/changelog +++ libhtml-prototype-perl-1.36/debian/changelog @@ -0,0 +1,61 @@ +libhtml-prototype-perl (1.36-1) unstable; urgency=low + + * New upstream release + + -- Krzysztof Krzyzaniak (eloy) Fri, 2 Dec 2005 19:10:10 +0100 + +libhtml-prototype-perl (1.35-4) unstable; urgency=low + + * Minor fixes in debian directory (not for uploading) + + -- Krzysztof Krzyzaniak (eloy) Tue, 15 Nov 2005 10:50:47 +0100 + +libhtml-prototype-perl (1.35-3) unstable; urgency=low + + * debian/watch added + + -- Krzysztof Krzyzaniak (eloy) Tue, 15 Nov 2005 10:48:09 +0100 + +libhtml-prototype-perl (1.35-2) unstable; urgency=low + + * Moved perl build-dep-indep to build-dep. It's used in the clean target. + * Added libmodule-build-perl to build-dep. + * Added libhtml-tree-perl to build-dep-indep and Depends (Closes: #328936). + + -- Florian Ragwitz Sun, 18 Sep 2005 15:40:58 +0200 + +libhtml-prototype-perl (1.35-1) unstable; urgency=low + + [ Krzysztof Krzyzaniak (eloy) ] + * New upstream release + + -- Krzysztof Krzyzaniak (eloy) Thu, 15 Sep 2005 13:23:07 +0200 + +libhtml-prototype-perl (1.34-1) unstable; urgency=low + + [ Krzysztof Krzyzaniak (eloy) ] + * New upstream release + * ITP Bug closing (closes: #327890) + + -- Krzysztof Krzyzaniak (eloy) Wed, 14 Sep 2005 16:04:29 +0200 + +libhtml-prototype-perl (1.33-1) unstable; urgency=low + + [ Krzysztof Krzyzaniak (eloy) ] + * New upstream release + + [ Florian Ragwitz ] + * Added me to Uploaders. + * Moved debhelper Build-Dep-Indep to Build-Depends because we use it in the + clean target. + * Removed unneeded debhelper calls in debian/rules + * Don't install the README anymore. Its information is redundant. + + -- Florian Ragwitz Thu, 8 Sep 2005 17:31:14 +0200 + +libhtml-prototype-perl (1.20-1) unstable; urgency=low + + * Initial Release. + + -- Krzysztof Krzyzaniak (eloy) Tue, 5 Jul 2005 10:40:24 +0200 + --- libhtml-prototype-perl-1.36.orig/debian/copyright +++ libhtml-prototype-perl-1.36/debian/copyright @@ -0,0 +1,25 @@ +This is the debian package for the HTML-Prototype module. +It was created by Krzysztof Krzyzaniak (eloy) + +It was downloaded from: http://search.cpan.org/~mramberg/HTML-Prototype-1.33/ + +The upstream author is: Sebastian Riedel, + +Copyright 2005, Sebastian Riedel, Sam Stephenson +Built around Prototype by Sam Stephenson. +Much code is ported from Ruby on Rails javascript helpers.. + +This program is free software, you can redistribute it and/or modify it under +the same terms as Perl itself. + +Perl is distributed under licenses: + + a) the GNU General Public License as published by the Free Software + Foundation; either version 1, or (at your option) any later + version, or + + b) the "Artistic License" which comes with Perl. + + 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'. --- libhtml-prototype-perl-1.36.orig/debian/rules +++ libhtml-prototype-perl-1.36/debian/rules @@ -0,0 +1,71 @@ +#!/usr/bin/make -f +# -*- Makefile -*- + +# Use debhelper V. 2 + +# Make sure perl is defined (allow overriding from the command line +PERL ?= /usr/bin/perl + +# Set our build directory +b := $(shell pwd)/debian/libhtml-prototype-perl + +arrange: arrange-stamp +arrange-stamp: install + dh_testdir + dh_installdirs + touch arrange-stamp + +binary: binary-stamp +binary-stamp: binary-indep binary-arch + dh_testdir + touch binary-stamp + +binary-arch: binary-arch-stamp +binary-arch-stamp: arrange + dh_testdir + touch binary-arch-stamp + +binary-indep: binary-indep-stamp +binary-indep-stamp: arrange + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + touch binary-indep-stamp + +build: build-stamp +build-stamp: config + dh_testdir + $(PERL) Build + TEST_POD=1 $(PERL) Build test + touch build-stamp + +clean: + dh_testdir + dh_testroot + -rm -rf _build + -$(PERL) Build clean + -rm Build + dh_clean arrange-stamp binary-stamp binary-arch-stamp binary-indep-stamp build-stamp config-stamp install-stamp + +config: config-stamp +config-stamp: + dh_testdir + $(PERL) Build.PL installdirs=vendor destdir=$(b) + touch config-stamp + +install: install-stamp +install-stamp: build + dh_testdir + $(PERL) Build install + touch install-stamp + +.PHONY: arrange binary binary-arch binary-indep build clean config install --- libhtml-prototype-perl-1.36.orig/Makefile +++ libhtml-prototype-perl-1.36/Makefile @@ -0,0 +1,65 @@ +# PREREQ_PM => { Class::Accessor::Fast=>q[0], HTML::Tree=>q[0] } + +all : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 +realclean : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 realclean + /usr/bin/perl -e unlink -e shift Makefile + +force_do_it : + @ true +build : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 build +clean : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 clean +code : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 code +config_data : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 config_data +diff : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 diff +dist : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 dist +distcheck : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 distcheck +distclean : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 distclean +distdir : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 distdir +distmeta : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 distmeta +distsign : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 distsign +disttest : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 disttest +docs : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 docs +fakeinstall : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 fakeinstall +help : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 help +html : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 html +install : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 install +manifest : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 manifest +ppd : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 ppd +ppmdist : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 ppmdist +skipcheck : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 skipcheck +test : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 test +testcover : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 testcover +testdb : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 testdb +testpod : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 testpod +versioninstall : force_do_it + /usr/bin/perl Build --makefile_env_macros 1 versioninstall + +.EXPORT : INSTALLDIRS TEST_VERBOSE LIB INC PREFIX POLLUTE VERBINST +