r44156 - in /trunk/libnet-bittorrent-perl/debian: ./ README.source changelog compat control copyright libnet-bittorrent-perl.docs patches/ patches/01_fix-manpage-error.patch patches/series rules watch

mogaal-guest at users.alioth.debian.org mogaal-guest at users.alioth.debian.org
Wed Sep 16 17:35:24 UTC 2009


Author: mogaal-guest
Date: Wed Sep 16 17:35:17 2009
New Revision: 44156

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

Added:
    trunk/libnet-bittorrent-perl/debian/
    trunk/libnet-bittorrent-perl/debian/README.source
    trunk/libnet-bittorrent-perl/debian/changelog
    trunk/libnet-bittorrent-perl/debian/compat
    trunk/libnet-bittorrent-perl/debian/control
    trunk/libnet-bittorrent-perl/debian/copyright
    trunk/libnet-bittorrent-perl/debian/libnet-bittorrent-perl.docs
    trunk/libnet-bittorrent-perl/debian/patches/
    trunk/libnet-bittorrent-perl/debian/patches/01_fix-manpage-error.patch
    trunk/libnet-bittorrent-perl/debian/patches/series
    trunk/libnet-bittorrent-perl/debian/rules   (with props)
    trunk/libnet-bittorrent-perl/debian/watch

Added: trunk/libnet-bittorrent-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-bittorrent-perl/debian/README.source?rev=44156&op=file
==============================================================================
--- trunk/libnet-bittorrent-perl/debian/README.source (added)
+++ trunk/libnet-bittorrent-perl/debian/README.source Wed Sep 16 17:35:17 2009
@@ -1,0 +1,57 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+To configure quilt to use debian/patches instead of patches, you want
+either to export QUILT_PATCHES=debian/patches in your environment
+or use this snippet in your ~/.quiltrc:
+
+    for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do
+        if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then
+                export QUILT_PATCHES=debian/patches
+        fi
+    done
+
+To get the fully patched source after unpacking the source package, cd to
+the root level of the source package and run:
+
+    quilt push -a
+
+The last patch listed in debian/patches/series will become the current
+patch.
+
+To add a new set of changes, first run quilt push -a, and then run:
+
+    quilt new <patch>
+
+where <patch> is a descriptive name for the patch, used as the filename in
+debian/patches.  Then, for every file that will be modified by this patch,
+run:
+
+    quilt add <file>
+
+before editing those files.  You must tell quilt with quilt add what files
+will be part of the patch before making changes or quilt will not work
+properly.  After editing the files, run:
+
+    quilt refresh
+
+to save the results as a patch.
+
+Alternately, if you already have an external patch and you just want to
+add it to the build system, run quilt push -a and then:
+
+    quilt import -P <patch> /path/to/patch
+    quilt push -a
+
+(add -p 0 to quilt import if needed). <patch> as above is the filename to
+use in debian/patches.  The last quilt push -a will apply the patch to
+make sure it works properly.
+
+To remove an existing patch from the list of patches that will be applied,
+run:
+
+    quilt delete <patch>
+
+You may need to run quilt pop -a to unapply patches first before running
+this command.

Added: trunk/libnet-bittorrent-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-bittorrent-perl/debian/changelog?rev=44156&op=file
==============================================================================
--- trunk/libnet-bittorrent-perl/debian/changelog (added)
+++ trunk/libnet-bittorrent-perl/debian/changelog Wed Sep 16 17:35:17 2009
@@ -1,0 +1,5 @@
+libnet-bittorrent-perl (0.051-1) UNRELEASED; urgency=low
+
+  * Initial Release (Closes: #546600).
+
+ -- Alejandro Garrido Mota <garridomota at gmail.com>  Mon, 14 Sep 2009 08:29:13 -0430

Added: trunk/libnet-bittorrent-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-bittorrent-perl/debian/compat?rev=44156&op=file
==============================================================================
--- trunk/libnet-bittorrent-perl/debian/compat (added)
+++ trunk/libnet-bittorrent-perl/debian/compat Wed Sep 16 17:35:17 2009
@@ -1,0 +1,1 @@
+7

Added: trunk/libnet-bittorrent-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-bittorrent-perl/debian/control?rev=44156&op=file
==============================================================================
--- trunk/libnet-bittorrent-perl/debian/control (added)
+++ trunk/libnet-bittorrent-perl/debian/control Wed Sep 16 17:35:17 2009
@@ -1,0 +1,21 @@
+Source: libnet-bittorrent-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7.0.50~)
+Build-Depends-Indep: perl, perl-modules (>= 5.10) | libmodule-build-perl,
+                     libpod-readme-perl, libtest-simple-perl, libtest-pod-perl,
+                     libtest-pod-coverage-perl, quilt 
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Alejandro Garrido Mota <garridomota at gmail.com>
+Standards-Version: 3.8.3
+Homepage: http://search.cpan.org/dist/Net-BitTorrent/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-bittorrent-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libnet-bittorrent-perl/
+
+Package: libnet-bittorrent-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, perl-modules
+Description: bitTorrent peer-to-peer protocol
+ Net::BitTorrent is a class based implementation of the current
+ BitTorrent Protocol Specification. Each "Net::BitTorrent" object is
+ capable of handling several concurrent .torrent sessions.

Added: trunk/libnet-bittorrent-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-bittorrent-perl/debian/copyright?rev=44156&op=file
==============================================================================
--- trunk/libnet-bittorrent-perl/debian/copyright (added)
+++ trunk/libnet-bittorrent-perl/debian/copyright Wed Sep 16 17:35:17 2009
@@ -1,0 +1,27 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Sanko Robinson <sanko at cpan.org>
+Upstream-Source: http://search.cpan.org/dist/Net-BitTorrent/
+Upstream-Name: Net-BitTorrent
+
+Files: *
+Copyright: 2008-2009, Sanko Robinson <sanko at cpan.org>
+License: Artistic
+
+Files: debian/*
+Copyright: 2009, Alejandro Garrido Mota <garridomota at gmail.com>
+License: GPL-1+ | 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'
+
+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'

Added: trunk/libnet-bittorrent-perl/debian/libnet-bittorrent-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-bittorrent-perl/debian/libnet-bittorrent-perl.docs?rev=44156&op=file
==============================================================================
--- trunk/libnet-bittorrent-perl/debian/libnet-bittorrent-perl.docs (added)
+++ trunk/libnet-bittorrent-perl/debian/libnet-bittorrent-perl.docs Wed Sep 16 17:35:17 2009
@@ -1,0 +1,2 @@
+README
+TODO.pod

Added: trunk/libnet-bittorrent-perl/debian/patches/01_fix-manpage-error.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-bittorrent-perl/debian/patches/01_fix-manpage-error.patch?rev=44156&op=file
==============================================================================
--- trunk/libnet-bittorrent-perl/debian/patches/01_fix-manpage-error.patch (added)
+++ trunk/libnet-bittorrent-perl/debian/patches/01_fix-manpage-error.patch Wed Sep 16 17:35:17 2009
@@ -1,0 +1,14 @@
+Fixed problem translating from pod to man
+Index: Net-BitTorrent-0.051/lib/Net/BitTorrent.pm
+===================================================================
+--- Net-BitTorrent-0.051.orig/lib/Net/BitTorrent.pm	2009-09-16 12:12:06.000000000 -0430
++++ Net-BitTorrent-0.051/lib/Net/BitTorrent.pm	2009-09-16 12:13:20.000000000 -0430
+@@ -1162,7 +1162,7 @@
+ 
+ =back
+ 
+-=head2 Net::BitTorrent::Torrent::Tracker::HTTP/Net::BitTorrent::Torrent::Tracker::UDP
++=head2 Net::BitTorrent::Torrent::Tracker::HTTP / Net::BitTorrent::Torrent::Tracker::UDP
+ 
+ Note: The tracker objects passed to these callbacks will either be a
+ L<Net::BitTorrent::Torrent::Tracker::HTTP|Net::BitTorrent::Torrent::Tracker::HTTP>

Added: trunk/libnet-bittorrent-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-bittorrent-perl/debian/patches/series?rev=44156&op=file
==============================================================================
--- trunk/libnet-bittorrent-perl/debian/patches/series (added)
+++ trunk/libnet-bittorrent-perl/debian/patches/series Wed Sep 16 17:35:17 2009
@@ -1,0 +1,1 @@
+01_fix-manpage-error.patch

Added: trunk/libnet-bittorrent-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-bittorrent-perl/debian/rules?rev=44156&op=file
==============================================================================
--- trunk/libnet-bittorrent-perl/debian/rules (added)
+++ trunk/libnet-bittorrent-perl/debian/rules Wed Sep 16 17:35:17 2009
@@ -1,0 +1,10 @@
+#!/usr/bin/make -f
+
+%:
+	dh --with quilt $@
+
+override_dh_fixperms:
+	dh_fixperms
+	chmod 644 debian/libnet-bittorrent-perl/usr/share/perl5/Net/BitTorrent/Notes.pod
+	mv debian/libnet-bittorrent-perl/usr/bin/net-bittorrent.pl debian/libnet-bittorrent-perl/usr/bin/net-bittorrent
+	mv debian/libnet-bittorrent-perl/usr/share/man/man1/net-bittorrent.pl.1p.gz debian/libnet-bittorrent-perl/usr/share/man/man1/net-bittorrent.1p.gz

Propchange: trunk/libnet-bittorrent-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libnet-bittorrent-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-bittorrent-perl/debian/watch?rev=44156&op=file
==============================================================================
--- trunk/libnet-bittorrent-perl/debian/watch (added)
+++ trunk/libnet-bittorrent-perl/debian/watch Wed Sep 16 17:35:17 2009
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Net-BitTorrent/   .*/Net-BitTorrent-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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