r26483 - in /trunk/libb-hooks-endofscope-perl/debian: ./ changelog compat control copyright docs rules watch

ghostbar-guest at users.alioth.debian.org ghostbar-guest at users.alioth.debian.org
Sun Nov 2 02:34:09 UTC 2008


Author: ghostbar-guest
Date: Sun Nov  2 02:33:54 2008
New Revision: 26483

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

Added:
    trunk/libb-hooks-endofscope-perl/debian/
    trunk/libb-hooks-endofscope-perl/debian/changelog
    trunk/libb-hooks-endofscope-perl/debian/compat
    trunk/libb-hooks-endofscope-perl/debian/control
    trunk/libb-hooks-endofscope-perl/debian/copyright
    trunk/libb-hooks-endofscope-perl/debian/docs
    trunk/libb-hooks-endofscope-perl/debian/rules   (with props)
    trunk/libb-hooks-endofscope-perl/debian/watch

Added: trunk/libb-hooks-endofscope-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-hooks-endofscope-perl/debian/changelog?rev=26483&op=file
==============================================================================
--- trunk/libb-hooks-endofscope-perl/debian/changelog (added)
+++ trunk/libb-hooks-endofscope-perl/debian/changelog Sun Nov  2 02:33:54 2008
@@ -1,0 +1,5 @@
+libb-hooks-endofscope-perl (0.04-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- Jose Luis Rivas <ghostbar38 at gmail.com>  Sat, 1 Nov 2008 20:45:26 -0430

Added: trunk/libb-hooks-endofscope-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-hooks-endofscope-perl/debian/compat?rev=26483&op=file
==============================================================================
--- trunk/libb-hooks-endofscope-perl/debian/compat (added)
+++ trunk/libb-hooks-endofscope-perl/debian/compat Sun Nov  2 02:33:54 2008
@@ -1,0 +1,1 @@
+7

Added: trunk/libb-hooks-endofscope-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-hooks-endofscope-perl/debian/control?rev=26483&op=file
==============================================================================
--- trunk/libb-hooks-endofscope-perl/debian/control (added)
+++ trunk/libb-hooks-endofscope-perl/debian/control Sun Nov  2 02:33:54 2008
@@ -1,0 +1,18 @@
+Source: libb-hooks-endofscope-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl (>= 5.8.0), libscope-guard-perl, libsub-exporter-perl, libtest-simple-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jose Luis Rivas <ghostbar38 at gmail.com>
+Standards-Version: 3.8.0
+Homepage: http://search.cpan.org/dist/B-Hooks-EndOfScope/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libb-hooks-endofscope-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-hooks-endofscope-perl/
+
+Package: libb-hooks-endofscope-perl
+Architecture: all
+Depends: perl (>= 5.8.0), ${misc:Depends}
+Description: Execute code after a scope finished compilation
+ This module allows you to execute code when perl finished compiling the
+ surrounding scope.

Added: trunk/libb-hooks-endofscope-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-hooks-endofscope-perl/debian/copyright?rev=26483&op=file
==============================================================================
--- trunk/libb-hooks-endofscope-perl/debian/copyright (added)
+++ trunk/libb-hooks-endofscope-perl/debian/copyright Sun Nov  2 02:33:54 2008
@@ -1,0 +1,23 @@
+Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat
+Upstream-Author: Florian Ragwitz <rafl at debian.org>
+Packaged-By: Jose Luis Rivas <ghostbar38 at gmail.com>
+Original-Source-Location: http://search.cpan.org/dist/B-Hooks-EndOfScope/
+Original-Source-Command: uscan --force-download
+Original-Source-Depends: devscripts
+
+Files: *
+Copyright © 2008 by Florian Ragwitz
+License: GPL-1+ | Artistic
+ This program is free software; you can redistribute
+ it and/or modify it under the same terms as Perl itself.
+
+Files: debian/*
+Copyright: © 2008 Jose Luis Rivas <ghostbar38 at gmail.com>
+           © 2008 Debian Perl Group <debian-perl at lists.debian.org>
+License: GPL-1+ | Artistic
+
+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/libb-hooks-endofscope-perl/debian/docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-hooks-endofscope-perl/debian/docs?rev=26483&op=file
==============================================================================
--- trunk/libb-hooks-endofscope-perl/debian/docs (added)
+++ trunk/libb-hooks-endofscope-perl/debian/docs Sun Nov  2 02:33:54 2008
@@ -1,0 +1,1 @@
+README

Added: trunk/libb-hooks-endofscope-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-hooks-endofscope-perl/debian/rules?rev=26483&op=file
==============================================================================
--- trunk/libb-hooks-endofscope-perl/debian/rules (added)
+++ trunk/libb-hooks-endofscope-perl/debian/rules Sun Nov  2 02:33:54 2008
@@ -1,0 +1,23 @@
+#!/usr/bin/make -f
+
+build: build-stamp
+build-stamp:
+	dh build
+	touch $@
+
+clean:
+	dh $@
+
+install: install-stamp
+install-stamp: build-stamp
+	dh install
+	touch $@
+
+binary-arch:
+
+binary-indep: install
+	dh $@
+
+binary: binary-arch binary-indep
+
+.PHONY: binary binary-arch binary-indep install clean build

Propchange: trunk/libb-hooks-endofscope-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libb-hooks-endofscope-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-hooks-endofscope-perl/debian/watch?rev=26483&op=file
==============================================================================
--- trunk/libb-hooks-endofscope-perl/debian/watch (added)
+++ trunk/libb-hooks-endofscope-perl/debian/watch Sun Nov  2 02:33:54 2008
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/B-Hooks-EndOfScope/   .*/B-Hooks-EndOfScope-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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