[cvs] dists/10.3/unstable/main/finkinfo/graphics libtiff.info, 1.9, 1.10 libtiff.patch, 1.5, 1.6 netpbm.info, 1.6, 1.7 netpbm.patch, 1.2, 1.3 netpbm10.info, 1.14, 1.15 netpbm10.patch, 1.5, 1.6

2007-08-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/graphics
In directory sc8-pr-cvs17:/tmp/cvs-serv2444

Modified Files:
libtiff.info libtiff.patch netpbm.info netpbm.patch 
netpbm10.info netpbm10.patch 
Log Message:
security fixes (thanks to Tomoaki Okayama)


Index: netpbm.patch
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/graphics/netpbm.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- netpbm.patch7 Oct 2005 17:57:20 -   1.2
+++ netpbm.patch29 Aug 2007 15:03:21 -  1.3
@@ -12,3 +12,535 @@
  #push(@Makefile_config, INSTALL = install\n);
  push(@Makefile_config, 'TIFFHDR_DIR = $(LOCALBASE)/include', \n);
  push(@Makefile_config, 'TIFFLIB_DIR = $(LOCALBASE)/lib', \n); 
+--- netpbm-9.24/pnm/pstopnm.c.CAN-2005-24712005-08-10 13:12:38.0 
+0200
 netpbm-9.24/pnm/pstopnm.c  2005-08-10 13:15:20.0 +0200
+@@ -480,7 +480,7 @@
+ 
+ sprintf(ghostscript_command,
+ gs -sDEVICE='%s' -sOutputFile='%s' -g'%dx%d' -r'%dx%d' 
+--q -dNOPAUSE -,
++-q -dNOPAUSE -dPARANOIDSAFER -,
+ ghostscript_device, outfile_arg, 
+ xsize, ysize, xres, yres);
+ 
+--- netpbm-9.24/pnm/pnmtopng.c.CVE-2005-3632   2005-12-05 16:05:17.0 
+0100
 netpbm-9.24/pnm/pnmtopng.c 2005-12-05 16:14:40.0 +0100
+@@ -205,7 +205,8 @@
+ FILE *tfp;
+ #endif
+ {
+-  char textline[256];
++#define MAXLINE 1024
++  char textline[MAXLINE];
+   int textpos;
+   int i, j;
+   int c;
+@@ -217,6 +218,7 @@
+   textpos = 0;
+   while ((c = getc (tfp)) != EOF) {
+ if (c != '\n'  c != EOF) {
++  if (textpos = MAXLINE) continue;
+   textline[textpos++] = c;
+ } else {
+   textline[textpos++] = '\0';
+@@ -227,33 +229,41 @@
+ else
+   info_ptr-text[j].compression = 0;
+ cp = malloc (textpos);
++if ( cp == NULL )
++  pm_error(out of memory);
+ info_ptr-text[j].key = cp;
+ i = 0;
+ if (textline[0] == '') {
+   i++;
+-  while (textline[i] != ''  textline[i] != '\n')
++  while (textline[i] != ''  textline[i] != '\n'  itextpos)
+ *(cp++) = textline[i++];
+   i++;
+ } else {
+-  while (textline[i] != ' '  textline[i] != '\t'  textline[i] != 
'\n')
++  while (textline[i] != ' '  textline[i] != '\t'  textline[i] != 
'\n'  itextpos)
+ *(cp++) = textline[i++];
+ }
+ *(cp++) = '\0';
+ cp = malloc (textpos);
++if ( cp == NULL )
++  pm_error(out of memory);
+ info_ptr-text[j].text = cp;
+-while (textline[i] == ' ' || textline[i] == '\t')
++while ((textline[i] == ' ' || textline[i] == '\t')  itextpos)
+   i++;
+ strcpy (cp, textline[i]);
+ info_ptr-text[j].text_length = strlen (cp);
+ j++;
+   } else {
+ j--;
++if ( info_ptr-text[j].text_length + textpos = 0 )
++  pm_error(allocation underflow);
+ cp = malloc (info_ptr-text[j].text_length + textpos);
++if ( cp == NULL )
++  pm_error(out of memory);
+ strcpy (cp, info_ptr-text[j].text);
+ strcat (cp, \n);
+ info_ptr-text[j].text = cp;
+ i = 0;
+-while (textline[i] == ' ' || textline[i] == '\t')
++while ((textline[i] == ' ' || textline[i] == '\t')  itextpos)
+ i++;
+ strcat (cp, textline[i]);
+ info_ptr-text[j].text_length = strlen (cp);
+--- netpbm-9.24/pnm/pnmtopng.c.pnmtopng-offbyone   2005-09-29 
10:58:32.0 +0200
 netpbm-9.24/pnm/pnmtopng.c 2005-11-17 17:02:58.0 +0100
+@@ -576,8 +576,8 @@ static int convertpnm (ifp, afp, tfp)
+   int alpha_rows;
+   int alpha_cols;
+   int alpha_can_be_transparency_index;
+-  gray *alphas_of_color[MAXCOLORS];
+-  int alphas_of_color_cnt[MAXCOLORS];
++  gray *alphas_of_color[MAXCOLORS+1];
++  int alphas_of_color_cnt[MAXCOLORS+1];
+   int alphas_first_index[MAXCOLORS+1];
+   int mapping[MAXCOLORS];
+   int colors;
+--- netpbm-9.24/pnm/pnmindex.debiansecurity2001-08-30 04:21:14.0 
+0200
 netpbm-9.24/pnm/pnmindex   2004-01-22 15:27:01.243659161 +0100
+@@ -24,10 +24,6 @@
+   exit 1
+ }
+ 
+-if [ $TMPDIRx = x ] ; then
+-TMPDIR=/tmp
+-fi
+-
+ while :; do
+ case $1 in
+ 
+@@ -94,8 +90,10 @@
+ fi
+ 
+ #tmpfile=`tempfile -p pi -m 600`
+-tmpfile=$TMPDIR/pi.tmp.$$
+-rm -f $tmpfile
++#tmpfile=$TMPDIR/pi.tmp.$$
++#rm -f $tmpfile
++tmpdir=$(mktemp -d /tmp/pi.) || exit 1 #219019
++tmpfile=$tmpdir/pi.tmp
+ maxformat=PBM
+ 
+ rowfiles=()
+@@ -105,7 +103,7 @@
+ 
+ if [ $titlex != x ] ; then
+ #rowfile=`tempfile -p pirow -m 600`
+-rowfile=$TMPDIR/pi.${row}.$$
++rowfile=$tmpdir/pi.${row}.$$
+ pbmtext $title  $rowfile
+ rowfiles=(${rowfiles[*]} $rowfile )
+ row=$(($row + 1))
+@@ -153,7 

[cvs] dists/10.4/unstable/main/finkinfo/graphics libtiff.info, 1.4, 1.5 libtiff.patch, 1.2, 1.3 netpbm.info, 1.2, 1.3 netpbm.patch, 1.1, 1.2 netpbm10.info, 1.4, 1.5 netpbm10.patch, 1.1, 1.2

2007-08-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics
In directory sc8-pr-cvs17:/tmp/cvs-serv2017

Modified Files:
libtiff.info libtiff.patch netpbm.info netpbm.patch 
netpbm10.info netpbm10.patch 
Log Message:
security fixes (thanks to Tomoaki Okayama)


Index: netpbm.patch
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/netpbm.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- netpbm.patch20 Jan 2006 20:26:46 -  1.1
+++ netpbm.patch29 Aug 2007 15:02:50 -  1.2
@@ -12,3 +12,535 @@
  #push(@Makefile_config, INSTALL = install\n);
  push(@Makefile_config, 'TIFFHDR_DIR = $(LOCALBASE)/include', \n);
  push(@Makefile_config, 'TIFFLIB_DIR = $(LOCALBASE)/lib', \n); 
+--- netpbm-9.24/pnm/pstopnm.c.CAN-2005-24712005-08-10 13:12:38.0 
+0200
 netpbm-9.24/pnm/pstopnm.c  2005-08-10 13:15:20.0 +0200
+@@ -480,7 +480,7 @@
+ 
+ sprintf(ghostscript_command,
+ gs -sDEVICE='%s' -sOutputFile='%s' -g'%dx%d' -r'%dx%d' 
+--q -dNOPAUSE -,
++-q -dNOPAUSE -dPARANOIDSAFER -,
+ ghostscript_device, outfile_arg, 
+ xsize, ysize, xres, yres);
+ 
+--- netpbm-9.24/pnm/pnmtopng.c.CVE-2005-3632   2005-12-05 16:05:17.0 
+0100
 netpbm-9.24/pnm/pnmtopng.c 2005-12-05 16:14:40.0 +0100
+@@ -205,7 +205,8 @@
+ FILE *tfp;
+ #endif
+ {
+-  char textline[256];
++#define MAXLINE 1024
++  char textline[MAXLINE];
+   int textpos;
+   int i, j;
+   int c;
+@@ -217,6 +218,7 @@
+   textpos = 0;
+   while ((c = getc (tfp)) != EOF) {
+ if (c != '\n'  c != EOF) {
++  if (textpos = MAXLINE) continue;
+   textline[textpos++] = c;
+ } else {
+   textline[textpos++] = '\0';
+@@ -227,33 +229,41 @@
+ else
+   info_ptr-text[j].compression = 0;
+ cp = malloc (textpos);
++if ( cp == NULL )
++  pm_error(out of memory);
+ info_ptr-text[j].key = cp;
+ i = 0;
+ if (textline[0] == '') {
+   i++;
+-  while (textline[i] != ''  textline[i] != '\n')
++  while (textline[i] != ''  textline[i] != '\n'  itextpos)
+ *(cp++) = textline[i++];
+   i++;
+ } else {
+-  while (textline[i] != ' '  textline[i] != '\t'  textline[i] != 
'\n')
++  while (textline[i] != ' '  textline[i] != '\t'  textline[i] != 
'\n'  itextpos)
+ *(cp++) = textline[i++];
+ }
+ *(cp++) = '\0';
+ cp = malloc (textpos);
++if ( cp == NULL )
++  pm_error(out of memory);
+ info_ptr-text[j].text = cp;
+-while (textline[i] == ' ' || textline[i] == '\t')
++while ((textline[i] == ' ' || textline[i] == '\t')  itextpos)
+   i++;
+ strcpy (cp, textline[i]);
+ info_ptr-text[j].text_length = strlen (cp);
+ j++;
+   } else {
+ j--;
++if ( info_ptr-text[j].text_length + textpos = 0 )
++  pm_error(allocation underflow);
+ cp = malloc (info_ptr-text[j].text_length + textpos);
++if ( cp == NULL )
++  pm_error(out of memory);
+ strcpy (cp, info_ptr-text[j].text);
+ strcat (cp, \n);
+ info_ptr-text[j].text = cp;
+ i = 0;
+-while (textline[i] == ' ' || textline[i] == '\t')
++while ((textline[i] == ' ' || textline[i] == '\t')  itextpos)
+ i++;
+ strcat (cp, textline[i]);
+ info_ptr-text[j].text_length = strlen (cp);
+--- netpbm-9.24/pnm/pnmtopng.c.pnmtopng-offbyone   2005-09-29 
10:58:32.0 +0200
 netpbm-9.24/pnm/pnmtopng.c 2005-11-17 17:02:58.0 +0100
+@@ -576,8 +576,8 @@ static int convertpnm (ifp, afp, tfp)
+   int alpha_rows;
+   int alpha_cols;
+   int alpha_can_be_transparency_index;
+-  gray *alphas_of_color[MAXCOLORS];
+-  int alphas_of_color_cnt[MAXCOLORS];
++  gray *alphas_of_color[MAXCOLORS+1];
++  int alphas_of_color_cnt[MAXCOLORS+1];
+   int alphas_first_index[MAXCOLORS+1];
+   int mapping[MAXCOLORS];
+   int colors;
+--- netpbm-9.24/pnm/pnmindex.debiansecurity2001-08-30 04:21:14.0 
+0200
 netpbm-9.24/pnm/pnmindex   2004-01-22 15:27:01.243659161 +0100
+@@ -24,10 +24,6 @@
+   exit 1
+ }
+ 
+-if [ $TMPDIRx = x ] ; then
+-TMPDIR=/tmp
+-fi
+-
+ while :; do
+ case $1 in
+ 
+@@ -94,8 +90,10 @@
+ fi
+ 
+ #tmpfile=`tempfile -p pi -m 600`
+-tmpfile=$TMPDIR/pi.tmp.$$
+-rm -f $tmpfile
++#tmpfile=$TMPDIR/pi.tmp.$$
++#rm -f $tmpfile
++tmpdir=$(mktemp -d /tmp/pi.) || exit 1 #219019
++tmpfile=$tmpdir/pi.tmp
+ maxformat=PBM
+ 
+ rowfiles=()
+@@ -105,7 +103,7 @@
+ 
+ if [ $titlex != x ] ; then
+ #rowfile=`tempfile -p pirow -m 600`
+-rowfile=$TMPDIR/pi.${row}.$$
++rowfile=$tmpdir/pi.${row}.$$
+ pbmtext $title  $rowfile
+ rowfiles=(${rowfiles[*]} $rowfile )
+ row=$(($row + 1))
+@@ -153,7 

[cvs] dists/10.4/stable/main/finkinfo/libs libdvdnav.info, NONE, 1.1 libdvdnav.patch, NONE, 1.1 libdvdnav2.info, 1.3, 1.4 libdvdnav2.patch, 1.1, NONE

2007-08-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs
In directory sc8-pr-cvs17:/tmp/cvs-serv8693

Modified Files:
libdvdnav2.info 
Added Files:
libdvdnav.info libdvdnav.patch 
Removed Files:
libdvdnav2.patch 
Log Message:
latest version to stable


--- NEW FILE: libdvdnav.patch ---
diff -ru libdvdnav-0.1.10.orig/src/dvdread/bswap.h 
libdvdnav-0.1.10/src/dvdread/bswap.h
--- libdvdnav-0.1.10.orig/src/dvdread/bswap.h   2004-01-11 16:43:13.0 
-0500
+++ libdvdnav-0.1.10/src/dvdread/bswap.h2006-03-02 20:38:09.0 
-0500
@@ -84,6 +84,12 @@
   (((x)  0xff00)  40) | \
   (((x)  0x00ff)  56))
 
+#elif defined(__APPLE__)
+#include libkern/OSByteOrder.h
+#define B2N_16(x) x = OSSwapInt16(x)
+#define B2N_32(x) x = OSSwapInt32(x)
+#define B2N_64(x) x = OSSwapInt64(x)
+
 #else
 
 /* If there isn't a header provided with your system with this functionality

--- NEW FILE: libdvdnav.info ---
Package: libdvdnav
Version: 0.1.10
Revision: 11
###
Depends: libdvdread4-shlibs, %N4-shlibs (= %v-%r)
BuildDepends: automake1.6, doxygen, libdvdread4
BuildDependsOnly: true
Conflicts: libdvdnav1, libdvdnav2 (= 0.1.10-1)
Replaces: libdvdnav1, libdvdnav2 (= 0.1.10-1)
###
Source: mirror:sourceforge:dvd/libdvdnav-%v.tar.gz
Source-MD5: c8ddee96ba1182d73447eaf0bb6fde81
# Patch enables building on Intel
Patch: %n.patch
###
ConfigureParams: --with-pic --enable-shared --enable-static 
--mandir=%i/share/man --infodir=%p/share/info --libexecdir=%p/lib
###
NoSetLDFLAGS: true
DocFiles: COPYING README
###
SplitOff: 
  Package: %N4-shlibs
  Depends: libdvdread4-shlibs
  Conflicts: libdvdnav1-shlibs
  Replaces: libdvdnav1-shlibs, libdvdnav2-shlibs (= 0.1.10-1)
  Files: 
lib/libdvdnav.*.dylib
  
  Shlibs: 
%p/lib/libdvdnav.4.dylib 5.0.0 libdvdnav4-shlibs (= 0.1.10-10)
  
  DocFiles: AUTHORS COPYING ChangeLog INSTALL NEWS README TODO

###
Description: DVD navigation Library based on Ogle-code
DescDetail: 
  This library is based on Ogle-code, but will be rewritten in the time
  comming. It's hosted on http://dvd.sourceforge.net/. Please report bugs
  to the developers mailinglist at mailto:[EMAIL PROTECTED]

  The library is currently used by the following projects:
menu - A simple example program to demonstrate some features
xine-dvdnav - A full-featuted DVD plugin for xine

###
License: GPL
Maintainer: Justin F. Hallett [EMAIL PROTECTED]
Homepage: http://dvd.sourceforge.net/


--- libdvdnav2.patch DELETED ---

Index: libdvdnav2.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/libdvdnav2.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libdvdnav2.info 13 Jan 2007 21:25:07 -  1.3
+++ libdvdnav2.info 29 Aug 2007 15:18:50 -  1.4
@@ -1,45 +1,35 @@
 Package: libdvdnav2
 Version: 0.1.10
-Revision: 2
-###
-Depends: libdvdread4-shlibs, %N-shlibs (= %v-%r)
-BuildDepends: doxygen, libdvdread4, libdvdcss
+Revision: 10
+Type: nosource
+BuildDepends: libdvdnav (= 0.1.10-11)
 BuildDependsOnly: true
 Conflicts: libdvdnav1
 Replaces: libdvdnav1
 ###
-Source: mirror:sourceforge:dvd/libdvdnav-%v.tar.gz
-Source-MD5: c8ddee96ba1182d73447eaf0bb6fde81
-Patch: %n.patch
-###
-###
-ConfigureParams: --with-pic --enable-shared --enable-static 
--mandir=%i/share/man --infodir=%p/share/info --libexecdir=%p/lib
+#Source: mirror:sourceforge:dvd/libdvdnav-%v.tar.gz
+#Source-MD5: c8ddee96ba1182d73447eaf0bb6fde81
 ###
-DocFiles: COPYING README
+CompileScript: echo no CompileScript needed
+InstallScript: 
+ install -d -m 755 %i/share/doc/dummy
+ touch %i/share/doc/dummy/%n %i/share/doc/dummy/%N-shlibs
+
 ###
 SplitOff: 
   Package: %N-shlibs
-  Depends: libdvdread4-shlibs
+  Depends: libdvdnav4-shlibs
   Conflicts: libdvdnav1-shlibs
-  replaces: libdvdnav1-shlibs
+  Replaces: libdvdnav1-shlibs
   Files: 
-lib/libdvdnav.*.dylib
-  
-  Shlibs: 
-%p/lib/libdvdnav.1.dylib 2.0.0 libdvdnav2-shlibs (= 0.1.3-1)
+share/doc/dummy/%N-shlibs
   
-  DocFiles: AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
 
 ###
-Description: DVD navigation Library based on Ogle-code
-DescDetail: 
-  This library is based on Ogle-code, but will be rewritten in the time
-  comming. It's hosted on http://dvd.sourceforge.net/. Please report bugs
-  to the developers mailinglist at mailto:[EMAIL PROTECTED]
-
-  The library is currently used by the following projects:
-menu - A simple example program to demonstrate some features
-xine-dvdnav - A full-featuted DVD plugin for xine
+Description: DVD navigation Library (dummy)
+DescPackaging: 
+  This package is a placeholder, kept for upgrading purposes. 
+  The real package is libdvdnav / libdvdnav4-shlibs.
 
 ###
 License: GPL


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now 

[cvs] dists/10.4/unstable/main/finkinfo/devel intltool-debian-10.5.info, NONE, 1.1

2007-08-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory sc8-pr-cvs17:/tmp/cvs-serv12199

Added Files:
intltool-debian-10.5.info 
Log Message:
We force a rebuild in 10.5 since /usr/bin/perl is different.


--- NEW FILE: intltool-debian-10.5.info ---
Package: intltool-debian
Version: 0.30+20040213
Revision: 102
Distribution: 10.5
Source: mirror:debian:pool/main/i/%n/%n_%v.tar.gz
Source-MD5: 23f80e05373b525fdcc5775d8dbbd68d
SourceDirectory: %n
Depends: gettext-bin
RuntimeVars: ac_cv_path_INTLTOOL_PERL: /usr/bin/perl
CompileScript: make prefix=%p
InstallScript: 
  make DESTDIR=%d prefix=%p install

DocFiles: AUTHORS debian/README.Debian  debian/changelog debian/copyright
Description: Help i18n of RFC822 compliant config files
DescDetail: 
  Intltool is a bunch of scripts written by the GNOME project to
  internationalize many different file formats.  This package is
  a slightly modified version which adds support for RFC822
  compliant config files, e.g. Debconf templates files.

DescPort: 
 We force a rebuild in 10.5 since /usr/bin/perl is different.

License: GPL
Maintainer: Chris Zubrzycki [EMAIL PROTECTED]
Homepage: http://packages.qa.debian.org/intltool-debian


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/stable/main/finkinfo/base debconf-10.5.info, NONE, 1.1 debconf.info, 1.3, 1.4 debconf.patch, 1.1, 1.2

2007-08-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/base
In directory sc8-pr-cvs17:/tmp/cvs-serv14225

Modified Files:
debconf.info debconf.patch 
Added Files:
debconf-10.5.info 
Log Message:
move to stable


Index: debconf.patch
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/base/debconf.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- debconf.patch   24 Jan 2006 03:04:08 -  1.1
+++ debconf.patch   29 Aug 2007 15:33:06 -  1.2
@@ -1,13 +1,13 @@
-diff -ruN debconf/Debconf/Client/ConfModule.pm 
debconf.new/Debconf/Client/ConfModule.pm
 debconf/Debconf/Client/ConfModule.pm   2001-11-17 13:36:37.0 
-0500
-+++ debconf.new/Debconf/Client/ConfModule.pm   2003-03-14 13:39:23.0 
-0500
-@@ -68,14 +68,14 @@
- =cut
- 
+diff -ruN debconf-1.4.51/Debconf/Client/ConfModule.pm 
debconf-1.4.51.new/Debconf/Client/ConfModule.pm
+--- debconf-1.4.51/Debconf/Client/ConfModule.pm2005-05-28 
20:18:12.0 -0400
 debconf-1.4.51.new/Debconf/Client/ConfModule.pm2005-06-19 
19:37:40.0 -0400
+@@ -71,14 +71,14 @@
  sub import {
[...1966 lines suppressed...]
-+++ debconf.new/samples/tutorial-back  2003-03-14 13:39:25.0 -0500
+diff -ruN debconf-1.4.51/samples/tutorial-back 
debconf-1.4.51.new/samples/tutorial-back
+--- debconf-1.4.51/samples/tutorial-back   2005-05-13 16:59:21.0 
-0400
 debconf-1.4.51.new/samples/tutorial-back   2005-06-19 19:37:41.0 
-0400
 @@ -1,7 +1,7 @@
  #!/bin/sh -e
  
@@ -1100,9 +1674,9 @@
  db_version 2.0
  
  # This conf script is capable of backing up
-diff -ruN debconf/transition_db.pl debconf.new/transition_db.pl
 debconf/transition_db.pl   2001-03-18 19:12:35.0 -0500
-+++ debconf.new/transition_db.pl   2003-03-14 13:39:25.0 -0500
+diff -ruN debconf-1.4.51/transition_db.pl debconf-1.4.51.new/transition_db.pl
+--- debconf-1.4.51/transition_db.pl2005-05-13 16:59:26.0 -0400
 debconf-1.4.51.new/transition_db.pl2005-06-19 19:37:41.0 
-0400
 @@ -6,7 +6,7 @@
  use Debconf::Question;
  use Debconf::Template;

--- NEW FILE: debconf-10.5.info ---
Package: debconf
Version: 1.4.51
Revision: 1218
BuildDepends: html2text, findutils, libgettext3-dev, po-debconf
Depends: dialog (= 0.9b-20020814-1024), %n-english | %n-i18n, gettext-tools
Distribution: 10.5
Type: perl
Source: mirror:debian:/pool/main/d/debconf/%n_%v.tar.gz
Source-MD5: 4ef37a523a300d2c2e339ffebc5ba18f
SourceDirectory: %n
PatchScript: sed 's|@FINKPREFIX@|%p|g'  %a/%n.patch | patch -p1
TarFilesRename: debconf/debconf$:debconf/debconf.tmp
#UpdatePOD: true
CompileScript: echo Nothing to see here...  set -e  /usr/bin/make

InstallScript: 
#!/bin/sh -ev

  export PERL5LIB=.

  mkdir -p %i/etc/apt/apt.conf.d
  cp debian/apt.conf %i/etc/apt/apt.conf.d/70debconf

  /usr/bin/make install prefix=%i install-utils
  /usr/bin/make install prefix=%i install-i18n
  /usr/bin/make install prefix=%i install-rest

  # Ok, move debconf to its correct name
  mv %i/bin/debconf.tmp %i/bin/debconf

  mkdir -p %d/DEBIAN
  po2debconf debian/templates  debian/templates.merged
  cp debian/config %d/DEBIAN
  cp debian/templates.merged %d/DEBIAN/templates

  # Install manpages
  mkdir -p %i/share/man/man1
  mkdir -p %i/share/man/man3
  mkdir -p %i/share/man/man5
  mkdir -p %i/share/man/man7
  mkdir -p %i/share/man/man8
  mkdir -p %i/share/man/fr/man1
  mkdir -p %i/share/man/fr/man3
  mkdir -p %i/share/man/fr/man5
  mkdir -p %i/share/man/fr/man7
  mkdir -p %i/share/man/fr/man8
  mkdir -p %i/share/man/pt_BR/man1
  mkdir -p %i/share/man/pt_BR/man3
  mkdir -p %i/share/man/pt_BR/man5
  mkdir -p %i/share/man/pt_BR/man7
  mkdir -p %i/share/man/pt_BR/man8

  mv doc/man/gen/*pt_BR.1* %i/share/man/pt_BR/man1
  mv doc/man/*pt_BR.3 %i/share/man/pt_BR/man3
  mv doc/man/*pt_BR.5 %i/share/man/pt_BR/man5
  mv doc/man/*pt_BR.7 %i/share/man/pt_BR/man7
  mv doc/man/gen/*pt_BR.8* %i/share/man/pt_BR/man8
  mv doc/man/gen/*fr.1* %i/share/man/fr/man1
  mv doc/man/*fr.3 doc/man/gen/*fr.3* %i/share/man/fr/man3
  mv doc/man/*fr.5 %i/share/man/fr/man5
  mv doc/man/*fr.7 %i/share/man/fr/man7
  mv doc/man/gen/*fr.8* %i/share/man/fr/man8
  mv doc/man/gen/*.1* %i/share/man/man1
  mv doc/man/*.3 doc/man/gen/*.3* %i/share/man/man3
  mv doc/man/*.5 %i/share/man/man5
  mv doc/man/*.7 %i/share/man/man7
  mv doc/man/gen/*.8* %i/share/man/man8


Splitoff: 
  Package: %N-english
  Conflicts: %N-i18n
  Replaces: %N-i18n
  Description: small footprint English-only debconf
  DescDetail: 
This package is an alternative to the debconf-i18n package,
intended for systems that are administered only in English, and
low-footprint systems. If you install this package, debconf will
not work properly in other languages, but you'll save half a
megabyte of disk space.
  
  DocFiles: doc/README debian/README.Debian  debian/changelog



[cvs] dists/10.4/stable/main/finkinfo/devel intltool-debian-10.5.info, NONE, 1.1 intltool-debian.info, NONE, 1.1 po-debconf.info, NONE, 1.1

2007-08-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel
In directory sc8-pr-cvs17:/tmp/cvs-serv14626

Added Files:
intltool-debian-10.5.info intltool-debian.info po-debconf.info 
Log Message:
move to stable


--- NEW FILE: intltool-debian-10.5.info ---
Package: intltool-debian
Version: 0.30+20040213
Revision: 102
Distribution: 10.5
Source: mirror:debian:pool/main/i/%n/%n_%v.tar.gz
Source-MD5: 23f80e05373b525fdcc5775d8dbbd68d
SourceDirectory: %n
Depends: gettext-bin
RuntimeVars: ac_cv_path_INTLTOOL_PERL: /usr/bin/perl
CompileScript: make prefix=%p
InstallScript: 
  make DESTDIR=%d prefix=%p install

DocFiles: AUTHORS debian/README.Debian  debian/changelog debian/copyright
Description: Help i18n of RFC822 compliant config files
DescDetail: 
  Intltool is a bunch of scripts written by the GNOME project to
  internationalize many different file formats.  This package is
  a slightly modified version which adds support for RFC822
  compliant config files, e.g. Debconf templates files.

DescPort: 
 We force a rebuild in 10.5 since /usr/bin/perl is different.

License: GPL
Maintainer: Chris Zubrzycki [EMAIL PROTECTED]
Homepage: http://packages.qa.debian.org/intltool-debian

--- NEW FILE: po-debconf.info ---
Package: po-debconf
Version: 0.8.23
Revision: 2
Depends: gettext-bin, intltool-debian
Type: perl
Source: mirror:debian:/pool/main/p/%n/%n_%v.tar.gz
Source-MD5: e7711e16eb97258e0800de4715b29c49
SourceDirectory: %n
PatchScript: perl -pi -e 's/\\$encto\ \\$f\ \-o \\$tmpfile\/\\$encto\ 
\\$f\ \ \\$tmpfile\/' po2debconf
CompileScript: 
  #!/bin/sh -ev

  make prefix=%p


InstallScript: 
  #!/bin/sh -ev

  mkdir -p %i/bin
  mkdir -p %i/share/%n
  mkdir -p %i/share/man/man1
  mkdir -p %i/share/man/man7

  install -m 0755 debconf2pot debconf-updatepo po2debconf debconf-gettextize 
%i/bin
  install -m 0755 podebconf-display-po podebconf-report-po %i/bin
  install -m 0644 encodings pot-header %i/share/%n

  ln -s %p/bin/debconf-updatepo %i/bin/debconf2po-update

  cp doc/*.1 doc/fr/*.fr.1 %i/share/man/man1
  cp doc/*.7 doc/fr/*.fr.7 %i/share/man/man7


DocFiles: README README-trans debian/README.Debian debian/changelog COPYING
Description: Manage translated Debconf templates files with gettext
DescDetail: 
  This package is an alternative to debconf-utils and provide tools
  to manage translated Debconf templates files with common gettext
  utilities.

License: GPL
Maintainer: Chris Zubrzycki [EMAIL PROTECTED]
Homepage: http://packages.debian.org/unstable/devel/po-debconf.html

--- NEW FILE: intltool-debian.info ---
Package: intltool-debian
Version: 0.30+20040213
Revision: 2
Source: mirror:debian:pool/main/i/%n/%n_%v.tar.gz
Source-MD5: 23f80e05373b525fdcc5775d8dbbd68d
SourceDirectory: %n
Depends: gettext-bin
RuntimeVars: ac_cv_path_INTLTOOL_PERL: /usr/bin/perl
CompileScript: make prefix=%p
InstallScript: 
  make DESTDIR=%d prefix=%p install

DocFiles: AUTHORS debian/README.Debian  debian/changelog debian/copyright
Description: Help i18n of RFC822 compliant config files
DescDetail: 
  Intltool is a bunch of scripts written by the GNOME project to
  internationalize many different file formats.  This package is
  a slightly modified version which adds support for RFC822
  compliant config files, e.g. Debconf templates files.

License: GPL
Maintainer: Chris Zubrzycki [EMAIL PROTECTED]
Homepage: http://packages.qa.debian.org/intltool-debian


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/stable/main/finkinfo/text html2text.info, NONE, 1.1 html2text.patch, NONE, 1.1

2007-08-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/text
In directory sc8-pr-cvs17:/tmp/cvs-serv14661

Added Files:
html2text.info html2text.patch 
Log Message:
move to stable


--- NEW FILE: html2text.info ---
Package: html2text
Version: 1.3.2a
Revision: 1022
Description: Advanced HTML to text converter
License: GPL
Maintainer: Chris Zubrzycki [EMAIL PROTECTED]
Source: ftp://ftp.ibiblio.org/pub/linux/apps/www/converters/%n-%v.tar.gz
Source-MD5: 6097fe07b948e142315749e6620c9cfc
Patch: %n.patch
GCC: 4.0
SetCC: gcc-4.0
SetCXX: g++-4.0
NoSetCXXFLAGS: true
SetCXXFLAGS: -DAUTO_PTR_BROKEN=1
InstallScript: 
  #!/bin/sh -ex
  INSTALL=install
  INSTALL_FILE=$INSTALL -p -m 644
  INSTALL_PROGRAM=$INSTALL -p -m 755
  INSTALL_DIR=$INSTALL -d -m 755
  $INSTALL_DIR %i/bin \
   %i/share/man/man1 \
   %i/share/man/man5
  $INSTALL_PROGRAM html2text %i/bin
  gunzip html2text.1.gz
  $INSTALL_FILE html2text.1 %i/share/man/man1
  gunzip html2textrc.5.gz
  $INSTALL_FILE html2textrc.5 %i/share/man/man5

DocFiles: CHANGES COPYING CREDITS INSTALL KNOWN_BUGS README TODO
DescDetail: 
 html2text was written because the author wasn't happy with the
 output of lynx -dump and so he wrote something better.

Homepage: http://userpage.fu-berlin.de/~mbayer/tools/html2text.html 

--- NEW FILE: html2text.patch ---
--- html2text-1.3.2a/configure.orig Wed May 25 00:37:00 2005
+++ html2text-1.3.2a/configure  Wed May 25 00:37:04 2005
@@ -19,7 +19,7 @@
 # Tue Nov 11 21:30:26 CET 2003
 
 
-echo='/bin/echo -e'
+echo='/bin/echo'
 
 rm -rf configure-tmp || exit 1;
 mkdir configure-tmp || exit 1;
@@ -30,7 +30,7 @@
 # $CXX
 #
 
-$echo 'Checking C++ compiler... \c';
+$echo 'Checking C++ compiler... ';
 cat EOF $tmp_file.C;
 #include iostream
 int main(int, char **) {
@@ -38,18 +38,21 @@
   return 0;
 }
 EOF
-CXX=unknown;
-for i in CC g++ cc $CC; do
+our_CXX=unknown;
+for i in $CXX $CXXFLAGS; do
   if $i -c $tmp_file.C 2/dev/null; then
-CXX=$i;
+echo   ok $i;
+our_CXX=$i;
 break;
+  else
+echo   no $i;
   fi;
 done;
+CXX=$our_CXX;
 if test $CXX = unknown; then
   $echo Error: Could not find a working C++ compiler.;
   exit 1;
 fi;
-$echo use \$CXX\;
 
 #
 # $SYS_POLL_MISSING


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/stable/main/finkinfo/sci cernlib2005.info,1.3,1.4

2007-08-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv17036

Modified Files:
cernlib2005.info 
Log Message:
limit the Distribution


Index: cernlib2005.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/cernlib2005.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- cernlib2005.info6 Jun 2007 12:28:51 -   1.3
+++ cernlib2005.info29 Aug 2007 15:39:30 -  1.4
@@ -3,6 +3,7 @@
 Type: fortran (g77 gfortran)
 Version: 2005
 Revision: 2010
+Distribution: 10.3, 10.4
 Description: Paw and other basic executables
 Architecture: (%type_pkg[fortran] = g77) powerpc
 Depends: x11


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/sci cernlib2005.info,1.4,1.5

2007-08-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv17136

Modified Files:
cernlib2005.info 
Log Message:
limit the Distribution


Index: cernlib2005.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/cernlib2005.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- cernlib2005.info27 Jan 2007 20:01:19 -  1.4
+++ cernlib2005.info29 Aug 2007 15:40:06 -  1.5
@@ -3,6 +3,7 @@
 Type: fortran (g77 gfortran)
 Version: 2005
 Revision: 2010
+Distribution: 10.3, 10.4
 Description: Paw and other basic executables
 Architecture: (%type_pkg[fortran] = g77) powerpc
 Depends: x11


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/sci cernlib2005-10.5.info, NONE, 1.1

2007-08-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv17519

Added Files:
cernlib2005-10.5.info 
Log Message:
variant for 10.5


--- NEW FILE: cernlib2005-10.5.info ---
Info3: 
Package: cernlib2005-%type_pkg[fortran]
Type: fortran (g77 gfortran)
Version: 2005
Revision: 2010
Distribution: 10.5
Description: Paw and other basic executables
Architecture: (%type_pkg[fortran] = g77) powerpc
Depends: x11
BuildDepends: 
  x11-dev, 
  openmotif3,
  (%type_pkg[fortran] = g77)  g77,
  (%type_pkg[fortran] = gfortran) gcc42

Conflicts: 
  cernlib2002, 
  cernlib2003, 
  cernlib (= 2003-22), 
  cernlib2005, 
  cernlib2005-g77,
  cernlib2005-gfortran

Replaces:  
  cernlib2002, 
  cernlib2003, 
  cernlib (= 2003-22), 
  cernlib2005, 
  cernlib2005-g77,
  cernlib2005-gfortran

Provides: cernlib, cernlib2005
CustomMirror: 
Primary: http://wwwinfo.cern.ch/asd/cernlib/download/

Source: mirror:custom:%v_source/tar/src_Imakefile.tar.gz
SourceRename: cernlib-%v_Imakefile.tar.gz
Source2: mirror:custom:%v_source/tar/src_config.tar.gz
Source2Rename: cernlib-%v_config.tar.gz
Source3: mirror:custom:%v_source/tar/src_include.tar.gz
Source3Rename: cernlib-%v_include.tar.gz
Source4: mirror:custom:%v_source/tar/src_cfortran.tar.gz
Source4Rename: cernlib-%v_cfortran.tar.gz
Source5: mirror:custom:%v_source/tar/src_scripts.tar.gz
Source5Rename: cernlib-%v_scripts.tar.gz
Source6: mirror:custom:%v_source/tar/src_packlib.tar.gz
Source6Rename: cernlib-%v_packlib.tar.gz
Source7: mirror:custom:%v_source/tar/src_pawlib.tar.gz
Source7Rename: cernlib-%v_pawlib.tar.gz
Source8: mirror:custom:%v_source/tar/src_phtools.tar.gz
Source8Rename: cernlib-%v_phtools.tar.gz
Source9: mirror:custom:%v_source/tar/src_mclibs.tar.gz
Source9Rename: cernlib-%v_mclibs.tar.gz
Source10: mirror:custom:%v_source/tar/src_mathlib.tar.gz
Source10Rename: cernlib-%v_mathlib.tar.gz
Source11: mirror:custom:%v_source/tar/src_graflib.tar.gz
Source11Rename: cernlib-%v_graflib.tar.gz
Source12: mirror:custom:%v_source/tar/src_geant321.tar.gz
Source12Rename: cernlib-%v_geant321.tar.gz
Source13: mirror:custom:%v_source/tar/src_patchy.tar.gz
Source13Rename: cernlib-%v_patchy.tar.gz
Source14: http://www-d0.fnal.gov/~mommsen/fink/cernlib2005-%r.patch.tgz
Source-MD5: 03bfd1239e57a23ab087bf29fe48c8a8
Source2-MD5: b72b89cb3a7f7c592d28b992c95b4eff
Source3-MD5: 9ebd72a2b6e5349b25fc93e7b20c172a
Source4-MD5: 9e686519ae3a52344222b21c9444ddd6
Source5-MD5: b30b121167ddf6508c22fc25a4272276
Source6-MD5: 9e6423a947496ad2848ad40a59b61b21
Source7-MD5: 4addfdd0524a8f0ca3469499f92a54ba
Source8-MD5: f215b9adba3cfb3be4bd74d624f00d32
Source9-MD5: dc3ab13c8a89f398c20219abaabd1eea
Source10-MD5: 0ec66e6d4920af7b4c73fd3b065a
Source11-MD5: 37cd64d0219e947eaace165cb5cf040b
Source12-MD5: f8726e20da75b99320deed00fb557a0d
Source13-MD5: fd20e80b3f58fc88168bcd6ce701f999
Source14-MD5: 1638ebee5ffc4a86bbfb5abeaaf41dcb
SourceDirectory: %v/src
PatchScript: 
  #!/bin/sh -ev
  if [ %m == powerpc ] ; 
then ARCH=PPC ; 
else ARCH=I386 ;
  fi
  sed s|@PREFIX@|%p|g  ../../%n.patch | sed s|@ARCH@|${ARCH}|g | patch -p1
  patch -p1  ../../cernlib2005.patch
  perl -pi -e s|#include stdio.h|#include stdio.h\n#define L_cuserid   
9   /* size for cuserid(); UT_NAMESIZE + 1 */| packlib/cuserid/cuserid.c
  perl -pi -e s|#includestdio.h|#includestdio.h\n#define 
L_cuserid   9   /* size for cuserid(); UT_NAMESIZE + 1 */| 
pawlib/paw/cpaw/bugrep.c

CompileScript: 
  #!/bin/sh -ev
  mkdir lib
  mkdir bin
  export CERN=%b/cernlib
  export CERN_LEVEL=%v
  export CERN_ROOT=${CERN}/${CERN_LEVEL}
  export PATH=${CERN_ROOT}/bin:${PATH}
  export CVSCOSRC=%b
  export HAVE_MOTIF=yes
  ${CVSCOSRC}/config/imake_boot
  make bin/kuipc
  make scripts/Makefile
  (cd scripts; make install.bin) || exit 1
  make
  (cd packlib; make install.bin) || exit 1
  (cd graflib; make install.bin) || exit 1
  (cd pawlib; make install.bin) || exit 1
  make install.include CERN_INCLUDEDIR=${CERN_ROOT}/include

InstallScript: 
  install -d %i/bin
  install -m 755 cernlib/%v/bin/* %i/bin

InfoTest: 
  TestSuiteSize: large
  TestScript: 
#!/bin/sh -ev
pwd
export CERN=%b/cernlib
export CERN_LEVEL=%v
export CERN_ROOT=${CERN}/${CERN_LEVEL}
export PATH=${CERN_ROOT}/bin:${PATH}
export CVSCOSRC=%b
cd packlib
( make test | /usr/bin/tee %b/test.log 21 ) || exit 2
cd ../mathlib
( make test 21 | /usr/bin/tee -a %b/test.log ) || exit 2
cd ../phtools
( make test 21 | /usr/bin/tee -a %b/test.log ) || exit 2
cd ../mclibs
( make test 21 | /usr/bin/tee -a %b/test.log ) || exit 2
cd ../geant321
( make test 21 | /usr/bin/tee -a %b/test.log ) || exit 2
#The following tests need user interaction (and a runnng X11)
#cd ../graflib/higz; make examples/Makefile
#cd examples; make higzex
#./higzex
#cd ../../../pawlib/paw/demo
#paw all.kumac
if [ `grep -c make: \*\*\* %b/test.log` -ne 0 ] ; then exit 2 ; 

[cvs] dists/10.4/stable/main/finkinfo/sci cernlib2005-10.5.info, NONE, 1.1

2007-08-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv17911

Added Files:
cernlib2005-10.5.info 
Log Message:
variant for 10.5


--- NEW FILE: cernlib2005-10.5.info ---
Info3: 
Package: cernlib2005-%type_pkg[fortran]
Type: fortran (g77 gfortran)
Version: 2005
Revision: 2010
Distribution: 10.5
Description: Paw and other basic executables
Architecture: (%type_pkg[fortran] = g77) powerpc
Depends: x11
BuildDepends: 
  x11-dev, 
  openmotif3,
  (%type_pkg[fortran] = g77)  g77,
  (%type_pkg[fortran] = gfortran) gcc42

Conflicts: 
  cernlib2002, 
  cernlib2003, 
  cernlib (= 2003-22), 
  cernlib2005, 
  cernlib2005-g77,
  cernlib2005-gfortran

Replaces:  
  cernlib2002, 
  cernlib2003, 
  cernlib (= 2003-22), 
  cernlib2005, 
  cernlib2005-g77,
  cernlib2005-gfortran

Provides: cernlib, cernlib2005
CustomMirror: 
Primary: http://wwwinfo.cern.ch/asd/cernlib/download/

Source: mirror:custom:%v_source/tar/src_Imakefile.tar.gz
SourceRename: cernlib-%v_Imakefile.tar.gz
Source2: mirror:custom:%v_source/tar/src_config.tar.gz
Source2Rename: cernlib-%v_config.tar.gz
Source3: mirror:custom:%v_source/tar/src_include.tar.gz
Source3Rename: cernlib-%v_include.tar.gz
Source4: mirror:custom:%v_source/tar/src_cfortran.tar.gz
Source4Rename: cernlib-%v_cfortran.tar.gz
Source5: mirror:custom:%v_source/tar/src_scripts.tar.gz
Source5Rename: cernlib-%v_scripts.tar.gz
Source6: mirror:custom:%v_source/tar/src_packlib.tar.gz
Source6Rename: cernlib-%v_packlib.tar.gz
Source7: mirror:custom:%v_source/tar/src_pawlib.tar.gz
Source7Rename: cernlib-%v_pawlib.tar.gz
Source8: mirror:custom:%v_source/tar/src_phtools.tar.gz
Source8Rename: cernlib-%v_phtools.tar.gz
Source9: mirror:custom:%v_source/tar/src_mclibs.tar.gz
Source9Rename: cernlib-%v_mclibs.tar.gz
Source10: mirror:custom:%v_source/tar/src_mathlib.tar.gz
Source10Rename: cernlib-%v_mathlib.tar.gz
Source11: mirror:custom:%v_source/tar/src_graflib.tar.gz
Source11Rename: cernlib-%v_graflib.tar.gz
Source12: mirror:custom:%v_source/tar/src_geant321.tar.gz
Source12Rename: cernlib-%v_geant321.tar.gz
Source13: mirror:custom:%v_source/tar/src_patchy.tar.gz
Source13Rename: cernlib-%v_patchy.tar.gz
Source14: http://www-d0.fnal.gov/~mommsen/fink/cernlib2005-%r.patch.tgz
Source-MD5: 03bfd1239e57a23ab087bf29fe48c8a8
Source2-MD5: b72b89cb3a7f7c592d28b992c95b4eff
Source3-MD5: 9ebd72a2b6e5349b25fc93e7b20c172a
Source4-MD5: 9e686519ae3a52344222b21c9444ddd6
Source5-MD5: b30b121167ddf6508c22fc25a4272276
Source6-MD5: 9e6423a947496ad2848ad40a59b61b21
Source7-MD5: 4addfdd0524a8f0ca3469499f92a54ba
Source8-MD5: f215b9adba3cfb3be4bd74d624f00d32
Source9-MD5: dc3ab13c8a89f398c20219abaabd1eea
Source10-MD5: 0ec66e6d4920af7b4c73fd3b065a
Source11-MD5: 37cd64d0219e947eaace165cb5cf040b
Source12-MD5: f8726e20da75b99320deed00fb557a0d
Source13-MD5: fd20e80b3f58fc88168bcd6ce701f999
Source14-MD5: 1638ebee5ffc4a86bbfb5abeaaf41dcb
SourceDirectory: %v/src
PatchScript: 
  #!/bin/sh -ev
  if [ %m == powerpc ] ; 
then ARCH=PPC ; 
else ARCH=I386 ;
  fi
  sed s|@PREFIX@|%p|g  ../../%n.patch | sed s|@ARCH@|${ARCH}|g | patch -p1
  patch -p1  ../../cernlib2005.patch
  perl -pi -e s|#include stdio.h|#include stdio.h\n#define L_cuserid   
9   /* size for cuserid(); UT_NAMESIZE + 1 */| packlib/cuserid/cuserid.c
  perl -pi -e s|#includestdio.h|#includestdio.h\n#define 
L_cuserid   9   /* size for cuserid(); UT_NAMESIZE + 1 */| 
pawlib/paw/cpaw/bugrep.c

CompileScript: 
  #!/bin/sh -ev
  mkdir lib
  mkdir bin
  export CERN=%b/cernlib
  export CERN_LEVEL=%v
  export CERN_ROOT=${CERN}/${CERN_LEVEL}
  export PATH=${CERN_ROOT}/bin:${PATH}
  export CVSCOSRC=%b
  export HAVE_MOTIF=yes
  ${CVSCOSRC}/config/imake_boot
  make bin/kuipc
  make scripts/Makefile
  (cd scripts; make install.bin) || exit 1
  make
  (cd packlib; make install.bin) || exit 1
  (cd graflib; make install.bin) || exit 1
  (cd pawlib; make install.bin) || exit 1
  make install.include CERN_INCLUDEDIR=${CERN_ROOT}/include

InstallScript: 
  install -d %i/bin
  install -m 755 cernlib/%v/bin/* %i/bin

InfoTest: 
  TestSuiteSize: large
  TestScript: 
#!/bin/sh -ev
pwd
export CERN=%b/cernlib
export CERN_LEVEL=%v
export CERN_ROOT=${CERN}/${CERN_LEVEL}
export PATH=${CERN_ROOT}/bin:${PATH}
export CVSCOSRC=%b
cd packlib
( make test | /usr/bin/tee %b/test.log 21 ) || exit 2
cd ../mathlib
( make test 21 | /usr/bin/tee -a %b/test.log ) || exit 2
cd ../phtools
( make test 21 | /usr/bin/tee -a %b/test.log ) || exit 2
cd ../mclibs
( make test 21 | /usr/bin/tee -a %b/test.log ) || exit 2
cd ../geant321
( make test 21 | /usr/bin/tee -a %b/test.log ) || exit 2
#The following tests need user interaction (and a runnng X11)
#cd ../graflib/higz; make examples/Makefile
#cd examples; make higzex
#./higzex
#cd ../../../pawlib/paw/demo
#paw all.kumac
if [ `grep -c make: \*\*\* %b/test.log` -ne 0 ] ; then exit 2 ; 

[cvs] dists/10.4/unstable/main/finkinfo/graphics gd2.info,1.8,1.9

2007-08-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics
In directory sc8-pr-cvs17:/tmp/cvs-serv310

Modified Files:
gd2.info 
Log Message:
add missing BuildDepends


Index: gd2.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/gd2.info,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- gd2.info22 Jun 2007 18:23:02 -  1.8
+++ gd2.info29 Aug 2007 17:27:18 -  1.9
@@ -2,7 +2,7 @@
 Version: 2.0.35
 Revision: 1
 Depends: %N-shlibs (= %v-%r)
-BuildDepends: libpng3, libjpeg (= 6b-3), fink (= 0.9.9-1), x11, 
libiconv-dev, x11-dev, autoconf (= 2.60-1)
+BuildDepends: libpng3, libjpeg (= 6b-3), fink (= 0.9.9-1), x11, 
libiconv-dev, x11-dev, autoconf (= 2.60-1), libtool14
 Conflicts: gd, gd2-nox, gd209
 Replaces: gd, gd2-nox, gd209, %N-bin ( 2.0.33-3)
 Source: http://www.libgd.org/releases/gd-%v.tar.bz2


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/sci rpy-py.info,1.6,1.7

2007-08-29 Thread Jeff Whitaker
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv3676

Modified Files:
rpy-py.info 
Log Message:
new upstream version (now supports numpy)


Index: rpy-py.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/rpy-py.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- rpy-py.info 16 Jun 2007 22:30:55 -  1.6
+++ rpy-py.info 28 Aug 2007 12:05:12 -  1.7
@@ -2,14 +2,14 @@
 
 Package: rpy-py%type_pkg[python]
 Version: 1.0
-Revision: 1
+Revision: 2
 Distribution: (%type_pkg[python] = 23) 10.3, (%type_pkg[python] = 23) 10.4
 GCC: 4.0
 Type: python (2.3 2.4 2.5)
 Maintainer: Jeffrey Whitaker [EMAIL PROTECTED]
-Depends: python%type_pkg[python], numeric-py%type_pkg[python], r-base (= 
2.3.0-1002)
-Source: mirror:sourceforge:rpy/rpy-%v-RC1.tar.gz
-Source-MD5: d7ba39d173329bb08fdcca047ce29155
+Depends: python%type_pkg[python], r-base (= 2.3.0-1002), 
scipy-core-py%type_pkg[python] (= 1.0.1-1)
+Source: mirror:sourceforge:rpy/rpy-%v-RC3.tar.gz
+Source-MD5: 92bc13f5dfd31bd6ab92c834e845ed4c
 #Patch: %{ni}.patch
 CompileScript: %p/bin/python%type_raw[python] setup.py build
 InstallScript: 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink/perlmod/Fink ChangeLog, 1.1484, 1.1485 Engine.pm, 1.409, 1.410

2007-08-29 Thread Benjamin Reed
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs17:/tmp/cvs-serv2847/perlmod/Fink

Modified Files:
ChangeLog Engine.pm 
Log Message:
fink list --format=dotty, this has been sitting in my fink tree for a bit :)

Index: Engine.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/Engine.pm,v
retrieving revision 1.409
retrieving revision 1.410
diff -u -d -r1.409 -r1.410
--- Engine.pm   18 Jun 2007 22:12:48 -  1.409
+++ Engine.pm   28 Aug 2007 13:23:10 -  1.410
@@ -425,7 +425,7 @@
 sub do_real_list {
my ($pattern, @allnames, @selected);
my ($formatstr, $desclen, $name, $section, $maintainer);
-   my ($buildonly);
+   my ($buildonly, $format);
my %options =
(
 installedstate = 0
@@ -440,7 +440,7 @@
use Getopt::Long;
$formatstr = %s%-15.15s%-11.11s%s\n;
$desclen = 43;
-   
+   $format = 'table';

my @options = (
[ 'width|w=s'   = \$width,
@@ -449,6 +449,8 @@
'set the width based on the terminal width.', 'NUM' ],
[ 'tab|t'   = \$dotab,
'Outputs the list with tabs as field delimiter.' ],
+   [ 'format|f=s'  = \$format,
+   'The output format.  (default: table)' ],
);
 
if ($cmd eq list) {
@@ -542,6 +544,12 @@
}
}

+   if ($format eq 'dotty') {
+   print digraph packages {\n;
+   print concentrate=true;\n;
+   print size=\30,40\;\n;
+   }
+
my $reload_disable_save = Fink::Status-is_reload_disabled();  # save 
previous setting
Fink::Status-disable_reload(1);  # don't keep stat()ing status db
foreach my $pname (sort @selected) {
@@ -605,14 +613,32 @@
next unless $ok;
}   
 
+   my $dispname = $pname;
if ($namelen  length($pname)  $namelen) {
# truncate pkg name if wider than its field
-   $pname = substr($pname, 0, $namelen - 3);
+   $dispname = substr($pname, 0, $namelen - 3);
}
 
-   printf $formatstr,
-   $iflag, $pname, $lversion, $description;
+   if ($format eq 'dotty') {
+   print \$pname\ [shape=box];\n;
+   if (ref $vo) {
+   for my $dep (@{$vo-get_depends()}) {
+   for my $subdep (@$dep) {
+   $subdep =~ s/^(\S+).*?$/$1/;
+   print \$pname\ - 
\$subdep\;\n;
+   }
+   }
+   }
+   } else {
+   printf $formatstr,
+   $iflag, $pname, $lversion, $description;
+   }
}
+
+   if ($format eq 'dotty') {
+   print }\n;
+   }
+
Fink::Status-disable_reload($reload_disable_save);  # restore previous 
setting
 }
 

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.1484
retrieving revision 1.1485
diff -u -d -r1.1484 -r1.1485
--- ChangeLog   1 Aug 2007 15:39:27 -   1.1484
+++ ChangeLog   28 Aug 2007 13:23:10 -  1.1485
@@ -1,3 +1,7 @@
+2007-08-02  Benjamin Reed  [EMAIL PROTECTED]
+
+   * Engine.pm: Implement fink list --format=dotty.
+
 2007-08-01  Benjamin Reed  [EMAIL PROTECTED]
 
* Validation.pm: Handle /usr/X11 packages properly.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/sci octave-forge.info, 1.13, 1.14

2007-08-29 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv17516

Modified Files:
octave-forge.info 
Log Message:
New upstream version that gets along with newest Octave.

Index: octave-forge.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/octave-forge.info,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- octave-forge.info   29 Aug 2007 00:44:05 -  1.13
+++ octave-forge.info   29 Aug 2007 20:56:53 -  1.14
@@ -1,5 +1,5 @@
 Package: octave-forge
-Version: 20070526
+Version: 20070821
 Revision: 1001
 Maintainer: Corey Halpin [EMAIL PROTECTED]
 BuildDepends: 
@@ -15,21 +15,21 @@
   qhull, readline5-shlibs (= 5.0-1004), x11
 
 Source: mirror:sourceforge:octave/%n-bundle-%v.tar.gz
-Source-MD5: 1aca7ea364c80d73378b0d4d1eeab059
+Source-MD5: b7653a0bb693e534e2155e4e99d3029a
 PatchScript: 
 #!/bin/sh -ev
   cd main
-  tar -zxf optiminterp-0.2.2.tar.gz
-  rm optiminterp-0.2.2.tar.gz
+  tar -zxf optiminterp-0.2.3.tar.gz
+  rm optiminterp-0.2.3.tar.gz
   # the underscore turns F77_FUNC in disarray, and if using F77_FUNC_ instead,
   # there are other occurences of the symbol that would need an appended 
underscore..
-  perl -pi -e 's,optiminterp_wrapper,optiminterpwrapper,; 
s,OPTIMINTERP_WRAPPER,OPTIMINTERPWRAPPER,' optiminterp-0.2.2/src/optiminterp*
-  tar -zcf optiminterp-0.2.2.tar.gz optiminterp-0.2.2
-  rm -fR optiminterp-0.2.2
+  perl -pi -e 's,optiminterp_wrapper,optiminterpwrapper,; 
s,OPTIMINTERP_WRAPPER,OPTIMINTERPWRAPPER,' optiminterp-0.2.3/src/optiminterp*
+  tar -zcf optiminterp-0.2.3.tar.gz optiminterp-0.2.3
+  rm -fR optiminterp-0.2.3
   # Ginac library or headers not found _ skip this
   rm symbolic-*
   cd -
-  rm extra/{java,xraylib}-* nonfree/arpack-*
+  rm extra/{java,jhandles,xraylib}-* nonfree/arpack-*
 
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/kde komparator.info,1.2,1.3

2007-08-29 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde
In directory sc8-pr-cvs17:/tmp/cvs-serv27781/unstable/main/finkinfo/kde

Modified Files:
komparator.info 
Log Message:
new version

Index: komparator.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde/komparator.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- komparator.info 14 May 2007 16:47:59 -  1.2
+++ komparator.info 29 Aug 2007 21:21:30 -  1.3
@@ -1,16 +1,16 @@
 Package: komparator
-Version: 0.5
-Revision: 1003
+Version: 0.6
+Revision: 1002
 Source: mirror:sourceforge:%n/%n-%v.tar.bz2
-Depends: freetype219-shlibs, kdelibs3-unified-shlibs (= 3.4.3-1021), 
libart2-shlibs, libiconv, libidn-shlibs, libpng3-shlibs, qt3-shlibs, x11, 
x11-shlibs
-BuildDepends: kdelibs3-unified-dev (= 3.4.3-1021), x11-dev, libiconv-dev, 
freetype219, gettext-tools, qt3, libart2, libidn, libpng3, arts-dev, 
libxml2-bin, libjpeg
+Depends: freetype219-shlibs, kdelibs3-unified-shlibs (= 3.4.3-1021), 
libart2-shlibs, libiconv, libidn-shlibs, libpng3-shlibs, qt3-shlibs, x11, 
x11-shlibs, libgettext3-shlibs
+BuildDepends: kdelibs3-unified-dev (= 3.4.3-1021), x11-dev, libiconv-dev, 
freetype219, gettext-tools, qt3, libart2, libidn, libpng3, arts-dev, 
libxml2-bin, libjpeg, libgettext3-dev
 Recommends: kdebase3-unified
 GCC: 4.0
 Maintainer: Jack Fink [EMAIL PROTECTED]
 Homepage: http://komparator.sourceforge.net
 License: GPL
-Description: KDE tool for comparing directory contents
-Source-MD5: 6042502877afe1d4f4b9796bad69044c
+Description: KDE - tool for comparing directory contents
+Source-MD5: 143c8012c82e5b604d6ef1d977494fd5
 SourceDirectory: %n-%v
 ConfigureParams: --mandir=%{i}/share/man --with-extra-libs=%{p}/lib 
--with-extra-includes=%{p}/include --disable-dependency-tracking
 SetLDFLAGS: -L%{p}/lib/freetype219/lib


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.3/unstable/main/finkinfo/web dillo.info,1.10,1.11

2007-08-29 Thread Tomoaki Okayama
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/web
In directory sc8-pr-cvs17:/tmp/cvs-serv11807/10.3/unstable/main/finkinfo/web

Modified Files:
dillo.info 
Log Message:
make install prefix=%i does not seem to install dillo correctly,
use make install DESTDIR=%d instead.


Index: dillo.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/web/dillo.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- dillo.info  26 Apr 2007 18:15:31 -  1.10
+++ dillo.info  30 Aug 2007 00:55:34 -  1.11
@@ -1,6 +1,6 @@
 Package: dillo
 Version: 0.8.6
-Revision: 3
+Revision: 4
 BuildDepends: libjpeg, libpng3, gtk+, glib, libgettext3-dev, gettext-bin, 
gettext-tools, libiconv-dev, x11-dev, xft2-dev, system-openssl-dev
 Depends: gtk+-shlibs, libjpeg-shlibs, libpng3-shlibs, glib-shlibs, 
libgettext3-shlibs, libiconv, x11-shlibs, xft2-shlibs
 Conflicts: dillo-i18n ( = 0.8.5-1 )
@@ -24,6 +24,7 @@
 PATH=%p/lib/xft2/bin:$PATH --enable-anti-alias\
 LIBPTHREAD_LIBS=-lpthread --enable-ssl
 
+InstallScript: make install DESTDIR=%d
 DocFiles: ABOUT-NLS ChangeLog* INSTALL README COPYING AUTHORS NEWS doc/*.txt
 Description: Small simple web browser with i18n support
 DescPackaging: 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/web dillo.info,1.4,1.5

2007-08-29 Thread Tomoaki Okayama
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/web
In directory sc8-pr-cvs17:/tmp/cvs-serv11807/10.4/unstable/main/finkinfo/web

Modified Files:
dillo.info 
Log Message:
make install prefix=%i does not seem to install dillo correctly,
use make install DESTDIR=%d instead.


Index: dillo.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/web/dillo.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- dillo.info  26 Apr 2007 18:15:31 -  1.4
+++ dillo.info  30 Aug 2007 00:55:34 -  1.5
@@ -1,6 +1,6 @@
 Package: dillo
 Version: 0.8.6
-Revision: 3
+Revision: 4
 BuildDepends: libjpeg, libpng3, gtk+, glib, libgettext3-dev, gettext-bin, 
gettext-tools, libiconv-dev, x11-dev, xft2-dev, system-openssl-dev
 Depends: gtk+-shlibs, libjpeg-shlibs, libpng3-shlibs, glib-shlibs, 
libgettext3-shlibs, libiconv, x11-shlibs, xft2-shlibs
 Conflicts: dillo-i18n ( = 0.8.5-1 )
@@ -24,6 +24,7 @@
 PATH=%p/lib/xft2/bin:$PATH --enable-anti-alias\
 LIBPTHREAD_LIBS=-lpthread --enable-ssl
 
+InstallScript: make install DESTDIR=%d
 DocFiles: ABOUT-NLS ChangeLog* INSTALL README COPYING AUTHORS NEWS doc/*.txt
 Description: Small simple web browser with i18n support
 DescPackaging: 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods webpy-py.info, NONE, 1.1

2007-08-29 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory sc8-pr-cvs17:/tmp/cvs-serv13339

Added Files:
webpy-py.info 
Log Message:
New from tracker
http://sourceforge.net/tracker/index.php?func=detailaid=1779168group_id=17203atid=414256

--- NEW FILE: webpy-py.info ---
Info2: 
Package: webpy-py%type_pkg[python]
Version: 0.21
Revision: 1
Distribution: (%type_pkg[python] = 23) 10.3, (%type_pkg[python] = 23) 10.4
Type: python (2.3 2.4 2.5)

Depends: python%type_pkg[python]

Source: http://webpy.org/static/web.py-%v.tar.gz
Source-MD5: 9877a65a31bd97f649562ceab123995d

SourceDirectory: webpy

CompileScript: %p/bin/python%type_raw[python] setup.py build 

InstallScript: %p/bin/python%type_raw[python] setup.py install --root=%d

Description: Python web framework

DescDetail:  
web.py is a web framework for python that is as simple as it is powerful. 
web.py is in the public domain; you can use it for whatever purpose with 
absolutely no restrictions.


Homepage: http://webpy.org/

License: Public Domain
Maintainer: Pepe Barbe [EMAIL PROTECTED]

#Info2



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/text idnits.info,1.13,1.14

2007-08-29 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/text
In directory sc8-pr-cvs17:/tmp/cvs-serv17167

Modified Files:
idnits.info 
Log Message:
Update from tracker
http://sourceforge.net/tracker/index.php?func=detailaid=1779998group_id=17203atid=414256

Index: idnits.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/text/idnits.info,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- idnits.info 19 Jul 2007 00:39:19 -  1.13
+++ idnits.info 30 Aug 2007 01:08:26 -  1.14
@@ -1,8 +1,8 @@
 Package: idnits
-Version: 2.04.12
+Version: 2.04.14
 Revision: 1
 Source: http://tools.ietf.org/tools/%n/%n-%v.tgz
-Source-MD5: 874b6b41f2f0253d02c14f48ccb2ad84
+Source-MD5: 4a127b1f74b6e16770589fc506805ca9
 
 Maintainer: Lars Eggert [EMAIL PROTECTED]
 HomePage: http://tools.ietf.org/tools/idnits/


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink/perlmod/Fink ChangeLog, 1.1486, 1.1487 PkgVersion.pm, 1.595, 1.596

2007-08-29 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs17:/tmp/cvs-serv2367

Modified Files:
ChangeLog PkgVersion.pm 
Log Message:
parameter-passing and doc cleanups


Index: PkgVersion.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/PkgVersion.pm,v
retrieving revision 1.595
retrieving revision 1.596
diff -u -d -r1.595 -r1.596
--- PkgVersion.pm   28 Aug 2007 13:25:54 -  1.595
+++ PkgVersion.pm   30 Aug 2007 01:54:14 -  1.596
@@ -1989,23 +1989,15 @@
   my $desc = $self-get_desc_detail %options;
 
 Returns the description of the package with percent fields expanded but 
-otherwise unformatted.
-
-=over 4
-
-=item canonical_prefix (optional)
-
-If the value is true, use /sw for %p when parsing the DescDetail field 
instead 
-of the local fink's normal installation path.
-
-=back
+otherwise unformatted. See the _get_text_field method for descriptions
+the %options that are supported.
 
 =cut
 
 # Used by the pdb in the 'dump' script
 sub get_desc_detail {
my $self = shift;
-   my %options = ( defined $_[0] ? @_ : () );
+   my %options = @_;

return $self-_get_text_field('DescDetail', %options);
 }
@@ -2017,48 +2009,47 @@
   my $desc = $self-get_desc_usage %options;
 
 Returns the usage description of the package with percent fields expanded but 
-otherwise unformatted.
-
-=over 4
-
-=item canonical_prefix (optional)
-
-If the value is true, use /sw for %p when parsing the DescUsage field 
instead 
-of the local fink's normal installation path.
-
-=back
+otherwise unformatted. See the _get_text_field method for descriptions
+the %options that are supported.
 
 =cut
 
 # Used by the pdb in the 'dump' script
 sub get_desc_usage {
my $self = shift;
-   my %options = ( defined $_[0] ? @_ : () );
+   my %options = @_;

return $self-_get_text_field('DescUsage', %options);
 }
 
+=item _get_text_field
+
+   my $value = $self-_get_text_field $field;
+   my $value = $self-_get_text_field $field, %options;
+
+A private method to retrieve the value of a plain-text $field, with
+percent-expansion performed but no other formatting. The following
+%options are known:
+
+=over 4
+
+=item canonical_prefix (optional)
+
+If the value is true, use /sw for %p when parsing the fields content
+instead of the local fink's normal installation path.
+
+=back
+
+=cut
 
-# PRIVATE: _get_text_field
-#
-#  my $content = $self-_get_text_field $field;
-#  my $content = $self-_get_text_field $field, %options;
-#
-# Returns the the contents of a text field of the package, unformatted.
-#
-# field:
-#  The name of the text field.
-#
-# canonical_prefix (optional):
-#  If the value is true, use /sw for %p when parsing the fields content 
instead
-#  of the local fink's normal installation path.
-#
 sub _get_text_field {
my $self = shift;
-   my $field = shift || '';
-   my %options = ( defined $_[0] ? @_ : () );
-   
-   my $text = '';
+   my $field = shift;
+   my %options = @_;
+
+   unless (defined $field  $self-has_param($field)) {
+   return '';
+   }
 
# need local copy of the %-exp map so we can change it
my %expand = %{$self-{_expand}};
@@ -2066,16 +2057,10 @@
$expand{p} = '/sw';
}
 
-   if ($field  $self-has_param($field)) {
-   $text .= expand_percent($self-param($field), \%expand,
+   return expand_percent($self-param($field), \%expand,

$self-get_info_filename.' $field', 2);
-   }
-
-   return $text;
 }
 
-
-
 ### get installation state
 
 sub is_fetched {

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.1486
retrieving revision 1.1487
diff -u -d -r1.1486 -r1.1487
--- ChangeLog   28 Aug 2007 13:25:54 -  1.1486
+++ ChangeLog   30 Aug 2007 01:54:14 -  1.1487
@@ -1,3 +1,8 @@
+2007-08-29  Daniel Macks  [EMAIL PROTECTED]
+
+   * PkgVersion.pm: Simplify parameter passing; document wrappers in
+   terms of their back-end.
+
 2007-08-28  Benjamin Reed  [EMAIL PROTECTED]
 
* PkgVersion.pm: A couple of useful accessor methods used by the


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/kde ktorrent.info,1.8,1.9

2007-08-29 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde
In directory sc8-pr-cvs17:/tmp/cvs-serv5896/unstable/main/finkinfo/kde

Modified Files:
ktorrent.info 
Log Message:
new version

Index: ktorrent.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde/ktorrent.info,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- ktorrent.info   24 Jul 2007 17:23:25 -  1.8
+++ ktorrent.info   30 Aug 2007 02:02:36 -  1.9
@@ -1,16 +1,16 @@
 Package: ktorrent
-Version: 2.2.1
-Revision: 1001
+Version: 2.2.2
+Revision: 1002
 License: GPL
 HomePage: http://ktorrent.org
 Description: KDE - Bittorrent client
 Maintainer: Jack Fink [EMAIL PROTECTED]
 GCC: 4.0
-Depends: kdelibs3-unified (= 3.5-1), gmp-shlibs, pcre-shlibs, x11, x11-shlibs
+Depends: kdelibs3-unified (= 3.5-1), gmp-shlibs, pcre-shlibs, 
libgettext3-shlibs, x11, x11-shlibs
 BuildDepends: libpng3, libjpeg, qt3, kdelibs3-unified-dev (= 3.5-1),  
libxml2-bin, arts-dev, gmp, libart2, libidn, libiconv-dev, pcre, 
libgettext3-dev, gettext-tools, unsermake, x11-dev, libsigc++2
 BuildConflicts: libtorrent, libtorrent11
 Source: http://%n.org/downloads/%v/%n-%v.tar.gz
-Source-MD5: 229a0615d9252510d9387079dd5bd86d
+Source-MD5: f3bd4cdcb45cefcd85599907781c6e21
 CustomMirror: 
 nam-US: http://ranger.befunk.com/fink
 nam-US: http://astrange.ithinksw.net/~astrange/ranger-fink


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.3/unstable/crypto/finkinfo gnupg-interface-pm.info, 1.4, 1.5

2007-08-29 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.3/unstable/crypto/finkinfo
In directory sc8-pr-cvs17:/tmp/cvs-serv23172/10.3/unstable/crypto/finkinfo

Added Files:
gnupg-interface-pm.info 
Log Message:
new version seems okay...thanks for the motivation, jeward


--- NEW FILE: gnupg-interface-pm.info ---
Info2: 
Package: gnupg-interface-pm%type_pkg[perl]
Version: 0.36
Revision: 1
Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
Distribution: (%type_pkg[perl] = 581) 10.3, (%type_pkg[perl] = 581) 10.4, 
(%type_pkg[perl] = 584) 10.3, (%type_pkg[perl] = 584) 10.4
#Source: mirror:sourceforge:gnupg-interface/GnuPG-Interface-%v.tar.gz
Source: mirror:cpan:authors/id/J/JE/JESSE/GnuPG-Interface-%v.tar.gz
Source-MD5: 6f097d3076b3311e8ef20ce3c2865c66
Replaces: gnupg-interface-pm
Type: perl (5.8.1 5.8.4 5.8.6)
InstallScript: 
  %{default_script}
  mv %i/share/man %i/lib/perl5/%type_raw[perl]

UpdatePOD: true
DocFiles: COPYING ChangeLog NEWS README THANKS
Description: Perl interface to GnuPG
License: Artistic
Maintainer: None [EMAIL PROTECTED]
Depends: gnupg (= 1.4), class-methodmaker-pm%type_pkg[perl], 
perl%type_pkg[perl]-core
Homepage: http://search.cpan.org/dist/GnuPG-Interface



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/crypto/finkinfo gnupg-interface-pm.info, 1.3, 1.4

2007-08-29 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo
In directory sc8-pr-cvs17:/tmp/cvs-serv23172/10.4/unstable/crypto/finkinfo

Added Files:
gnupg-interface-pm.info 
Log Message:
new version seems okay...thanks for the motivation, jeward


--- NEW FILE: gnupg-interface-pm.info ---
Info2: 
Package: gnupg-interface-pm%type_pkg[perl]
Version: 0.36
Revision: 1
Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
Distribution: (%type_pkg[perl] = 581) 10.3, (%type_pkg[perl] = 581) 10.4, 
(%type_pkg[perl] = 584) 10.3, (%type_pkg[perl] = 584) 10.4
#Source: mirror:sourceforge:gnupg-interface/GnuPG-Interface-%v.tar.gz
Source: mirror:cpan:authors/id/J/JE/JESSE/GnuPG-Interface-%v.tar.gz
Source-MD5: 6f097d3076b3311e8ef20ce3c2865c66
Replaces: gnupg-interface-pm
Type: perl (5.8.1 5.8.4 5.8.6)
InstallScript: 
  %{default_script}
  mv %i/share/man %i/lib/perl5/%type_raw[perl]

UpdatePOD: true
DocFiles: COPYING ChangeLog NEWS README THANKS
Description: Perl interface to GnuPG
License: Artistic
Maintainer: None [EMAIL PROTECTED]
Depends: gnupg (= 1.4), class-methodmaker-pm%type_pkg[perl], 
perl%type_pkg[perl]-core
Homepage: http://search.cpan.org/dist/GnuPG-Interface



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.3/unstable/crypto/finkinfo pgpenvelope.info,1.7,1.8

2007-08-29 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.3/unstable/crypto/finkinfo
In directory sc8-pr-cvs17:/tmp/cvs-serv32159/10.3/unstable/crypto/finkinfo

Added Files:
pgpenvelope.info 
Log Message:
pgp-interface-pmXXX is back, so revive this that needed it


--- NEW FILE: pgpenvelope.info ---
Package: pgpenvelope
Version: 2.10.2
Revision: 5
Description: Interface between pine and gnupg
License: GPL
Maintainer: None [EMAIL PROTECTED]
Depends: perl581-core, appconfig-pm, class-methodmaker-pm581, 
gnupg-interface-pm581, string-approx-pm581, term-readkey-pm581, 
term-readline-gnu-pm581, gnupg, pine-ssl | pine
Source: mirror:sourceforge:pgpenvelope/pgpenvelope-%v.tar.gz
Source-MD5: fed475d1c7d285b51dcacd9247ba632d
Type: perl 5.8.1
DocFiles: COPYING ChangeLog NEWS THANKS
DescPackaging: 
  This is just a runtime, so no need for perl-versioning...just use expected
  perl-version for each distro

Homepage: http://pgpenvelope.sourceforge.net
UpdatePOD: true


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/crypto/finkinfo pgpenvelope.info,1.3,1.4

2007-08-29 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo
In directory sc8-pr-cvs17:/tmp/cvs-serv32159/10.4/unstable/crypto/finkinfo

Added Files:
pgpenvelope.info 
Log Message:
pgp-interface-pmXXX is back, so revive this that needed it


--- NEW FILE: pgpenvelope.info ---
Package: pgpenvelope
Version: 2.10.2
Revision: 101
Description: Interface between pine and gnupg
License: GPL
Maintainer: None [EMAIL PROTECTED]
Depends: perl586-core, appconfig-pm, class-methodmaker-pm586, 
gnupg-interface-pm586, string-approx-pm586, term-readkey-pm586, 
term-readline-gnu-pm586, gnupg, pine-ssl | pine
Source: mirror:sourceforge:pgpenvelope/pgpenvelope-%v.tar.gz
Source-MD5: fed475d1c7d285b51dcacd9247ba632d
Type: perl 5.8.6
DocFiles: COPYING ChangeLog NEWS THANKS
DescPackaging: 
  This is just a runtime, so no need for perl-versioning...just use expected
  perl-version for each distro

Homepage: http://pgpenvelope.sourceforge.net
UpdatePOD: true


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/crypto/finkinfo pgpenvelope-10.5.info, NONE, 1.1

2007-08-29 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo
In directory sc8-pr-cvs17:/tmp/cvs-serv32220/10.4/unstable/crypto/finkinfo

Added Files:
pgpenvelope-10.5.info 
Log Message:
need 10.5-specific b/c has perl-versioned deps for /usr/bin/perl's version


--- NEW FILE: pgpenvelope-10.5.info ---
Package: pgpenvelope
Version: 2.10.2
Revision: 201
Distribution: 10.5
Description: Interface between pine and gnupg
License: GPL
Maintainer: None [EMAIL PROTECTED]
Depends: perl588-core, appconfig-pm, class-methodmaker-pm588, 
gnupg-interface-pm588, string-approx-pm588, term-readkey-pm588, 
term-readline-gnu-pm588, gnupg, pine-ssl | pine
Source: mirror:sourceforge:pgpenvelope/pgpenvelope-%v.tar.gz
Source-MD5: fed475d1c7d285b51dcacd9247ba632d
Type: perl 5.8.8
DocFiles: COPYING ChangeLog NEWS THANKS
DescPackaging: 
  This is just a runtime, so no need for perl-versioning...just use expected
  perl-version for each distro

Homepage: http://pgpenvelope.sourceforge.net
UpdatePOD: true


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits