r8222 - in /trunk/libdevel-ebug-perl: Build.PL Makefile.PL debian/ debian/changelog debian/compat debian/control debian/copyright debian/rules

makholm at users.alioth.debian.org makholm at users.alioth.debian.org
Fri Oct 12 19:18:03 UTC 2007


Author: makholm
Date: Fri Oct 12 19:18:03 2007
New Revision: 8222

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

Added:
    trunk/libdevel-ebug-perl/debian/
    trunk/libdevel-ebug-perl/debian/changelog
    trunk/libdevel-ebug-perl/debian/compat
    trunk/libdevel-ebug-perl/debian/control
    trunk/libdevel-ebug-perl/debian/copyright
    trunk/libdevel-ebug-perl/debian/rules   (with props)
Modified:
    trunk/libdevel-ebug-perl/Build.PL
    trunk/libdevel-ebug-perl/Makefile.PL

Modified: trunk/libdevel-ebug-perl/Build.PL
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/Build.PL?rev=8222&op=diff
==============================================================================
--- trunk/libdevel-ebug-perl/Build.PL (original)
+++ trunk/libdevel-ebug-perl/Build.PL Fri Oct 12 19:18:03 2007
@@ -25,7 +25,7 @@
 }
 
 my $build = Module::Build->new(
-  create_makefile_pl => 'small',
+  create_makefile_pl => 'traditional',
   license            => 'perl',
   module_name        => 'Devel::ebug',
   requires           => $requires,

Modified: trunk/libdevel-ebug-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/Makefile.PL?rev=8222&op=diff
==============================================================================
--- trunk/libdevel-ebug-perl/Makefile.PL (original)
+++ trunk/libdevel-ebug-perl/Makefile.PL Fri Oct 12 19:18:03 2007
@@ -1,6 +1,30 @@
 # Note: this file was auto-generated by Module::Build::Compat version 0.03
-    use Module::Build::Compat 0.02;
-    use lib '_build/lib';
-    Module::Build::Compat->run_build_pl(args => \@ARGV);
-    require Module::Build;
-    Module::Build::Compat->write_makefile(build_class => 'Module::Build');
+use ExtUtils::MakeMaker;
+WriteMakefile
+(
+          'PL_FILES' => {},
+          'INSTALLDIRS' => 'site',
+          'NAME' => 'Devel::ebug',
+          'EXE_FILES' => [
+                           'ebug',
+                           'ebug_client',
+                           'ebug_server'
+                         ],
+          'VERSION_FROM' => 'lib/Devel/ebug.pm',
+          'PREREQ_PM' => {
+                           'Scalar::Util' => '0',
+                           'PadWalker' => '0',
+                           'Module::Pluggable' => '0',
+                           'Devel::StackTrace' => '0',
+                           'IO::Socket::INET' => '0',
+                           'YAML::Syck' => '0.85',
+                           'Test::Expect' => '0',
+                           'Carp' => '0',
+                           'Test::More' => '0',
+                           'Class::Accessor::Chained::Fast' => '0',
+                           'String::Koremutake' => '0',
+                           'File::Find' => '0',
+                           'Proc::Background' => '0'
+                         }
+        )
+;

Added: trunk/libdevel-ebug-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/debian/changelog?rev=8222&op=file
==============================================================================
--- trunk/libdevel-ebug-perl/debian/changelog (added)
+++ trunk/libdevel-ebug-perl/debian/changelog Fri Oct 12 19:18:03 2007
@@ -1,0 +1,5 @@
+libdevel-ebug-perl (0.48-1) UNRELEASED; urgency=low
+
+  * Initial Release. (Closes: #446066)
+
+ -- Peter Makholm <peter at makholm.net>  Fri, 12 Oct 2007 19:06:27 +0000

Added: trunk/libdevel-ebug-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/debian/compat?rev=8222&op=file
==============================================================================
--- trunk/libdevel-ebug-perl/debian/compat (added)
+++ trunk/libdevel-ebug-perl/debian/compat Fri Oct 12 19:18:03 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libdevel-ebug-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/debian/control?rev=8222&op=file
==============================================================================
--- trunk/libdevel-ebug-perl/debian/control (added)
+++ trunk/libdevel-ebug-perl/debian/control Fri Oct 12 19:18:03 2007
@@ -1,0 +1,30 @@
+Source: libdevel-ebug-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0), cdbs, libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.8.8-7), libtest-expect-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Peter Makholm <peter at makholm.net>
+Standards-Version: 3.7.2
+XS-Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdevel-ebug-perl/
+XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-ebug-perl/
+
+Package: libdevel-ebug-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libdevel-stacktrace-perl, libclass-accessor-chained-perl, libmodule-pluggable-perl, libpadwalker-perl, libproc-background-perl, libstring-koremutake-perl, libyaml-syck-perl
+Description: A simple, extensible Perl debugger
+ Devel::ebug is a simple, extensible Perl debugger with a clean API. Using this
+ module, you may easily write a Perl debugger to debug your programs.
+ Alternatively, it comes with an interactive debugger, ebug.
+ .
+ Perl's current debugger is currently 2,600 lines of magic and special cases.
+ The code is nearly unreadable: fixing bugs and adding new features is fraught
+ with difficulties. The debugger has no test suite which has caused breakage
+ with changes that couldn't be properly tested. It will also not debug regexes.
+ Devel::ebug is aimed at fixing these problems and delivering a replacement
+ debugger which provides a well-tested simple programmatic interface to
+ debugging programs. This makes it easier to build debuggers on top of
+ Devel::ebug, be they console-, curses-, GUI- or Ajax-based.
+ A simple, extensible Perl debugger
+ .
+  Homepage: http://search.cpan.org/dist/Devel-ebug/

Added: trunk/libdevel-ebug-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/debian/copyright?rev=8222&op=file
==============================================================================
--- trunk/libdevel-ebug-perl/debian/copyright (added)
+++ trunk/libdevel-ebug-perl/debian/copyright Fri Oct 12 19:18:03 2007
@@ -1,0 +1,25 @@
+This is the debian package for the Devel-ebug module.
+It was created by Peter Makholm <peter at makholm.net> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/Devel-ebug/
+
+This copyright info was automatically extracted from the perl module.
+It may not be accurate, so you better check the module sources
+if don't want to get into legal troubles.
+
+The upstream author is: Leon Brocard, C<< <acme at astray.com> >>.
+
+
+Copyright (C) 2005, Leon Brocard
+
+This module is free software; you can redistribute it or modify it
+under the same terms as Perl itself.
+
+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'.
+
+
+The Debian packaging is (C) 2007, Peter Makholm <peter at makholm.net> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libdevel-ebug-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libdevel-ebug-perl/debian/rules?rev=8222&op=file
==============================================================================
--- trunk/libdevel-ebug-perl/debian/rules (added)
+++ trunk/libdevel-ebug-perl/debian/rules Fri Oct 12 19:18:03 2007
@@ -1,0 +1,8 @@
+#!/usr/bin/make -f
+
+export LC_ALL=C
+
+# Put perlmodule.mk last to dh_clean temporary files not in MANIFEST
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/perlmodule.mk
+

Propchange: trunk/libdevel-ebug-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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