r10141 - in /trunk/libcurses-perl: ./ debian/ gen/

vdanjean at users.alioth.debian.org vdanjean at users.alioth.debian.org
Sat Dec 1 11:53:58 UTC 2007


Author: vdanjean
Date: Sat Dec  1 11:53:58 2007
New Revision: 10141

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

Added:
    trunk/libcurses-perl/c-gnu.bsd.h
    trunk/libcurses-perl/c-gnu.ncurses.h
    trunk/libcurses-perl/debian/
    trunk/libcurses-perl/debian/README.debian
    trunk/libcurses-perl/debian/changelog
    trunk/libcurses-perl/debian/compat
    trunk/libcurses-perl/debian/control
    trunk/libcurses-perl/debian/copyright
    trunk/libcurses-perl/debian/dirs
    trunk/libcurses-perl/debian/libcurses-perl.examples
    trunk/libcurses-perl/debian/rules   (with props)
    trunk/libcurses-perl/debian/watch
Modified:
    trunk/libcurses-perl/Curses.pm
    trunk/libcurses-perl/CursesFun.c
    trunk/libcurses-perl/demo
    trunk/libcurses-perl/demo.form
    trunk/libcurses-perl/demo.menu
    trunk/libcurses-perl/demo.panel
    trunk/libcurses-perl/demo2
    trunk/libcurses-perl/gdc
    trunk/libcurses-perl/gen/increase-version
    trunk/libcurses-perl/gen/make.Curses.pm
    trunk/libcurses-perl/gen/make.CursesBoot.c
    trunk/libcurses-perl/gen/make.CursesCon.c
    trunk/libcurses-perl/gen/make.CursesFun.c
    trunk/libcurses-perl/gen/make.CursesTyp.h
    trunk/libcurses-perl/gen/make.CursesVar.c
    trunk/libcurses-perl/gen/make.list.syms

Modified: trunk/libcurses-perl/Curses.pm
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/Curses.pm?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/Curses.pm (original)
+++ trunk/libcurses-perl/Curses.pm Sat Dec  1 11:53:58 2007
@@ -285,21 +285,17 @@
 by C<Curses>, along with a column listing if it is I<unified>.  If
 so, it takes a varying number of arguments as follows:
 
-=over 4
-
 C<function( [win], [y, x], args );>
 
-I<win> is an optional window argument, defaulting to C<stdscr> if not
-specified.
-
-I<y, x> is an optional coordinate pair used to move the cursor,
-defaulting to no move if not specified.
-
-I<args> are the required arguments of the function.  These are the
-arguments you would specify if you were just calling the base function
-and not any of the variants.
-
-=back
+	I<win> is an optional window argument, defaulting to C<stdscr> if not
+	specified.
+
+	I<y, x> is an optional coordinate pair used to move the cursor,
+	defaulting to no move if not specified.
+
+	I<args> are the required arguments of the function.  These are the
+	arguments you would specify if you were just calling the base function
+	and not any of the variants.
 
 This makes the variants obsolete, since their functionality has been
 merged into a single function, so C<Curses> does not define them by
@@ -363,7 +359,7 @@
 
 Some functions and variables are not supported by C<Curses>, even with
 the C<BEGIN> line.  They are listed under
-L<"curses(3) items not supported by Curses">.
+"curses(3) items not supported by Curses".
 
 The variables C<$stdscr> and C<$curscr> are also available as
 functions C<stdscr> and C<curscr>.  This is because of a Perl bug.

Modified: trunk/libcurses-perl/CursesFun.c
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/CursesFun.c?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/CursesFun.c (original)
+++ trunk/libcurses-perl/CursesFun.c Sat Dec  1 11:53:58 2007
@@ -1276,8 +1276,8 @@
     c_exactargs("newterm", items, 3);
     {
 	char *	type	= ST(0) != &PL_sv_undef ? (char *)SvPV(ST(0),PL_na) : NULL;
-	FILE *	outfd	= IoIFP(sv_2io(ST(1)));
-	FILE *	infd	= IoIFP(sv_2io(ST(2)));
+	FILE *	outfd	= PerlIO_findFILE(IoIFP(sv_2io(ST(1))));
+	FILE *	infd	= PerlIO_findFILE(IoIFP(sv_2io(ST(2))));
 	SCREEN *	ret	= newterm(type, outfd, infd);
 	
 	ST(0) = sv_newmortal();
@@ -3359,10 +3359,10 @@
     c_exactargs("unctrl", items, 1);
     {
 	chtype	ch	= c_sv2chtype(ST(0));
-	char *	ret	= unctrl(ch);
-	
-	ST(0) = sv_newmortal();
-	sv_setpv((SV*)ST(0), ret);
+	const char *ret	= unctrl(ch);
+	
+	ST(0) = sv_newmortal();
+	sv_setpv((SV*)ST(0), (char *) ret);
     }
     XSRETURN(1);
 #else
@@ -3450,7 +3450,7 @@
     c_exactargs("putwin", items, 2);
     {
 	WINDOW *win	= c_sv2window(ST(0), 0);
-	FILE *	filep	= IoIFP(sv_2io(ST(1)));
+	FILE *	filep	= PerlIO_findFILE(IoIFP(sv_2io(ST(1))));
 	int	ret	= putwin(win, filep);
 	
 	ST(0) = sv_newmortal();
@@ -3469,7 +3469,7 @@
 #ifdef C_GETWIN
     c_exactargs("getwin", items, 1);
     {
-	FILE *	filep	= IoIFP(sv_2io(ST(0)));
+	FILE *	filep	= PerlIO_findFILE(IoIFP(sv_2io(ST(0))));
 	WINDOW *	ret	= getwin(filep);
 	
 	ST(0) = sv_newmortal();

Added: trunk/libcurses-perl/c-gnu.bsd.h
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/c-gnu.bsd.h?rev=10141&op=file
==============================================================================
--- trunk/libcurses-perl/c-gnu.bsd.h (added)
+++ trunk/libcurses-perl/c-gnu.bsd.h Sat Dec  1 11:53:58 2007
@@ -1,0 +1,15 @@
+/*  Hint file for the GNU platform, BSD version of libcurses.
+ *
+ *  If this configuration doesn't work, look at the file "c-none.h"
+ *  for how to set the configuration options.
+ */
+
+#include <curses.h>
+
+#undef  C_LONGNAME
+#define C_LONG0ARGS
+#undef  C_LONG2ARGS
+
+#define C_TOUCHLINE
+#undef  C_TOUCH3ARGS
+#define C_TOUCH4ARGS

Added: trunk/libcurses-perl/c-gnu.ncurses.h
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/c-gnu.ncurses.h?rev=10141&op=file
==============================================================================
--- trunk/libcurses-perl/c-gnu.ncurses.h (added)
+++ trunk/libcurses-perl/c-gnu.ncurses.h Sat Dec  1 11:53:58 2007
@@ -1,0 +1,24 @@
+/*  Hint file for the GNU platform, ncurses version of libcurses.
+ *
+ *  If this configuration doesn't work, look at the file "c-none.h"
+ *  for how to set the configuration options.
+ */
+
+#undef  bool
+
+#include <curses.h>
+
+#ifdef C_PANELSUPPORT
+#include <panel.h>
+#endif
+
+#undef  instr
+#define instr _sigh_sigh_sigh_
+
+#define C_LONGNAME
+#define C_LONG0ARGS
+#undef  C_LONG2ARGS
+
+#define C_TOUCHLINE
+#define C_TOUCH3ARGS
+#undef  C_TOUCH4ARGS

Added: trunk/libcurses-perl/debian/README.debian
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/debian/README.debian?rev=10141&op=file
==============================================================================
--- trunk/libcurses-perl/debian/README.debian (added)
+++ trunk/libcurses-perl/debian/README.debian Sat Dec  1 11:53:58 2007
@@ -1,0 +1,17 @@
+libcurses-perl for DEBIAN
+--------------000--------
+
+This package is built with support for MENUS and PANELS. FORMS support does not yet work under Debian.
+
+Jay Bonci <jaybonci at debian.org>, Tue Jun  7 14:56:18 EDT 2005
+
+
+
+This package contains the "Curses" module for Perl.  In order to avoid
+confusion, the Debian package is called libcurses-perl instead of curses.
+
+You can find a manpage under the name Curses.
+
+Note that this package used to be called perl-curses.
+
+John Goerzen <jgoerzen at complete.org>, Sun Dec 28 14:38:56 CST 1997

Added: trunk/libcurses-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/debian/changelog?rev=10141&op=file
==============================================================================
--- trunk/libcurses-perl/debian/changelog (added)
+++ trunk/libcurses-perl/debian/changelog Sat Dec  1 11:53:58 2007
@@ -1,0 +1,193 @@
+libcurses-perl (1.13-1) unstable; urgency=low
+
+  * New upstream release (Closes: #338211)
+  * Policy version bump (No other changes)
+  * Hardcoded path instead of regexp on pwd (which may have been causing buildd issues)
+
+ -- Jay Bonci <jaybonci at debian.org>  Sun, 11 Dec 2005 23:59:14 -0500
+
+libcurses-perl (1.12-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Jay Bonci <jaybonci at debian.org>  Tue,  7 Jun 2005 10:49:09 -0400
+
+libcurses-perl (1.11-1) unstable; urgency=low
+
+  * New upstream version
+  * Updated debian/watch file
+
+ -- Jay Bonci <jaybonci at debian.org>  Thu, 17 Mar 2005 01:32:05 -0500
+
+libcurses-perl (1.08b-1) unstable; urgency=low
+
+  * New upstream version (Closes: #285525)
+  * Adds MENU support
+  * Updated debian/watch to find new, more liberal filename
+
+ -- Jay Bonci <jaybonci at debian.org>  Tue, 28 Dec 2004 18:49:53 -0500
+
+libcurses-perl (1.06-11) unstable; urgency=low
+
+  * Adds debian/watch so uscan will actually work
+  * Adds download URL to copyright. (Closes: #241730)
+  * Adds PANELS support per INSTALL file (Closes: #252057)
+
+ -- Jay Bonci <jaybonci at debian.org>  Sun, 12 Sep 2004 02:47:42 -0400
+
+libcurses-perl (1.06-10) unstable; urgency=low
+
+  * Fixes FTBFS. binary-arch vs. binary-all (Closes: #234957)
+
+ -- Jay Bonci <jaybonci at debian.org>  Sat, 28 Feb 2004 17:16:10 -0500
+
+libcurses-perl (1.06-9) unstable; urgency=low
+
+  * New maintainer (Closes: #233664)
+  * Updated debian/rules file to match my standard rules template
+  * Added debian/compat file per debhelper best practices
+  * Moved demo files to being installed via dh_installexamples
+  * Change perl location to be /usr/bin/perl in all files (Closes: #230145)
+  * Policy version bump to 3.6.1.0
+  * Changed section to perl
+  * Changed priority to optional
+  * Removed dependancy on debmake
+  * Bumped debhelper dependancy to (>= 4.0)
+  * Removed bad =over 4 section in POD (Curses.pm)
+  * Removed bad external link error in POD (Curses.pm)
+
+ -- Jay Bonci <jaybonci at debian.org>  Tue, 24 Feb 2004 15:57:00 -0500
+
+libcurses-perl (1.06-8) unstable; urgency=low
+
+  * Orphan this package
+
+ -- Igor Genibel <igenibel at debian.org>  Thu, 19 Feb 2004 11:18:47 +0100
+
+libcurses-perl (1.06-7) unstable; urgency=low
+
+  * New Maintainer (Closes: #206098)
+  * Fix MENU FORMS support (Closes: #186128)
+  * Bumped to Standards 3.6.0 some changes in control and rules file
+  * Make the package lintian clean
+
+ -- Igor Genibel <igenibel at debian.org>  Tue, 19 Aug 2003 10:06:09 +0200
+
+libcurses-perl (1.06-6) unstable; urgency=low
+
+  * Orphaning this package.
+
+ -- John Goerzen <jgoerzen at complete.org>  Mon, 18 Aug 2003 14:19:03 -0500
+
+libcurses-perl (1.06-5) unstable; urgency=low
+
+  * Rebuilt to get new Perl deps.  Closes: #176714.
+
+ -- John Goerzen <jgoerzen at complete.org>  Wed,  5 Feb 2003 15:06:07 -0600
+
+libcurses-perl (1.06-4) unstable; urgency=low
+
+  * Work around gcc weirdness on hppa using patch from LaMont Jones.
+    Closes: #160527.
+
+ -- John Goerzen <jgoerzen at complete.org>  Tue, 15 Oct 2002 13:09:50 -0500
+
+libcurses-perl (1.06-3) unstable; urgency=low
+
+  * Added pointer to Artistic license.  Closes: #157562.
+  * Includes more demos now.
+  * Explicitly specifies includes and libs with patch from
+    #143118.  Closes: #143118.
+
+ -- John Goerzen <jgoerzen at complete.org>  Tue, 15 Oct 2002 09:22:44 -0500
+
+libcurses-perl (1.06-2.1) unstable; urgency=low
+
+  * NMU
+  * Use PerlIO_FindFILE to fetch FILE* from PerlIO objects.
+  * Build against perl 5.8.0.
+
+ -- Brendan O'Dea <bod at debian.org>  Tue, 27 Aug 2002 22:09:54 +1000
+
+libcurses-perl (1.06-2) unstable; urgency=low
+
+  * Added build-dep on debhelper.  Closes: #133635.
+
+ -- John Goerzen <jgoerzen at complete.org>  Wed, 13 Feb 2002 09:19:59 -0500
+
+libcurses-perl (1.06-1) unstable; urgency=low
+
+  * New upstream release.
+  * Added build-depends on libncurses5-dev and debmake.  Closes: #89751.
+  * Applied patch from Marcus Brinkmann
+    <Marcus.Brinkmann at ruhr-uni-bochum.de> to build on Hurd.
+    Closes: #105560.
+  * Fixed path to perl in demo.  Closes: #111054.
+
+ -- John Goerzen <jgoerzen at complete.org>  Tue, 12 Feb 2002 08:23:55 -0500
+
+libcurses-perl (1.05-2) unstable; urgency=low
+
+  * Fixed a Makefile.PL bug that caused things to be placed
+    in /usr/local.  Thanks to Colin Watson for the patch in 88937.
+    Closes: #88937.
+
+ -- John Goerzen <jgoerzen at complete.org>  Tue, 13 Mar 2001 10:44:05 -0500
+
+libcurses-perl (1.05-1) unstable; urgency=low
+
+  * New upstream release.  Closes: #85756, #83461, #85256.
+  * Rebuilt with Perl 5.6.  Closes: #80720.
+
+ -- John Goerzen <jgoerzen at complete.org>  Thu, 22 Feb 2001 11:46:29 -0500
+
+libcurses-perl (1.02-3) unstable; urgency=low
+
+  * Update to standards-version 3.0.1
+  * Update to FHS.
+  * Old bug fixed.  Closes: #41520.
+
+ -- John Goerzen <jgoerzen at complete.org>  Wed, 22 Sep 1999 08:54:22 -0500
+
+libcurses-perl (1.02-2.1) unstable; urgency=low
+
+  * NMU for the perl upgrade. Closes: #41520
+  * Corrected the rules files to conform with perl policy 1.0.1
+  * Compiled with perl-5.005
+
+ -- Raphael Hertzog <rhertzog at hrnet.fr>  Sun, 18 Jul 1999 22:42:26 +0200
+
+libcurses-perl (1.02-2) unstable; urgency=low
+
+  * Now linked with libncurses4 instead of ncurses3.4
+
+ -- John Goerzen <jgoerzen at complete.org>  Sat, 31 Oct 1998 15:33:01 -0600
+
+libcurses-perl (1.02-1) unstable; urgency=low
+
+  * New upstream release
+  * Now properly builds, without an ugly hack to the Makefile.
+    Fixes bug #16714.
+  * Rebuilt with an updated debmake, fixing bug #19350.
+    Other comments regarding that bug report (lintian-generated):
+    * Standards-version has been updated
+
+ -- John Goerzen <jgoerzen at complete.org>  Fri, 13 Mar 1998 21:38:50 -0600
+
+libcurses-perl (1.01-1) unstable; urgency=low
+
+  * Recompiled for libc6 and Perl 5.004.  Fixes bug #15177
+  * No longer installs a perllocal.pod.  Documentation is in
+    /usr/man/man3/Curses.3pm.gz.  Fixes bugs #12749, #12846
+  * Package has been renamed from perl-curses to libcurses-perl to
+    comply with informal standard.  Fixes bug #11028.
+  * Enhanced debian/rules's clean target
+
+ -- John Goerzen <jgoerzen at complete.org>  Sun, 28 Dec 1997 14:25:51 -0600
+
+perl-curses (1.01-1) unstable; urgency=low
+
+  * Initial Release.
+  * This is the Curses module from CPAN.
+
+ -- John Goerzen <jgoerzen at complete.org>  Mon, 2 Jun 1997 12:02:47 -0500

Added: trunk/libcurses-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/debian/compat?rev=10141&op=file
==============================================================================
--- trunk/libcurses-perl/debian/compat (added)
+++ trunk/libcurses-perl/debian/compat Sat Dec  1 11:53:58 2007
@@ -1,0 +1,1 @@
+4

Added: trunk/libcurses-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/debian/control?rev=10141&op=file
==============================================================================
--- trunk/libcurses-perl/debian/control (added)
+++ trunk/libcurses-perl/debian/control Sat Dec  1 11:53:58 2007
@@ -1,0 +1,21 @@
+Source: libcurses-perl
+Section: perl
+Priority: optional
+Maintainer: Jay Bonci <jaybonci at debian.org>
+Standards-Version: 3.6.2.1
+Build-Depends: perl (>= 5.8), libncurses5-dev, debhelper (>= 4.0)
+
+Package: libcurses-perl
+Architecture: any
+Depends: ${perl:Depends}, ${shlibs:Depends}
+Provides: perl-curses
+Replaces: perl-curses
+Conflicts: perl-curses
+Description: Curses interface for Perl
+ libcurses-perl (the Curses module from CPAN) will let you
+ use the ncurses/curses terminal screen manipulation
+ routines from Perl programs.
+ .
+ This package was previously called perl-curses.  To comply with informal
+ Debian standards, it has been renamed to libcurses-perl.
+

Added: trunk/libcurses-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/debian/copyright?rev=10141&op=file
==============================================================================
--- trunk/libcurses-perl/debian/copyright (added)
+++ trunk/libcurses-perl/debian/copyright Sat Dec  1 11:53:58 2007
@@ -1,0 +1,31 @@
+This package was debianized by John Goerzen jgoerzen at complete.org on
+Mon, 2 Jun 1997 12:02:47 -0500.
+
+It was downloaded from http://www.cpan.org/modules/by-module/Curses/
+
+Copyright:
+
+             The Curses extension to perl v5
+                       Version 1.06
+
+
+	 Copyright (c) 1994-2000  William Setzer
+                   All rights reserved.
+
+    This program is free software; you can redistribute it and/or modify
+    it under the same terms as perl, specifically:
+
+        a) the GNU General Public License as published by the Free
+        Software Foundation; either version 1, or (at your option) any
+        later version, or
+
+        b) the "Artistic License" which comes with this Kit.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    Artistic License for more details. 
+
+Debian GNU/Linux users may find these licenses at
+/usr/share/common-licenses/GPL
+/usr/share/common-licenses/Artistic.

Added: trunk/libcurses-perl/debian/dirs
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/debian/dirs?rev=10141&op=file
==============================================================================
--- trunk/libcurses-perl/debian/dirs (added)
+++ trunk/libcurses-perl/debian/dirs Sat Dec  1 11:53:58 2007
@@ -1,0 +1,6 @@
+usr/bin
+usr/sbin
+usr/lib/perl5
+usr/share/doc/libcurses-perl
+usr/share/man/man1
+usr/share/man/man3

Added: trunk/libcurses-perl/debian/libcurses-perl.examples
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/debian/libcurses-perl.examples?rev=10141&op=file
==============================================================================
--- trunk/libcurses-perl/debian/libcurses-perl.examples (added)
+++ trunk/libcurses-perl/debian/libcurses-perl.examples Sat Dec  1 11:53:58 2007
@@ -1,0 +1,1 @@
+demo*

Added: trunk/libcurses-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/debian/rules?rev=10141&op=file
==============================================================================
--- trunk/libcurses-perl/debian/rules (added)
+++ trunk/libcurses-perl/debian/rules Sat Dec  1 11:53:58 2007
@@ -1,0 +1,55 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatibility version to use.
+# export DH_COMPAT=4
+
+#PACKAGE=`pwd | sed -e "s/.*\/\\(.*\\)-.*/\\1/"`
+PACKAGE='libcurses-perl'
+
+build:
+	dh_testdir
+	# Add here commands to compile the package.
+	#perl Makefile.PL PANELS MENUS FORMS verbose INSTALLDIRS=vendor
+	perl Makefile.PL PANELS MENUS verbose INSTALLDIRS=vendor
+clean:
+	dh_testdir
+	dh_testroot
+
+	-$(MAKE) clean
+	rm -f Makefile.old
+	dh_clean
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) PREFIX=$(CURDIR)/debian/$(PACKAGE)/usr OPTIMIZE="-O2 -g -Wall" test install
+	-find $(CURDIR)/debian -type d | xargs rmdir -p --ignore-fail-on-non-empty
+
+binary-indep:;
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installman
+	dh_installchangelogs
+	dh_installexamples
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

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

Added: trunk/libcurses-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/debian/watch?rev=10141&op=file
==============================================================================
--- trunk/libcurses-perl/debian/watch (added)
+++ trunk/libcurses-perl/debian/watch Sat Dec  1 11:53:58 2007
@@ -1,0 +1,3 @@
+version=2
+http://www.cpan.org/modules/by-module/Curses/Curses-([0-9\.]*)\.t.*gz \
+ debian uupdate

Modified: trunk/libcurses-perl/demo
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/demo?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/demo (original)
+++ trunk/libcurses-perl/demo Sat Dec  1 11:53:58 2007
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 ##
 ##  demo -- do some curses stuff
 ##

Modified: trunk/libcurses-perl/demo.form
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/demo.form?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/demo.form (original)
+++ trunk/libcurses-perl/demo.form Sat Dec  1 11:53:58 2007
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 ##
 
 use ExtUtils::testlib;

Modified: trunk/libcurses-perl/demo.menu
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/demo.menu?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/demo.menu (original)
+++ trunk/libcurses-perl/demo.menu Sat Dec  1 11:53:58 2007
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 ##
 ##  This code contributed by Yury Pshenichny <yura at zp.ua>
 ##  based on demo.panel by Chris Leach <leachcj at bp.com>

Modified: trunk/libcurses-perl/demo.panel
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/demo.panel?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/demo.panel (original)
+++ trunk/libcurses-perl/demo.panel Sat Dec  1 11:53:58 2007
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 ##
 ##  This code contributed by Chris Leach <leachcj at bp.com>
 

Modified: trunk/libcurses-perl/demo2
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/demo2?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/demo2 (original)
+++ trunk/libcurses-perl/demo2 Sat Dec  1 11:53:58 2007
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 ##
 ##  demo2  -- play around with some weird stuff, use object model
 ##

Modified: trunk/libcurses-perl/gdc
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/gdc?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/gdc (original)
+++ trunk/libcurses-perl/gdc Sat Dec  1 11:53:58 2007
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 # This file a port from test/gdc.c in the ncurses-1.9.8a distribution.
 # No copyright exists, but I don't think the writer would mind the port.
 # It's not exact, because I was simplifying things to find a bug in my

Modified: trunk/libcurses-perl/gen/increase-version
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/gen/increase-version?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/gen/increase-version (original)
+++ trunk/libcurses-perl/gen/increase-version Sat Dec  1 11:53:58 2007
@@ -15,7 +15,7 @@
 fi
 
 vers=$1
-perl="/usr/local/bin/perl -p -i.bak -e"
+perl="/usr/bin/perl -p -i.bak -e"
 
 $perl "s/^(.VERSION = )\d+\.\d+/\${1}$vers/"       gen/make.Curses.pm
 $perl "s/(Curses-)\d+\.\d+/\${1}$vers/"            INSTALL

Modified: trunk/libcurses-perl/gen/make.Curses.pm
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/gen/make.Curses.pm?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/gen/make.Curses.pm (original)
+++ trunk/libcurses-perl/gen/make.Curses.pm Sat Dec  1 11:53:58 2007
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 ##
 ##  make.Curses.pm  -- make Curses.pm
 ##

Modified: trunk/libcurses-perl/gen/make.CursesBoot.c
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/gen/make.CursesBoot.c?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/gen/make.CursesBoot.c (original)
+++ trunk/libcurses-perl/gen/make.CursesBoot.c Sat Dec  1 11:53:58 2007
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 ##
 ##  make.CursesBoot.c  -- make CursesBoot.c
 ##

Modified: trunk/libcurses-perl/gen/make.CursesCon.c
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/gen/make.CursesCon.c?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/gen/make.CursesCon.c (original)
+++ trunk/libcurses-perl/gen/make.CursesCon.c Sat Dec  1 11:53:58 2007
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 ##
 ##  make.CursesFun.c  -- make CursesFun.c
 ##

Modified: trunk/libcurses-perl/gen/make.CursesFun.c
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/gen/make.CursesFun.c?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/gen/make.CursesFun.c (original)
+++ trunk/libcurses-perl/gen/make.CursesFun.c Sat Dec  1 11:53:58 2007
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 ##
 ##  make.CursesFun.c  -- make CursesFun.c
 ##

Modified: trunk/libcurses-perl/gen/make.CursesTyp.h
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/gen/make.CursesTyp.h?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/gen/make.CursesTyp.h (original)
+++ trunk/libcurses-perl/gen/make.CursesTyp.h Sat Dec  1 11:53:58 2007
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 ##
 ##  make.CursesTyp.h  -- make CursesTyp.h
 ##

Modified: trunk/libcurses-perl/gen/make.CursesVar.c
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/gen/make.CursesVar.c?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/gen/make.CursesVar.c (original)
+++ trunk/libcurses-perl/gen/make.CursesVar.c Sat Dec  1 11:53:58 2007
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 ##
 ##  make.CursesVar.c  -- make CursesVar.c
 ##

Modified: trunk/libcurses-perl/gen/make.list.syms
URL: http://svn.debian.org/wsvn/trunk/libcurses-perl/gen/make.list.syms?rev=10141&op=diff
==============================================================================
--- trunk/libcurses-perl/gen/make.list.syms (original)
+++ trunk/libcurses-perl/gen/make.list.syms Sat Dec  1 11:53:58 2007
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 ##
 ##  make.list.syms -- make list.syms
 ##




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