r27530 - in /trunk/libanyevent-perl/debian: ./ changelog compat control copyright libanyevent-perl.examples patches/ patches/perl_path patches/series rules watch

mxey-guest at users.alioth.debian.org mxey-guest at users.alioth.debian.org
Sun Nov 30 17:40:55 UTC 2008


Author: mxey-guest
Date: Sun Nov 30 17:40:52 2008
New Revision: 27530

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

Added:
    trunk/libanyevent-perl/debian/
    trunk/libanyevent-perl/debian/changelog
    trunk/libanyevent-perl/debian/compat
    trunk/libanyevent-perl/debian/control
    trunk/libanyevent-perl/debian/copyright
    trunk/libanyevent-perl/debian/libanyevent-perl.examples
    trunk/libanyevent-perl/debian/patches/
    trunk/libanyevent-perl/debian/patches/perl_path
    trunk/libanyevent-perl/debian/patches/series
    trunk/libanyevent-perl/debian/rules   (with props)
    trunk/libanyevent-perl/debian/watch

Added: trunk/libanyevent-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-perl/debian/changelog?rev=27530&op=file
==============================================================================
--- trunk/libanyevent-perl/debian/changelog (added)
+++ trunk/libanyevent-perl/debian/changelog Sun Nov 30 17:40:52 2008
@@ -1,0 +1,5 @@
+libanyevent-perl (4.33-1) UNRELEASED; urgency=low
+
+  * Initial Release (closes: #496904).
+
+ -- Maximilian Gaß <mxey at cloudconnected.org>  Sun, 30 Nov 2008 18:22:35 +0100

Added: trunk/libanyevent-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-perl/debian/compat?rev=27530&op=file
==============================================================================
--- trunk/libanyevent-perl/debian/compat (added)
+++ trunk/libanyevent-perl/debian/compat Sun Nov 30 17:40:52 2008
@@ -1,0 +1,1 @@
+7

Added: trunk/libanyevent-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-perl/debian/control?rev=27530&op=file
==============================================================================
--- trunk/libanyevent-perl/debian/control (added)
+++ trunk/libanyevent-perl/debian/control Sun Nov 30 17:40:52 2008
@@ -1,0 +1,18 @@
+Source: libanyevent-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7), quilt
+Build-Depends-Indep: perl (>= 5.6.0-12)
+Maintainer: Maximilian Gaß <mxey at cloudconnected.org>
+Standards-Version: 3.8.0
+Homepage: http://search.cpan.org/dist/AnyEvent/
+
+Package: libanyevent-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Recommends: libev-perl | libevent-perl
+Description:  provide framework for multiple event loops
+ AnyEvent provides an identical interface to multiple event loops. This allows
+ module authors to utilise an event loop without forcing module users to use
+ the same event loop (as only a single event loop can coexist peacefully at
+ any one time).

Added: trunk/libanyevent-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-perl/debian/copyright?rev=27530&op=file
==============================================================================
--- trunk/libanyevent-perl/debian/copyright (added)
+++ trunk/libanyevent-perl/debian/copyright Sun Nov 30 17:40:52 2008
@@ -1,0 +1,29 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Marc Lehmann <schmorp at schmorp.de>
+Upstream-Source: http://search.cpan.org/dist/AnyEvent/
+Upstream-Name: AnyEvent
+
+Files: *
+Copyright: Marc Lehmann <schmorp at schmorp.de>
+License-Alias: Perl
+License: Artistic | GPL-1+
+
+Files: debian/*
+Copyright: 2008, Maximilian Gaß <mxey at cloudconnected.org>
+License-Alias: Perl
+License: Artistic | GPL-1+
+
+License: Artistic
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the Artistic License, which comes with Perl.
+    On Debian GNU/Linux systems, the complete text of the Artistic License
+    can be found in /usr/share/common-licenses/Artistic
+
+License: GPL-1+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by 
+    the Free Software Foundation; either version 1, or (at your option)
+    any later version.
+    On Debian GNU/Linux systems, the complete text of the GNU General
+    Public License can be found in `/usr/share/common-licenses/GPL'

Added: trunk/libanyevent-perl/debian/libanyevent-perl.examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-perl/debian/libanyevent-perl.examples?rev=27530&op=file
==============================================================================
--- trunk/libanyevent-perl/debian/libanyevent-perl.examples (added)
+++ trunk/libanyevent-perl/debian/libanyevent-perl.examples Sun Nov 30 17:40:52 2008
@@ -1,0 +1,3 @@
+eg/connect
+eg/handle
+eg/listen

Added: trunk/libanyevent-perl/debian/patches/perl_path
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-perl/debian/patches/perl_path?rev=27530&op=file
==============================================================================
--- trunk/libanyevent-perl/debian/patches/perl_path (added)
+++ trunk/libanyevent-perl/debian/patches/perl_path Sun Nov 30 17:40:52 2008
@@ -1,0 +1,24 @@
+--- a/eg/connect
++++ b/eg/connect
+@@ -1,4 +1,4 @@
+-#!/opt/perl/bin/perl
++#!/usr/bin/perl
+ use IO::Socket::INET;
+ use AnyEvent::Socket;
+ use AnyEvent::Handle;
+--- a/eg/handle
++++ b/eg/handle
+@@ -1,4 +1,4 @@
+-#!/opt/bin/perl
++#!/usr/bin/perl
+ 
+ # This small example script shows how to do non-blocking
+ # reads from a file handle.
+--- a/eg/listen
++++ b/eg/listen
+@@ -1,4 +1,4 @@
+-#!/opt/perl/bin/perl
++#!/usr/bin/perl
+ use strict;
+ use Socket;
+ use IO::Socket::INET;

Added: trunk/libanyevent-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-perl/debian/patches/series?rev=27530&op=file
==============================================================================
--- trunk/libanyevent-perl/debian/patches/series (added)
+++ trunk/libanyevent-perl/debian/patches/series Sun Nov 30 17:40:52 2008
@@ -1,0 +1,1 @@
+perl_path

Added: trunk/libanyevent-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-perl/debian/rules?rev=27530&op=file
==============================================================================
--- trunk/libanyevent-perl/debian/rules (added)
+++ trunk/libanyevent-perl/debian/rules Sun Nov 30 17:40:52 2008
@@ -1,0 +1,25 @@
+#!/usr/bin/make -f
+
+include /usr/share/quilt/quilt.make
+
+build: build-stamp
+build-stamp: $(QUILT_STAMPFN)
+	dh build
+	touch $@
+
+clean: unpatch
+	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/libanyevent-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libanyevent-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-perl/debian/watch?rev=27530&op=file
==============================================================================
--- trunk/libanyevent-perl/debian/watch (added)
+++ trunk/libanyevent-perl/debian/watch Sun Nov 30 17:40:52 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/AnyEvent/   .*/AnyEvent-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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