r18885 - in /trunk/libcgi-cookie-splitter-perl/debian: ./ changelog compat control copyright rules watch
yvesago-guest at users.alioth.debian.org
yvesago-guest at users.alioth.debian.org
Sun Apr 20 10:53:52 UTC 2008
Author: yvesago-guest
Date: Sun Apr 20 10:53:51 2008
New Revision: 18885
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=18885
Log:
[svn-inject] Applying Debian modifications to trunk
Added:
trunk/libcgi-cookie-splitter-perl/debian/
trunk/libcgi-cookie-splitter-perl/debian/changelog
trunk/libcgi-cookie-splitter-perl/debian/compat
trunk/libcgi-cookie-splitter-perl/debian/control
trunk/libcgi-cookie-splitter-perl/debian/copyright
trunk/libcgi-cookie-splitter-perl/debian/rules (with props)
trunk/libcgi-cookie-splitter-perl/debian/watch
Added: trunk/libcgi-cookie-splitter-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-cookie-splitter-perl/debian/changelog?rev=18885&op=file
==============================================================================
--- trunk/libcgi-cookie-splitter-perl/debian/changelog (added)
+++ trunk/libcgi-cookie-splitter-perl/debian/changelog Sun Apr 20 10:53:51 2008
@@ -1,0 +1,5 @@
+libcgi-cookie-splitter-perl (0.02-1) unstable; urgency=low
+
+ * Initial Release (Closes: #476932)
+
+ -- AGOSTINI Yves <agostini at univ-metz.fr> Wed, 16 Apr 2008 11:25:29 +0200
Added: trunk/libcgi-cookie-splitter-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-cookie-splitter-perl/debian/compat?rev=18885&op=file
==============================================================================
--- trunk/libcgi-cookie-splitter-perl/debian/compat (added)
+++ trunk/libcgi-cookie-splitter-perl/debian/compat Sun Apr 20 10:53:51 2008
@@ -1,0 +1,1 @@
+5
Added: trunk/libcgi-cookie-splitter-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-cookie-splitter-perl/debian/control?rev=18885&op=file
==============================================================================
--- trunk/libcgi-cookie-splitter-perl/debian/control (added)
+++ trunk/libcgi-cookie-splitter-perl/debian/control Sun Apr 20 10:53:51 2008
@@ -1,0 +1,22 @@
+Source: libcgi-cookie-splitter-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.6.10-12), libtest-use-ok-perl, libcgi-simple-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: AGOSTINI Yves <agostini at univ-metz.fr>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/CGI-Cookie-Splitter/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libcgi-cookie-splitter-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-cookie-splitter-perl/
+
+Package: libcgi-cookie-splitter-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libcgi-simple-perl
+Description: Split big cookies into smaller ones
+ RFC 2109 reccomends that the minimal cookie size supported by the client is
+ 4096 bytes. This has become a pretty standard value, and if your server sends
+ larger cookies than that it's considered a no-no.
+ .
+ CGI::Cookie::Splitter provides a pretty simple interface to generate small
+ cookies that are under a certain limit, without wasting too much effort.
Added: trunk/libcgi-cookie-splitter-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-cookie-splitter-perl/debian/copyright?rev=18885&op=file
==============================================================================
--- trunk/libcgi-cookie-splitter-perl/debian/copyright (added)
+++ trunk/libcgi-cookie-splitter-perl/debian/copyright Sun Apr 20 10:53:51 2008
@@ -1,0 +1,23 @@
+This is the debian package for the CGI-Cookie-Splitter module.
+
+It was downloaded from http://search.cpan.org/dist/CGI-Cookie-Splitter/
+
+The upstream author is:
+
+Yuval Kogman, <nothingmuch at woobling.org>.
+
+Copyright (c) 2006 the aforementioned authors. 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 either the Artistic licence or the GPL.
+
+The full text of the GPL is available on Debian systems in
+/usr/share/common-licenses/GPL
+
+The full text of the Artistic Licence is available on Debian systems in
+/usr/share/common-licenses/Artistic.
+
+The Debian packaging is (C) 2008, Debian Perl Group
+<pkg-perl-maintainers at lists.alioth.debian.org> and
+is licensed under the same terms as the software itself (see above).
Added: trunk/libcgi-cookie-splitter-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-cookie-splitter-perl/debian/rules?rev=18885&op=file
==============================================================================
--- trunk/libcgi-cookie-splitter-perl/debian/rules (added)
+++ trunk/libcgi-cookie-splitter-perl/debian/rules Sun Apr 20 10:53:51 2008
@@ -1,0 +1,63 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> 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
+
+PERL ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP = $(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+ # Add commands to compile the package here
+ $(PERL) Makefile.PL INSTALLDIRS=vendor
+ $(MAKE)
+ $(MAKE) test
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ dh_clean build-stamp install-stamp
+ # Add commands to clean up after the build process here
+ [ ! -f Makefile ] || $(MAKE) realclean
+
+install: install-stamp
+install-stamp: build-stamp
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ # Add commands to install the package into $(TMP) here
+ $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+ [ ! -d $(TMP)/usr/lib/perl5 ] || \
+ rmdir --ignore-fail-on-non-empty --parents --verbose \
+ $(TMP)/usr/lib/perl5
+ touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ 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 install
Propchange: trunk/libcgi-cookie-splitter-perl/debian/rules
------------------------------------------------------------------------------
svn:executable = *
Added: trunk/libcgi-cookie-splitter-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-cookie-splitter-perl/debian/watch?rev=18885&op=file
==============================================================================
--- trunk/libcgi-cookie-splitter-perl/debian/watch (added)
+++ trunk/libcgi-cookie-splitter-perl/debian/watch Sun Apr 20 10:53:51 2008
@@ -1,0 +1,4 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+# URL to the package page followed by a regex to search
+http://search.cpan.org/dist/CGI-Cookie-Splitter/ .*/CGI-Cookie-Splitter-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$
More information about the Pkg-perl-cvs-commits
mailing list