[cvs] dists/10.7/stable/main/finkinfo/languages tklib.info,NONE,1.1

2012-01-18 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv13923

Added Files:
tklib.info 
Log Message:
to 10.7

--- NEW FILE: tklib.info ---
Package: tklib
Version: 0.5
Revision: 1
Description: Tk Standard Library
License: GPL
Maintainer: Trevor Harmon tre...@vocaro.com

Depends: tcltk, tcllib
BuildDepends: tcltk-dev

# tklib installs manpages into the deprecated %p/man directory.
ConfigureParams: --mandir=%i/share/man

Source: mirror:sourceforge:tcllib/%n-%v.tar.bz2
Source-MD5: 0c6352daec059c6fd15ce20d2e2958c6

DocFiles: ChangeLog DESCRIPTION.txt PACKAGES README README-0.4.txt license.terms

Homepage: http://tcllib.sourceforge.net/

DescDetail: 
This package is intended to be a collection of Tcl packages that provide
utility functions useful to a large collection of Tcl programmers.



--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/text uni2ascii.info, NONE, 1.1 uni2ascii.patch, NONE, 1.1

2012-01-18 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/text
In directory vz-cvs-3.sog:/tmp/cvs-serv15789

Added Files:
uni2ascii.info uni2ascii.patch 
Log Message:
add uni2ascii to 10.7
Uses patch to remove the included getline, but only for 10.7 and this version 
of uni2ascii.
Later uni2ascii remove this getline, so are Lion safe (which has getline), so 
can remove patch there.
But systems less than Lion will need to add the patch to have a getline present 
if updating uni2ascii.
Moved with maintainer permission

--- NEW FILE: uni2ascii.patch ---
--- ascii2uni.c.orig2010-08-29 23:36:19.0 -0500
+++ ascii2uni.c 2009-08-04 22:08:52.0 -0500
@@ -655,3 +655,170 @@
}
exit(SUCCESS);
 }
+
+/* Include a copy of getline.c for portability to non-GNU environments */
+#ifndef _GNU_SOURCE
+/* getline.c -- Replacement for GNU C library function getline
+
+Copyright (C) 1993 Free Software Foundation, Inc.
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as
+published by the Free Software Foundation; either version 2 of the
+License, or (at your option) any later version.
+
+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 GNU
+General Public License for more details.  */
+
+/* Written by Jan Brittenson, b...@gnu.ai.mit.edu.  */
+
+#ifdef HAVE_CONFIG_H
+#include config.h
+#endif
+
+#include sys/types.h
+#include stdio.h
+#include assert.h
+#include errno.h
+
+#if STDC_HEADERS
+#include stdlib.h
+#else
+char *malloc (), *realloc ();
+#endif
+
+/* Always add at least this many bytes when extending the buffer.  */
+#define MIN_CHUNK 64
+
+/* Read up to (and including) a TERMINATOR from STREAM into *LINEPTR
+   + OFFSET (and null-terminate it).  If LIMIT is non-negative, then
+   read no more than LIMIT chars.
+
+   *LINEPTR is a pointer returned from malloc (or NULL), pointing to
+   *N characters of space.  It is realloc'd as necessary.  
+
+   Return the number of characters read (not including the null
+   terminator), or -1 on error or EOF.  On a -1 return, the caller
+   should check feof(), if not then errno has been set to indicate the
+   error.  */
+
+int
+getstr (lineptr, n, stream, terminator, offset, limit)
+ char **lineptr;
+ size_t *n;
+ FILE *stream;
+ int terminator;
+ int offset;
+ int limit;
+{
+  int nchars_avail;/* Allocated but unused chars in *LINEPTR.  */
+  char *read_pos;  /* Where we're reading into *LINEPTR. */
+  int ret;
+
+  if (!lineptr || !n || !stream)
+{
+  errno = EINVAL;
+  return -1;
+}
+
+  if (!*lineptr)
+{
+  *n = MIN_CHUNK;
+  *lineptr = malloc (*n);
+  if (!*lineptr)
+   {
+ errno = ENOMEM;
+ return -1;
+   }
+  *lineptr[0] = '\0';
+}
+
+  nchars_avail = *n - offset;
+  read_pos = *lineptr + offset;
+
+  for (;;)
+{
+  int save_errno;
+  register int c;
+
+  if (limit == 0)
+  break;
+  else
+  {
+  c = getc (stream);
+
+  /* If limit is negative, then we shouldn't pay attention to
+ it, so decrement only if positive. */
+  if (limit  0)
+  limit--;
+  }
+
+  save_errno = errno;
+
+  /* We always want at least one char left in the buffer, since we
+always (unless we get an error while reading the first char)
+NUL-terminate the line buffer.  */
+
+  assert((*lineptr + *n) == (read_pos + nchars_avail));
+  if (nchars_avail  2)
+   {
+ if (*n  MIN_CHUNK)
+   *n *= 2;
+ else
+   *n += MIN_CHUNK;
+
+ nchars_avail = *n + *lineptr - read_pos;
+ *lineptr = realloc (*lineptr, *n);
+ if (!*lineptr)
+   {
+ errno = ENOMEM;
+ return -1;
+   }
+ read_pos = *n - nchars_avail + *lineptr;
+ assert((*lineptr + *n) == (read_pos + nchars_avail));
+   }
+
+  if (ferror (stream))
+   {
+ /* Might like to return partial line, but there is no
+place for us to store errno.  And we don't want to just
+lose errno.  */
+ errno = save_errno;
+ return -1;
+   }
+
+  if (c == EOF)
+   {
+ /* Return partial line, if any.  */
+ if (read_pos == *lineptr)
+   return -1;
+ else
+   break;
+   }
+
+  *read_pos++ = c;
+  nchars_avail--;
+
+  if (c == terminator)
+   /* Return the line.  */
+   break;
+}
+
+  /* Done - NUL terminate and return the number of chars read.  */
+  *read_pos = '\0';
+
+  ret = read_pos - (*lineptr + offset);
+  return ret;
+}
+
+int
+getline (lineptr, n, stream)
+ char **lineptr;
+ size_t *n;
+ FILE *stream;
+{
+  return getstr (lineptr, n, stream, '\n', 

[cvs] dists/10.4/stable/main/finkinfo/x11 gerbv.info,1.9,1.10

2012-01-18 Thread Charles Lepple
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/x11
In directory vz-cvs-3.sog:/tmp/cvs-serv17966

Modified Files:
gerbv.info 
Log Message:
gerbv 2.6.0 tested on 10.6/i386 as well.


Index: gerbv.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/x11/gerbv.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- gerbv.info  6 May 2010 01:05:20 -   1.9
+++ gerbv.info  18 Jan 2012 13:04:30 -  1.10
@@ -1,6 +1,6 @@
 Info3: 
 Package: gerbv
-Version: 2.4.0
+Version: 2.6.0
 Revision: 1
 
 Depends: 
@@ -16,7 +16,7 @@
   gtk+2-shlibs (= 2.12.0-1),
   libgettext8-shlibs,
   libiconv,
-  libpng3-shlibs (= 1:1.2.16-1),
+  libpng15-shlibs,
   pango1-xft2-ft219 (= 1.18.4-4),
   pango1-xft2-ft219-shlibs (= 1.18.4-4),
   x11
@@ -34,7 +34,7 @@
   gtk+2-dev (= 2.12.0-1),
   libgettext8-dev,
   libiconv-dev, 
-  libpng3,
+  libpng15,
   pango1-xft2-ft219-dev (= 1.18.4-4),
   pixman (= 0.10.0-1),
   pkgconfig (= 0.21-1),
@@ -43,7 +43,7 @@
 
 
 Source: mirror:sourceforge:gerbv/gerbv-%v.tar.gz
-Source-MD5: 56431417df2d246db87e225783097d75
+Source-MD5: 44a37dd202bc60fab54cbc298a477572
 
 DocFiles: 
   AUTHORS


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web footer.inc,1.46,1.47

2012-01-18 Thread Alexander Hansen
Update of /cvsroot/fink/web
In directory vz-cvs-3.sog:/tmp/cvs-serv31824

Modified Files:
footer.inc 
Log Message:
New year

Index: footer.inc
===
RCS file: /cvsroot/fink/web/footer.inc,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- footer.inc  26 Oct 2011 12:51:04 -  1.46
+++ footer.inc  18 Jan 2012 13:49:06 -  1.47
@@ -4,7 +4,7 @@
 /div
 div id=footer-left
a href=/legal.php style=text-decoration:none ; color:black 
;
-   Copyright copy; 2001-2011brThenbsp;Finknbsp;Project
+   Copyright copy; 2001-2012brThenbsp;Finknbsp;Project
/a
 /div
 div id=footer


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/utils dosunix.info,1.1,1.2

2012-01-18 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/utils
In directory vz-cvs-3.sog:/tmp/cvs-serv3755/10.4/stable/main/finkinfo/utils

Modified Files:
dosunix.info 
Log Message:
WorksOnLion
SyncToStable

Index: dosunix.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/utils/dosunix.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- dosunix.info27 Jan 2006 17:15:35 -  1.1
+++ dosunix.info18 Jan 2012 14:05:58 -  1.2
@@ -1,9 +1,9 @@
 Package: dosunix
-Version: 1.0.13
+Version: 1.0.14
 Revision: 1
-Maintainer: None fink-de...@lists.sourceforge.net
+Maintainer: Daniel Ferrer dfer...@users.sourceforge.net
 Source: http://%n.sourceforge.net/%n-%v.tar.gz
-Source-MD5: 72b738e3572a02cd594dd64ed7211b41
+Source-MD5: 313f57a9b6c241bf331cdb07684e2618
 Docfiles: AUTHORS ChangeLog COPYING NEWS README
 Description: Converts DOS text files to unix text format
 DescDetail: 
@@ -20,3 +20,5 @@
 
 License: GPL
 Homepage: http://dosunix.sourceforge.net
+
+


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/utils dosunix.info,NONE,1.1

2012-01-18 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/utils
In directory vz-cvs-3.sog:/tmp/cvs-serv3755/10.7/stable/main/finkinfo/utils

Added Files:
dosunix.info 
Log Message:
WorksOnLion
SyncToStable

--- NEW FILE: dosunix.info ---
Package: dosunix
Version: 1.0.14
Revision: 1
Maintainer: Daniel Ferrer dfer...@users.sourceforge.net
Source: http://%n.sourceforge.net/%n-%v.tar.gz
Source-MD5: 313f57a9b6c241bf331cdb07684e2618
Docfiles: AUTHORS ChangeLog COPYING NEWS README
Description: Converts DOS text files to unix text format
DescDetail: 
DosUnix is made up of three programs:
   - dosunix, which creates a copy of a DOS text file
 in Unix text format.
   - unixdos, which creates a copy of a Unix text file
 in DOS text format.
   - chktxt, which inspects a given text file to determine
 whether it is in DOS text format or Unix text format.

DescPackaging: 
 Originally packaged by Matt Stephenson.

License: GPL
Homepage: http://dosunix.sourceforge.net

 


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/games sdl-ttf.info, 1.7, 1.8 sdl-image.info, 1.7, 1.8

2012-01-18 Thread Max Horn
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/games
In directory vz-cvs-3.sog:/tmp/cvs-serv5892/games

Modified Files:
sdl-ttf.info sdl-image.info 
Log Message:
New upstream version

Index: sdl-ttf.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/games/sdl-ttf.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- sdl-ttf.info11 Jan 2010 05:26:11 -  1.7
+++ sdl-ttf.info18 Jan 2012 14:14:05 -  1.8
@@ -15,14 +15,14 @@
 # maintainership of) the affected package.
 
 Package: sdl-ttf
-Version: 2.0.9
-Revision: 2
+Version: 2.0.11
+Revision: 1
 Maintainer: Max Horn m...@quendi.de
 Depends: %N-shlibs (= %v-%r)
 BuildDependsOnly: true
 BuildDepends: sdl (= 1.2.9-1001), freetype219
 Source: http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-%v.tar.gz
-Source-MD5: 6dd5a85e4924689a35a5fb1cb3336156
+Source-MD5: 61e29bd9da8d245bc2471d1b2ce591aa
 NoSetCPPFLAGS: true
 ConfigureParams: --disable-sdltest --with-freetype-prefix=%p/lib/freetype219 
--with-freetype-exec-prefix=%p/lib/freetype219
 InstallScript: make install DESTDIR=%d
@@ -31,7 +31,7 @@
   Depends: sdl-shlibs (= 1.2.11-1), freetype219-shlibs
   Replaces: %N (= 2.0.4-1)
   Files: lib/libSDL_ttf-*.dylib
-  Shlibs: %p/lib/libSDL_ttf-2.0.0.dylib 7.0.0 %n (= 2.0.9-2)
+  Shlibs: %p/lib/libSDL_ttf-2.0.0.dylib 11.0.0 %n (= 2.0.11-1)
   Docfiles: CHANGES COPYING README
 
 DocFiles: CHANGES COPYING README
@@ -41,4 +41,4 @@
 
 DescPackaging:  Uses freetype219 so that non-X11 apps can partake of this
 Homepage: http://www.libsdl.org/projects/SDL_ttf/
-License: LGPL
+License: OSI-Approved

Index: sdl-image.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/games/sdl-image.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- sdl-image.info  1 Feb 2010 12:38:56 -   1.7
+++ sdl-image.info  18 Jan 2012 14:14:05 -  1.8
@@ -15,16 +15,16 @@
 # maintainership of) the affected package.
 
 Package: sdl-image
-Version: 1.2.10
+Version: 1.2.11
 Revision: 1
 Maintainer: Max Horn m...@quendi.de
-BuildDepends: sdl (= 1.2.9-1001), libjpeg, libpng3, libtiff
+BuildDepends: sdl (= 1.2.9-1001), libjpeg8, libpng15, libtiff
 Depends: %N-shlibs (= %v-%r)
 Conflicts: %N-bin ( 1.2.3-1)
 Replaces: sdl-image-dev
 BuildDependsOnly: True
 Source: http://www.libsdl.org/projects/SDL_image/release/SDL_image-%v.tar.gz
-Source-MD5: 6c06584b31559e2b59f2b982d0d1f628
+Source-MD5: 1210d7a7e87ab95abebb4f3e79a0fd31
 ConfigureParams: 
  --disable-jpg-shared \
  --disable-png-shared \
@@ -35,7 +35,7 @@
 InstallScript: make install DESTDIR=%d
 SplitOff: 
   Package: %N-shlibs
-  Depends: sdl-shlibs (= 1.2.9-1001), libjpeg-shlibs, libpng3-shlibs, 
libtiff-shlibs
+  Depends: sdl-shlibs (= 1.2.9-1001), libjpeg8-shlibs, libpng15-shlibs, 
libtiff-shlibs
   Replaces: %N (= 1.2.1-2)
   Files: lib/libSDL_image-*.dylib
   Shlibs: %p/lib/libSDL_image-1.2.0.dylib 9.0.0 %n (= 1.2.8-1)
@@ -47,4 +47,4 @@
  Use --disable-sdltest to allow building on headless systems.
 
 Homepage: http://www.libsdl.org/projects/SDL_image/
-License: LGPL
+License: OSI-Approved


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/games sdl-ttf.info, 1.1, 1.2 sdl-image.info, 1.1, 1.2

2012-01-18 Thread Max Horn
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/games
In directory vz-cvs-3.sog:/tmp/cvs-serv5910/games

Modified Files:
sdl-ttf.info sdl-image.info 
Log Message:
New upstream version

Index: sdl-ttf.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/games/sdl-ttf.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- sdl-ttf.info24 Jul 2011 22:25:06 -  1.1
+++ sdl-ttf.info18 Jan 2012 14:14:07 -  1.2
@@ -15,14 +15,14 @@
 # maintainership of) the affected package.
 
 Package: sdl-ttf
-Version: 2.0.9
-Revision: 2
+Version: 2.0.11
+Revision: 1
 Maintainer: Max Horn m...@quendi.de
 Depends: %N-shlibs (= %v-%r)
 BuildDependsOnly: true
 BuildDepends: sdl (= 1.2.9-1001), freetype219
 Source: http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-%v.tar.gz
-Source-MD5: 6dd5a85e4924689a35a5fb1cb3336156
+Source-MD5: 61e29bd9da8d245bc2471d1b2ce591aa
 NoSetCPPFLAGS: true
 ConfigureParams: --disable-sdltest --with-freetype-prefix=%p/lib/freetype219 
--with-freetype-exec-prefix=%p/lib/freetype219
 InstallScript: make install DESTDIR=%d
@@ -31,7 +31,7 @@
   Depends: sdl-shlibs (= 1.2.11-1), freetype219-shlibs
   Replaces: %N (= 2.0.4-1)
   Files: lib/libSDL_ttf-*.dylib
-  Shlibs: %p/lib/libSDL_ttf-2.0.0.dylib 7.0.0 %n (= 2.0.9-2)
+  Shlibs: %p/lib/libSDL_ttf-2.0.0.dylib 11.0.0 %n (= 2.0.11-1)
   Docfiles: CHANGES COPYING README
 
 DocFiles: CHANGES COPYING README
@@ -41,4 +41,4 @@
 
 DescPackaging:  Uses freetype219 so that non-X11 apps can partake of this
 Homepage: http://www.libsdl.org/projects/SDL_ttf/
-License: LGPL
+License: OSI-Approved

Index: sdl-image.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/games/sdl-image.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- sdl-image.info  24 Jul 2011 22:25:06 -  1.1
+++ sdl-image.info  18 Jan 2012 14:14:07 -  1.2
@@ -15,16 +15,16 @@
 # maintainership of) the affected package.
 
 Package: sdl-image
-Version: 1.2.10
+Version: 1.2.11
 Revision: 1
 Maintainer: Max Horn m...@quendi.de
-BuildDepends: sdl (= 1.2.9-1001), libjpeg, libpng3, libtiff
+BuildDepends: sdl (= 1.2.9-1001), libjpeg8, libpng15, libtiff
 Depends: %N-shlibs (= %v-%r)
 Conflicts: %N-bin ( 1.2.3-1)
 Replaces: sdl-image-dev
 BuildDependsOnly: True
 Source: http://www.libsdl.org/projects/SDL_image/release/SDL_image-%v.tar.gz
-Source-MD5: 6c06584b31559e2b59f2b982d0d1f628
+Source-MD5: 1210d7a7e87ab95abebb4f3e79a0fd31
 ConfigureParams: 
  --disable-jpg-shared \
  --disable-png-shared \
@@ -35,7 +35,7 @@
 InstallScript: make install DESTDIR=%d
 SplitOff: 
   Package: %N-shlibs
-  Depends: sdl-shlibs (= 1.2.9-1001), libjpeg-shlibs, libpng3-shlibs, 
libtiff-shlibs
+  Depends: sdl-shlibs (= 1.2.9-1001), libjpeg8-shlibs, libpng15-shlibs, 
libtiff-shlibs
   Replaces: %N (= 1.2.1-2)
   Files: lib/libSDL_image-*.dylib
   Shlibs: %p/lib/libSDL_image-1.2.0.dylib 9.0.0 %n (= 1.2.8-1)
@@ -47,4 +47,4 @@
  Use --disable-sdltest to allow building on headless systems.
 
 Homepage: http://www.libsdl.org/projects/SDL_image/
-License: LGPL
+License: OSI-Approved


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods net-idn-encode-pm.info, 1.7, 1.8

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv12165

Modified Files:
net-idn-encode-pm.info 
Log Message:
New upstream net-idn-encode-pm 2.002.


Index: net-idn-encode-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/net-idn-encode-pm.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- net-idn-encode-pm.info  15 Jan 2012 21:37:05 -  1.7
+++ net-idn-encode-pm.info  18 Jan 2012 14:41:27 -  1.8
@@ -1,6 +1,6 @@
 Info2: 
 Package: net-idn-encode-pm%type_pkg[perl]
-Version: 2.001
+Version: 2.002
 Revision: 1
 Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 588) 10.5, (%type_pkg[perl] = 588) 10.6
 Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
@@ -14,7 +14,7 @@
 Depends: unicode-normalize-pm%type_pkg[perl] (= 1.13-1), 
perl%type_pkg[perl]-core
 
 Source: mirror:cpan:authors/id/C/CF/CFAERBER/Net-IDN-Encode-%v.tar.gz
-Source-MD5: c0f56fdcddadeb40e67fbd19deef536a
+Source-MD5: f60c9f03123ef3b701acf155cb5480b8
 
 InstallScript: 
   %{default_script}


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods net-idn-encode-pm.info, 1.10, 1.11

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv12225

Modified Files:
net-idn-encode-pm.info 
Log Message:
New upstream net-idn-encode-pm 2.002.


Index: net-idn-encode-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/net-idn-encode-pm.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- net-idn-encode-pm.info  15 Jan 2012 21:37:13 -  1.10
+++ net-idn-encode-pm.info  18 Jan 2012 14:41:35 -  1.11
@@ -1,6 +1,6 @@
 Info2: 
 Package: net-idn-encode-pm%type_pkg[perl]
-Version: 2.001
+Version: 2.002
 Revision: 1
 Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 588) 10.5, (%type_pkg[perl] = 588) 10.6
 Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
@@ -14,7 +14,7 @@
 Depends: unicode-normalize-pm%type_pkg[perl] (= 1.13-1), 
perl%type_pkg[perl]-core
 
 Source: mirror:cpan:authors/id/C/CF/CFAERBER/Net-IDN-Encode-%v.tar.gz
-Source-MD5: c0f56fdcddadeb40e67fbd19deef536a
+Source-MD5: f60c9f03123ef3b701acf155cb5480b8
 
 InstallScript: 
   %{default_script}


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/games ggz-server.info,1.3,1.4

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/games
In directory vz-cvs-3.sog:/tmp/cvs-serv24397/stable/main/finkinfo/games

Modified Files:
ggz-server.info 
Log Message:
scrap unused deps (no-longer-propagated IBD)


Index: ggz-server.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/games/ggz-server.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- ggz-server.info 24 Mar 2009 06:27:53 -  1.3
+++ ggz-server.info 18 Jan 2012 15:31:40 -  1.4
@@ -1,18 +1,18 @@
 Package: ggz-server
 Version: 0.0.11
-Revision: 1012
+Revision: 1013
 Description: GGZ Gaming Zone server
 License: LGPL
 Maintainer: Dave Vasilevsky v...@users.sourceforge.net
 
 BuildDepends: 
-   libggz-crypto (= %v-12) | libggz (= %v-12), libgettext3-dev, 
gettext-bin,
-   libiconv-dev, popt, expat1, libhowl-dev, db43-ssl (= 4.3.29-1001) | 
db43 (= 4.3.29-1001), fink (= 0.24.12-1)
+   libggz-crypto (= %v-12) | libggz (= %v-12),
+   expat1, libhowl-dev (= 1.0.0-17), db43-ssl (= 4.3.29-1001) | db43 (= 
4.3.29-1001), fink (= 0.24.12-1)
 
 
 Depends: 
%N-shlibs (= %v-%r), db43-ssl-shlibs (= 4.3.29-1001) | db43-shlibs (= 
4.3.29-1001),
-   libgettext3-shlibs, libiconv, popt-shlibs, expat1-shlibs, libhowl-shlibs
+   expat1-shlibs, libhowl-shlibs (= 1.0.0-17)
 
 
 CustomMirror: 
@@ -30,7 +30,6 @@
 PatchFile-MD5: e794240c59058b68037fc3a981831326
 
 # For howl
-SetLDFLAGS: -framework CoreFoundation
 SetCPPFLAGS: -I%p/include/howl -fsigned-char -I%p/include/db4
 
 ConfigureParams: --mandir=%p/share/man --enable-debug-gdb --with-database=db4


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/games ggz-server.info,1.4,1.5

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/games
In directory vz-cvs-3.sog:/tmp/cvs-serv28295/stable/main/finkinfo/games

Modified Files:
ggz-server.info 
Log Message:
update to db48


Index: ggz-server.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/games/ggz-server.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- ggz-server.info 18 Jan 2012 15:31:40 -  1.4
+++ ggz-server.info 18 Jan 2012 15:46:07 -  1.5
@@ -1,17 +1,17 @@
 Package: ggz-server
 Version: 0.0.11
-Revision: 1013
+Revision: 1014
 Description: GGZ Gaming Zone server
 License: LGPL
 Maintainer: Dave Vasilevsky v...@users.sourceforge.net
 
 BuildDepends: 
libggz-crypto (= %v-12) | libggz (= %v-12),
-   expat1, libhowl-dev (= 1.0.0-17), db43-ssl (= 4.3.29-1001) | db43 (= 
4.3.29-1001), fink (= 0.24.12-1)
+   expat1, libhowl-dev (= 1.0.0-17), db48-aes | db48
 
 
 Depends: 
-   %N-shlibs (= %v-%r), db43-ssl-shlibs (= 4.3.29-1001) | db43-shlibs (= 
4.3.29-1001),
+   %N-shlibs (= %v-%r), db48-aes-shlibs | db48-shlibs,
expat1-shlibs, libhowl-shlibs (= 1.0.0-17)
 
 
@@ -28,6 +28,10 @@
 
 PatchFile: %n.patch
 PatchFile-MD5: e794240c59058b68037fc3a981831326
+PatchScript: 
+   %{default_script}
+   perl -pi -e 's/db-4.3/db-4.8/g' configure
+
 
 # For howl
 SetCPPFLAGS: -I%p/include/howl -fsigned-char -I%p/include/db4


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs openni.info,NONE,1.1

2012-01-18 Thread Hans-Christoph Steiner
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv3320

Added Files:
openni.info 
Log Message:
first build of OpenNI libs

--- NEW FILE: openni.info ---
# TODO fix the dylibs so they have versions
# TODO build and link against libjpeg-turbo
Package: openni
Version: 1.5.2.23
Revision: 1
Homepage: http://www.openni.org
License: GPL3+
Maintainer: Hans-Christoph Steiner h...@eds.org
#
Source: https://github.com/OpenNI/OpenNI/tarball/Stable-%v
Source-MD5: 12389c56bf3685a741f6bcfa068585ff
#Source-SHA1: df8998be4e20664f11c7894bca0a2697815ef4b4
SourceRename: OpenNI-OpenNI-Stable-%v-0-g1516074.tar.gz
SourceDirectory: OpenNI-OpenNI-1516074
#
BuildDepends: fink (= 0.28), libusb1, doxygen, graphviz
Depends: darwin (= 9-1),  %n-shlibs (= %v-%r)
BuildDependsOnly: true
#
CompileScript: 
  sed -i 's|/opt/local|%p|' %b/Platform/Linux/Build/OpenNI/Makefile
  sed -i 's|CFLAGS += -arch i386 -arch x86_64||' 
%b/Platform/Linux/Build/Common/Platform.x86
  sed -i 's|LDFLAGS += -arch i386 -arch x86_64||' 
%b/Platform/Linux/Build/Common/Platform.x86
  make -C %b/Platform/Linux/Build
  mkdir %b/Source/DoxyGen/html
  cd %b/Source/DoxyGen/  doxygen
  # remove unneeded files
  rm -rf html/*.map html/*.md5 html/*.hhc html/*.hhk html/*.hhp

InstallScript: 
install -d %i/bin
install -p %b/Platform/Linux/Bin/x86-Release/niLicense \
%b/Platform/Linux/Bin/x86-Release/niReg \
%i/bin
install -d %i/lib
install -p \
%b/Platform/Linux/Bin/x86-Release/libOpenNI.dylib \
%b/Platform/Linux/Bin/x86-Release/libOpenNI.jni.dylib \
%b/Platform/Linux/Bin/x86-Release/libnimCodecs.dylib \
%b/Platform/Linux/Bin/x86-Release/libnimMockNodes.dylib \
%b/Platform/Linux/Bin/x86-Release/libnimRecorder.dylib \
%i/lib
install_name_tool -id %p/lib/libOpenNI.dylib  %i/lib/libOpenNI.dylib
install_name_tool -id %p/lib/libOpenNI.jni.dylib  
%i/lib/libOpenNI.jni.dylib
install_name_tool -id %p/lib/libnimCodecs.dylib  
%i/lib/libnimCodecs.dylib
install_name_tool -id %p/lib/libnimMockNodes.dylib  
%i/lib/libnimMockNodes.dylib
install_name_tool -id %p/lib/libnimRecorder.dylib  
%i/lib/libnimRecorder.dylib
install -d %i/include/ni
install -p %b/Include/*.h  %i/include/ni
install -p %b/Include/MacOSX/*.h  %i/include/ni
install -d %i/var/lib/ni
install -d %i/etc/primesense

DocFiles: CHANGES GPL.txt LGPL.txt README Documentation/OpenNI_UserGuide.pdf 
Documentation/OpenNI.chm %b/Source/DoxyGen/html
Description: Sensor-based Natural Interaction framework
DescDetail: 
 OpenNI is a framework for getting data to support 'Natural Interaction',
 i.e. skeleton tracking, gesture tracking, and similar ways of getting data
 from humans. OpenNI provides the interface for physical devices and for
 middleware components. The API enables modules to be registered in the OpenNI
 framework, which then produce sensory data. OpenNI also allows selection of
 different hardware and middleware modules.

SplitOff: 
Package: %N-shlibs
Depends: libusb1-shlibs
Files: 
%p/lib/libOpenNI.dylib
%p/lib/libOpenNI.jni.dylib
%p/lib/libnimCodecs.dylib
%p/lib/libnimMockNodes.dylib
%p/lib/libnimRecorder.dylib

Shlibs: 
%p/lib/libOpenNI.dylib 0.0.0 %n (= 1.5.2.23-1)
%p/lib/libOpenNI.jni.dylib 0.0.0 %n (= 1.5.2.23-1)
%p/lib/libnimCodecs.dylib 0.0.0 %n (= 1.5.2.23-1)
%p/lib/libnimMockNodes.dylib 0.0.0 %n (= 1.5.2.23-1)
%p/lib/libnimRecorder.dylib 0.0.0 %n (= 1.5.2.23-1)

DocFiles: CHANGES GPL.txt LGPL.txt README



--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/crypto rast.info, 1.3, NONE rast.patch, 1.1, NONE

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv11836/unstable/main/finkinfo/crypto

Removed Files:
rast.info rast.patch 
Log Message:
rast: upgrade to db48, fix build for -jN, add mecab support, move to 
section:text and sync to stable


--- rast.info DELETED ---

--- rast.patch DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/text
In directory vz-cvs-3.sog:/tmp/cvs-serv11836/stable/main/finkinfo/text

Added Files:
rast.info rast.patch 
Log Message:
rast: upgrade to db48, fix build for -jN, add mecab support, move to 
section:text and sync to stable


--- NEW FILE: rast.info ---
Package: rast
Version: 0.3.1
Revision: 1
Epoch: 1
Description: Full-text search system
License: BSD
Maintainer: None fink-de...@lists.sourceforge.net

BuildDepends: 
autoconf2.6,
automake1.11,
db48-aes | db48,
file-dev,
fink-package-precedence,
libapr.0-dev,
libaprutil.0-dev,
libiconv-dev,
libtool2,
mecab-dev,
nkf

Depends: 
%n-shlibs (= %e:%v-%r),
file-shlibs,
libapr.0-shlibs,
libaprutil.0-shlibs,
db48-aes-shlibs | db48-shlibs,
libiconv,
netpbm10-shlibs

GCC: 4.0

Source: http://projects.netlab.jp/rast/archives/%n-%v.tar.bz2
Source-MD5: baa52511e6c9eb838ed80bcc22bf7323

PatchFile: %n.patch
PatchFile-MD5: 4ac841a5704f58f186913bbd48f4f6e0
PatchScript: 
%{default_script}
perl -pi -e 's/-l(rast\S*)/lib\1.la/g' `find . -name Makefile.am`
perl -pi -e 's/-I \$/-I\$/g' `find . -name Makefile.am`
touch NEWS README AUTHORS ChangeLog


ConfigureParams: 
--mandir=%p/share/man \
--disable-static \
--with-apr-config=%p/bin/apr-1-config \
--with-apu-config=%p/bin/apu-1-config \
--with-db-includes=-I%p/include/db4 --with-db-libs=-ldb-4.8 \
--without-icu-config --without-xmlrpc-c-config \
--without-ruby \
--with-default-encoding=utf-8

CompileScript: 
autoreconf -fi
./configure %c
make
fink-package-precedence --prohibit-bdep=%n-dev .


InstallScript: make install DESTDIR=%d
DocFiles: COPYING README.en README.ja

SplitOff: 
  Package: %N-shlibs
  Depends: 
db48-aes-shlibs | db48-shlibs,
file-shlibs,
libiconv,
libapr.0-shlibs,
libaprutil.0-shlibs,
mecab-shlibs
  
  Files: 
lib/librast.1.dylib
lib/rast
  
  Shlibs: 
%p/lib/librast.1.dylib 2.0.0 %n (= 0.31-1)
  
  DocFiles: COPYING README.en README.ja


SplitOff2: 
  Package: %N-dev
  Depends: %N-shlibs (= %e:%v-%r)
  Replaces: %N ( 0.31-2)
  BuildDependsOnly: true
  Files: 
include
lib/librast.la
lib/librast.dylib
share/aclocal
  
  DocFiles: COPYING README.en README.ja


Homepage: http://projects.netlab.jp/rast/
DescPackaging: 
dmacks (2011-01-18, 1:0.3.1-1) use upstream versioning, fix
autoconf linking against/dependency-tracking of build-dir
libraries, pendantic fix of -I compiler syntax

mecab-config propagates -lstdc++ so may as well tag here GCC
even though no c++ used here.

DescPort: 
ToDo: splitoffs (xmlrpc-server, cgi, filters)

dmacks (2008-09-04, 0.31-1003) fix APR_RING_SENTINEL parameter
in local_db.c to match other uses


--- NEW FILE: rast.patch ---
diff -Nurd -x'*~' rast-0.3.1.orig/src/Makefile.am rast-0.3.1/src/Makefile.am
--- rast-0.3.1.orig/src/Makefile.am 2005-09-15 04:54:03.0 -0400
+++ rast-0.3.1/src/Makefile.am  2012-01-18 11:28:30.0 -0500
@@ -47,7 +47,7 @@
 librast_la_CFLAGS  = $(APR_INCLUDES) $(APU_INCLUDES) $(DB_INCLUDES) \
  $(XMLRPC_LIBWWW_CLIENT_CFLAGS)
 librast_la_LIBADD  = $(APR_LIBS_LIBTOOL) $(APU_LIBS_LIBTOOL) \
- $(DB_LIBS) $(LIBM) -lmagic
+ $(DB_LIBS) $(LIBM) -lmagic -liconv
 librast_CURRENT= 1
 librast_REVISION   = 0
 librast_AGE= 0
diff -Nurd -x'*~' rast-0.3.1.orig/src/local_db.c rast-0.3.1/src/local_db.c
--- rast-0.3.1.orig/src/local_db.c  2005-09-15 06:02:24.0 -0400
+++ rast-0.3.1/src/local_db.c   2012-01-18 11:28:15.0 -0500
@@ -2111,7 +2111,7 @@
 
 encoding_module = docs[i]-db-encoding_module;
 tf = APR_RING_FIRST(docs[i]-terms);
-if (tf == APR_RING_SENTINEL(docs[i]-terms,
+if (tf == APR_RING_SENTINEL(docs[i]-terms,
 rast_term_frequency_t, link)) {
 error = get_summary(pool, encoding_module,
 summary, summary_nbytes,


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/games sdl-image.info,1.8,1.9

2012-01-18 Thread Max Horn
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/games
In directory vz-cvs-3.sog:/tmp/cvs-serv17933/games

Modified Files:
sdl-image.info 
Log Message:
Disabled libwebp support for now

Index: sdl-image.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/games/sdl-image.info,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- sdl-image.info  18 Jan 2012 14:14:05 -  1.8
+++ sdl-image.info  18 Jan 2012 17:16:00 -  1.9
@@ -16,7 +16,7 @@
 
 Package: sdl-image
 Version: 1.2.11
-Revision: 1
+Revision: 2
 Maintainer: Max Horn m...@quendi.de
 BuildDepends: sdl (= 1.2.9-1001), libjpeg8, libpng15, libtiff
 Depends: %N-shlibs (= %v-%r)
@@ -29,6 +29,8 @@
  --disable-jpg-shared \
  --disable-png-shared \
  --disable-tif-shared \
+ --disable-webp-shared \
+ --disable-webp \
  --disable-sdltest \
  --disable-dependency-tracking
 
@@ -45,6 +47,9 @@
 Description: SDL image file loading library
 DescPackaging: 
  Use --disable-sdltest to allow building on headless systems.
+ 
+ Disabled webp support for now, as it require libwebp 0.1.3 or newer,
+ while Fink currently only has 0.1.2.
 
 Homepage: http://www.libsdl.org/projects/SDL_image/
 License: OSI-Approved


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/games sdl-image.info,1.2,1.3

2012-01-18 Thread Max Horn
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/games
In directory vz-cvs-3.sog:/tmp/cvs-serv17953/games

Modified Files:
sdl-image.info 
Log Message:
Disabled libwebp support for now

Index: sdl-image.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/games/sdl-image.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- sdl-image.info  18 Jan 2012 14:14:07 -  1.2
+++ sdl-image.info  18 Jan 2012 17:16:03 -  1.3
@@ -16,7 +16,7 @@
 
 Package: sdl-image
 Version: 1.2.11
-Revision: 1
+Revision: 2
 Maintainer: Max Horn m...@quendi.de
 BuildDepends: sdl (= 1.2.9-1001), libjpeg8, libpng15, libtiff
 Depends: %N-shlibs (= %v-%r)
@@ -29,6 +29,8 @@
  --disable-jpg-shared \
  --disable-png-shared \
  --disable-tif-shared \
+ --disable-webp-shared \
+ --disable-webp \
  --disable-sdltest \
  --disable-dependency-tracking
 
@@ -45,6 +47,9 @@
 Description: SDL image file loading library
 DescPackaging: 
  Use --disable-sdltest to allow building on headless systems.
+ 
+ Disabled webp support for now, as it require libwebp 0.1.3 or newer,
+ while Fink currently only has 0.1.2.
 
 Homepage: http://www.libsdl.org/projects/SDL_image/
 License: OSI-Approved


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/net drac1.info, 1.4, NONE drac1.patch, 1.1, NONE

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv18226/unstable/main/finkinfo/net

Removed Files:
drac1.info drac1.patch 
Log Message:
drac: upgrade to db48, sync to stable


--- drac1.info DELETED ---

--- drac1.patch DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/net drac1.info, NONE, 1.1 drac1.patch, NONE, 1.1

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv18226/stable/main/finkinfo/net

Added Files:
drac1.info drac1.patch 
Log Message:
drac: upgrade to db48, sync to stable


--- NEW FILE: drac1.info ---
Package: drac1
Version: 1.12
Revision: 1012
###
Depends: db48-aes-shlibs | db48-shlibs, daemonic
BuildDepends: db48-aes | db48
###
Source: ftp://ftp.cc.umanitoba.ca/src/drac.tar.Z
Source-MD5: fadaee589bf1dd9067222d58637d5fe4
NoSourceDirectory: true
###
PatchFile: %n.patch
PatchFile-MD5: 2eadf86e776dc57f0b8942d67ee780df
PatchScript: 
  sed -e 's,@FINKPREFIX@,%p,g' %{PatchFile} | patch -p1

###
DocFiles: COPYRIGHT Changes INSTALL PORTING README
ConfFiles: 
  %p/etc/drac/dracd.allow
  %p/var/lib/drac/dracd.db

###
UseMaxBuildJobs: false
CompileScript: 
  make

###
InstallScript: 
  mkdir -p %i/sbin
  mkdir -p %i/share/man/man3
  mkdir -p %i/share/man/man1
  mkdir -p %i/lib
  mkdir -p %i/include
  mkdir -p %i/etc/drac
  mkdir -p %i/var/lib/drac
  make install DESTDIR=%d
  touch %i/var/lib/drac/dracd.db
  install -m 664 dracd.allow-sample %i/etc/drac/dracd.allow
  install -m 644 libdrac.a %i/lib
  install -m 644 drac.h %i/include
  install -m 644 libdrac.1.12.0.dylib %i/lib
  ln -s %p/lib/libdrac.1.12.0.dylib %i/lib/libdrac.1.dylib
  ln -s %p/lib/libdrac.1.12.0.dylib %i/lib/libdrac.dylib
  ln -s %p/sbin/rpc.dracd %i/sbin/dracd
  install -m 644 rpc.dracd.1m %i/share/man/man1/rpc.dracd.1
  install -m 644 dracauth.3 %i/share/man/man3
  ln -s %p/share/man/man1/rpc.dracd.1 %i/share/man/man1/dracd.1

###
SplitOff: 
  Package: %N-dev
  Depends: %N-shlibs (= %v-%r)
  BuildDependsOnly: true
  Files: 
lib/libdrac.a
lib/libdrac.dylib
include
share/man/man3
  
  Description: Dynamic Relay Authorization Control (develpement files)

SplitOff2: 
  Package: %N-shlibs
  Files: 
lib/libdrac.*.dylib
  
  Shlibs: 
%p/lib/libdrac.1.dylib 1.0.0 %n (= 1.12-1)
  
  Description: Dynamic Relay Authorization Control (shared libraries)

###
PostInstScript: 
  # update init script if necessary
  daemonic update drac

PreRmScript: 
  # clean up
  [ -f %p/var/run/drac.pid ]  kill `cat %p/var/run/drac.pid`
  if [ $1 != upgrade ]; then
daemonic remove drac
  fi

###
DaemonicName: drac
DaemonicFile: 
  service
   descriptionDynamic Relay Authorization Control/description
   messageDynamic Relay Authorization Control/message

   daemon name=drac
executable background=yes%p/sbin/rpc.dracd/executable
parameters -i -e 30 %p/var/lib/drac/dracd.db/parameters
configfile%p/etc/ffserver.conf/configfile
pidfile%p/var/run/drac.pid/pidfile
   /daemon
  /service

###
Description: Dynamic Relay Authorization Control
DescDetail: 
  DRAC is a daemon that dynamically updates a relay authorization map for
  sendmail. It provides a way to allow legitimate users to relay mail through
  an SMTP server, while still preventing others from using it as a spam relay.
  User's IP addresses are added to the map immediately after they have
  authenticated to the POP or IMAP server. By default, map entries expire
  after 30 minutes, but can be renewed by additional authentication.
  Periodically checking mail on a POP server is sufficient to do this. The
  POP and SMTP servers can be on different hosts.

###
License: GPL
Maintainer: Justin F. Hallett the...@users.sourceforge.net
Homepage: http://mail.cc.umanitoba.ca/drac

--- NEW FILE: drac1.patch ---
diff -Nurd -x'*~' drac.orig/Makefile drac/Makefile
--- drac.orig/Makefile  2003-01-12 15:45:12.0 -0500
+++ drac/Makefile   2012-01-18 12:07:31.0 -0500
@@ -5,9 +5,10 @@
 
 # Paths
 
-INSTALL = /usr/ucb/install
-EBIN = /usr/local/sbin
-MAN = /usr/local/man/man
+DESTDIR =
+INSTALL = /usr/bin/install
+EBIN = @FINKPREFIX@/sbin
+MAN = @FINKPREFIX@/share/man/man
 
 # OS-Dependant settings
 
@@ -33,26 +34,26 @@
 # -DCIDR_KEY   # keys in CIDR format
 # -DTERM_KD# keys and data nul-terminated
 
-DEFS = -DTI_RPC -DFCNTL_LOCK -DSYSINFO
+DEFS = -DSOCK_RPC -DFCNTL_LOCK -DGETHOST -DDASH_C
 
 # Compiler flags 
 CC = cc
-RANLIB = :
-CFLAGS = $(DEFS) -g -I/usr/local/src/db/db-4.1.25/build_unix
+RANLIB = /usr/bin/ranlib
+CFLAGS = $(DEFS) -g -fno-common -I@FINKPREFIX@/include/db4
 #CFLAGS = $(DEFS) -g -I/usr/local/src/db/db-3.1.17/build_unix
 #CFLAGS = $(DEFS) -g -I/usr/local/src/db/db-2.4.14/Unix
 #CFLAGS = $(DEFS) -g -I/usr/local/src/db/db.1.85/PORT/sunos.5.2/include
-LDLIBS = -L/usr/local/src/db/db-4.1.25/build_unix -lnsl -ldb-4.1
+LDLIBS = -L@FINKPREFIX@/lib -ldb-4.8
 #LDLIBS = -L/usr/local/src/db/db-3.1.17/build_unix -lnsl -ldb
 #LDLIBS = -L/usr/local/src/db/db-2.4.14/Unix -lnsl -ldb
 #LDLIBS = -L/usr/local/src/db/db.1.85/PORT/sunos.5.2 -lnsl -ldb
-TSTLIBS = -L. -ldrac -lnsl
-RPCGENFLAGS = 
-#RPCGENFLAGS = -C
+TSTLIBS = libdrac.1.12.0.dylib
+#RPCGENFLAGS = 
+RPCGENFLAGS = -C
 
 # Man sections
 MANLIB = 3
-MANADM = 1m
+MANADM = 8
 
 ## Nothing to change after this point
 
@@ -70,6 +71,7 @@
 # Final targets
 
 CLIENT = 

[cvs] dists/10.4/stable/main/finkinfo/net drac1.info,1.1,1.2

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv18405/stable/main/finkinfo/net

Modified Files:
drac1.info 
Log Message:
rev-up b/c changed depends


Index: drac1.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/net/drac1.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- drac1.info  18 Jan 2012 17:18:15 -  1.1
+++ drac1.info  18 Jan 2012 17:19:27 -  1.2
@@ -1,6 +1,6 @@
 Package: drac1
 Version: 1.12
-Revision: 1012
+Revision: 1013
 ###
 Depends: db48-aes-shlibs | db48-shlibs, daemonic
 BuildDepends: db48-aes | db48


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/utils apt-ftparchive.info, NONE, 1.1 apt-ftparchive.patch, NONE, 1.1

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/utils
In directory vz-cvs-3.sog:/tmp/cvs-serv22282/stable/main/finkinfo/utils

Added Files:
apt-ftparchive.info apt-ftparchive.patch 
Log Message:
apt-ftparchive to stable with dep-upgrade to db48


--- NEW FILE: apt-ftparchive.patch ---
diff -Naur apt-0.5.4/Makefile apt-new/Makefile
--- apt-0.5.4/Makefile  2001-02-20 02:03:16.0 -0500
+++ apt-new/Makefile2005-05-25 00:08:51.0 -0400
@@ -11,13 +11,7 @@
 
 .PHONY: headers library clean veryclean all binary program doc
 all headers library clean veryclean binary program doc dirs:
-   $(MAKE) -C apt-pkg $@
-   $(MAKE) -C apt-inst $@
-   $(MAKE) -C methods $@
-   $(MAKE) -C cmdline $@
$(MAKE) -C ftparchive $@
-   $(MAKE) -C dselect $@
-   $(MAKE) -C doc $@
 
 # Some very common aliases
 .PHONY: maintainer-clean dist-clean distclean pristine sanity 
diff -Naur apt-0.5.4/apt-inst/makefile apt-new/apt-inst/makefile
--- apt-0.5.4/apt-inst/makefile 2001-02-26 23:16:05.0 -0500
[...2985 lines suppressed...]
+  #define NI_DATAGRAM NI_DGRAM
+  #endif
 
   #define sockaddr_storage sockaddr_in
 #endif
diff -Naur apt-0.5.4/patch_flush apt-new/patch_flush
--- apt-0.5.4/patch_flush   1969-12-31 19:00:00.0 -0500
+++ apt-new/patch_flush 2005-05-25 00:08:52.0 -0400
@@ -0,0 +1,11 @@
+#!/bin/sh
+set -e
+
+files=`find . -name '*.cc' -print | xargs grep -l 'flush;'`
+
+for i in $files ; do
+  sed 's/ flush;/ flush, fflush(NULL);/g' $i $i.tmp
+  mv $i.tmp $i
+done
+
+exit 0

--- NEW FILE: apt-ftparchive.info ---
Package: apt-ftparchive
Version: 0.5.4
Revision: 1016
GCC: 4.0
BuildDepends: db48-aes | db48, apt-dev (= 0.5.4-1052)
Depends: db48-aes-shlibs | db48-shlibs
Source: mirror:sourceforge:fink/apt_%v.tar.gz
Source-MD5: 274fb64e2e67318b4c9c94599785c37d
SourceDirectory: apt-%v
PatchFile: %n.patch
PatchFile-MD5: c86222d5b97e120959ecd9d8a2f62ea0
PatchScript: 
 sed -e 's|@PREFIX@|%p|g' -e 's|@DIST@|10.3|g' %{PatchFile} | patch -p1
 sh patch_flush
 for i in `grep -rl '#ifdef __GNUG__' .` ; do perl -pi.bak -e 's/#ifdef 
__GNUG__/#if defined(__GNUG__)  !defined(__APPLE_CC__)/' $i; done
 for i in `grep -rl '#ifdef __GNUG__' .` ; do perl -pi.bak -e 's/#ifdef 
__GNUG__/#if defined(__GNUG__)  !defined(__APPLE_CC__)/' $i ; done
#perl -pi.bak -e 's/socklen_t/int/' methods/ftp.h methods/ftp.cc

SetCPPFLAGS: -I. -DNULL=0L
SetCXXFLAGS: -O2 -DEMULATE_MMAP -D__USE_MISC -fconstant-cfstrings 
-I%p/include/db4 -I%p/include
CompileScript: 
 ./configure %c
 make -f makefile.wrap NOISY=1

InstallScript: 
install -d -m 0755 %i/bin
install -m 0755 bin/apt-ftparchive %i/bin
install -d -m 0755 %i/share/man/man1
install -m 0644 doc/apt-ftparchive.1 %i/share/man/man1
install -d -m 0755 %i/etc/apt/apt.conf.d
install -m 0644 ftparchive-conf %i/etc/apt/apt.conf.d

DocFiles: COPYING* AUTHORS
#
Description: Tool for apt repository management
License: GPL
Maintainer: Dave Vasilevsky v...@users.sourceforge.net
Homepage: http://packages.qa.debian.org/a/apt.html


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/utils apt-ftparchive.info, 1.6, NONE apt-ftparchive.patch, 1.1, NONE

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils
In directory vz-cvs-3.sog:/tmp/cvs-serv22282/unstable/main/finkinfo/utils

Removed Files:
apt-ftparchive.info apt-ftparchive.patch 
Log Message:
apt-ftparchive to stable with dep-upgrade to db48


--- apt-ftparchive.patch DELETED ---

--- apt-ftparchive.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/graphics libwebp2.info, NONE, 1.1 libwebp0.info, 1.1, 1.2

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics
In directory vz-cvs-3.sog:/tmp/cvs-serv28557

Modified Files:
libwebp0.info 
Added Files:
libwebp2.info 
Log Message:
Add libwebp2 and move to 10.4/stable.


Index: libwebp0.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics/libwebp0.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libwebp0.info   23 Jul 2011 22:56:43 -  1.1
+++ libwebp0.info   18 Jan 2012 17:56:08 -  1.2
@@ -1,6 +1,6 @@
 Package: libwebp0
 Version: 0.1.2
-Revision: 1
+Revision: 2
 Description: Library for manipulating WebP format
 DescDetail: 
WebP is a method of lossy compression that can be used on photographic
@@ -12,6 +12,9 @@
format to create smaller, better looking images that can help make the
web faster.
 
+DescPackaging: 
+   Tarball doesn't include configure script so we need to run autogen 
first.
+
 License: BSD
 Homepage: http://code.google.com/speed/webp/
 Maintainer: Daniel Johnson dan...@daniel-johnson.org
@@ -29,6 +32,8 @@
pkgconfig
 
 BuildDependsOnly: true
+Conflicts: libwebp0, libwebp2
+Replaces: libwebp0, libwebp2
 
 ConfigureParams: 
--disable-dependency-tracking \
@@ -67,11 +72,13 @@


Depends: 
-   %N-shlibs (= %v-%r),
+   %N-shlibs (= %v-%r),
libjpeg8-shlibs,
libpng15-shlibs

-   
+   Conflicts: libwebp0-bin, libwebp2-bin
+   Replaces: libwebp0-bin, libwebp2-bin
+
Files: bin share

DocFiles: AUTHORS ChangeLog COPYING NEWS PATENTS README

--- NEW FILE: libwebp2.info ---
Package: libwebp2
Version: 0.1.3
Revision: 1
Description: Library for manipulating WebP format
DescDetail: 
WebP is a method of lossy compression that can be used on photographic
images. The degree of compression is adjustable so a user can choose
the trade-off between file size and image quality.

A WebP file consists of VP8 image data, and a container based on RIFF.
Webmasters, web developers and browser developers can use the WebP
format to create smaller, better looking images that can help make the
web faster.

License: BSD
Homepage: http://code.google.com/speed/webp/
Maintainer: Daniel Johnson dan...@daniel-johnson.org

Source: http://webp.googlecode.com/files/libwebp-%v.tar.gz
Source-MD5: 254d4670e14e9ed881f0536b006ab336

Depends: %n-shlibs (= %v-%r)
BuildDepends: 
libjpeg8,
libpng15,
pkgconfig

BuildDependsOnly: true
Conflicts: libwebp0, libwebp2
Replaces: libwebp0, libwebp2

ConfigureParams: 
--disable-dependency-tracking \
--disable-static


InstallScript: 
make install DESTDIR=%d


DocFiles: AUTHORS ChangeLog COPYING NEWS PATENTS README

SplitOff: 
Package: %N-shlibs

Files: lib/libwebp.*.dylib
Shlibs: 
%p/lib/libwebp.2.dylib 3.0.0 %n (= 0.1.3-1)


DocFiles: AUTHORS ChangeLog COPYING NEWS PATENTS README


SplitOff2: 
Package: %N-bin
Description: Utilities to convert between webp and png/jpeg
DescUsage: 
Includes utilities:
cwebp - Encodes png/jpeg to webp
dwebp - Decodes webp to png/jpeg


Depends: 
%N-shlibs (= %v-%r),
libjpeg8-shlibs,
libpng15-shlibs

Conflicts: libwebp0-bin, libwebp2-bin
Replaces: libwebp0-bin, libwebp2-bin

Files: bin share

DocFiles: AUTHORS ChangeLog COPYING NEWS PATENTS README



--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/graphics libwebp0.info, NONE, 1.1 libwebp2.info, NONE, 1.1

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics
In directory vz-cvs-3.sog:/tmp/cvs-serv28614

Added Files:
libwebp0.info libwebp2.info 
Log Message:
Add libwebp2 and move to 10.4/stable.


--- NEW FILE: libwebp0.info ---
Package: libwebp0
Version: 0.1.2
Revision: 2
Description: Library for manipulating WebP format
DescDetail: 
WebP is a method of lossy compression that can be used on photographic
images. The degree of compression is adjustable so a user can choose
the trade-off between file size and image quality.

A WebP file consists of VP8 image data, and a container based on RIFF.
Webmasters, web developers and browser developers can use the WebP
format to create smaller, better looking images that can help make the
web faster.

DescPackaging: 
Tarball doesn't include configure script so we need to run autogen 
first.

License: BSD
Homepage: http://code.google.com/speed/webp/
Maintainer: Daniel Johnson dan...@daniel-johnson.org

Source: http://webp.googlecode.com/files/libwebp-%v.tar.gz
Source-MD5: 5534f6e3c8b9f5851a9a5b56bf78f2b0

Depends: %n-shlibs (= %v-%r)
BuildDepends: 
autoconf2.6,
automake1.11,
libjpeg8,
libpng15,
libtool2,
pkgconfig

BuildDependsOnly: true
Conflicts: libwebp0, libwebp2
Replaces: libwebp0, libwebp2

ConfigureParams: 
--disable-dependency-tracking \
--disable-static


CompileScript: 
./autogen.sh
%{default_script}


InstallScript: 
make install DESTDIR=%d


DocFiles: AUTHORS ChangeLog COPYING NEWS PATENTS README

SplitOff: 
Package: %N-shlibs

Files: lib/libwebp.*.dylib
Shlibs: 
%p/lib/libwebp.0.dylib 1.0.0 %n (= 0.1.2-1)


DocFiles: AUTHORS ChangeLog COPYING NEWS PATENTS README


SplitOff2: 
Package: %N-bin
Description: Utilities to convert between webp and png/jpeg
DescUsage: 
Includes utilities:
cwebp - Encodes png/jpeg to webp
dwebp - Decodes webp to png/jpeg


Depends: 
%N-shlibs (= %v-%r),
libjpeg8-shlibs,
libpng15-shlibs

Conflicts: libwebp0-bin, libwebp2-bin
Replaces: libwebp0-bin, libwebp2-bin

Files: bin share

DocFiles: AUTHORS ChangeLog COPYING NEWS PATENTS README


--- NEW FILE: libwebp2.info ---
Package: libwebp2
Version: 0.1.3
Revision: 1
Description: Library for manipulating WebP format
DescDetail: 
WebP is a method of lossy compression that can be used on photographic
images. The degree of compression is adjustable so a user can choose
the trade-off between file size and image quality.

A WebP file consists of VP8 image data, and a container based on RIFF.
Webmasters, web developers and browser developers can use the WebP
format to create smaller, better looking images that can help make the
web faster.

License: BSD
Homepage: http://code.google.com/speed/webp/
Maintainer: Daniel Johnson dan...@daniel-johnson.org

Source: http://webp.googlecode.com/files/libwebp-%v.tar.gz
Source-MD5: 254d4670e14e9ed881f0536b006ab336

Depends: %n-shlibs (= %v-%r)
BuildDepends: 
libjpeg8,
libpng15,
pkgconfig

BuildDependsOnly: true
Conflicts: libwebp0, libwebp2
Replaces: libwebp0, libwebp2

ConfigureParams: 
--disable-dependency-tracking \
--disable-static


InstallScript: 
make install DESTDIR=%d


DocFiles: AUTHORS ChangeLog COPYING NEWS PATENTS README

SplitOff: 
Package: %N-shlibs

Files: lib/libwebp.*.dylib
Shlibs: 
%p/lib/libwebp.2.dylib 3.0.0 %n (= 0.1.3-1)


DocFiles: AUTHORS ChangeLog COPYING NEWS PATENTS README


SplitOff2: 
Package: %N-bin
Description: Utilities to convert between webp and png/jpeg
DescUsage: 
Includes utilities:
cwebp - Encodes png/jpeg to webp
dwebp - Decodes webp to png/jpeg


Depends: 
%N-shlibs (= %v-%r),
libjpeg8-shlibs,
libpng15-shlibs

Conflicts: libwebp0-bin, libwebp2-bin
Replaces: libwebp0-bin, libwebp2-bin

Files: bin share

DocFiles: AUTHORS ChangeLog COPYING NEWS PATENTS README



--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits 

[cvs] dists/10.4/unstable/main/finkinfo/graphics libwebp0.info, 1.1, NONE

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics
In directory vz-cvs-3.sog:/tmp/cvs-serv28646

Removed Files:
libwebp0.info 
Log Message:
Add libwebp2 and move to 10.4/stable.


--- libwebp0.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/net gift-openft.info,1.3,1.4

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv30299/unstable/main/finkinfo/net

Modified Files:
gift-openft.info 
Log Message:
blindly upgrading to db48 (dependency giftd doesn't build for me, so can't 
imagine this dep-change makes things worse *here*)


Index: gift-openft.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/gift-openft.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gift-openft.info18 Aug 2008 01:30:28 -  1.3
+++ gift-openft.info18 Jan 2012 18:01:46 -  1.4
@@ -1,13 +1,13 @@
 # $Id $
 Package: gift-openft
 Version: 0.2.1.5
-Revision: 1010
+Revision: 1011
 Source: mirror:sourceforge:gift/%n-%v.tar.bz2
 Source-MD5: 43286096e9e6e94c6a5f0da236eb4d14
 SourceDirectory: %n-%v
 Provides: gift-plugin
-Depends: giftd-shlibs ( = 0.11.3-1 ), db43-ssl-shlibs (= 4.3.29-1001) | 
db43-shlibs (= 4.3.29-1001)
-BuildDepends: libtool14 ( = 1.5-1 ), giftd-dev ( = 0.11.3-1 ), db43-ssl (= 
4.3.29-1001) | db43 (= 4.3.29-1001), pkgconfig
+Depends: giftd-shlibs ( = 0.11.3-1 ), db48-aes-shlibs | db48-shlibs
+BuildDepends: libtool14 ( = 1.5-1 ), giftd-dev ( = 0.11.3-1 ), db48-aes | 
db48, pkgconfig
 ConfigureParams: --mandir='${prefix}/share/man'
 InstallScript: 
   make install DESTDIR=%d


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/devel nasm.info,NONE,1.1

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv1740

Added Files:
nasm.info 
Log Message:
Move to stable.


--- NEW FILE: nasm.info ---
Package: nasm
Version: 2.09.07
Revision: 1
Description: Netwide Assembler for x86
License: BSD
Maintainer: Daniel Johnson dan...@daniel-johnson.org
Homepage: http://www.nasm.us/
DescDetail: 
The Netwide Assembler, NASM, is an 80x86 and x86-64 assembler designed
for portability and modularity. It supports a range of object file
formats, including Linux and *BSD a.out, ELF, COFF, Mach-O, Microsoft
16-bit OBJ, Win32 and Win64. It will also output plain binary files.
Its syntax is designed to be simple and easy to understand, similar to
Intel's but less complex. It supports all currently known x86
architectural extensions, and has strong support for macros.

This version fully supports i386 and x86_64 code generation.
The version included with Xcode only does i386.

Architecture: i386, x86_64

Source: http://www.nasm.us/pub/nasm/releasebuilds/%v/%n-%v.tar.bz2
Source-MD5: fb95d63b10d2bcbb1a4b0f0e1cf11137
Source2: http://www.nasm.us/pub/nasm/releasebuilds/%v/%n-%v-xdoc.tar.bz2
Source2-MD5: f2510ba62c80f5262f3bb4c0f3601c54

NoSetCPPFLAGS: true
NoSetLDFLAGS: true

CompileScript: 
./configure %c
make everything docdir='${datarootdir}/doc/%n'


InfoTest: TestScript: make test || exit 2

InstallScript: make install_everything docdir='${datarootdir}/doc/%n' 
INSTALLROOT=%d

DocFiles: AUTHORS ChangeLog CHANGES LICENSE README TODO 
rdoff/README:README.rdoff
InfoDocs: nasm.info


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel nasm.info,1.7,NONE

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv1792

Removed Files:
nasm.info 
Log Message:
Move to stable.


--- nasm.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/graphics libjpeg-turbo.info, NONE, 1.1 libjpeg8-turbo.info, NONE, 1.1

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics
In directory vz-cvs-3.sog:/tmp/cvs-serv1971

Added Files:
libjpeg-turbo.info libjpeg8-turbo.info 
Log Message:
Move to stable.


--- NEW FILE: libjpeg-turbo.info ---
Package: libjpeg-turbo
Version: 1.1.90
Revision: 1
Description: High speed libjpeg for i386 and x86_64
DescDetail: 
libjpeg-turbo is a high-speed version of libjpeg for x86 and x86-64
processors which uses SIMD instructions (MMX, SSE2, etc.) to accelerate
baseline JPEG compression and decompression. libjpeg-turbo is generally
2-4x as fast as the unmodified version of libjpeg, all else being
equal.

libjpeg-turbo was originally based on libjpeg/SIMD by Miyasaka Masaru,
but the TigerVNC and VirtualGL projects made numerous enhancements to
the codec, including improved support for Mac OS X, 64-bit support,
support for 32-bit and big endian pixel formats (RGBA, ABGR, etc.),
accelerated Huffman encoding/decoding, and various bug fixes. The goal
was to produce a fully open source codec that could replace the
partially closed source TurboJPEG/IPP codec used by VirtualGL and
TurboVNC. libjpeg-turbo generally achieves 80-120% of the performance
of TurboJPEG/IPP. It is faster in some areas but slower in others.

DescPackaging: 
libjpeg-turbo is API/ABI compatible with libjpeg and can be used 
anywhere
libjpeg.62.dylib is used. It's buried in %p/lib/%n to avoid 
conflicts so packages need to be told to look there to use it.

libjpeg-turbo works on powerpc, but doesn't get any speedup over
regular libjpeg.

License: LGPL2
Homepage: http://libjpeg-turbo.virtualgl.org/
Maintainer: Daniel Johnson dan...@daniel-johnson.org

Source: mirror:sourceforge:%n/%n-%v.tar.gz
Source-MD5: 54cb0bfa2ad507e8f9851eb66610eab5

Depends: %n-shlibs (= %v-%r)
BuildDepends: ( %m != powerpc ) nasm (= 2.09-1)
BuildDependsOnly: true

ConfigureParams: --prefix=%p/lib/%n --disable-dependency-tracking 
--disable-static ( %m != powerpc ) --host=%m-apple-darwin`uname -r` ( %m != 
powerpc ) --build=%m-apple-darwin`uname -r` --without-java

InfoTest: TestScript: make test || exit 2

InstallScript: make install DESTDIR=%d

DocFiles: change.log ChangeLog.txt libjpeg.txt README README-turbo.txt 
structure.txt usage.txt wizard.txt

SplitOff: 
Package: %N-shlibs

Files: lib/%N/lib/libjpeg.*.dylib lib/%N/lib/libturbojpeg.dylib
Shlibs: 
%p/lib/%N/lib/libjpeg.62.dylib 63.0.0 %n (= 0.0.93-1)
%p/lib/%N/lib/libturbojpeg.dylib 0.0.0 %n (= 0.0.93-1)


DocFiles: change.log ChangeLog.txt libjpeg.txt README README-turbo.txt 
structure.txt usage.txt wizard.txt


--- NEW FILE: libjpeg8-turbo.info ---
Package: libjpeg8-turbo
Version: 1.1.90
Revision: 1
Description: High speed libjpeg for i386 and x86_64
DescDetail: 
libjpeg-turbo is a high-speed version of libjpeg for x86 and x86-64
processors which uses SIMD instructions (MMX, SSE2, etc.) to accelerate
baseline JPEG compression and decompression. libjpeg-turbo is generally
2-4x as fast as the unmodified version of libjpeg, all else being
equal.

libjpeg-turbo was originally based on libjpeg/SIMD by Miyasaka Masaru,
but the TigerVNC and VirtualGL projects made numerous enhancements to
the codec, including improved support for Mac OS X, 64-bit support,
support for 32-bit and big endian pixel formats (RGBA, ABGR, etc.),
accelerated Huffman encoding/decoding, and various bug fixes. The goal
was to produce a fully open source codec that could replace the
partially closed source TurboJPEG/IPP codec used by VirtualGL and
TurboVNC. libjpeg-turbo generally achieves 80-120% of the performance
of TurboJPEG/IPP. It is faster in some areas but slower in others.

DescPackaging: 
libjpeg8-turbo is API/ABI compatible with libjpeg8 and can be used 
anywhere
libjpeg.8.dylib is used. It's buried in %p/lib/%n to avoid 
conflicts so packages need to be told to look there to use it.

libjpeg8-turbo works on powerpc, but doesn't get any speedup over
regular libjpeg8.

License: LGPL2
Homepage: http://libjpeg-turbo.virtualgl.org/
Maintainer: Daniel Johnson dan...@daniel-johnson.org

Source: mirror:sourceforge:libjpeg-turbo/libjpeg-turbo-%v.tar.gz
Source-MD5: 54cb0bfa2ad507e8f9851eb66610eab5

Depends: %n-shlibs (= %v-%r)
BuildDepends: ( %m != powerpc ) nasm (= 2.09-1)
BuildDependsOnly: true

ConfigureParams: --prefix=%p/lib/%n --disable-dependency-tracking 
--disable-static ( %m != powerpc ) --host=%m-apple-darwin`uname -r` ( %m != 
powerpc ) --build=%m-apple-darwin`uname -r` --without-java --with-jpeg8

InfoTest: TestScript: make test || exit 2

InstallScript: make install DESTDIR=%d

DocFiles: change.log 

[cvs] dists/10.4/unstable/main/finkinfo/graphics libjpeg-turbo.info, 1.8, NONE libjpeg8-turbo.info, 1.4, NONE

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics
In directory vz-cvs-3.sog:/tmp/cvs-serv2012

Removed Files:
libjpeg-turbo.info libjpeg8-turbo.info 
Log Message:
Move to stable.


--- libjpeg-turbo.info DELETED ---

--- libjpeg8-turbo.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/crypto db43-ssl.info,1.3,NONE

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv1880/stable/main/finkinfo/crypto

Removed Files:
db43-ssl.info 
Log Message:
scary-old version no longer used anywhere...killing it hard (best not to leave 
a years-abandonded -ssl package even as a -shlibs remnant)


--- db43-ssl.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs db43.info,1.9,NONE

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv1880/stable/main/finkinfo/libs

Removed Files:
db43.info 
Log Message:
scary-old version no longer used anywhere...killing it hard (best not to leave 
a years-abandonded -ssl package even as a -shlibs remnant)


--- db43.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/sound libmikmod3.info, 1.1, 1.2 libmikmod3.patch, 1.1, 1.2

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sound
In directory vz-cvs-3.sog:/tmp/cvs-serv9669

Modified Files:
libmikmod3.info libmikmod3.patch 
Log Message:
Fix bad -framework flag in libmikmod-config script. Thanks to Max.


Index: libmikmod3.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sound/libmikmod3.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libmikmod3.info 23 Jul 2011 21:58:14 -  1.1
+++ libmikmod3.info 18 Jan 2012 18:35:10 -  1.2
@@ -1,6 +1,6 @@
 Package: libmikmod3
 Version: 3.2.0-beta2
-Revision: 3
+Revision: 4
 Depends: %N-shlibs (= %v-%r), macosx
 BuildDepends: fink (= 0.24.12)
 Conflicts: libmikmod
@@ -10,7 +10,7 @@
 Source: http://mikmod.raphnet.net/files/libmikmod-%v.tar.bz2
 Source-MD5: 5b05f3b1167eba7855b8e38bde2b8070
 PatchFile: %n.patch
-PatchFile-MD5: 5532869ec2adfbd2f41eb72ccb57fd0c
+PatchFile-MD5: ce38781f4a334253aaaef1257ab8cabc
 PatchScript: 
   %{default_script}
   perl -pi -e 's/(AC_DEFUN\()([^[]+)(,)/\1\[\2]\3/' libmikmod.m4

Index: libmikmod3.patch
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sound/libmikmod3.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libmikmod3.patch23 Jul 2011 21:58:14 -  1.1
+++ libmikmod3.patch18 Jan 2012 18:35:10 -  1.2
@@ -1,12 +1,24 @@
-diff -ru libmikmod-3.2.0-beta2.orig/libmikmod/Makefile.in 
libmikmod-3.2.0-beta2/libmikmod/Makefile.in
 libmikmod-3.2.0-beta2.orig/libmikmod/Makefile.in   2004-02-19 
08:34:00.0 -0500
-+++ libmikmod-3.2.0-beta2/libmikmod/Makefile.in2004-11-28 
22:40:26.0 -0500
+diff -ru libmikmod-3.2.0-beta2/configure 
libmikmod-3.2.0-beta2-patched/configure
+--- libmikmod-3.2.0-beta2/configure2004-02-20 23:08:30.0 +0100
 libmikmod-3.2.0-beta2-patched/configure2012-01-17 13:38:49.0 
+0100
+@@ -7857,7 +7857,7 @@
+ #define DRV_OSX 1
+ EOF
+ 
+-  LIBRARY_LIB=-framework CoreAudio $LIBRARY_LIB
++  LIBRARY_LIB=-Wl,-framework,CoreAudio $LIBRARY_LIB
+   fi
+ fi
+ 
+diff -ru libmikmod-3.2.0-beta2/libmikmod/Makefile.in 
libmikmod-3.2.0-beta2-patched/libmikmod/Makefile.in
+--- libmikmod-3.2.0-beta2/libmikmod/Makefile.in2004-02-19 
14:34:00.0 +0100
 libmikmod-3.2.0-beta2-patched/libmikmod/Makefile.in2012-01-17 
13:39:03.0 +0100
 @@ -73,7 +73,7 @@
rm -f Makefile
  
  $(LIB): $(OBJ)
 -  $(LIBTOOL) --mode=link $(CC) -version-info 3:0:0 -o $@ $(OBJ) 
$(LIBRARY_LIB) -rpath $(DESTDIR)$(libdir)
-+  $(LIBTOOL) --mode=link $(CC) -no-undefined -version-info 3:0:0 -o $@ 
$(OBJ) $(LIBRARY_LIB) -Wl,-framework -Wl,CoreAudio -rpath $(DESTDIR)$(libdir)
++  $(LIBTOOL) --mode=link $(CC) -no-undefined -version-info 3:0:0 -o $@ 
$(OBJ) $(LIBRARY_LIB) -Wl,-framework,CoreAudio -rpath $(DESTDIR)$(libdir)
  
  dl_hpux.lo:   $(top_srcdir)/dlapi/dl_hpux.c \
$(top_srcdir)/dlapi/dlfcn.h


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/sound libmikmod3.info, 1.4, 1.5 libmikmod3.patch, 1.1, 1.2

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sound
In directory vz-cvs-3.sog:/tmp/cvs-serv9820

Modified Files:
libmikmod3.info libmikmod3.patch 
Log Message:
Fix bad -framework flag in libmikmod-config script. Thanks to Max.


Index: libmikmod3.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sound/libmikmod3.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- libmikmod3.info 21 Dec 2008 18:33:01 -  1.4
+++ libmikmod3.info 18 Jan 2012 18:35:18 -  1.5
@@ -1,6 +1,6 @@
 Package: libmikmod3
 Version: 3.2.0-beta2
-Revision: 3
+Revision: 4
 Depends: %N-shlibs (= %v-%r), macosx
 BuildDepends: fink (= 0.24.12)
 Conflicts: libmikmod
@@ -10,7 +10,7 @@
 Source: http://mikmod.raphnet.net/files/libmikmod-%v.tar.bz2
 Source-MD5: 5b05f3b1167eba7855b8e38bde2b8070
 PatchFile: %n.patch
-PatchFile-MD5: 5532869ec2adfbd2f41eb72ccb57fd0c
+PatchFile-MD5: ce38781f4a334253aaaef1257ab8cabc
 PatchScript: 
   %{default_script}
   perl -pi -e 's/(AC_DEFUN\()([^[]+)(,)/\1\[\2]\3/' libmikmod.m4

Index: libmikmod3.patch
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sound/libmikmod3.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libmikmod3.patch20 Jan 2006 20:12:58 -  1.1
+++ libmikmod3.patch18 Jan 2012 18:35:18 -  1.2
@@ -1,12 +1,24 @@
-diff -ru libmikmod-3.2.0-beta2.orig/libmikmod/Makefile.in 
libmikmod-3.2.0-beta2/libmikmod/Makefile.in
 libmikmod-3.2.0-beta2.orig/libmikmod/Makefile.in   2004-02-19 
08:34:00.0 -0500
-+++ libmikmod-3.2.0-beta2/libmikmod/Makefile.in2004-11-28 
22:40:26.0 -0500
+diff -ru libmikmod-3.2.0-beta2/configure 
libmikmod-3.2.0-beta2-patched/configure
+--- libmikmod-3.2.0-beta2/configure2004-02-20 23:08:30.0 +0100
 libmikmod-3.2.0-beta2-patched/configure2012-01-17 13:38:49.0 
+0100
+@@ -7857,7 +7857,7 @@
+ #define DRV_OSX 1
+ EOF
+ 
+-  LIBRARY_LIB=-framework CoreAudio $LIBRARY_LIB
++  LIBRARY_LIB=-Wl,-framework,CoreAudio $LIBRARY_LIB
+   fi
+ fi
+ 
+diff -ru libmikmod-3.2.0-beta2/libmikmod/Makefile.in 
libmikmod-3.2.0-beta2-patched/libmikmod/Makefile.in
+--- libmikmod-3.2.0-beta2/libmikmod/Makefile.in2004-02-19 
14:34:00.0 +0100
 libmikmod-3.2.0-beta2-patched/libmikmod/Makefile.in2012-01-17 
13:39:03.0 +0100
 @@ -73,7 +73,7 @@
rm -f Makefile
  
  $(LIB): $(OBJ)
 -  $(LIBTOOL) --mode=link $(CC) -version-info 3:0:0 -o $@ $(OBJ) 
$(LIBRARY_LIB) -rpath $(DESTDIR)$(libdir)
-+  $(LIBTOOL) --mode=link $(CC) -no-undefined -version-info 3:0:0 -o $@ 
$(OBJ) $(LIBRARY_LIB) -Wl,-framework -Wl,CoreAudio -rpath $(DESTDIR)$(libdir)
++  $(LIBTOOL) --mode=link $(CC) -no-undefined -version-info 3:0:0 -o $@ 
$(OBJ) $(LIBRARY_LIB) -Wl,-framework,CoreAudio -rpath $(DESTDIR)$(libdir)
  
  dl_hpux.lo:   $(top_srcdir)/dlapi/dl_hpux.c \
$(top_srcdir)/dlapi/dlfcn.h


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods par-pm.info, 1.12, 1.13 jcode-pm.info, 1.6, NONE

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv22155

Modified Files:
par-pm.info 
Removed Files:
jcode-pm.info 
Log Message:
obsolete-dep upgrade


--- jcode-pm.info DELETED ---

Index: par-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/par-pm.info,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- par-pm.info 17 Jan 2012 07:01:10 -  1.12
+++ par-pm.info 18 Jan 2012 20:48:57 -  1.13
@@ -2,7 +2,7 @@
 Package: par-pm%type_pkg[perl]
 Version: 0.959
 
-Revision: 102
+Revision: 103
 #Need different Revisions for different system-perl perl versions
 
 Distribution: (%type_pkg[perl] = 586) 10.5
@@ -14,7 +14,7 @@
 
 Depends: 
  perl%type_pkg[perl]-core, archive-zip-pm%type_pkg[perl],
- compress-zlib-pm%type_pkg[perl], getopt-argvfile-pm,
+ io-compress-pm%type_pkg[perl], getopt-argvfile-pm,
  module-scandeps-pm (= 0.69-1), par-dist-pm
 
 Suggests: digest-sha1-pm%type_pkg[perl], module-signature-pm%type_pkg[perl], 
gnupg


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods jcode-pm.info, NONE, 1.1

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv22219

Added Files:
jcode-pm.info 
Log Message:
builds fine on 10.6 (really)


--- NEW FILE: jcode-pm.info ---
Info2: 
Package: jcode-pm%type_pkg[perl]
Version: 1.99.07
Revision: 2
Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5
CompileScript: 
  #!/bin/sh -ev
  [ %type_raw[perl] = 5.8.0 ]  export LC_CTYPE=C
  %{default_script}

InstallScript: 
  %{default_script}
  mkdir -p %i/lib/perl5/%type_raw[perl]/man
  mv %i/share/man/man3 %i/lib/perl5/%type_raw[perl]/man
  rm -rf %i/lib/perl5/darwin

Type: perl (5.8.1 5.8.4 5.8.6)
UpdatePod: true
Source: http://openlab.jp/Jcode/Jcode-1.99_07.tar.gz
Source-MD5: c99170db659387c24f6d4e13be59d071
Depends: perl%type_pkg[perl]-core
Description: Perl module for japanese charset handling
DocFiles: Changes README
License: Artistic
Maintainer: Todai Fink Team f...@sodan.ecc.u-tokyo.ac.jp
DescDetail: 
 Jcode.pm is a Perl module that handles various Japanese charsets. It has all
 features available on jcode.pl-2.10 PLUS

 - Object-oriented approach on Japanese text handling
 - mime header handling
 - Unicode feature (UCS2 and UTF8)

 As of Jcode 2.0, Jcode now acts as a wrapper to Encode for perl 5.8.1 and
 better.

 For older perls, Jcode works the same as version 0.88.

DescUsage: 
 use Jcode;
 # 
 # traditional
 Jcode::convert(\$str, $ocode, $icode, z);
 # or OOP!
 print Jcode-new($str)-h2z-tr($from, $to)-utf8;

DescPackaging: 
 Originally packaged by Masanori Sekino.

 Some tests fail if you use perl 5.8.0 and UTF-8 locale is set.

Homepage: http://openlab.jp/Jcode/



--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods net-amazon-pm.info, NONE, 1.1

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv22367/stable/main/finkinfo/libs/perlmods

Added Files:
net-amazon-pm.info 
Log Message:
builds fine on 10.6 (really)


--- NEW FILE: net-amazon-pm.info ---
Info2: 
Package: net-amazon-pm%type_pkg[perl]
Version: 0.34
Revision: 1
BuildDepends: perl%type_pkg[perl]-core, libwww-pm%type_pkg[perl], 
xml-simple-pm%type_pkg[perl], uri-pm%type_pkg[perl], 
log-log4perl-pm%type_pkg[perl]
InstallScript: 
  %{default_script}
  mv %i/share/man %i/lib/perl5/%type_raw[perl]

Source: mirror:cpan:modules/by-module/Net/Net-Amazon-%v.tar.gz
Source-MD5: 8da6f8e5304b745739c8738a43b6d6f4
Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5
Type: perl (5.8.1 5.8.4 5.8.6)
UpdatePOD: true
DocFiles: Changes MANIFEST README
Description: Perl module to access Amazon Web Service
DescDetail: 
Net::Amazon is a Perl module providing an object-oriented interface 
to amazon.com's SOAP and XML/HTTP interfaces. This way it's possible 
to create applications using Amazon's vast amount of data via a 
functional interface, without having to worry about the underlying 
communication mechanism.

License: Artistic
Maintainer: Toshiya SAITOH tosh...@saitoh.nu
Homepage: http://net-amazon.sourceforge.net/



--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods net-amazon-pm.info, 1.6, NONE

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory 
vz-cvs-3.sog:/tmp/cvs-serv22367/unstable/main/finkinfo/libs/perlmods

Removed Files:
net-amazon-pm.info 
Log Message:
builds fine on 10.6 (really)


--- net-amazon-pm.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods cpanplus-pm.info, 1.9, 1.10

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv25850

Modified Files:
cpanplus-pm.info 
Log Message:
obsolete-dep upgrade


Index: cpanplus-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/cpanplus-pm.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- cpanplus-pm.info4 Oct 2011 21:41:27 -   1.9
+++ cpanplus-pm.info18 Jan 2012 21:01:17 -  1.10
@@ -1,7 +1,7 @@
 Info2: 
 Package: cpanplus-pm%type_pkg[perl]
 Version: 0.0562
-Revision: 3
+Revision: 4
 Distribution: (%type_pkg[perl] = 586) 10.5
 Type: perl (5.8.6)
 Description: Ameliorated interface to the CPAN
@@ -23,7 +23,7 @@
 Depends: 
  perl%type_pkg[perl]-core, archive-tar-pm%type_pkg[perl],
  io-zlib-pm%type_pkg[perl], archive-zip-pm%type_pkg[perl],
- compress-zlib-pm%type_pkg[perl], uri-pm%type_pkg[perl],
+ io-compress-pm%type_pkg[perl], uri-pm%type_pkg[perl],
  html-parser-pm%type_pkg[perl], libwww-pm%type_pkg[perl],
  locale-maketext-lexicon-pm%type_pkg[perl], yaml-pm,
  module-signature-pm%type_pkg[perl]


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods cpanplus-pm.info, 1.10, 1.11

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv26527

Modified Files:
cpanplus-pm.info 
Log Message:
dep cleanup


Index: cpanplus-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/cpanplus-pm.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- cpanplus-pm.info18 Jan 2012 21:01:17 -  1.10
+++ cpanplus-pm.info18 Jan 2012 21:03:40 -  1.11
@@ -1,7 +1,7 @@
 Info2: 
 Package: cpanplus-pm%type_pkg[perl]
 Version: 0.0562
-Revision: 4
+Revision: 5
 Distribution: (%type_pkg[perl] = 586) 10.5
 Type: perl (5.8.6)
 Description: Ameliorated interface to the CPAN
@@ -9,24 +9,13 @@
 Maintainer: Daniel Macks dma...@netspace.org
 Homepage: http://search.cpan.org/dist/CPANPLUS/
 
-# Dependencies:
-#
-# Only the perl 5.8.6 external dependencies are listed below
-#
-# Also depends on the following for perls earlier than 5.8.0:
-#  Net::SMTP, Digest::MD5, Storable, Net::FTP, MIME::Base64, Locale::Maketext
-#
-# Future versions of this package should also depend on the following
-# for test reporting:
-#   Test::Reporter
-#
 Depends: 
  perl%type_pkg[perl]-core, archive-tar-pm%type_pkg[perl],
  io-zlib-pm%type_pkg[perl], archive-zip-pm%type_pkg[perl],
  io-compress-pm%type_pkg[perl], uri-pm%type_pkg[perl],
  html-parser-pm%type_pkg[perl], libwww-pm%type_pkg[perl],
  locale-maketext-lexicon-pm%type_pkg[perl], yaml-pm,
- module-signature-pm%type_pkg[perl]
+ module-signature-pm%type_pkg[perl], test-reporter-pm
 
 
 # Unpack Phase:


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods plack-pm.info, 1.1, NONE

2012-01-18 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv28627

Removed Files:
plack-pm.info 
Log Message:
removing for now because of a missing dependency that is not yet in CVS
See 
https://sourceforge.net/tracker/?func=detailaid=3404397group_id=17203atid=414256
 for info

--- plack-pm.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods cpanplus-dist-build-pm.info, 1.9, NONE cpanplus-pm.info, 1.11, NONE

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1117

Removed Files:
cpanplus-dist-build-pm.info cpanplus-pm.info 
Log Message:
cpanplus-pmXXX requires manual intervention and seems unable to avoid touching 
%p during build/test process; it's old %v and old XXX only, so die Die DIE


--- cpanplus-dist-build-pm.info DELETED ---

--- cpanplus-pm.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods par-pm.info, NONE, 1.1

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1789/stable/main/finkinfo/libs/perlmods

Added Files:
par-pm.info 
Log Message:
builds fine on 10.6 (really)


--- NEW FILE: par-pm.info ---
Info2: 
Package: par-pm%type_pkg[perl]
Version: 0.959

Revision: 104
#Need different Revisions for different system-perl perl versions

Distribution: (%type_pkg[perl] = 586) 10.5
Type: perl (5.8.6)
Description: Perl Archive Toolkit
License: Artistic/GPL
Maintainer: None fink-de...@lists.sourceforge.net
Homepage: http://search.cpan.org/dist/PAR

Depends: 
 perl%type_pkg[perl]-core, archive-zip-pm%type_pkg[perl],
 io-compress-pm%type_pkg[perl], getopt-argvfile-pm,
 module-scandeps-pm (= 0.69-1), par-dist-pm,
 digest-sha1-pm%type_pkg[perl], module-signature-pm%type_pkg[perl], gnupg

Replaces: %N-man (0.959-1)
Conflicts: %N-man (0.959-1)

Source: mirror:cpan:authors/id/S/SM/SMUELLER/PAR-%v.tar.gz
Source-MD5: 12328c4c6236e861cc20a68d2181999e

# Disable the tests because the $Config{startperl} is screwy in Apple's perl
NoPerlTests: true

UseMaxBuildJobs: false
# Disable auto-installation of optional packages
CompileScript: 
 #!/bin/sh -ev
 export PERL_EXTUTILS_AUTOINSTALL=--skip
 %{default_script}


InstallScript: 
 %{default_script}
 mkdir -p %i/lib/perl5/%type_raw[perl]/man
 mv %i/share/man/man3 %i/lib/perl5/%type_raw[perl]/man


UpdatePOD: true
DocFiles: AUTHORS ChangeLog MANIFEST META.yml README SIGNATURE TODO

DescPackaging: 
 Report bugs to the maintainer or the CPAN bug tracker:
 http://rt.cpan.org/NoAuth/Bugs.html?Dist=PAR

Former Maintainer: Chris Dolan chrisdo...@users.sourceforge.net

 Builds differently for static vs shared libperl, so need different revisions
 for the variant that is system-perl


Splitoff: 
 Package: %N-gui
 Depends: %N (= %v-%r), tk-pm%type_pkg[perl]
 Files: bin/tkpp share/man/man1/tkpp.1
 Conflicts: %{Ni}581-gui, %{Ni}584-gui, %{Ni}586-gui
 Replaces: %{Ni}581-gui, %{Ni}584-gui, %{Ni}586-gui
 DocFiles: AUTHORS ChangeLog MANIFEST META.yml README


Splitoff2: 
 Package: %N-bin
 Depends: %N (= %v-%r)
 Files: bin share/man/man1
 Conflicts: %{Ni}581-bin, %{Ni}584-bin, %{Ni}586-bin
 Replaces: %{Ni}581-bin, %{Ni}584-bin, %{Ni}586-bin
 DocFiles: AUTHORS ChangeLog MANIFEST META.yml README
 DescUsage: 
  The perldyn program only exists for some perl-versions, probably
  only the one matching the version of /usr/bin/perl.
 





--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods par-pm.info, 1.13, NONE

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1789/unstable/main/finkinfo/libs/perlmods

Removed Files:
par-pm.info 
Log Message:
builds fine on 10.6 (really)


--- par-pm.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods mac-growl-pm.info, NONE, 1.1

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv6081/stable/main/finkinfo/libs/perlmods

Added Files:
mac-growl-pm.info 
Log Message:
last -pm to stable (thanks akh!)


--- NEW FILE: mac-growl-pm.info ---
Info2: 
Package: mac-growl-pm%type_pkg[perl]
Version: 0.7
Revision: 13
Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
588) 10.4, (%type_pkg[perl] = 588) 10.5
###
###
Depends: macosx, perl%type_pkg[perl]-core, growl (= 0.7-1), 
mac-glue-pm%type_pkg[perl] (= 1.30-2)
BuildDepends: fink (= 0.24.1)
Suggests: mac-glue-pm%type_pkg[perl]
###
Source: mirror:sourceforge:fink/Mac-Growl-%v.tar.gz
Source-MD5: 6642330b23064a166b3fe863255481ac
###
# Only tested on 5.8.1 ATM sorry others, need reports for me to add em.
Type: perl (5.8.1 5.8.6 5.8.8)
UpdatePOD: true
###
InstallScript: 
  %{default_script}
  mv %i/share/man %i/lib/perl5/%type_raw[perl]

DocFiles: Changes README
Description: Perl module for GROWL notification system
DescDetail: 
  Mac::Growl provides an interface for perl scripts to connect to Growl,
  allowing them to register with it, and send it notifications to be
  displayed.

###
License: Artistic
Maintainer: Justin F. Hallett the...@users.sourceforge.net
Homepage: http://growl.info/



--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods mac-growl-pm.info, 1.9, NONE

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv6081/unstable/main/finkinfo/libs/perlmods

Removed Files:
mac-growl-pm.info 
Log Message:
last -pm to stable (thanks akh!)


--- mac-growl-pm.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/utils xmltv-10.5.info, NONE, 1.1 xmltv-10.6.info, NONE, 1.1 xmltv586.info, NONE, 1.1

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/utils
In directory vz-cvs-3.sog:/tmp/cvs-serv9880/stable/main/finkinfo/utils

Added Files:
xmltv-10.5.info xmltv-10.6.info xmltv586.info 
Log Message:
xmltv to stable (someone should update %v (to match 10.7) and switch to perl 
5.8.8 on 10.6 (system-perl)


--- NEW FILE: xmltv586.info ---
Package: xmltv586
Version: 0.5.31
Revision: 27
Distribution: 10.4, 10.5
Depends: xmltv (= 0.5.57-1), fink-obsolete-packages
Type: bundle
Description: OBSOLETE use package 'xmltv' instead
DescDetail: You can remove this once you've updated to 'xmltv'.
License: GPL
Maintainer: None fink-de...@lists.sourceforge.net
Homepage: http://membled.com/work/apps/xmltv/
--- NEW FILE: xmltv-10.5.info ---
Info2: 
Package: xmltv
Version: 0.5.57
Revision: 51
Distribution: 10.5
###
Depends: 
data-dump-pm,
date-manip-pm%type_pkg[perl],
datetime-pm%type_pkg[perl],
datetime-format-strptime-pm%type_pkg[perl],
datetime-locale-pm%type_pkg[perl],
html-parser-pm%type_pkg[perl] (= 3.34-1),
html-tree-pm%type_pkg[perl],
io-compress-pm%type_pkg[perl],
lingua-en-numbers-ordinate-pm,
lingua-preferred-pm%type_pkg[perl],
log-tracemsgs-pm%type_pkg[perl],
perl%type_pkg[perl]-core,
system-perl%type_pkg[perl],
text-kakasi-pm%type_pkg[perl],
term-progressbar-pm%type_pkg[perl] (= 2.03-1),
tk-pm%type_pkg[perl],
tk-tablematrix-pm%type_pkg[perl],
unicode-string-pm%type_pkg[perl],
xml-libxml-pm%type_pkg[perl],
xml-parser-pm%type_pkg[perl] (= 2.34-1),
xml-simple-pm%type_pkg[perl],
xml-twig-pm%type_pkg[perl] (= 3.14-1),
xml-writer-pm (= 0.4.6-10)

BuildDepends: fink (= 0.20.1-1), expat1
Replaces: xmltv-basic, xmltv581, xmltv586 (0.5.31-27)
Conflicts: xmltv-basic, xmltv581, xmltv586 (0.5.31-27)
###
Source: mirror:sourceforge:xmltv/xmltv-%v.tar.bz2
Source-MD5: c8396db9f823ba43d42ca3f4662b816b
###
Type: perl (5.8.8)
UpdatePOD: true
NoPerlTests: true
###
PatchScript: 
  ### Fixing doc install path
  perl -pi.bak -e 
's,location/share/doc/xmltv-\$::VERSION,location/share/doc/%n,g' Makefile.PL

###
DocFiles: ChangeLog MANIFEST doc/code/*
###
ConfigureParams: --nodeps --yes
###
Description: Set of utilities to manage your TV viewing 
DescDetail: 
  XMLTV is a set of utilities to manage your TV viewing. They work with TV
  listings stored in the XMLTV format, which is based on XML. The idea is
  to separate out the backend (getting the listings) from the frontend
  (displaying them for the user), and to implement useful operations like
  picking out your favourite programmes as filters that read and write XML
  documents. 

  There are two backends at present, grabbing TV listings for three different
  countries. There are filters to sort the listings by date, to remove shows
  that have already been broadcast, and a CGI script to semi-automatically
  pick things to watch. There are a couple of backends to produce printed
  output. 

  This software is still being developed and requires familiarity with a
  command line; but it does work.

DescPackaging: 
As of 0.5.57 AKH reverted the nomenclature back to xmltv and set the package
to use the system's Perl--all of the executable scripts encoded /usr/bin/perl,
so we'd have to have Distribution-separated versions anyway.

Separate 10.4, 10.5, and 10.6 versions because of the different system Perls.

###
License: GPL
Maintainer: None fink-de...@lists.sourceforge.net
Homepage: http://membled.com/work/apps/xmltv/


--- NEW FILE: xmltv-10.6.info ---
Info2: 
Package: xmltv
Version: 0.5.57
Revision: 102
Distribution: 10.6
###
Depends: 
date-manip-pm%type_pkg[perl],
html-parser-pm%type_pkg[perl] (= 3.34-1),
html-tree-pm%type_pkg[perl],
io-compress-pm%type_pkg[perl],
lingua-en-numbers-ordinate-pm,
lingua-preferred-pm%type_pkg[perl],
log-tracemsgs-pm%type_pkg[perl],
perl%type_pkg[perl],
perl%type_pkg[perl]-core,
text-kakasi-pm%type_pkg[perl],
term-progressbar-pm%type_pkg[perl] (= 2.03-1),
tk-pm%type_pkg[perl],
tk-tablematrix-pm%type_pkg[perl],
unicode-string-pm%type_pkg[perl],
xml-libxml-pm%type_pkg[perl],
xml-parser-pm%type_pkg[perl] (= 2.34-1),
xml-simple-pm%type_pkg[perl],
xml-twig-pm%type_pkg[perl] (= 3.14-1),
xml-writer-pm (= 0.4.6-10)

BuildDepends: fink (= 0.20.1-1), expat1
Replaces: xmltv-basic, xmltv581, xmltv586 (0.5.31-27)
Conflicts: xmltv-basic, xmltv581, xmltv586 (0.5.31-27)
###
Source: mirror:sourceforge:xmltv/xmltv-%v.tar.bz2
Source-MD5: c8396db9f823ba43d42ca3f4662b816b
###
Type: perl (5.8.8)
UpdatePOD: true
NoPerlTests: true
###
PatchScript: 
  ### Fixing doc install path
  perl -pi.bak -e 
's,location/share/doc/xmltv-\$::VERSION,location/share/doc/%n,g' Makefile.PL

###
DocFiles: ChangeLog MANIFEST doc/code/*
###

[cvs] dists/10.4/unstable/main/finkinfo/utils xmltv-10.5.info, 1.3, NONE xmltv-10.6.info, 1.2, NONE xmltv586.info, 1.1, NONE

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils
In directory vz-cvs-3.sog:/tmp/cvs-serv9880/unstable/main/finkinfo/utils

Removed Files:
xmltv-10.5.info xmltv-10.6.info xmltv586.info 
Log Message:
xmltv to stable (someone should update %v (to match 10.7) and switch to perl 
5.8.8 on 10.6 (system-perl)


--- xmltv586.info DELETED ---

--- xmltv-10.5.info DELETED ---

--- xmltv-10.6.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/sci xcrysden.info,1.1,1.2

2012-01-18 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv18192

Modified Files:
xcrysden.info 
Log Message:
add explicit shell to permit multiline conditional

Index: xcrysden.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/xcrysden.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- xcrysden.info   12 Jan 2012 19:16:19 -  1.1
+++ xcrysden.info   18 Jan 2012 22:47:08 -  1.2
@@ -34,6 +34,7 @@
 PatchFile: %n.patch
 PatchFile-MD5: c244b2c1beee933845aab9d6439812d8
 PatchScript: 
+   #!/bin/sh -ev
### Patch and them move Make.sys so future changes are noticed when 
patch fails
### x86_64 has tcltk 8.5; i386/ppc has 8.4
if [ %m = x86_64 ]; then


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo xcrysden.info,1.1,NONE

2012-01-18 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo
In directory vz-cvs-3.sog:/tmp/cvs-serv21782

Removed Files:
xcrysden.info 
Log Message:
old version, someone else put newer in fink


--- xcrysden.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs libaprutil.0-postgresql.info, 1.2, 1.3 libaprutil.0-shlibs.info, 1.2, 1.3 libaprutil.0-shlibs.patch, 1.1, 1.2 libaprutil.0-sqlite3.info, 1.2, 1.3 openldap24.

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv12245

Modified Files:
libaprutil.0-postgresql.info libaprutil.0-shlibs.info 
libaprutil.0-shlibs.patch libaprutil.0-sqlite3.info 
openldap24.info 
Log Message:
New upstream version and switch to db53-aes.


Index: libaprutil.0-postgresql.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/libaprutil.0-postgresql.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libaprutil.0-postgresql.info23 Nov 2011 02:17:18 -  1.2
+++ libaprutil.0-postgresql.info18 Jan 2012 23:59:26 -  1.3
@@ -1,5 +1,5 @@
 Package: libaprutil.0-postgresql
-Version: 1.3.12
+Version: 1.4.1
 Revision: 1
 
 Depends: 
@@ -8,7 +8,7 @@
postgresql90-shlibs
 
 BuildDepends: 
-   db51-aes | db51,
+   db53-aes,
expat1,
fink (= 0.24.12),
gdbm3,
@@ -17,16 +17,17 @@
libiconv-dev,
openldap24-dev,
pkgconfig,
-   postgresql90-dev
+   postgresql90-dev,
+   system-openssl-dev
 
 Replaces: libaprutil0-shlibs, libaprutil.0-shlibs ( 1.3.4-9)
 # a transient libaprutil0-shlibs accidentally installed something else at the 
install_name location
 
 Source: mirror:apache:apr/apr-util-%v.tar.bz2
-Source-MD5: 0f671b037ca62751a8a7005578085560
+Source-MD5: 52b31b33fb1aa16e65ddaefc76e41151
 
 PatchFile: libaprutil.0-shlibs.patch
-PatchFile-MD5: 6d23b40b503e2a91033803b510f74298
+PatchFile-MD5: 6f63a00b02f0274c27e8753a3044e342
 PatchScript: 
   ### Fix layout
   perl -pi -e 's,/usr/local,%p,g' config.layout
@@ -40,9 +41,11 @@
   --with-ldap-include=%p/include \
   --with-ldap-lib=%p/lib \
   --with-ldap \
-  --with-dbm=db51 \
+  --with-dbm=db \
   --with-gdbm=%p \
   --with-berkeley-db=%p \
+  --with-crypto \
+  --with-openssl=%p/lib/system-openssl \
   --with-pgsql=%p \
   --without-mysql \
   --without-sqlite2 \
@@ -61,8 +64,6 @@
 
 InstallScript: 
   make install-modules prefix=%i APU_MODULES=dbd/apr_dbd_pgsql.la
-  #No need for dependency_libs in .la files if not building static libs
-  perl -pi -e s/dependency_libs=.*$/dependency_libs=''/ %i/lib/apr-util-1/*la
 
 
 DocFiles: CHANGES LICENSE NOTICE README

Index: openldap24.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/openldap24.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- openldap24.info 22 Jul 2011 00:07:37 -  1.1
+++ openldap24.info 18 Jan 2012 23:59:26 -  1.2
@@ -1,6 +1,6 @@
 Info4: 
 Package: openldap24
-Version: 2.4.26
+Version: 2.4.28
 Revision: 1
 Maintainer: Daniel Johnson dan...@daniel-johnson.org
 Source: mirror:custom:openldap-release/openldap-%v.tgz
@@ -18,11 +18,11 @@
  sam-BR: ftp://ftp.matrix.com.br/pub/openldap/
  sam-CR: ftp://mirrors.ucr.ac.cr/openldap/
 
-Source-MD5: f36f3086031dd56ae94f722ffae8df5e
+Source-MD5: 196023e552eeb259e048edcd61a9645b
 Depends: %N-shlibs (= %v-%r), daemonic
 BuildDepends: 
-   cyrus-sasl2-dev (= 2.1.23-2),
-   db51-aes | db51,
+   cyrus-sasl2-dev (= 2.1.25-1),
+   db53-aes,
fink (= 0.24.12-1),
system-openssl-dev
 
@@ -32,28 +32,16 @@
 PatchFile: %{ni}.patch
 PatchFile-MD5: 0492da596271831c1eae985c611f1199
 NoSetLDFLAGS: True
-SetLibs: -lkrb5 -L%p/lib/system-openssl/lib -L%p/%lib -ldb-5.1
+SetLDFLAGS: -Wl,-dead_strip_dylibs
+SetLibs: -lkrb5 -L%p/lib/system-openssl/lib -L%p/%lib -ldb-5.3
 SetCPPFLAGS: -I%p/lib/system-openssl/include -I%p/include/db5 -DBIND_8_COMPAT
-NoSetMAKEFLAGS: true
-SetMAKEFLAGS: -j1
+UseMaxBuildJobs: true
 ConfigureParams: --libexecdir=%p/sbin --mandir=%p/share/man --with-cyrus-sasl 
--enable-ldap --disable-dependency-tracking --enable-dynamic --enable-shared 
--disable-static --libdir='${prefix}/%lib'
 CompileScript: 
-   #!/bin/bash -ev
-   # This bit enables stripping unused libs on 10.5 and later.
-   let version=`uname -r | cut -f 1 -d .`
-   if [ $version -ge 9 ]; then
-   export LDFLAGS=$LDFLAGS -Wl,-dead_strip_dylibs
-   fi
-   
-#  if [ %type_raw[-64bit] == -64bit ]; then
-#  export CC=gcc -m64
-#  fi
%{default_script}
 
 InstallScript: 
  make install DESTDIR=%d
- #No need for dependency_libs in .la files if not building static libs
- perl -pi -e s/dependency_libs=.*$/dependency_libs=''/ %i/%lib/*.la
 
 DocFiles: ANNOUNCEMENT CHANGES COPYRIGHT LICENSE README build/LICENSE-2.0.1 
doc/drafts/draft*
 ConfFiles: 
@@ -63,15 +51,15 @@
 SplitOff: 
  Package: %N-shlibs
  Depends: 
-   cyrus-sasl2-shlibs (= 2.1.23-2),
-   db51-aes-shlibs | db51-shlibs
+   cyrus-sasl2-shlibs (= 2.1.25-1),
+   db53-aes-shlibs
  
  Description: Shared libraries for LDAP
  Files: %lib/*-2.4.2*.dylib
  Shlibs: 
-%p/%lib/liblber-2.4.2.dylib 10.0.0 %n (= 2.4.25-1)
-

[cvs] dists/10.7/stable/main/finkinfo/net cyrus-sasl2.info, 1.3, 1.4 cyrus-sasl2.patch, 1.1, 1.2 postfix.info, 1.1, 1.2

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv13337

Modified Files:
cyrus-sasl2.info cyrus-sasl2.patch postfix.info 
Log Message:
New upstream version and switch to db53-aes.


Index: cyrus-sasl2.patch
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/net/cyrus-sasl2.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- cyrus-sasl2.patch   21 Jul 2011 00:10:21 -  1.1
+++ cyrus-sasl2.patch   18 Jan 2012 23:59:36 -  1.2
@@ -1,7 +1,7 @@
-diff -ru cyrus-sasl-2.1.23.orig/lib/Makefile.in 
cyrus-sasl-2.1.23/lib/Makefile.in
 cyrus-sasl-2.1.23.orig/lib/Makefile.in 2009-05-07 10:24:53.0 
-0400
-+++ cyrus-sasl-2.1.23/lib/Makefile.in  2011-07-10 18:56:30.0 -0400
-@@ -629,7 +629,7 @@
+diff -ru cyrus-sasl-2.1.25.orig/lib/Makefile.in 
cyrus-sasl-2.1.25/lib/Makefile.in
+--- cyrus-sasl-2.1.25.orig/lib/Makefile.in 2011-09-07 09:29:23.0 
-0400
 cyrus-sasl-2.1.25/lib/Makefile.in  2012-01-18 10:04:42.0 -0500
+@@ -676,7 +676,7 @@
  
  libsasl2.a: libsasl2.la $(SASL_STATIC_OBJS)
@echo adding static plugins and dependencies
@@ -10,182 +10,22 @@
@for i in ./libsasl2.la ../sasldb/libsasldb.la ../plugins/lib*.la; do \
if test ! -f $$i; then continue; fi; . $$i; \
for j in $$dependency_libs foo; do \
-diff -ru cyrus-sasl-2.1.23.orig/lib/client.c cyrus-sasl-2.1.23/lib/client.c
 cyrus-sasl-2.1.23.orig/lib/client.c2009-04-28 11:09:15.0 
-0400
-+++ cyrus-sasl-2.1.23/lib/client.c 2011-07-10 18:54:07.0 -0400
-@@ -202,6 +202,9 @@
-   { NULL, NULL }
-   };
- 
-+  /* lock allocation type */
-+  _sasl_allocation_locked++;
-+  
-   if(_sasl_client_active) {
-   /* We're already active, just increase our refcount */
-   /* xxx do something with the callback structure? */
-diff -ru cyrus-sasl-2.1.23.orig/lib/common.c cyrus-sasl-2.1.23/lib/common.c
 cyrus-sasl-2.1.23.orig/lib/common.c2009-04-28 11:09:15.0 
-0400
-+++ cyrus-sasl-2.1.23/lib/common.c 2011-07-10 18:54:07.0 -0400
-@@ -107,6 +107,7 @@
-   (sasl_realloc_t *) realloc,
-   (sasl_free_t *) free
- };
-+int _sasl_allocation_locked = 0;
- 
- #define SASL_ENCODEV_EXTRA  4096
- 
-@@ -152,6 +153,12 @@
- void sasl_set_mutex(sasl_mutex_alloc_t *n, sasl_mutex_lock_t *l,
-   sasl_mutex_unlock_t *u, sasl_mutex_free_t *d)
- {
-+  /* Disallow mutex function changes once sasl_client_init
-+ and/or sasl_server_init is called */
-+  if (_sasl_server_cleanup_hook || _sasl_client_cleanup_hook) {
-+  return;
-+  }
-+
-   _sasl_mutex_utils.alloc=n;
-   _sasl_mutex_utils.lock=l;
-   _sasl_mutex_utils.unlock=u;
-@@ -637,6 +644,8 @@
-  sasl_realloc_t *r,
-  sasl_free_t *f)
- {
-+  if (_sasl_allocation_locked++)  return;
-+
-   _sasl_allocation_utils.malloc=m;
-   _sasl_allocation_utils.calloc=c;
-   _sasl_allocation_utils.realloc=r;
-diff -ru cyrus-sasl-2.1.23.orig/lib/saslint.h cyrus-sasl-2.1.23/lib/saslint.h
 cyrus-sasl-2.1.23.orig/lib/saslint.h   2009-04-28 11:09:15.0 
-0400
-+++ cyrus-sasl-2.1.23/lib/saslint.h2011-07-10 18:54:07.0 -0400
-@@ -300,6 +300,7 @@
- 
- extern sasl_allocation_utils_t _sasl_allocation_utils;
- extern sasl_mutex_utils_t _sasl_mutex_utils;
-+extern int _sasl_allocation_locked;
- 
- /*
-  * checkpw.c
-diff -ru cyrus-sasl-2.1.23.orig/lib/server.c cyrus-sasl-2.1.23/lib/server.c
 cyrus-sasl-2.1.23.orig/lib/server.c2009-04-28 11:09:15.0 
-0400
-+++ cyrus-sasl-2.1.23/lib/server.c 2011-07-10 18:54:07.0 -0400
-@@ -698,6 +698,9 @@
-   { NULL, NULL }
- };
- 
-+/* lock allocation type */
-+_sasl_allocation_locked++;
-+
- /* we require the appname (if present) to be short enough to be a path */
- if (appname != NULL  strlen(appname) = PATH_MAX)
-   return SASL_BADPARAM;
-diff -ru cyrus-sasl-2.1.23.orig/plugins/digestmd5.c 
cyrus-sasl-2.1.23/plugins/digestmd5.c
 cyrus-sasl-2.1.23.orig/plugins/digestmd5.c 2009-04-28 11:09:17.0 
-0400
-+++ cyrus-sasl-2.1.23/plugins/digestmd5.c  2011-07-10 18:54:07.0 
-0400
-@@ -2715,7 +2715,7 @@
-   DIGEST-MD5,   /* mech_name */
- #ifdef WITH_RC4
-   128,/* max_ssf */
--#elif WITH_DES
-+#elif defined(WITH_DES)
-   112,
- #else 
-   1,
-@@ -4034,7 +4034,7 @@
-   DIGEST-MD5,
- #ifdef WITH_RC4   /* mech_name */
-   128,/* max ssf */
--#elif WITH_DES
-+#elif defined(WITH_DES)
-   112,
- #else
-   1,
-diff -ru cyrus-sasl-2.1.23.orig/saslauthd/auth_rimap.c 
cyrus-sasl-2.1.23/saslauthd/auth_rimap.c
 cyrus-sasl-2.1.23.orig/saslauthd/auth_rimap.c  2009-04-28 
11:09:18.0 -0400
-+++ 

[cvs] dists/10.4/stable/main/finkinfo/libs libaprutil.0-mysql.info, 1.3, 1.4 libaprutil.0-postgresql.info, 1.3, 1.4 libaprutil.0-shlibs.info, 1.4, 1.5 libaprutil.0-shlibs.patch, 1.2, 1.3 libaprutil.0-

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv13374

Modified Files:
libaprutil.0-mysql.info libaprutil.0-postgresql.info 
libaprutil.0-shlibs.info libaprutil.0-shlibs.patch 
libaprutil.0-sqlite3.info openldap24.info openldap24.patch 
Log Message:
New upstream version and switch to db53-aes.


Index: libaprutil.0-shlibs.patch
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/libaprutil.0-shlibs.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libaprutil.0-shlibs.patch   10 Jan 2011 22:49:00 -  1.2
+++ libaprutil.0-shlibs.patch   18 Jan 2012 23:59:48 -  1.3
@@ -1,6 +1,6 @@
-diff -ru apr-util-1.3.10.orig/apr-util.pc.in apr-util-1.3.10/apr-util.pc.in
 apr-util-1.3.10.orig/apr-util.pc.in2008-05-23 17:27:59.0 
-0400
-+++ apr-util-1.3.10/apr-util.pc.in 2010-10-15 19:38:27.0 -0400
+diff -ru apr-util-1.4.1.orig/apr-util.pc.in apr-util-1.4.1/apr-util.pc.in
+--- apr-util-1.4.1.orig/apr-util.pc.in 2008-05-23 17:27:37.0 -0400
 apr-util-1.4.1/apr-util.pc.in  2012-01-18 14:21:54.0 -0500
 @@ -9,5 +9,5 @@
  Version: @APRUTIL_DOTTED_VERSION@
  # assume that apr-util requires libapr of same major version
@@ -8,18 +8,22 @@
 -Libs: -L${libdir} -l@APRUTIL_LIBNAME@ @LDADD_ldap@ @APRUTIL_EXPORT_LIBS@
 +Libs: -L${libdir} -l@APRUTIL_LIBNAME@  
  Cflags: -I${includedir}
-diff -ru apr-util-1.3.10.orig/apu-config.in apr-util-1.3.10/apu-config.in
 apr-util-1.3.10.orig/apu-config.in 2010-09-29 10:22:45.0 -0400
-+++ apr-util-1.3.10/apu-config.in  2010-10-15 19:38:27.0 -0400
-@@ -27,7 +27,7 @@
+diff -ru apr-util-1.4.1.orig/apu-config.in apr-util-1.4.1/apu-config.in
+--- apr-util-1.4.1.orig/apu-config.in  2010-11-26 09:21:37.0 -0500
 apr-util-1.4.1/apu-config.in   2012-01-18 15:29:48.0 -0500
+@@ -27,9 +27,9 @@
  libdir=@libdir@
  includedir=@includedir@
  
 -LIBS=@APRUTIL_EXPORT_LIBS@
+-INCLUDES=@APRUTIL_INCLUDES@
+-LDFLAGS=@APRUTIL_LDFLAGS@
 +LIBS=
- INCLUDES=@APRUTIL_INCLUDES@
- LDFLAGS=@APRUTIL_LDFLAGS@
++INCLUDES=-I${prefix}/include
++LDFLAGS=-L${prefix}/lib
  LDAP_LIBS=@LDADD_ldap@
+ DBM_LIBS=@LDADD_dbm_db@ @LDADD_dbm_gdbm@ @LDADD_dbm_ndbm@
+ 
 @@ -122,7 +122,7 @@
  DBM_LIBS=
  ;;
@@ -29,49 +33,38 @@
  ;;
  --ldap-libs)
  flags=$flags $LDAP_LIBS
-diff -ru apr-util-1.3.10.orig/configure apr-util-1.3.10/configure
 apr-util-1.3.10.orig/configure 2010-10-01 07:56:47.0 -0400
-+++ apr-util-1.3.10/configure  2010-10-15 19:46:14.0 -0400
-@@ -10928,15 +10928,15 @@
-   fi
+diff -ru apr-util-1.4.1.orig/configure apr-util-1.4.1/configure
+--- apr-util-1.4.1.orig/configure  2011-12-07 17:53:06.0 -0500
 apr-util-1.4.1/configure   2012-01-18 14:41:34.0 -0500
+@@ -12857,14 +12857,14 @@
  
bdb_version=5
--  if test 0 != -1; then
--bdb_version=$bdb_version.0
-+  if test 1 != -1; then
-+bdb_version=$bdb_version.1
+   if test 1 != -1; then
+-bdb_version=$bdb_version.1
++bdb_version=$bdb_version.3
  if test -1 != -1; then
bdb_version=$bdb_version.-1
  fi
fi
bdb_places=$places
-   bdb_default_search_headers=db50/db.h db5/db.h db.h
--  bdb_default_search_lib_names=db-5.0 db5-5.0 db50 db5 db
-+  bdb_default_search_lib_names=db-5.1 db5-5.1 db51 db5 db
+   bdb_default_search_headers=db51/db.h db5/db.h db.h
+-  bdb_default_search_lib_names=db-5.1 db5-5.1 db51 db5 db
++  bdb_default_search_lib_names=db-5.3 db5-5.1 db51 db5 db
  
  
apu_have_db=0
-@@ -11005,7 +11005,7 @@
- # changes if the user runs `configure' with a different set of
- # switches.
- 
--cache_id=`echo 
apu_cv_check_berkeley_db_5_0_-1_${bdb_header}_${bdb_libname}_in_${bdb_place}
 \
-+cache_id=`echo 
apu_cv_check_berkeley_db_5_1_-1_${bdb_header}_${bdb_libname}_in_${bdb_place}
 \
-  | sed -e 's/[^a-zA-Z0-9_]/_/g'`
- 
- 
-@@ -11019,7 +11019,7 @@
+@@ -12946,7 +12946,7 @@
  apu_try_berkeley_db_save_libs=$LIBS
  
  apu_check_berkeley_db_major=5
--apu_check_berkeley_db_minor=0
-+apu_check_berkeley_db_minor=1
+-apu_check_berkeley_db_minor=1
++apu_check_berkeley_db_minor=3
  apu_check_berkeley_db_patch=-1
  apu_try_berkeley_db_header=$bdb_header
  apu_try_berkeley_db_libname=$bdb_libname
-diff -ru apr-util-1.3.10.orig/test/Makefile.in apr-util-1.3.10/test/Makefile.in
 apr-util-1.3.10.orig/test/Makefile.in  2009-11-12 19:16:45.0 
-0500
-+++ apr-util-1.3.10/test/Makefile.in   2010-10-15 19:38:27.0 -0400
+diff -ru apr-util-1.4.1.orig/test/Makefile.in apr-util-1.4.1/test/Makefile.in
+--- apr-util-1.4.1.orig/test/Makefile.in   2009-11-12 19:16:38.0 
-0500
 apr-util-1.4.1/test/Makefile.in2012-01-18 14:21:54.0 -0500
 @@ -23,7 +23,7 @@
  
 

[cvs] dists/10.4/stable/main/finkinfo/net cyrus-sasl2.info, 1.9, 1.10 cyrus-sasl2.patch, 1.5, 1.6 postfix.info, 1.20, 1.21

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv13417

Modified Files:
cyrus-sasl2.info cyrus-sasl2.patch postfix.info 
Log Message:
New upstream version and switch to db53-aes.


Index: cyrus-sasl2.patch
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/net/cyrus-sasl2.patch,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- cyrus-sasl2.patch   17 Nov 2011 03:28:22 -  1.5
+++ cyrus-sasl2.patch   18 Jan 2012 23:59:56 -  1.6
@@ -1,7 +1,7 @@
-diff -ru cyrus-sasl-2.1.23.orig/lib/Makefile.in 
cyrus-sasl-2.1.23/lib/Makefile.in
 cyrus-sasl-2.1.23.orig/lib/Makefile.in 2009-05-07 10:24:53.0 
-0400
-+++ cyrus-sasl-2.1.23/lib/Makefile.in  2011-07-10 18:56:30.0 -0400
-@@ -629,7 +629,7 @@
+diff -ru cyrus-sasl-2.1.25.orig/lib/Makefile.in 
cyrus-sasl-2.1.25/lib/Makefile.in
+--- cyrus-sasl-2.1.25.orig/lib/Makefile.in 2011-09-07 09:29:23.0 
-0400
 cyrus-sasl-2.1.25/lib/Makefile.in  2012-01-18 10:04:42.0 -0500
+@@ -676,7 +676,7 @@
  
  libsasl2.a: libsasl2.la $(SASL_STATIC_OBJS)
@echo adding static plugins and dependencies
@@ -10,182 +10,22 @@
@for i in ./libsasl2.la ../sasldb/libsasldb.la ../plugins/lib*.la; do \
if test ! -f $$i; then continue; fi; . $$i; \
for j in $$dependency_libs foo; do \
-diff -ru cyrus-sasl-2.1.23.orig/lib/client.c cyrus-sasl-2.1.23/lib/client.c
 cyrus-sasl-2.1.23.orig/lib/client.c2009-04-28 11:09:15.0 
-0400
-+++ cyrus-sasl-2.1.23/lib/client.c 2011-07-10 18:54:07.0 -0400
-@@ -202,6 +202,9 @@
-   { NULL, NULL }
-   };
- 
-+  /* lock allocation type */
-+  _sasl_allocation_locked++;
-+  
-   if(_sasl_client_active) {
-   /* We're already active, just increase our refcount */
-   /* xxx do something with the callback structure? */
-diff -ru cyrus-sasl-2.1.23.orig/lib/common.c cyrus-sasl-2.1.23/lib/common.c
 cyrus-sasl-2.1.23.orig/lib/common.c2009-04-28 11:09:15.0 
-0400
-+++ cyrus-sasl-2.1.23/lib/common.c 2011-07-10 18:54:07.0 -0400
-@@ -107,6 +107,7 @@
-   (sasl_realloc_t *) realloc,
-   (sasl_free_t *) free
- };
-+int _sasl_allocation_locked = 0;
- 
- #define SASL_ENCODEV_EXTRA  4096
- 
-@@ -152,6 +153,12 @@
- void sasl_set_mutex(sasl_mutex_alloc_t *n, sasl_mutex_lock_t *l,
-   sasl_mutex_unlock_t *u, sasl_mutex_free_t *d)
- {
-+  /* Disallow mutex function changes once sasl_client_init
-+ and/or sasl_server_init is called */
-+  if (_sasl_server_cleanup_hook || _sasl_client_cleanup_hook) {
-+  return;
-+  }
-+
-   _sasl_mutex_utils.alloc=n;
-   _sasl_mutex_utils.lock=l;
-   _sasl_mutex_utils.unlock=u;
-@@ -637,6 +644,8 @@
-  sasl_realloc_t *r,
-  sasl_free_t *f)
- {
-+  if (_sasl_allocation_locked++)  return;
-+
-   _sasl_allocation_utils.malloc=m;
-   _sasl_allocation_utils.calloc=c;
-   _sasl_allocation_utils.realloc=r;
-diff -ru cyrus-sasl-2.1.23.orig/lib/saslint.h cyrus-sasl-2.1.23/lib/saslint.h
 cyrus-sasl-2.1.23.orig/lib/saslint.h   2009-04-28 11:09:15.0 
-0400
-+++ cyrus-sasl-2.1.23/lib/saslint.h2011-07-10 18:54:07.0 -0400
-@@ -300,6 +300,7 @@
- 
- extern sasl_allocation_utils_t _sasl_allocation_utils;
- extern sasl_mutex_utils_t _sasl_mutex_utils;
-+extern int _sasl_allocation_locked;
- 
- /*
-  * checkpw.c
-diff -ru cyrus-sasl-2.1.23.orig/lib/server.c cyrus-sasl-2.1.23/lib/server.c
 cyrus-sasl-2.1.23.orig/lib/server.c2009-04-28 11:09:15.0 
-0400
-+++ cyrus-sasl-2.1.23/lib/server.c 2011-07-10 18:54:07.0 -0400
-@@ -698,6 +698,9 @@
-   { NULL, NULL }
- };
- 
-+/* lock allocation type */
-+_sasl_allocation_locked++;
-+
- /* we require the appname (if present) to be short enough to be a path */
- if (appname != NULL  strlen(appname) = PATH_MAX)
-   return SASL_BADPARAM;
-diff -ru cyrus-sasl-2.1.23.orig/plugins/digestmd5.c 
cyrus-sasl-2.1.23/plugins/digestmd5.c
 cyrus-sasl-2.1.23.orig/plugins/digestmd5.c 2009-04-28 11:09:17.0 
-0400
-+++ cyrus-sasl-2.1.23/plugins/digestmd5.c  2011-07-10 18:54:07.0 
-0400
-@@ -2715,7 +2715,7 @@
-   DIGEST-MD5,   /* mech_name */
- #ifdef WITH_RC4
-   128,/* max_ssf */
--#elif WITH_DES
-+#elif defined(WITH_DES)
-   112,
- #else 
-   1,
-@@ -4034,7 +4034,7 @@
-   DIGEST-MD5,
- #ifdef WITH_RC4   /* mech_name */
-   128,/* max ssf */
--#elif WITH_DES
-+#elif defined(WITH_DES)
-   112,
- #else
-   1,
-diff -ru cyrus-sasl-2.1.23.orig/saslauthd/auth_rimap.c 
cyrus-sasl-2.1.23/saslauthd/auth_rimap.c
 cyrus-sasl-2.1.23.orig/saslauthd/auth_rimap.c  2009-04-28 
11:09:18.0 -0400
-+++ 

[cvs] dists/10.7/stable/main/finkinfo/devel svn-swig-pm.info, 1.2, 1.3 svn-swig-py.info, 1.3, 1.4 svn.info, 1.3, 1.4

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv13462

Modified Files:
svn-swig-pm.info svn-swig-py.info svn.info 
Log Message:
Switch to db53-aes.


Index: svn-swig-pm.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel/svn-swig-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- svn-swig-pm.info2 Aug 2011 19:39:06 -   1.2
+++ svn-swig-pm.info19 Jan 2012 00:00:30 -  1.3
@@ -1,7 +1,7 @@
 Info2: 
 Package: svn-swig-pm%type_pkg[perl]
 Version: 1.6.17
-Revision: 1
+Revision: 3
 Description: Swig svn Perl %type_raw[perl] bindings
 Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
 License: BSD
@@ -13,9 +13,9 @@
 Depends: perl%type_pkg[perl]-core, %N-shlibs (= %v-%r)
 BuildDepends: 
libapr.0-dev,
-   libaprutil.0-dev (= 1.3.4-8),
-   cyrus-sasl2-dev (= 2.1.22-1006),
-   db51-aes | db51,
+   libaprutil.0-dev (= 1.4.1-1),
+   cyrus-sasl2-dev (= 2.1.25-1),
+   db53-aes,
fink (= 0.24.12-1),
gettext-bin,
gettext-tools,
@@ -84,7 +84,7 @@
--disable-javahl \
--with-jikes=no \
--with-swig \
-   --with-berkeley-db='db.h:%p/include/db5:%p/lib:db-5.1' \
+   --with-berkeley-db='db.h:%p/include/db5:%p/lib:db-5.3' \
--with-sasl=%p \
--with-sqlite=%p \
--without-gnome-keyring \

Index: svn-swig-py.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel/svn-swig-py.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- svn-swig-py.info2 Aug 2011 19:39:06 -   1.3
+++ svn-swig-py.info19 Jan 2012 00:00:30 -  1.4
@@ -1,7 +1,7 @@
 Info2: 
 Package: svn-swig-py%type_pkg[python]
 Version: 1.6.17
-Revision: 1
+Revision: 3
 Description: Swig svn Python %type_raw[python] bindings
 Type: python (2.6 2.7)
 License: BSD
@@ -11,9 +11,9 @@
 Depends: python%type_pkg[python], %N-shlibs (= %v-%r)
 BuildDepends: 
libapr.0-dev,
-   libaprutil.0-dev (= 1.3.4-8),
-   cyrus-sasl2-dev (= 2.1.22-1006),
-   db51-aes | db51,
+   libaprutil.0-dev (= 1.4.1-1),
+   cyrus-sasl2-dev (= 2.1.25-1),
+   db53-aes,
fink (= 0.24.12-1),
gettext-bin,
gettext-tools,
@@ -52,7 +52,7 @@
--disable-javahl \
--with-jikes=no \
--with-swig \
-   --with-berkeley-db='db.h:%p/include/db5:%p/lib:db-5.1' \
+   --with-berkeley-db='db.h:%p/include/db5:%p/lib:db-5.3' \
--with-sasl=%p \
--with-sqlite=%p \
--without-gnome-keyring \

Index: svn.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel/svn.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- svn.info23 Nov 2011 00:01:38 -  1.3
+++ svn.info19 Jan 2012 00:00:30 -  1.4
@@ -1,6 +1,6 @@
 Package: svn
 Version: 1.6.17
-Revision: 2
+Revision: 3
 Description: Subversion - svnserve, tools
 License: BSD
 Maintainer: Daniel Johnson dan...@daniel-johnson.org
@@ -8,14 +8,14 @@
 # Dependencies:
 Depends: %N15-shlibs (= %v-%r), daemonic
 BuildDepends: 
-   cyrus-sasl2-dev (= 2.1.22-1006),
-   db51-aes | db51,
+   cyrus-sasl2-dev (= 2.1.25-1),
+   db53-aes,
expat1,
fink (= 0.24.12-1),
gettext-bin,
gettext-tools,
libapr.0-dev,
-   libaprutil.0-dev (= 1.3.4-8),
+   libaprutil.0-dev (= 1.4.1-1),
libgettext8-dev,
libiconv-dev (= 1.9.1-11),
libserf0 (= 0.7.2-1),
@@ -55,7 +55,7 @@
--disable-javahl \
--with-jikes=no \
--without-swig \
-   --with-berkeley-db='db.h:%p/include/db5:%p/lib:db-5.1' \
+   --with-berkeley-db='db.h:%p/include/db5:%p/lib:db-5.3' \
--with-sasl=%p \
--with-sqlite=%p \
--without-gnome-keyring \
@@ -206,14 +206,14 @@
   Conflicts: svn-client-ssl (= 0.26.0-2)
   Replaces: svn-ssl-shlibs, svn-client-ssl (= 0.26.0-2)
   Depends: 
-cyrus-sasl2-shlibs,
-db51-aes-shlibs | db51-shlibs,
+cyrus-sasl2-shlibs (= 2.1.25-1),
+db53-aes-shlibs,
 expat1-shlibs,
 libapr.0-shlibs,
-libaprutil.0-shlibs (= 1.3.4-8),
+libaprutil.0-shlibs (= 1.4.1-1),
 libgettext8-shlibs,
 libiconv,
-libserf0-shlibs (= 0.7.0-1),
+libserf0-shlibs (= 0.7.2-1),
 neon27-shlibs,
 sqlite3-shlibs
   


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d

[cvs] dists/10.4/stable/main/finkinfo/devel svn-javahl.info, 1.16, 1.17 svn-swig-pm.info, 1.23, 1.24 svn-swig-py.info, 1.9, 1.10 svn-swig-rb.info, 1.5, 1.6 svn.info, 1.18, 1.19

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv13514

Modified Files:
svn-javahl.info svn-swig-pm.info svn-swig-py.info 
svn-swig-rb.info svn.info 
Log Message:
Switch to db53-aes.


Index: svn-swig-pm.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel/svn-swig-pm.info,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- svn-swig-pm.info1 Nov 2011 00:54:52 -   1.23
+++ svn-swig-pm.info19 Jan 2012 00:00:40 -  1.24
@@ -1,7 +1,7 @@
 Info2: 
 Package: svn-swig-pm%type_pkg[perl]
 Version: 1.6.17
-Revision: 1
+Revision: 3
 Description: Swig svn Perl %type_raw[perl] bindings
 Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
 License: BSD
@@ -13,9 +13,9 @@
 Depends: perl%type_pkg[perl]-core, %N-shlibs (= %v-%r)
 BuildDepends: 
libapr.0-dev,
-   libaprutil.0-dev (= 1.3.4-8),
-   cyrus-sasl2-dev (= 2.1.22-1006),
-   db51-aes | db51,
+   libaprutil.0-dev (= 1.4.1-1),
+   cyrus-sasl2-dev (= 2.1.25-1),
+   db53-aes,
fink (= 0.24.12-1),
gettext-bin,
gettext-tools,
@@ -85,7 +85,7 @@
--disable-javahl \
--with-jikes=no \
--with-swig \
-   --with-berkeley-db='db.h:%p/include/db5:%p/lib:db-5.1' \
+   --with-berkeley-db='db.h:%p/include/db5:%p/lib:db-5.3' \
--with-sasl=%p \
--with-sqlite=%p \
--without-gnome-keyring \

Index: svn-javahl.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel/svn-javahl.info,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- svn-javahl.info 1 Nov 2011 00:54:52 -   1.16
+++ svn-javahl.info 19 Jan 2012 00:00:39 -  1.17
@@ -11,9 +11,9 @@
 Depends: system-java%type_pkg[java], svn15-shlibs (= %v)
 BuildDepends: 
libapr.0-dev,
-   libaprutil.0-dev (= 1.3.4-8),
-   cyrus-sasl2-dev (= 2.1.22-1006),
-   db51-aes | db51,
+   libaprutil.0-dev (= 1.4.1-1),
+   cyrus-sasl2-dev (= 2.1.25-1),
+   db53-aes,
fink (= 0.24.12-1),
gettext-bin,
gettext-tools,
@@ -51,7 +51,7 @@
--enable-javahl \
--with-jikes=no \
--without-swig \
-   --with-berkeley-db='db.h:%p/include/db5:%p/lib:db-5.1' \
+   --with-berkeley-db='db.h:%p/include/db5:%p/lib:db-5.3' \
--with-sasl=%p \
--with-sqlite=%p \
--without-gnome-keyring \

Index: svn-swig-rb.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel/svn-swig-rb.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- svn-swig-rb.info1 Nov 2011 00:54:52 -   1.5
+++ svn-swig-rb.info19 Jan 2012 00:00:40 -  1.6
@@ -1,7 +1,7 @@
 Info2: 
 Package: svn-swig-rb%type_pkg[ruby]
 Version: 1.6.17
-Revision: 1
+Revision: 3
 Description: Swig svn Ruby %type_raw[ruby] bindings
 Type: ruby (1.8)
 License: BSD
@@ -11,9 +11,9 @@
 Depends: ruby%type_pkg[ruby]-shlibs, ruby%type_pkg[ruby], %N-shlibs (= %v-%r)
 BuildDepends: 
libapr.0-dev,
-   libaprutil.0-dev (= 1.3.4-8),
-   cyrus-sasl2-dev (= 2.1.22-1006),
-   db51-aes | db51,
+   libaprutil.0-dev (= 1.4.1-1),
+   cyrus-sasl2-dev (= 2.1.25-1),
+   db53-aes,
fink (= 0.24.12-1),
gettext-bin,
gettext-tools,
@@ -56,7 +56,7 @@
--disable-javahl \
--with-jikes=no \
--with-swig \
-   --with-berkeley-db='db.h:%p/include/db5:%p/lib:db-5.1' \
+   --with-berkeley-db='db.h:%p/include/db5:%p/lib:db-5.3' \
--with-sasl=%p \
--with-sqlite=%p \
--without-gnome-keyring \

Index: svn-swig-py.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel/svn-swig-py.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- svn-swig-py.info1 Nov 2011 00:54:52 -   1.9
+++ svn-swig-py.info19 Jan 2012 00:00:40 -  1.10
@@ -1,7 +1,7 @@
 Info2: 
 Package: svn-swig-py%type_pkg[python]
 Version: 1.6.17
-Revision: 1
+Revision: 3
 Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
 Description: Swig svn Python %type_raw[python] bindings
 Type: python (2.4 2.5 2.6 2.7)
@@ -12,9 +12,9 @@
 Depends: python%type_pkg[python], %N-shlibs (= %v-%r)
 BuildDepends: 
libapr.0-dev,
-   libaprutil.0-dev (= 1.3.4-8),
-   cyrus-sasl2-dev (= 2.1.22-1006),
-   db51-aes | db51,
+   libaprutil.0-dev (= 1.4.1-1),
+   cyrus-sasl2-dev (= 2.1.25-1),
+   db53-aes,
fink (= 0.24.12-1),
gettext-bin,
gettext-tools,
@@ -54,7 +54,7 @@
--disable-javahl \
--with-jikes=no \

[cvs] dists/10.4/stable/main/finkinfo/libs libapr.0-shlibs.info, 1.3, 1.4

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv15659

Modified Files:
libapr.0-shlibs.info 
Log Message:
Move to stable.


Index: libapr.0-shlibs.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/libapr.0-shlibs.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libapr.0-shlibs.info23 Nov 2011 02:18:56 -  1.3
+++ libapr.0-shlibs.info19 Jan 2012 00:05:48 -  1.4
@@ -1,26 +1,30 @@
 Package: libapr.0-shlibs
-Version: 1.4.2
-Revision: 1
+Version: 1.4.5
+Revision: 2
 
 BuildDepends: pkgconfig
 Replaces: libapr0-shlibs
 # a transient libapr0-shlibs accidentally installed something else at the 
install_name location
 
 Source: mirror:apache:apr/apr-%v.tar.bz2
-Source-MD5: 4b00e8f70c067893d075577962656b35
+Source-MD5: 8b53f5a5669d0597f2da889a2f576eb6
 
 PatchScript: 
-  ### Force use of awk over gawk
-  perl -pi -e 's,gawk mawk nawk awk,awk mawk nawk gawk,g' configure
   ### Fix layout
   perl -pi -e 's,/usr/local,%p,g' config.layout
-  ### APR_OFF_T_FMT gets set incorrectly on 64 bit causing svn crashes.
-  ### Force it to be the same as APR_INT64_T_FMT everywhere.
-  perl -pi -e 's,\@off_t_fmt\@,#define APR_OFF_T_FMT APR_INT64_T_FMT,' 
include/apr.h.in
 
 
-UseMaxBuildJobs: false
-ConfigureParams: --enable-layout=GNU --enable-shared --disable-static 
--enable-threads --with-pic --with-sendfile=no
+ConfigureParams: 
+   --enable-layout=GNU \
+   --enable-shared \
+   --disable-static \
+   --enable-threads \
+   --with-pic \
+   --with-sendfile=no \
+   SED=/usr/bin/sed \
+   lt_cv_path_SED=/usr/bin/sed \
+   AWK=/usr/bin/awk
+
 
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs libapr.0-shlibs.info, 1.10, NONE libaprutil.0-mysql.info, 1.5, NONE libaprutil.0-postgresql.info, 1.5, NONE libaprutil.0-shlibs.info, 1.12, NONE libaprutil

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv16008

Removed Files:
libapr.0-shlibs.info libaprutil.0-mysql.info 
libaprutil.0-postgresql.info libaprutil.0-shlibs.info 
libaprutil.0-shlibs.patch libaprutil.0-sqlite3.info 
openldap24.info openldap24.patch 
Log Message:
Moved to stable.


--- libaprutil.0-shlibs.patch DELETED ---

--- libaprutil.0-shlibs.info DELETED ---

--- libapr.0-shlibs.info DELETED ---

--- openldap24.patch DELETED ---

--- libaprutil.0-mysql.info DELETED ---

--- libaprutil.0-postgresql.info DELETED ---

--- openldap24.info DELETED ---

--- libaprutil.0-sqlite3.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/net postfix.info, 1.46, NONE postfix.patch, 1.5, NONE

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv16181

Removed Files:
postfix.info postfix.patch 
Log Message:
Moved to stable.


--- postfix.patch DELETED ---

--- postfix.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods mozilla-ca-pm.info, 1.1, 1.2

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv18422

Modified Files:
mozilla-ca-pm.info 
Log Message:
New upstream mozilla-ca-pm 20120118.


Index: mozilla-ca-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/mozilla-ca-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- mozilla-ca-pm.info  27 Oct 2011 00:33:32 -  1.1
+++ mozilla-ca-pm.info  19 Jan 2012 02:20:51 -  1.2
@@ -1,5 +1,5 @@
 Package: mozilla-ca-pm
-Version: 20111025
+Version: 20120118
 Revision: 1
 License: GPL2+
 Description: Mozilla's CA cert bundle in PEM format
@@ -7,7 +7,7 @@
 Homepage: http://search.cpan.org/dist/Mozilla-CA/
 
 Source: mirror:cpan:authors/id/A/AB/ABH/Mozilla-CA-%v.tar.gz
-Source-MD5: 74026b1a7aa0de8fc17d81efb3629195
+Source-MD5: e1c650d25303bf3d59a6502efd002b06
 
 Type: perl
 UpdatePOD: true


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods mozilla-ca-pm.info, 1.4, 1.5

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv19509

Modified Files:
mozilla-ca-pm.info 
Log Message:
New upstream mozilla-ca-pm 20120118.


Index: mozilla-ca-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/mozilla-ca-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- mozilla-ca-pm.info  27 Oct 2011 00:33:04 -  1.4
+++ mozilla-ca-pm.info  19 Jan 2012 02:20:58 -  1.5
@@ -1,5 +1,5 @@
 Package: mozilla-ca-pm
-Version: 20111025
+Version: 20120118
 Revision: 1
 License: GPL2+
 Description: Mozilla's CA cert bundle in PEM format
@@ -7,7 +7,7 @@
 Homepage: http://search.cpan.org/dist/Mozilla-CA/
 
 Source: mirror:cpan:authors/id/A/AB/ABH/Mozilla-CA-%v.tar.gz
-Source-MD5: 74026b1a7aa0de8fc17d81efb3629195
+Source-MD5: e1c650d25303bf3d59a6502efd002b06
 
 Type: perl
 UpdatePOD: true


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods capture-tiny-pm.info, NONE, 1.1 capture-tiny-pm.patch, NONE, 1.1

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv22167

Added Files:
capture-tiny-pm.info capture-tiny-pm.patch 
Log Message:
sync. w/ 10.!4/stable, validated on powerpc-darwin8


--- NEW FILE: capture-tiny-pm.info ---
Info2: 
Package: capture-tiny-pm%type_pkg[perl]
Version: 0.11
Revision: 1
Distribution: (%type_pkg[perl] = 586) 10.5
Source: mirror:cpan:authors/id/D/DA/DAGOLDEN/Capture-Tiny-%v.tar.gz
Source-MD5: afbd9be69e4691ba8316545d216abdc8
Type: perl (5.8.6 5.8.8 5.10.0)
BuildDepends: 
extutils-makemaker-pm%type_pkg[perl] (= 6.31-1),
fink (= 0.24.12),
test-simple-pm%type_pkg[perl]

Depends: 
perl%type_pkg[perl]-core

PatchFile: %{ni}.patch
PatchFile-MD5: fb837f0e3c9935650f58435152561633
InfoTest: 
TestDepends: 
test-script-pm (= 1.05-1)


InstallScript: 
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]

UpdatePOD: True
DocFiles: Changes LICENSE README Todo
Description: Capture STDOUT and STDERR output streams
License: BSD
Homepage: http://search.cpan.org/dist/Capture-Tiny/
Maintainer: Daniel Macks dma...@netspace.org


--- NEW FILE: capture-tiny-pm.patch ---
diff -Nurd -x'*~' Capture-Tiny-0.10.orig/t/00-compile.t 
Capture-Tiny-0.10/t/00-compile.t
--- Capture-Tiny-0.10.orig/t/00-compile.t   2011-02-07 07:01:49.0 
-0500
+++ Capture-Tiny-0.10/t/00-compile.t2011-04-10 10:36:23.0 -0400
@@ -18,6 +18,7 @@
 
 use File::Find;
 use File::Temp qw{ tempdir };
+use Config;
 
 my @modules;
 find(
@@ -42,7 +43,21 @@
 # fake home for cpan-testers
  local $ENV{HOME} = tempdir( CLEANUP = 1 );
 
-like( qx{ $^X -Ilib -e require $_; print '$_ ok' }, qr/^\s*$_ ok/s, $_ 
loaded ok )
+my @command;
+if ($] = 5.010  $Config{byteorder} =~ /^1/) {
+# little-endian means intel (not powerpc), for which fink has
+# multiple single-arch distros that are seen by a single (fat)
+# perl interp from apple for a perl version supported by fink
+# (i.e., starting with 5.10.0). This is the logic taken from
+# Fink::PkgVersion as of fink-0.29.13.
+push @command, '/usr/bin/arch';
+if ( $Config{longsize} == 4 ) {
+push @command, '-i386';   # 32-bit
+} else {
+push @command, '-x86_64'; # 64-bit
+}
+}
+like( qx{ @command $^X -Ilib -e require $_; print '$_ ok' }, qr/^\s*$_ 
ok/s, $_ loaded ok )
 for sort @modules;
 
 SKIP: {


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods capture-tiny-pm.info, 1.1, NONE capture-tiny-pm.patch, 1.1, NONE

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv22201

Removed Files:
capture-tiny-pm.info capture-tiny-pm.patch 
Log Message:
relocated to stable


--- capture-tiny-pm.info DELETED ---

--- capture-tiny-pm.patch DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/net ca-bundle.info,1.3,1.4

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv23780

Modified Files:
ca-bundle.info 
Log Message:
New ca-bundle 20120118. Now sharing the mozilla-ca-pm tarball as the source.


Index: ca-bundle.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/net/ca-bundle.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- ca-bundle.info  13 Sep 2011 21:08:29 -  1.3
+++ ca-bundle.info  19 Jan 2012 02:39:14 -  1.4
@@ -1,5 +1,5 @@
 Package: ca-bundle
-Version: 20110913
+Version: 20120118
 Revision: 1
 Description: Bundle of X.509 certificates of public CAs
 DescDetail: 
@@ -13,20 +13,22 @@
an Apache+mod_ssl webserver for SSL client authentication.
Just configure this file as the SSLCACertificateFile.

-   The ca-bundle.crt file was generated by curl's mk-ca-bundle.pl script.
+   The ca-bundle.crt file was taken from the Mozilla::CA perlmod.
 
 Maintainer: Daniel Johnson dan...@daniel-johnson.org
 Homepage: 
http://mxr.mozilla.org/seamonkey/source/security/nss/lib/ckfw/builtins/certdata.txt
-License: LGPL
+License: GPL2/LGPL2
 
-Source: http://homepage.mac.com/danielj7/%n-%v.tar.bz2
-Source-MD5: f693d28a93dfd4f164912ce8c37cddf0
+Source: mirror:cpan:authors/id/A/AB/ABH/Mozilla-CA-%v.tar.gz
+Source-MD5: e1c650d25303bf3d59a6502efd002b06
 
-CompileScript: echo 'Nothing to compile.'
+CompileScript: 
+   head -n 51 lib/Mozilla/CA/cacert.pem LICENSE
+
 
 InstallScript: 
install -d %i/etc/ssl/certs
-   install -m 644 ca-bundle.crt %i/etc/ssl/certs
+   install -m 644 lib/Mozilla/CA/cacert.pem %i/etc/ssl/certs/ca-bundle.crt
 
 
 DocFiles: LICENSE


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/net ca-bundle.info,1.5,1.6

2012-01-18 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv23944

Modified Files:
ca-bundle.info 
Log Message:
New ca-bundle 20120118. Now sharing the mozilla-ca-pm tarball as the source.


Index: ca-bundle.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/net/ca-bundle.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- ca-bundle.info  13 Sep 2011 21:09:06 -  1.5
+++ ca-bundle.info  19 Jan 2012 02:39:22 -  1.6
@@ -1,5 +1,5 @@
 Package: ca-bundle
-Version: 20110913
+Version: 20120118
 Revision: 1
 Description: Bundle of X.509 certificates of public CAs
 DescDetail: 
@@ -13,20 +13,22 @@
an Apache+mod_ssl webserver for SSL client authentication.
Just configure this file as the SSLCACertificateFile.

-   The ca-bundle.crt file was generated by curl's mk-ca-bundle.pl script.
+   The ca-bundle.crt file was taken from the Mozilla::CA perlmod.
 
 Maintainer: Daniel Johnson dan...@daniel-johnson.org
 Homepage: 
http://mxr.mozilla.org/seamonkey/source/security/nss/lib/ckfw/builtins/certdata.txt
-License: LGPL
+License: GPL2/LGPL2
 
-Source: http://homepage.mac.com/danielj7/%n-%v.tar.bz2
-Source-MD5: f693d28a93dfd4f164912ce8c37cddf0
+Source: mirror:cpan:authors/id/A/AB/ABH/Mozilla-CA-%v.tar.gz
+Source-MD5: e1c650d25303bf3d59a6502efd002b06
 
-CompileScript: echo 'Nothing to compile.'
+CompileScript: 
+   head -n 51 lib/Mozilla/CA/cacert.pem LICENSE
+
 
 InstallScript: 
install -d %i/etc/ssl/certs
-   install -m 644 ca-bundle.crt %i/etc/ssl/certs
+   install -m 644 lib/Mozilla/CA/cacert.pem %i/etc/ssl/certs/ca-bundle.crt
 
 
 DocFiles: LICENSE


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods cam-dbf-pm.info, NONE, 1.1 cam-emailtemplate-pm.info, NONE, 1.1 cam-emailtemplate-smtp-pm.info, NONE, 1.1 cam-template-pm.info, NONE, 1.1

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv26476

Added Files:
cam-dbf-pm.info cam-emailtemplate-pm.info 
cam-emailtemplate-smtp-pm.info cam-template-pm.info 
Log Message:
cam- family perlmods: sync. w/ 10.!4/stable, validated on powerpc-darwin8


--- NEW FILE: cam-emailtemplate-smtp-pm.info ---
Package: cam-emailtemplate-smtp-pm
Version: 0.91
Revision: 1
Source: mirror:cpan:authors/id/C/CL/CLOTHO/CAM-EmailTemplate-SMTP-%v.tgz
Source-MD5: 0194fd74003f64c0055e8d084396ad73
Type: perl
UpdatePOD: true
Depends: cam-emailtemplate-pm
DocFiles: ChangeLog index.html LICENSE MANIFEST META.yml README
License: Artistic/GPL
Description: Net::SMTP based email message sender
Maintainer: None fink-de...@lists.sourceforge.net
Homepage: http://search.cpan.org/dist/CAM-EmailTemplate-SMTP
DescPackaging: 
 Report bugs to the maintainer or the CPAN bug tracker:
 http://rt.cpan.org/NoAuth/Bugs.html?Dist=CAM-EmailTemplate-SMTP

Former Maintainer: Chris Dolan chrisdo...@users.sourceforge.net


--- NEW FILE: cam-template-pm.info ---
Package: cam-template-pm
Version: 0.93
Revision: 1
Source: mirror:cpan:authors/id/C/CL/CLOTHO/CAM-Template-%v.tgz
Source-MD5: 43f3e29ae6b357e1ddf42991fb03039b
Type: perl
UpdatePOD: true
DocFiles: ChangeLog index.html LICENSE MANIFEST META.yml README
License: Artistic/GPL
Description: Clotho-style HTML templates
Maintainer: None fink-de...@lists.sourceforge.net
Homepage: http://search.cpan.org/dist/CAM-Template
DescPackaging: 
 Report bugs to the maintainer or the CPAN bug tracker:
 http://rt.cpan.org/NoAuth/Bugs.html?Dist=CAM-Template

Former Maintainer: Chris Dolan chrisdo...@users.sourceforge.net


--- NEW FILE: cam-emailtemplate-pm.info ---
Package: cam-emailtemplate-pm
Version: 0.92
Revision: 1
Source: mirror:cpan:authors/id/C/CL/CLOTHO/CAM-EmailTemplate-%v.tgz
Source-MD5: 7cbe5d29b213e8ee3de88dc0df09ccc8
Type: perl
UpdatePOD: true
Depends: cam-template-pm
DocFiles: ChangeLog index.html LICENSE MANIFEST META.yml README
License: Artistic/GPL
Description: Template-based email message sender
Maintainer: None fink-de...@lists.sourceforge.net
Homepage: http://search.cpan.org/dist/CAM-EmailTemplate
DescPackaging: 
 Report bugs to the maintainer or the CPAN bug tracker:
 http://rt.cpan.org/NoAuth/Bugs.html?Dist=CAM-EmailTemplate

Former Maintainer: Chris Dolan chrisdo...@users.sourceforge.net


--- NEW FILE: cam-dbf-pm.info ---
Package: cam-dbf-pm
Version: 1.02
Revision: 2
Source: mirror:cpan:authors/id/C/CL/CLOTHO/CAM-DBF-%v.tgz
Source-MD5: 4c8561dd0dc5bb17f8f1585aa4490ace
Type: perl
Conflicts: %N-bin ( 1.02-2)
Replaces: %N-bin ( 1.02-2)
UpdatePOD: true
DocFiles: CHANGES index.html LICENSE MANIFEST META.yml README
License: Artistic/GPL
Description: Read and write dBASE III DBF files
Maintainer: None fink-de...@lists.sourceforge.net
Homepage: http://search.cpan.org/dist/CAM-DBF
DescPackaging: 
 Report bugs to the maintainer or the CPAN bug tracker:
 http://rt.cpan.org/NoAuth/Bugs.html?Dist=CAM-DBF

Former Maintainer: Chris Dolan chrisdo...@users.sourceforge.net

%N-bin splitoff merged back into %N as of 1.02-2



--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods cam-dbf-pm.info, 1.1, NONE cam-emailtemplate-pm.info, 1.1, NONE cam-emailtemplate-smtp-pm.info, 1.1, NONE cam-template-pm.info, 1.1, NONE

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv26482

Removed Files:
cam-dbf-pm.info cam-emailtemplate-pm.info 
cam-emailtemplate-smtp-pm.info cam-template-pm.info 
Log Message:
cam-* family perlmods: relocated to stable


--- cam-emailtemplate-smtp-pm.info DELETED ---

--- cam-template-pm.info DELETED ---

--- cam-emailtemplate-pm.info DELETED ---

--- cam-dbf-pm.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods cgi-compress-gzip-pm.info, NONE, 1.1 cgi-compress-gzip-pm.patch, NONE, 1.1 class-mix-pm.info, NONE, 1.1 clone-pp-pm.info, NONE, 1.1 convert

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv30714

Added Files:
cgi-compress-gzip-pm.info cgi-compress-gzip-pm.patch 
class-mix-pm.info clone-pp-pm.info convert-bencode-pm.info 
Log Message:
sync. w/ 10.!4/stable, validated on powerpc-darwin8


--- NEW FILE: cgi-compress-gzip-pm.info ---
Info2: 
Package: cgi-compress-gzip-pm%type_pkg[perl]
Version: 1.03
Revision: 1
Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
Description: CGI with automatically compressed output
License: Artistic/GPL
Maintainer: None fink-de...@lists.sourceforge.net
Homepage: http://search.cpan.org/dist/CGI-Compress-Gzip
BuildDepends: fink (= 0.24.12)
Depends: 
io-compress-pm%type_pkg[perl],
io-zlib-pm%type_pkg[perl],
perl%type_pkg[perl]-core

Conflicts: %N-man ( 0.22-1)
Replaces: %N-man ( 0.22-1)
Source: mirror:cpan:authors/id/C/CD/CDOLAN/CGI-Compress-Gzip-%v.tar.gz
Source-MD5: 903f612e27aa63530eb61b186363fecd
UpdatePOD: true
PatchFile: %{ni}.patch
PatchFile-MD5: 27c13e09a7a966dabde513614a754023
InstallScript: 
  %{default_script}
  mv %i/share/man %i/lib/perl5/%type_raw[perl]

DocFiles: CHANGES LICENSE README
DescDetail: 
 CGI::Compress::Gzip extends the CGI infrastructure to compresses
 output, whenever possible.  It uses IO::Zlib (a filehandle wrapper
 around the C zlib library).  If this is missing, the functionality
 degrades gracefully to the typical CGI behavior.  The programmer can
 selectively enable or disable the compression functionality at will.
 This module does not rely on any particular server setup.  It should
 work anywhere that CGI.pm works.
 .
 Apache mod_perl users may prefer the more straightforward
 implementation offered by the Apache::Compress or Apache::GzipChain
 modules, although those offer less control to the programmer.

DescPackaging: 
 Chris Dolan is both the maintainer and the upstream author.

Former Maintainer: Chris Dolan chrisdo...@users.sourceforge.net

DescPort: 
Hack test suite to enforce correct single-arch from fat perl
interp for spawned perl script (see test-harness-pmXXX).



--- NEW FILE: class-mix-pm.info ---
Info2: 
Package: class-mix-pm%type_pkg[perl]
Version: 0.004
Revision: 2
Type: perl (5.8.8 5.10.0)
Source: mirror:cpan:authors/id/Z/ZE/ZEFRAM/Class-Mix-%v.tar.gz
Source-MD5: c689a527394cd0c2bccb1a6cde3fe679

BuildDepends: 
fink (= 0.30.2),
module-build-pm%type_pkg[perl]

Depends: 
params-classify-pm%type_pkg[perl],
parent-pm,
perl%type_pkg[perl]-core


DefaultScript: ModuleBuild
InstallScript: 
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]

DocFiles: Changes README

Description: Anonymous classes with dynamic inheritance
License: Artistic
Homepage: http://search.cpan.org/dist/Class-Mix
Maintainer: Daniel Macks dma...@netspace.org


--- NEW FILE: cgi-compress-gzip-pm.patch ---
diff -Nurd -x'*~' CGI-Compress-Gzip-1.03.orig/t/gzip.t 
CGI-Compress-Gzip-1.03/t/gzip.t
--- CGI-Compress-Gzip-1.03.orig/t/gzip.t2008-10-18 00:31:54.0 
-0400
+++ CGI-Compress-Gzip-1.03/t/gzip.t 2010-07-30 02:58:47.0 -0400
@@ -12,6 +12,7 @@
 use IO::Zlib;
 use Compress::Zlib;
 use English qw(-no_match_vars);
+use Config;
 
 BEGIN
 {
@@ -269,6 +270,18 @@
 my $redir = 'http://www.foo.com/';
 
 my $interp = $^X -Iblib/arch -Iblib/lib;
+if ($] = 5.010  $Config{byteorder} =~ /^1/) {
+# little-endian means intel (not powerpc), for which fink has
+# multiple single-arch distros that are seen by a single (fat)
+# perl interp from apple for a perl version supported by fink
+# (i.e., starting with 5.10.0). This is the logic taken from
+# Fink::PkgVersion as of fink-0.29.13.
+if ( $Config{longsize} == 4 ) {
+   $interp = /usr/bin/arch -i386 $interp;   # 32-bit
+} else {
+   $interp = /usr/bin/arch -x86_64 $interp; # 64-bit
+}
+}
 if (defined $Devel::Cover::VERSION) {
$interp .= ' -MDevel::Cover';
 }

--- NEW FILE: clone-pp-pm.info ---
Info2: 
Package: clone-pp-pm
Version: 1.02
Revision: 1022
Description: Recursively copy Perl datatypes
Type: perl
License: Artistic
Maintainer: Benjamin Reed clone-pp...@fink.raccoonfink.com

Depends: system-perl
BuildDepends: system-perl

Source: mirror:cpan:authors/id/E/EV/EVO/Clone-PP-%v.tar.gz
Source-MD5: 8dd40e1072232006ff0242a823897e09

UseMaxBuildJobs: true

UpdatePOD: true
DocFiles: MANIFEST README

Homepage: http://search.cpan.org/dist/Clone-PP
DescDetail: 
This module provides a general-purpose clone function to 

[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods cgi-compress-gzip-pm.info, 1.1, NONE cgi-compress-gzip-pm.patch, 1.1, NONE class-mix-pm.info, 1.3, NONE clone-pp-pm.info, 1.1, NONE conve

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv31785

Removed Files:
cgi-compress-gzip-pm.info cgi-compress-gzip-pm.patch 
class-mix-pm.info clone-pp-pm.info convert-bencode-pm.info 
Log Message:
relocated to stable


--- cgi-compress-gzip-pm.info DELETED ---

--- class-mix-pm.info DELETED ---

--- cgi-compress-gzip-pm.patch DELETED ---

--- clone-pp-pm.info DELETED ---

--- convert-bencode-pm.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods alien-sdl-pm.info, NONE, 1.1 alien-sdl-pm.patch, NONE, 1.1 apache-dbi-pm.info, NONE, 1.1 extutils-cbuilder-pm.info, NONE, 1.1 extutils-cbui

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1849

Added Files:
alien-sdl-pm.info alien-sdl-pm.patch apache-dbi-pm.info 
extutils-cbuilder-pm.info extutils-cbuilder-pm.patch 
Log Message:
sync. w/ 10.!4/stable, validated on powerpc-darwin8


--- NEW FILE: extutils-cbuilder-pm.info ---
Info2: 
Package: extutils-cbuilder-pm%type_pkg[perl]
Version: 0.28.02.02
Revision: 4
Epoch: 1
Distribution: (%type_pkg[perl] = 586) 10.5
Type: perl (5.8.6 5.8.8 5.10.0)
Description: Compile and link C code for Perl modules
License: Artistic/GPL
Homepage: http://search.cpan.org/dist/ExtUtils-CBuilder/
Maintainer: Daniel Macks dma...@netspace.org
BuildDepends: 
extutils-makemaker-pm%type_pkg[perl] (= 6.31-1),
fink (= 0.24.12)

Depends: 
ipc-cmd-pm%type_pkg[perl],
pathtools-pm%type_pkg[perl] (= 3.13-1),
perl%type_pkg[perl]-core


# Unpack Phase.
Source: mirror:cpan:authors/id/D/DA/DAGOLDEN/ExtUtils-CBuilder-0.280202.tar.gz
Source-MD5: c2b6aa8d22416574c0a3f658136a7958
PatchFile: %{ni}.patch
PatchFile-MD5: 59c8337b70a4975d81356a9edefe15a5

# Install Phase.
InstallScript: 
%{default_script}
/bin/mv %i/share/man %i/lib/perl5/%type_raw[perl]


UpdatePOD: true
DocFiles: Changes README

# Documentation.
DescDetail: 
This module can build the C portions of Perl modules by invoking the
appropriate compilers and linkers in a cross-platform manner.  It was
motivated by the Module::Build project, but may be useful for other
purposes as well.  However, it is not intended as a general
cross-platform interface to all your C building needs.  That would
have been a much more ambitious goal!

DescPackaging: 
Former maintainer: Blair Zajac bl...@orcaware.com

Hack determination of abs path to perl interp ($^X may rely on
$PATH rather than relative to $PWD)

Fink is completely single-arch but apple's perl is so fat it
even propagates multiple -arch flags via its Config.pm. Well
not to us it won't, by golly.



--- NEW FILE: apache-dbi-pm.info ---
Info2: 
Package: apache-dbi-pm%type_pkg[perl]
Version: 1.06
Revision: 1
Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5
Description: Perl module to link Apache and DBI
Type: perl (5.8.1 5.8.4 5.8.6 5.8.8)
License: Artistic
Maintainer: Christian Schaffner chri...@users.sourceforge.net

# Dependencies:
Depends: perl%type_pkg[perl]-core, dbi-pm%type_pkg[perl] (= 1.37-2), 
test-simple-pm%type_pkg[perl], dbd-mysql-pm%type_pkg[perl] (= 2.1026-3), 
digest-sha1-pm%type_pkg[perl], digest-md5-pm%type_pkg[perl] 
BuildDepends: fink (= 0.20.1-1)
Replaces: apache-dbi-pm (= 0.92-1), apache-dbi-pm560, %N-man
Conflicts: %N-man

# Unpack Phase:
Source: mirror:cpan:authors/id/P/PG/PGOLLUCCI/Apache-DBI-%v.tar.gz
Source-MD5: ba05c9b7a437e8d974c81d948d162825

# Compile Phase:
NoPerlTests: true

# Install Phase:
UpdatePOD: true
DocFiles: Changes MANIFEST README
InstallScript: 
  %{default_script}
  mv %i/share/man %i/lib/perl5/%type_raw[perl]


# Additional Information:
DescDetail: 
These modules are supposed to be used with the Apache server together with 
an embedded perl interpreter like mod_perl. They provide support for basic 
authentication and authorization as well as support for persistent database 
connections via Perl's Database Independent Interface (DBI). 

- DBI.pm provides persistent database connections: 
  - connections can be established during server-startup 
  - configurable rollback to ensure data integrity 
  - configurable verification of the connections to avoid time-outs. 

- AuthDBI.pm provides authentication and authorization: 
  - optional shared cache for passwords to minimize database load 
  - configurable cleanup-handler deletes outdated entries from the cache 

Apache::DBI has been in widespread deployment on many platforms for
years.  Apache::DBI is one of the most widely used mod_perl related
modules.  It can be considered stable.

DescPort: 
Disabled default tests since they can fail under certain
mysql server isntallations.
2007-10-31: Re-enabled tests. Should now work. Let's see.

Homepage: http://search.cpan.org/dist/Apache-DBI/


--- NEW FILE: extutils-cbuilder-pm.patch ---
diff -Nurd -x'*~' ExtUtils-CBuilder-0.280202.orig/lib/ExtUtils/CBuilder/Base.pm 
ExtUtils-CBuilder-0.280202/lib/ExtUtils/CBuilder/Base.pm
--- ExtUtils-CBuilder-0.280202.orig/lib/ExtUtils/CBuilder/Base.pm   
2011-01-23 10:48:57.0 -0500
+++ ExtUtils-CBuilder-0.280202/lib/ExtUtils/CBuilder/Base.pm2011-04-19 
13:26:19.0 -0400
@@ -37,6 +37,7 @@
 or warn Warning: Can't locate your perl binary;
 
   while (my ($k,$v) = each %Config) {
+$v =~ s/-arch\s+\S+//g if defined $v; # fink does not support fat
 $self-{config}{$k} = $v unless exists 

[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods alien-sdl-pm.info, 1.2, NONE alien-sdl-pm.patch, 1.1, NONE apache-dbi-pm.info, 1.1, NONE extutils-cbuilder-pm.info, 1.1, NONE extutils-cb

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1893

Removed Files:
alien-sdl-pm.info alien-sdl-pm.patch apache-dbi-pm.info 
extutils-cbuilder-pm.info extutils-cbuilder-pm.patch 
Log Message:
relocated to stable


--- extutils-cbuilder-pm.info DELETED ---

--- apache-dbi-pm.info DELETED ---

--- extutils-cbuilder-pm.patch DELETED ---

--- alien-sdl-pm.info DELETED ---

--- alien-sdl-pm.patch DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods data-dump-pm.info, NONE, 1.1 data-dumper-pm.info, NONE, 1.1 digest-bubblebabble-pm.info, NONE, 1.1 data-hexdumper-pm.info, NONE, 1.1 data-i

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv6095

Added Files:
data-dump-pm.info data-dumper-pm.info 
digest-bubblebabble-pm.info data-hexdumper-pm.info 
data-inherited-pm.info data-inherited-pm.patch 
data-lazy-pm.info dbix-datasource-pm.info devel-cycle-pm.info 
devel-hide-pm.info devel-smallprof-pm.info 
devel-smallprof-pm.patch 
Log Message:
sync. w/ 10.!4/stable, -pm586 validated on powerpc-darwin8


--- NEW FILE: devel-hide-pm.info ---
Package: devel-hide-pm
Version: 0.0008
Revision: 1
Source: mirror:cpan:authors/id/F/FE/FERREIRA/Devel-Hide-%v.tar.gz
Source-MD5: 3b38c60feed1e922093f5f68dd6d5c20
Type: perl 
InfoTest: 
TestDepends: 
test-pod-coverage-pm,
test-pod-pm


DocFiles: Changes README
UpdatePOD: true
Description: Make modules invisivle to use/require
License: Artistic/GPL
Maintainer: Daniel Macks dma...@netspace.org
Homepage: http://search.cpan.org/dist/Devel-Hide

--- NEW FILE: devel-smallprof-pm.info ---
Info2: 
Package: devel-smallprof-pm%type_pkg[perl]
Version: 2.02
Revision: 11
Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
Source: mirror:cpan:authors/id/S/SA/SALVA/Devel-SmallProf-%v.tar.gz
Source-MD5: 498704ed1b888fc62b0c7092f8b590f5

Replaces: devel-smallprof-pm (= 1.15-1), devel-smallprof-pm581 ( 2.00b03-11)
Conflicts: devel-smallprof-pm (= 1.15-1), devel-smallprof-pm581 ( 2.00b03-11)
BuildDepends: fink (= 0.24.12)
Depends: perl%type_pkg[perl]-core, time-hires-pm%type_pkg[perl]

Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
UpdatePOD: true
DocFiles: Changes README TODO
Description: Per-line Perl profiler
DescDetail: 
The Devel::SmallProf profiler is focused on the time taken for a 
program run on a line-by-line basis. It is intended to be as 
small in terms of impact on the speed and memory usage of the 
profiled program as possible and also in terms of being simple 
to use.

PatchFile: %{ni}.patch
PatchFile-MD5: 76ced10902ed4ddc2c1db2c7580f135d
InstallScript: 
  %{default_script}
  mv %i/share/man %i/lib/perl5/%type_raw[perl]

License: GPL
Maintainer: Dave Vasilevsky v...@users.sourceforge.net
Homepage: http://search.cpan.org/dist/Devel-SmallProf/


--- NEW FILE: data-dump-pm.info ---
Info2: 
Package: data-dump-pm
Version: 1.15
Revision: 1
Description: Pretty printing of data structures
Type: perl
License: Artistic
Maintainer: Benjamin Reed data-dump...@fink.raccoonfink.com

Depends: system-perl
BuildDepends: system-perl

Source: mirror:cpan:modules/by-module/Data/Data-Dump-%v.tar.gz
Source-MD5: 775729739a599dc5fbf918dc7cffe9f4

UseMaxBuildJobs: true

UpdatePOD: true
DocFiles: Changes README

Homepage: http://search.cpan.org/dist/Data-Dump
DescDetail: 
This module provides a single function called dump() that
takes a list of values as its argument and produces a
string as its result.  The string contains Perl code that,
when evaled, produces a deep copy of the original
arguments.  The string is formatted for easy reading.




--- NEW FILE: data-inherited-pm.info ---
Info2: 
Package: data-inherited-pm%type_pkg[perl]
Version: 1.100.860
Revision: 2
Type: perl (5.8.6 5.8.8 5.10.0)
BuildDepends: 
fink (= 0.24.12),
test-simple-pm%type_pkg[perl] (= 0.88-1)

Depends: 
next-pm,
perl%type_pkg[perl]-core

Source: mirror:cpan:authors/id/M/MA/MARCEL/Data-Inherited-1.100860.tar.gz
Source-MD5: e5f1f0b8d98fcc5007684d7cb11fa2e8
PatchFile: %{ni}.patch
PatchFile-MD5: 80260eaf861c9fb73708bd98a8a249b4
InstallScript: 
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]

UpdatePOD: true
DocFiles: Changes LICENSE README
Description: Hierarchy-wide list/hash accumulator
Homepage: http://search.cpan.org/dist/Data-Inherited
Maintainer: Daniel Macks dma...@netspace.org
License: Artistic/GPL


--- NEW FILE: digest-bubblebabble-pm.info ---
Package: digest-bubblebabble-pm
Version: 0.02
Revision: 1
Type: perl

Description: Create bubble-babble fingerprints
DescDetail: 
Bubble babble is a method of representing a message digest
as a string of real words, to make the fingerprint easier
to remember. The words are not necessarily real words, but
they look more like words than a string of hex characters.

License: Artistic/GPL
Maintainer: Daniel Macks dma...@netspace.org
Homepage: http://search.cpan.org/dist/Digest-BubbleBabble/

Source: mirror:cpan:authors/id/B/BT/BTROTT/Digest-BubbleBabble-%v.tar.gz
Source-MD5: 4d7edd5b0a904db8194aa660d502fbe0

UpdatePOD: true
DocFiles: Changes README

--- NEW FILE: 

[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods data-dump-pm.info, 1.1, NONE data-dumper-pm.info, 1.1, NONE digest-bubblebabble-pm.info, 1.1, NONE data-hexdumper-pm.info, 1.1, NONE data

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv6116

Removed Files:
data-dump-pm.info data-dumper-pm.info 
digest-bubblebabble-pm.info data-hexdumper-pm.info 
data-inherited-pm.info data-inherited-pm.patch 
data-lazy-pm.info dbix-datasource-pm.info devel-cycle-pm.info 
devel-hide-pm.info devel-smallprof-pm.info 
devel-smallprof-pm.patch 
Log Message:
relocated to stable


--- devel-hide-pm.info DELETED ---

--- devel-smallprof-pm.info DELETED ---

--- data-dump-pm.info DELETED ---

--- data-inherited-pm.info DELETED ---

--- digest-bubblebabble-pm.info DELETED ---

--- data-lazy-pm.info DELETED ---

--- devel-cycle-pm.info DELETED ---

--- data-dumper-pm.info DELETED ---

--- data-inherited-pm.patch DELETED ---

--- dbix-datasource-pm.info DELETED ---

--- data-hexdumper-pm.info DELETED ---

--- devel-smallprof-pm.patch DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods data-denter-pm.info, NONE, 1.1 data-temporarybag-pm.info, NONE, 1.1

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv7522

Added Files:
data-denter-pm.info data-temporarybag-pm.info 
Log Message:
sync. w/ 10.!4/stable, validated on powerpc-darwin8


--- NEW FILE: data-denter-pm.info ---
Package: data-denter-pm
Version: 0.15
Revision: 1
Type: perl

Source: mirror:cpan:authors/id/I/IN/INGY/Data-Denter-%v.tar.gz
Source-MD5: 819e5c05fb61e90f4c1311286b080405

PatchScript: tail -n 17 Denter.pod  LICENSE

DocFiles: LICENSE README
UpdatePOD: true

Description: Data serializer/deserializer
License: Artistic/GPL
Maintainer: Daniel Macks dma...@netspace.org
Homepage: http://search.cpan.org/dist/Data-Denter/

--- NEW FILE: data-temporarybag-pm.info ---
Package: data-temporarybag-pm
Version: 0.09
Revision: 1
Source: mirror:cpan:authors/id/Y/YS/YSAS/Data-TemporaryBag-%v.tar.gz
Source-MD5: a0045c0cc1fe92dd54ead9a682a83f08
Type: perl
PatchScript: perl -0 
-pe's/^.*=head\d\s+(COPYRIGHT.*?)(=head\d.*|=cut.*|)$/$1/is' TemporaryBag.pm  
COPYRIGHT
UpdatePOD: true
# An earlier revision was mistakenly versioned with Perl
Conflicts: 
 data-temporarybag-pm580, data-temporarybag-pm581, data-temporarybag-pm584,
 data-temporarybag-pm580-man, data-temporarybag-pm581-man, 
data-temporarybag-pm584-man

Replaces: 
 data-temporarybag-pm580, data-temporarybag-pm581, data-temporarybag-pm584,
 data-temporarybag-pm580-man, data-temporarybag-pm581-man, 
data-temporarybag-pm584-man

DocFiles: Changes MANIFEST META.yml README COPYRIGHT
License: Artistic/GPL
Description: Handle long size data using temporary file 
Maintainer: None fink-de...@lists.sourceforge.net
Homepage: http://search.cpan.org/dist/Data-TemporaryBag
DescPackaging: 
 Found a bug?  Please check if it has already been reported:
 http://rt.cpan.org/NoAuth/Bugs.html?Dist=Data-TemporaryBag

Former maintainer: Chris Dolan chrisdo...@users.sourceforge.net



--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods data-denter-pm.info, 1.1, NONE data-temporarybag-pm.info, 1.1, NONE

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv7529

Removed Files:
data-denter-pm.info data-temporarybag-pm.info 
Log Message:
relocated to stable


--- data-denter-pm.info DELETED ---

--- data-temporarybag-pm.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods cpan-distnameinfo-pm.info, NONE, 1.1 crypt-openssl-bignum-pm.info, NONE, 1.1 crypt-openssl-bignum-pm.patch, NONE, 1.1 crypt-openssl-rsa-pm.

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv13335

Modified Files:
extutils-parsexs-pm.info 
Added Files:
cpan-distnameinfo-pm.info crypt-openssl-bignum-pm.info 
crypt-openssl-bignum-pm.patch crypt-openssl-rsa-pm.info 
crypt-openssl-rsa-pm.patch crypt-openssl-random-pm.info 
crypt-openssl-random-pm.patch extutils-cchecker-pm-0.06.info 
extutils-f77-pm.info extutils-f77-pm.patch 
extutils-xsbuilder-pm.info extutils-makemaker-pm-6.56.info 
extutils-makemaker-pm-6.56.patch extutils-command-pm.info 
extutils-pkgconfig-pm-1.07.info 
Log Message:
sync. w/ 10.!4/stable, validated on powerpc-darwin8


--- NEW FILE: extutils-f77-pm.patch ---
diff -uNr ExtUtils-F77-1.16/F77.pm ExtUtils-F77-1.16-new/F77.pm
--- ExtUtils-F77-1.16/F77.pm2007-04-01 23:40:23.0 -0500
+++ ExtUtils-F77-1.16-new/F77.pm2007-07-28 14:50:33.0 -0500
@@ -173,7 +173,7 @@
 my @libs = ('g2c', 'f2c');

 my ($dir, $lib, $test);

 foreach $test (@libs) {

-  $dir = `g77 -print-file-name=lib$test.a`;

+  $dir = `g95 -print-file-name=lib$test.a`;

   chomp $dir;

   # Note that -print-file-name returns just the library name

   # if it cant be found - make sure that we only accept the

@@ -193,8 +193,8 @@
 return( -L$dir -L/usr/lib -l$lib -lm );

 };

 $F77config{Generic}{G77}{Trail_} = 1;

-$F77config{Generic}{G77}{Compiler} = find_in_path('g77','f77','fort77');

-$F77config{Generic}{G77}{Cflags} = '-O';

+$F77config{Generic}{G77}{Compiler} = find_in_path('g95','g77','f77','fort77');

+$F77config{Generic}{G77}{Cflags} = '-Os';

 $F77config{Generic}{DEFAULT} = 'G77';

 $F77config{Generic}{F2c} = $F77config{Generic}{G77};

 


--- NEW FILE: extutils-cchecker-pm-0.06.info ---
Info2: 
Package: extutils-cchecker-pm
Version: 0.06
Revision: 2
License: Artistic/GPL
Description: Utilities for headers, libs, or OS features
Maintainer: Daniel Johnson dan...@daniel-johnson.org
Homepage: http://search.cpan.org/dist/ExtUtils-CChecker/

Source: mirror:cpan:authors/id/P/PE/PEVANS/ExtUtils-CChecker-%v.tar.gz
Source-MD5: 18d0a1a50afd5a8185c03cbed9098e4e

Type: perl

DocFiles: Changes LICENSE README

Depends: system-perl
BuildDepends: module-build-pm, fink (= 0.30.2)

DefaultScript: ModuleBuild

InfoTest: 
TestDepends: test-exception-pm
TestScript: 
#!/bin/sh -ev
export ARCHFLAGS=
%{default_script}





--- NEW FILE: extutils-command-pm.info ---
Package: extutils-command-pm
Version: 1.17
Revision: 1
License: Artistic/GPL
Description: Utils to replace UNIX commands in Makefiles
Maintainer: Daniel Johnson dan...@daniel-johnson.org
Homepage: http://search.cpan.org/dist/ExtUtils-Command/
DescPackaging: 
Declares minimum of extutils-makemaker 6.31 which prevents building on
 10.6 without introducing a circular dep. We don't REALLY need it 
though
so remove the version check.


Type: perl

Source: mirror:cpan:authors/id/F/FL/FLORA/ExtUtils-Command-%v.tar.gz
Source-MD5: 8d2bd6a2311b6264d3dd96c11601c34a

PatchScript: perl -pi -e 's/ 6.31//' Makefile.PL

UpdatePOD: true

DocFiles: Changes LICENSE README

--- NEW FILE: crypt-openssl-random-pm.info ---
Info2:  
Package: crypt-openssl-random-pm%type_pkg[perl]
Version: 0.04
Revision: 1
Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
Distribution: 
   (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4,
   (%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5,
   (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5,
   (%type_pkg[perl] = 588) 10.6,
   (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6,
   (%type_pkg[perl] = 5123) 10.7

Depends: perl%type_pkg[perl]-core
BuildDepends: fink (= 0.29.0-1), perl%type_pkg[perl]-core, system-openssl-dev
Source: mirror:cpan:authors/id/I/IR/IROBERTS/Crypt-OpenSSL-Random-%v.tar.gz
Source-MD5: c56ac5dbdd46122eb9b8da59613b7b0a
PatchFile: %{ni}.patch
PatchFile-MD5: 0269fbcdf737cbec2bc6db8d630b16e0
PatchScript: 
  sed 's|@PREFIX@|%p|g'  %{PatchFile} | patch 

UpdatePOD: true
CompileScript: 
%{default_script} LDDLFLAGS='-bundle -undefined dynamic_lookup'

InstallScript: 
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl] 

DocFiles: LICENSE MANIFEST Changes
Description: Perl interface Crypt::OpenSSL::Random
DescDetail: 
Crypt::OpenSSL::Random provides the ability to seed and query 
the OpenSSL library's pseudo-random number generator.

DescPackaging: 
Move the man dir so that Crypt::OpenSSL::Random.3pm goes to a versioned 
directory.
Patch Makefile.PL, so that it uses system-openssl(-dev)
We need to set LDDLFLAGS manually inside CompileScript so that -L%p/lib 
doesn't come up first. - Thanks danielj!

License: GPL
Maintainer: Keith Ward ke...@chaos-realm.net
Homepage: 

[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods cpan-distnameinfo-pm.info, 1.1, NONE crypt-openssl-bignum-pm.info, 1.1, NONE crypt-openssl-bignum-pm.patch, 1.1, NONE crypt-openssl-rsa-p

2012-01-18 Thread David Fang
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv13419

Removed Files:
cpan-distnameinfo-pm.info crypt-openssl-bignum-pm.info 
crypt-openssl-bignum-pm.patch crypt-openssl-rsa-pm.info 
crypt-openssl-rsa-pm.patch crypt-openssl-random-pm.info 
crypt-openssl-random-pm.patch extutils-cchecker-pm-0.06.info 
extutils-f77-pm.info extutils-f77-pm.patch 
extutils-xsbuilder-pm.info extutils-makemaker-pm-6.56.info 
extutils-makemaker-pm-6.56.patch extutils-command-pm.info 
extutils-pkgconfig-pm-1.07.info 
Log Message:
relocated to stable


--- extutils-f77-pm.patch DELETED ---

--- extutils-cchecker-pm-0.06.info DELETED ---

--- extutils-command-pm.info DELETED ---

--- crypt-openssl-random-pm.info DELETED ---

--- extutils-makemaker-pm-6.56.patch DELETED ---

--- crypt-openssl-random-pm.patch DELETED ---

--- crypt-openssl-rsa-pm.info DELETED ---

--- extutils-makemaker-pm-6.56.info DELETED ---

--- cpan-distnameinfo-pm.info DELETED ---

--- extutils-f77-pm.info DELETED ---

--- crypt-openssl-rsa-pm.patch DELETED ---

--- extutils-xsbuilder-pm.info DELETED ---

--- crypt-openssl-bignum-pm.info DELETED ---

--- crypt-openssl-bignum-pm.patch DELETED ---

--- extutils-pkgconfig-pm-1.07.info DELETED ---


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs