r29973 - in /trunk/libcurses-perl: Curses.i Curses.pm Curses.s HISTORY MAINTENANCE MANIFEST Makefile.PL debian/changelog gen.tar gen/

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sat Jan 24 01:17:10 UTC 2009


Author: gregoa
Date: Sat Jan 24 01:17:06 2009
New Revision: 29973

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=29973
Log:
New upstream release.

Added:
    trunk/libcurses-perl/gen.tar
      - copied unchanged from r29972, branches/upstream/libcurses-perl/current/gen.tar
Removed:
    trunk/libcurses-perl/Curses.i
    trunk/libcurses-perl/Curses.s
    trunk/libcurses-perl/gen/
Modified:
    trunk/libcurses-perl/Curses.pm
    trunk/libcurses-perl/HISTORY
    trunk/libcurses-perl/MAINTENANCE
    trunk/libcurses-perl/MANIFEST
    trunk/libcurses-perl/Makefile.PL
    trunk/libcurses-perl/debian/changelog

Modified: trunk/libcurses-perl/Curses.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcurses-perl/Curses.pm?rev=29973&op=diff
==============================================================================
--- trunk/libcurses-perl/Curses.pm (original)
+++ trunk/libcurses-perl/Curses.pm Sat Jan 24 01:17:06 2009
@@ -51,7 +51,7 @@
 
 package Curses;
 
-$VERSION = '1.26'; # Makefile.PL picks this up
+$VERSION = '1.27'; # Makefile.PL picks this up
 
 use Carp;
 require Exporter;

Modified: trunk/libcurses-perl/HISTORY
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcurses-perl/HISTORY?rev=29973&op=diff
==============================================================================
--- trunk/libcurses-perl/HISTORY (original)
+++ trunk/libcurses-perl/HISTORY Sat Jan 24 01:17:06 2009
@@ -10,6 +10,15 @@
 
 Curses itself is much older than the Perl implementation.  Curses was
 originally only a C programming library.
+
+New in 1.27 (Released January 20, 2009)
+
+  Extraneous .i and .s files in 1.26 removed.  'make clean' cleans all
+  .i and .s too.
+
+  'gen' directory is replaced by gen.tar file, so CPAN doesn't index
+  the stuff in there.  That directory is stuff for developing the Curses
+  package, not stuff for users.
 
 New in 1.26 (Released January 3, 2009)
 

Modified: trunk/libcurses-perl/MAINTENANCE
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcurses-perl/MAINTENANCE?rev=29973&op=diff
==============================================================================
--- trunk/libcurses-perl/MAINTENANCE (original)
+++ trunk/libcurses-perl/MAINTENANCE Sat Jan 24 01:17:06 2009
@@ -50,7 +50,7 @@
 ---
 
 The package is designed to have all the distributed code files
-(Curses.pm, CursesFun.c, etc.) generated by the programs in gen/ .
+(Curses.pm, CursesFun.c, etc.) generated by the programs in gen.tar .
 This is supposed to handle the myriad Ncurses functions with less
 tedium than manually editing the files.
 
@@ -59,6 +59,15 @@
 But the changes are modest, so it should be possible some day to
 generate new files, diff to see what changed, and put those changes
 into the Gen programs.
+
+Originally, what is in gen.tar was a directory name 'gen' in the Curses
+package on CPAN, and CPAN unfortunately indexes the Perl modules in there as
+public modules.  And because make.Curses.pm contains the perldoc stuff for
+Curses.pm, people have even been mislead into using that unmaintained file
+for documentation of the functions in Curses.pm.
+
+Since I don't know how to stop CPAN from doing that, I solved that problem
+by tarring up the directory.
 
 
 ppport.h

Modified: trunk/libcurses-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcurses-perl/MANIFEST?rev=29973&op=diff
==============================================================================
--- trunk/libcurses-perl/MANIFEST (original)
+++ trunk/libcurses-perl/MANIFEST Sat Jan 24 01:17:06 2009
@@ -18,20 +18,6 @@
 demo.panel
 demo2
 gdc
-gen/Gen.pm
-gen/README
-gen/increase-version
-gen/list.con
-gen/list.fun
-gen/list.typ
-gen/list.var
-gen/make.Curses.pm
-gen/make.CursesBoot.c
-gen/make.CursesCon.c
-gen/make.CursesFun.c
-gen/make.CursesTyp.h
-gen/make.CursesVar.c
-gen/make.list.syms
 hints/c-MSWin32.borland.h
 hints/c-MSWin32.visualc.h
 hints/c-aix.h

Modified: trunk/libcurses-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcurses-perl/Makefile.PL?rev=29973&op=diff
==============================================================================
--- trunk/libcurses-perl/Makefile.PL (original)
+++ trunk/libcurses-perl/Makefile.PL Sat Jan 24 01:17:06 2009
@@ -554,7 +554,7 @@
     print("file.\n");
 }
 
-my $clean = 'CursesDef.h c-config.h cdemo testsym testint testtyp';
+my $clean = 'CursesDef.h c-config.h cdemo testsym testint testtyp *.i *.s';
 my $realc = $gen
     ? 'list.syms Curses.pm ' . 
       'CursesFun.c CursesVar.c CursesCon.c CursesTyp.h CursesBoot.c'

Modified: trunk/libcurses-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcurses-perl/debian/changelog?rev=29973&op=diff
==============================================================================
--- trunk/libcurses-perl/debian/changelog (original)
+++ trunk/libcurses-perl/debian/changelog Sat Jan 24 01:17:06 2009
@@ -1,3 +1,9 @@
+libcurses-perl (1.27-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregoa at debian.org>  Sat, 24 Jan 2009 02:15:12 +0100
+
 libcurses-perl (1.26-1) unstable; urgency=low
 
   * New upstream release.




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