[cvs] dists/10.4/unstable/main/finkinfo/utils clamav-0.95.3.info, 1.1, 1.2 clamav.info, 1.44, 1.45

2010-06-02 Thread Remi Mommsen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv25626

Modified Files:
clamav-0.95.3.info clamav.info 
Log Message:
Find compiler in updated gcc44 package.

Index: clamav-0.95.3.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils/clamav-0.95.3.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- clamav-0.95.3.info  13 Apr 2010 18:15:37 -  1.1
+++ clamav-0.95.3.info  2 Jun 2010 11:07:38 -   1.2
@@ -1,7 +1,7 @@
 Info3: <<
 Package: clamav
 Version: 0.95.3
-Revision: 22
+Revision: 23
 
 Description: Clam Anti-Virus scanner
 DescDetail: <<
@@ -58,14 +58,14 @@
   libiconv-dev,
   libncurses5,
   libtool2,
-  gcc44
+  gcc44 (>= 4.4.4)
 <<
 Depends: <<
   clamav6-shlibs (=%v-%r),
   libncurses5-shlibs
 <<
 
-SetCC: %p/lib/gcc4.4/bin/gcc
+SetCC: %p/bin/gcc-4
 CompileScript: <<
  #!/bin/sh -ev
  export PKG_CONFIG_PATH=%p/lib/system-openssl/lib/pkgconfig
@@ -100,7 +100,7 @@
   Package: clamav6-shlibs
   Depends: <<
 bzip2-shlibs,
-gcc44-shlibs,
+gcc44-shlibs (>= 4.4.4),
 libiconv,
 libtool2-shlibs
   <<

Index: clamav.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils/clamav.info,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- clamav.info 19 May 2010 15:54:54 -  1.44
+++ clamav.info 2 Jun 2010 11:07:38 -   1.45
@@ -1,7 +1,7 @@
 Info3: <<
 Package: clamav
 Version: 0.96.1
-Revision: 11
+Revision: 12
 
 Description: Clam Anti-Virus scanner
 DescDetail: <<
@@ -59,7 +59,7 @@
   libiconv-dev,
   libncurses5,
   libtool2,
-  gcc44
+  gcc44 (>= 4.4.4)
 <<
 Depends: <<
   clamav7-shlibs (=%v-%r),
@@ -71,7 +71,7 @@
  /usr/bin/sed -i'.bak' 's/LC_AGE=1/LC_AGE=0/g' configure*
 <<
 
-SetCC: %p/lib/gcc4.4/bin/gcc
+SetCC: %p/bin/gcc-4
 CompileScript: <<
  #!/bin/sh -ev
  export PKG_CONFIG_PATH=%p/lib/system-openssl/lib/pkgconfig
@@ -107,7 +107,7 @@
   Package: clamav7-shlibs
   Depends: <<
 bzip2-shlibs,
-gcc44-shlibs,
+gcc44-shlibs (>= 4.4.4),
 libiconv,
 libtool2-shlibs
   <<


--

___
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 xchat.info, 1.20, 1.21 xchat.patch, 1.3, 1.4

2010-06-02 Thread Max Horn
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv31541

Modified Files:
xchat.info xchat.patch 
Log Message:
New xchat upstream version; also swich from libgettext3 to libgettext, and drop 
apparently unnecessary bdep on libpng

Index: xchat.patch
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/xchat.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- xchat.patch 29 Oct 2008 17:02:20 -  1.3
+++ xchat.patch 2 Jun 2010 11:33:51 -   1.4
@@ -10,82 +10,3 @@
  PY_CFLAGS="-I$PY_INC"
  echo "$as_me:$LINENO: result: ok" >&5
  echo "${ECHO_T}ok" >&6
-#
-# Various small fixes from CVS that are considered safe to apply to 2.8.6.
-#
 xchat-2.8.6/src/common/cfgfiles.c  2008-02-05 21:02:47.0 +1100
-+++ xchat-2.8.6p1/src/common/cfgfiles.c2008-06-15 13:45:43.0 
+1000
-@@ -886,7 +886,6 @@
- set_showval (session *sess, const struct prefs *var, char *tbuf)
- {
-   int len, dots, j;
--  static const char *offon[] = { "OFF", "ON" };
- 
-   len = strlen (var->name);
-   memcpy (tbuf, var->name, len);
-@@ -909,8 +908,10 @@
-   *((int *) &prefs + var->offset));
-   break;
-   case TYPE_BOOL:
--  sprintf (tbuf + len, "\0033:\017 %s\n", offon[
--  *((int *) &prefs + var->offset)]);
-+  if (*((int *) &prefs + var->offset))
-+  sprintf (tbuf + len, "\0033:\017 %s\n", "ON");
-+  else
-+  sprintf (tbuf + len, "\0033:\017 %s\n", "OFF");
-   break;
-   }
-   PrintText (sess, tbuf);
 xchat-2.8.6/src/common/chanopt.c   2008-06-10 22:00:55.0 +1000
-+++ xchat-2.8.6p1/src/common/chanopt.c 2008-06-15 13:48:04.0 +1000
-@@ -32,7 +32,7 @@
- 
- #define S_F(xx) STRUCT_OFFSET_STR(struct session,xx)
- 
--channel_options chanopt[] =
-+static const channel_options chanopt[] =
- {
-   {"alert_beep", "BEEP", S_F(alert_beep)},
-   {"alert_taskbar", NULL, S_F(alert_taskbar)},
 xchat-2.8.6/src/common/servlist.c  2008-04-01 19:22:34.0 +1100
-+++ xchat-2.8.6p1/src/common/servlist.c2008-06-15 13:57:41.0 
+1000
-@@ -509,6 +509,8 @@
-   list = g_slist_nth (net->servlist, net->selected);
-   if (!list)
-   list = net->servlist;
-+  if (!list)
-+  return;
-   ircserv = list->data;
- 
-   /* incase a protocol switch is added to the servlist gui */
 xchat-2.8.6/src/common/text.c  2008-03-28 13:20:04.0 +1100
-+++ xchat-2.8.6p1/src/common/text.c2008-06-15 13:59:59.0 +1000
-@@ -216,7 +216,7 @@
- static void
- scrollback_save (session *sess, char *text)
- {
--  char buf[1024];
-+  char buf[512 * 4];
-   time_t stamp;
-   int len;
- 
-@@ -266,7 +266,7 @@
- scrollback_load (session *sess)
- {
-   int fh;
--  char buf[1024];
-+  char buf[512 * 4];
-   char *text;
-   time_t stamp;
-   int lines;
 xchat-2.8.6/src/fe-gtk/xtext.h.orig2008-02-24 05:48:02.0 
+0100
-+++ xchat-2.8.6/src/fe-gtk/xtext.h 2008-09-06 02:18:39.0 +0200
-@@ -270,6 +270,6 @@
- xtext_buffer *gtk_xtext_buffer_new (GtkXText *xtext);
- void gtk_xtext_buffer_free (xtext_buffer *buf);
- void gtk_xtext_buffer_show (GtkXText *xtext, xtext_buffer *buf, int render);
--GtkType gtk_xtext_get_type (void);
-+GType gtk_xtext_get_type (void);
- 
- #endif
- 
\ No newline at end of file

Index: xchat.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/xchat.info,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- xchat.info  23 Jan 2010 23:23:49 -  1.20
+++ xchat.info  2 Jun 2010 11:33:51 -   1.21
@@ -15,13 +15,12 @@
 # maintainership of) the affected package.
 
 Package: xchat
-Version: 2.8.6
+Version: 2.8.8
 Revision: 1
 Maintainer: Max Horn 
 BuildDepends: <<
   system-openssl-dev,
   cairo (>= 1.6-1),
-  libpng3,
   expat1,
   glitz,
   fontconfig2-dev (>= 2.4.1-1),
@@ -41,9 +40,7 @@
   dbus-dev (>= 1.0-1),
   tcltk,
   tcltk-dev,
-  libgettext3-dev,
-  gettext-bin,
-  gettext-tools,
+  libgettext8-dev,
   libiconv-dev,
   fink (>= 0.24.12-1)
 <<
@@ -54,14 +51,14 @@
   dbus (>= 1.0-1),
   tcltk-shlibs,
   python25,
-  libgettext3-shlibs
+  libgettext8-shlibs
 <<
 Conflicts: xchat-ssl (<< 2.6.8-1022)
 Replaces: xchat-ssl (<< 2.6.8-1022)
 Source: http://xchat.org/files/source/2.8/xchat-%v.tar.bz2
-Source-MD5: 1f2670865d43a23a9abc596dde999aca
+Source-MD5: 6775c44f38e84d06c06c336b32c4a452
 PatchFile: %n.patch
-PatchFile-MD5: c537af7cb886a09ebc48b070fe9cb2f1
+PatchFile-MD5: 731c5e62819224c4627b9fea2905ab15
 

[cvs] dists/10.4/unstable/main/finkinfo/utils clamav.info,1.45,1.46

2010-06-02 Thread Remi Mommsen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv8380

Modified Files:
clamav.info 
Log Message:
Use g++ also from gcc44.

Index: clamav.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils/clamav.info,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- clamav.info 2 Jun 2010 11:07:38 -   1.45
+++ clamav.info 2 Jun 2010 14:16:19 -   1.46
@@ -1,7 +1,7 @@
 Info3: <<
 Package: clamav
 Version: 0.96.1
-Revision: 12
+Revision: 13
 
 Description: Clam Anti-Virus scanner
 DescDetail: <<
@@ -72,6 +72,7 @@
 <<
 
 SetCC: %p/bin/gcc-4
+SetCXX: %p/bin/g++-4
 CompileScript: <<
  #!/bin/sh -ev
  export PKG_CONFIG_PATH=%p/lib/system-openssl/lib/pkgconfig


--

___
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/pythonmods html-py.info, NONE, 1.1

2010-06-02 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9419

Added Files:
html-py.info 
Log Message:
New package.


--- NEW FILE: html-py.info ---
Info2: <<
Package: html-py%type_pkg[python]
Version: 1.11
Revision: 1
Type: python (2.5 2.6 3.1)
Description: Simple, elegant HTML/XHTML generation
Maintainer: Daniel Johnson 
License: BSD
Homepage: http://pypi.python.org/pypi/html

Source: http://pypi.python.org/packages/source/h/html/html-%v.tar.gz
Source-MD5: ee7bc5acff5b8a280e1e5a7eec58eeb0

Depends: python%type_pkg[python]
BuildDepends: fink (>= 0.24.12)

#the euro symbol in html.py causes python3 to choke when installing.
PatchScript: perl -pi -Cio -e 's/\x{20ac}//g' html.py

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

InfoTest: TestScript: %p/bin/python%type_raw[python] -m html

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

DocFiles: PKG-INFO README.txt
<<


--

___
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 archive-tar-pm.info, 1.13, 1.14

2010-06-02 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10189

Modified Files:
archive-tar-pm.info 
Log Message:
module build -> archive tar -> test-pod circular dependency

Index: archive-tar-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/archive-tar-pm.info,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- archive-tar-pm.info 29 Jan 2010 05:29:45 -  1.13
+++ archive-tar-pm.info 2 Jun 2010 16:14:02 -   1.14
@@ -11,7 +11,7 @@
 
 # Dependencies.
 Depends: compress-zlib-pm%type_pkg[perl] (>= 2.015-1), io-compress-base-pm (>= 
2.015-1), io-compress-bzip2-pm%type_pkg[perl] (>= 2.015-1), 
io-compress-zlib-pm%type_pkg[perl] (>= 2.015-1), io-string-pm, 
io-zlib-pm%type_pkg[perl] (>= 1.01-1), package-constants-pm, 
perl%type_pkg[perl]-core, text-diff-pm
-BuildDepends: fink (>= 0.20.3), test-pod-pm
+BuildDepends: fink (>= 0.20.3)
 Conflicts: %N-man, %N-bin
 Replaces: %N-man, %N-bin
 
@@ -26,6 +26,9 @@
   mv %i/bin/ptar %i/bin/ptar-%type_raw[perl]
   mv %i/bin/ptardiff %i/bin/ptardiff-%type_raw[perl]
 <<
+InfoTest: <<
+  TestDepends: test-pod-pm
+<<
 UpdatePOD: true
 DocFiles: CHANGES README
 


--

___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] CVSROOT avail,1.96,1.97

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/CVSROOT
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv6983

Modified Files:
avail 
Log Message:
add dazjorz ("Sjors" on #fink)...working on new debian toolchain


Index: avail
===
RCS file: /cvsroot/fink/CVSROOT/avail,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -d -r1.96 -r1.97
--- avail   2 Mar 2010 18:56:43 -   1.96
+++ avail   2 Jun 2010 17:45:51 -   1.97
@@ -9,7 +9,7 @@
 avail|newmanbe|web/map
 
 # Active members have write access to everything except CVSROOT
-avail|aida_s, alexkhansen, arohl, asari, ashley-y, babayoshihiko, bbraun, 
bcully, benh57, beren12, bmaret, carstenklapp, cattrap, chris01, chrisdolan, 
clepple, costabel, crhalpin, cswinehart, danielj7, dbreiser, dmacks, dmalloc, 
driftkop, dsias, ebroder, fangism, freckle, gecko2, goatbar, gyar, hicky, 
htodd, jacereda, jackfink, jessealama, jfmertens, jimgibbs, jswhit, 
k-m_schindler, kconger, kilian, landonf, lrosengreen, mathmeye, mommsen, 
mrvacbob, msachs, msek, neeri, nieder, noolab, ogorman, okayama, oldgeese, 
rohanl, rv8, schwern, shawn, spundun, thesin, thomasko, treiber, usata, vasi, 
wgscott, wm3, yatsuo, zauc, zking|base-files, fink, mirrors, web, dists, 
packages, scripts/installer
+avail|aida_s, alexkhansen, arohl, asari, ashley-y, babayoshihiko, bbraun, 
bcully, benh57, beren12, bmaret, carstenklapp, cattrap, chris01, chrisdolan, 
clepple, costabel, crhalpin, cswinehart, danielj7, dazjorz, dbreiser, dmacks, 
dmalloc, driftkop, dsias, ebroder, fangism, freckle, gecko2, goatbar, gyar, 
hicky, htodd, jacereda, jackfink, jessealama, jfmertens, jimgibbs, jswhit, 
k-m_schindler, kconger, kilian, landonf, lrosengreen, mathmeye, mommsen, 
mrvacbob, msachs, msek, neeri, nieder, noolab, ogorman, okayama, oldgeese, 
rohanl, rv8, schwern, shawn, spundun, thesin, thomasko, treiber, usata, vasi, 
wgscott, wm3, yatsuo, zauc, zking|base-files, fink, mirrors, web, dists, 
packages, scripts/installer
 
 # The 'scripts' module (TODO: distinguish access for each subdir?)
 avail|bbraun, benh57, chris01, dmacks, dmrrsn, fingolfin, mommsen, msachs, 
nieder, rangerrick, ogorman|scripts


--

___
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 esvn.info,1.2,1.3

2010-06-02 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv7491/stable/main/finkinfo/devel

Modified Files:
esvn.info 
Log Message:
unmaintain by request

Index: esvn.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel/esvn.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- esvn.info   23 Mar 2009 07:38:29 -  1.2
+++ esvn.info   2 Jun 2010 17:46:26 -   1.3
@@ -1,9 +1,12 @@
 Package: esvn
+# do not upgrade to 0.6.12 as it breaks with svn > 1.4.
+# not clear if 0.6.11 also has this problem.
+# 
http://sourceforge.net/tracker/?func=detail&aid=2812596&group_id=117405&atid=677938
 Version: 0.6.11
 Revision: 12
 Description: GUI frontend for Subversion (QT-based)
 License: GPL
-Maintainer: Christian Schaffner 
+Maintainer: None 
 
 # Dependencies:
 BuildDepends: fink (>= 0.24.12), qt3 (>= 3.3.3-1000), x11-dev
@@ -66,4 +69,7 @@
 as a number on darwin, need to use localtime_r->tm_gmtoff instead.
 Also some patching of includes for frm_main.cpp is needed.
 <<
-Homepage: http://esvn.umputun.com/
+DescPackaging: <<
+Previous versions by Christian Schaffner .
+<<
+Homepage: http://esvn.sourceforge.net/


--

___
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 esvn.info,1.6,1.7

2010-06-02 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv7491/d/d/d/d

Modified Files:
esvn.info 
Log Message:
unmaintain by request

Index: esvn.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/esvn.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- esvn.info   29 Jan 2009 06:52:38 -  1.6
+++ esvn.info   2 Jun 2010 17:46:26 -   1.7
@@ -1,9 +1,12 @@
 Package: esvn
+# do not upgrade to 0.6.12 as it breaks with svn > 1.4.
+# not clear if 0.6.11 also has this problem.
+# 
http://sourceforge.net/tracker/?func=detail&aid=2812596&group_id=117405&atid=677938
 Version: 0.6.11
 Revision: 12
 Description: GUI frontend for Subversion (QT-based)
 License: GPL
-Maintainer: Christian Schaffner 
+Maintainer: None 
 
 # Dependencies:
 BuildDepends: fink (>= 0.24.12), qt3 (>= 3.3.3-1000), x11-dev
@@ -66,4 +69,7 @@
 as a number on darwin, need to use localtime_r->tm_gmtoff instead.
 Also some patching of includes for frm_main.cpp is needed.
 <<
-Homepage: http://esvn.umputun.com/
+DescPackaging: <<
+Previous versions by Christian Schaffner .
+<<
+Homepage: http://esvn.sourceforge.net/


--

___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/doc/cvsaccess cvs.pt.html,NONE,1.1 index.pt.php,NONE,1.1

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/web/doc/cvsaccess
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10930

Added Files:
cvs.pt.html index.pt.php 
Log Message:
add .pt (source .xml committed, but not generated docs)


--- NEW FILE: index.pt.php ---

Configurando acesso via CVS para o Fink

  O Fink é desenvolvido via CVS. Isto significa que você pode manter-se
  atualizado entre os lançamentos e sempre obter os arquivos mais recentes.
  Esta página informa como configurar uma instalação do Fink para fazer
  atualizações via CVS. As informações nesta página aplicam-se ao Fink 
0.3.x e
  posteriores.
A estrutura do CVS do Fink
  

  O Fink possui vários módulos CVS. O módulo dists
  (http://fink.cvs.sourceforge.net/fink/";>ViewCVS) contém as
  descrições de pacotes e ajustes para o OS X 10.2 e posteriores. Há outros
  módulos usados pelos desenvolvedores do Fink que podem ser vistos por
  qualquer um. Todavia, esses módulos não são de interesse para a maior parte
  dos usuários.
Atualizando as descrições de pacotes
  

  No passado, esse era um procedimento tedioso. Entretanto, nas versões
  atuais do Fink, tornou-se um procedimento bastante simples. Basta executar o
  comando:
  fink selfupdate-cvs
  O Fink executará automaticamente todos os passos para você. Isto inclui a
  obtenção do conjunto mais recente de descrições de pacotes e 
atualização de
  alguns pacotes bases essenciais, dentre os quais o gerenciador de pacotes
  Fink.

  Caso esteja atrás de um firewall, consulte a http://www.finkproject.org/faq/usage-fink.php#proxy";>Pergunta frequente
  3.2.

  Após haver atualizado suas descrições de pacotes desta forma, você pode
  querer atualizar seus pacotes para as últimas versões disponíveis. Você 
pode
  fazê-lo com o seguinte comando:
  fink update-all
Atualizando o gerenciador de pacotes
  

  Observação:Desde 20 de setembro de 2001, não é mais necessário
  atualizar o gerenciador de pacotes em separado; ele é tratado como qualquer
  outro pacote. Ainda é possível atualizá-lo diretamente via CVS apesar de 
que
  isto geralmente só é de interesse para as pessoas que criam pacotes e não 
os
  usuários comuns.

  O gerenciador de pacotes deve ser atualizado através de um diretório
  separado e o script inject.pl. Esse script coloca as descrições
  de pacotes e tarballs referentes ao fink e pacotes bases em uma árvore
  especial do Fink e os compila.

  Para o procedimento inicial, você precisa de um diretório temporário
  (denominado tempdir no exemplo) que esteja vazio (ou ao menos
  não contenha um subdiretório denominado 'fink'). O procedimento é como
  segue:

  cd tempdir
cvs -d:pserver:anonym...@fink.cvs.sourceforge.net:/cvsroot/fink login
cvs -z3 -d:pserver:anonym...@fink.cvs.sourceforge.net:/cvsroot/fink co fink
cd fink
./inject.pl

  O comando login solicitará uma senha - basta pressionar Return. Você pode
  remover o diretório temporário após esse procedimento mas, caso você o
  mantenha, a atualização será mais fácil na próxima vez, bastando digitar 
os
  seguintes comandos:
  cd tempdir/fink
cvs -z3 update -d
./inject.pl





--- NEW FILE: cvs.pt.html ---
http://www.w3.org/TR/html4/loose.dtd";>


Fink Documentation - Configurando acesso via CVS para o 
Fink



Available Languages:  | 
English | 
Español | 
Français | 
Português | 
Русский 
(Russkiy) | 
中文 (简) (Simplified Chinese) | 



Configurando acesso via CVS para o Fink
  O Fink é desenvolvido via CVS. Isto significa que você pode manter-se
  atualizado entre os lançamentos e sempre obter os arquivos mais recentes.
  Esta página informa como configurar uma instalação do Fink para fazer
  atualizações via CVS. As informações nesta página aplicam-se ao Fink 
0.3.x e
  posteriores.
A estrutura do CVS do Fink
  

  O Fink possui vários módulos CVS. O módulo dists
  (http://fink.cvs.sourceforge.net/fink/";>ViewCVS) contém as
  descrições de pacotes e ajustes para o OS X 10.2 e posteriores. Há outros
  módulos usados pelos desenvolvedores do Fink que podem ser vistos por
  qualquer um. Todavia, esses módulos não são de interesse para a maior parte
  dos usuários.
Atualizando as descrições de pacotes
  

  No passado, esse era um procedimento tedioso. Entretanto, nas versões
  atuais do Fink, tornou-se um procedimento bastante simples. Basta executar o
  comando:
  fink selfupdate-cvs
  O Fink executará automaticamente todos os passos para você. Isto inclui a
  obtenção do conjunto mais recente de descrições de pacotes e 
atualização de
  alguns pacotes bases essenciais, dentre os quais o gerenciador de pacotes
  Fink.

  Caso esteja atrás de um firewall, consulte a http://www.finkproject.org/faq/usage-fink.php#proxy";>Pergunta frequente
  3.2.

  Após haver atualizado suas descrições de pacotes desta forma, você pode
  querer atualizar seus pacotes para as últimas versões disponíveis. Você 
pode
  fazê-lo c

[cvs] scripts/installer/dmg/doc/cvsaccess cvs.pt.html,NONE,1.1

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/scripts/installer/dmg/doc/cvsaccess
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv12800

Added Files:
cvs.pt.html 
Log Message:
add .pt (source .xml committed, but not generated docs)


--- NEW FILE: cvs.pt.html ---
http://www.w3.org/TR/html4/loose.dtd";>


Fink Documentation - Configurando acesso via CVS para o 
Fink



Available Languages:  | 
English | 
Español | 
Français | 
Português | 
Русский 
(Russkiy) | 
中文 (简) (Simplified Chinese) | 



Configurando acesso via CVS para o Fink
  O Fink é desenvolvido via CVS. Isto significa que você pode manter-se
  atualizado entre os lançamentos e sempre obter os arquivos mais recentes.
  Esta página informa como configurar uma instalação do Fink para fazer
  atualizações via CVS. As informações nesta página aplicam-se ao Fink 
0.3.x e
  posteriores.
A estrutura do CVS do Fink
  

  O Fink possui vários módulos CVS. O módulo dists
  (http://fink.cvs.sourceforge.net/fink/";>ViewCVS) contém as
  descrições de pacotes e ajustes para o OS X 10.2 e posteriores. Há outros
  módulos usados pelos desenvolvedores do Fink que podem ser vistos por
  qualquer um. Todavia, esses módulos não são de interesse para a maior parte
  dos usuários.
Atualizando as descrições de pacotes
  

  No passado, esse era um procedimento tedioso. Entretanto, nas versões
  atuais do Fink, tornou-se um procedimento bastante simples. Basta executar o
  comando:
  fink selfupdate-cvs
  O Fink executará automaticamente todos os passos para você. Isto inclui a
  obtenção do conjunto mais recente de descrições de pacotes e 
atualização de
  alguns pacotes bases essenciais, dentre os quais o gerenciador de pacotes
  Fink.

  Caso esteja atrás de um firewall, consulte a http://www.finkproject.org/faq/usage-fink.php#proxy";>Pergunta frequente
  3.2.

  Após haver atualizado suas descrições de pacotes desta forma, você pode
  querer atualizar seus pacotes para as últimas versões disponíveis. Você 
pode
  fazê-lo com o seguinte comando:
  fink update-all
Atualizando o gerenciador de pacotes
  

  Observação:Desde 20 de setembro de 2001, não é mais necessário
  atualizar o gerenciador de pacotes em separado; ele é tratado como qualquer
  outro pacote. Ainda é possível atualizá-lo diretamente via CVS apesar de 
que
  isto geralmente só é de interesse para as pessoas que criam pacotes e não 
os
  usuários comuns.

  O gerenciador de pacotes deve ser atualizado através de um diretório
  separado e o script inject.pl. Esse 
script coloca as descrições
  de pacotes e tarballs referentes ao fink e pacotes bases em uma árvore
  especial do Fink e os compila.

  Para o procedimento inicial, você precisa de um diretório temporário
  (denominado tempdir no exemplo) que 
esteja vazio (ou ao menos
  não contenha um subdiretório denominado 'fink'). O procedimento é como
  segue:

  cd tempdir
cvs -d:pserver:anonym...@fink.cvs.sourceforge.net:/cvsroot/fink login
cvs -z3 -d:pserver:anonym...@fink.cvs.sourceforge.net:/cvsroot/fink co fink
cd fink
./inject.pl

  O comando login solicitará uma senha - basta pressionar Return. Você pode
  remover o diretório temporário após esse procedimento mas, caso você o
  mantenha, a atualização será mais fácil na próxima vez, bastando digitar 
os
  seguintes comandos:
  cd tempdir/fink
cvs -z3 update -d
./inject.pl
Copyright NoticeCopyright (c) 2001 Christoph Pfisterer,
Copyright (c) 2001-2010 The Fink Project.
You may distribute this document in print for private purposes,
provided the document and this copyright notice remain complete and
unmodified. Any commercial reproduction and any online publication
requires the explicit consent of the author.
Generated from $Fink: cvs.pt.xml,v 1.1 2009/03/30 11:31:56 monipol Exp 
$


--

___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

[cvs] web/doc/security header.pt.inc, NONE, 1.1 index.pt.php, NONE, 1.1 notification.pt.php, NONE, 1.1 respo.pt.php, NONE, 1.1 sec-policy.pt.html, NONE, 1.1 severity.pt.php, NONE, 1.1 sources.pt.php,

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/web/doc/security
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv21441/web/doc/security

Added Files:
header.pt.inc index.pt.php notification.pt.php respo.pt.php 
sec-policy.pt.html severity.pt.php sources.pt.php 
updating.pt.php 
Log Message:
add .pt (source .xml committed, but not generated docs)


--- NEW FILE: index.pt.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: sources.pt.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: updating.pt.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: respo.pt.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: header.pt.inc ---

--- NEW FILE: sec-policy.pt.html ---
http://www.w3.org/TR/html4/loose.dtd";>


Fink Documentation - Política geral de segurança do Fink para pacotes 
aceitos



Available Languages:  | 
English | 
Français | 
日本語 (Nihongo) | 
Português | 
中文 (简) (Simplified 
Chinese) | 



Política geral de segurança do Fink para 
pacotes aceitos
Este documento explica como o Fink lida com os incidentes de segurança
referentes a pacotes que foram aceitos pelo Fink. ainda que a
responsabilidade principal seja do mantenedor do pacote, o Fink reconhece a
necessidade de oferecer uma política uniforme de como reagir a incidentes
de segurança encontrados em softwares que são oferecidos como pacotes do
Fink. Cada mantenedor de pacote é obrigado a cumprir essa política.
  Contents1 
Responsabilidade1.1 Quem é 
responsável?1.2 Quem devo 
contactar?1.3 
Pré-Notificações1.4 
Resposta2 Tempos de resposta e 
ações imediatas2.1 Tempos de 
resposta2.2 Atualizações 
forçadas3 Fontes de 
incidentes3.1 Fontes de incidentes 
aceitas4 Política de 
atualização de segurança4.1 
Adicionando atualizações relacionadas a segurança4.2 Movendo de stable para 
unstable5 Enviando 
notificações5.1 Quem pode 
enviá-las?5.2 Como 
submeter1 Responsabilidade



1.1 Quem é responsável?
  

  Todo pacote do Fink possui um mantenedor. O mantenedor de um pacote
  específico pode ser determinado pelo comando fink info
  nomedopacote executado na linha de comando. Ele irá retornar uma
  listagem com um campo similar a este: Maintainer: Fink Core Group
  . O mantenedor é
  integralmente responsável por seu(s) pacote(s).


1.2 Quem devo contactar?
  

  Caso haja incidentes de segurança em uma determinada parte de um
  software empacotado, você deve notificar o mantenedor do pacote bem como
  o Grupo Central do Fink. O email do mantenedor pode ser
  encontrado pelo comando da seção anterior e o email do Grupo Central
  do Fink é fink-c...@lists.sourceforge.net


1.3 Pré-Notificações
  

  Incidentes sérios de segurança em software empacotado pelo Fink pode
  requerer que você pré-notifique o mantenedor daquele pacote. Como é
  possível que o mantenedor não possa ser encontrado em tempo hábil,
  pré-notificações devem ser sempre enviadas ao Time de Segurança do
  Fink. O email de cada membro do time está listado individualmente
  mais ao fim deste documento. Por favor, observe que, como o histórico da
  lista fink-c...@lists.sourceforge.net está disponível publicamente,
  pré-notificações privadas nunca devem ser enviadas àquela
  lista.


1.4 Resposta
  

  Relatórios sobre um incidente de segurança que tenham sido submetidos
  serão respondidos pelo Grupo Central do Fink. O Fink obriga cada
  mantenedor a confirmar individualmente o problema relatado. No caso
  improvável de o mantenedor não estar disponível e não confirmar o
  relatório dentro de 24 horas, uma observação deve ser enviada ao 
Grupo
  Central do Fink informando o time de que o mantenedor pode não estar
  respondendo.

  Caso você haja tentado notificar o mantenedor do pacote em questão 
mas
  o sistema de email retornou um erro de entrega para aquele email, você
  deve notificar o Grupo Central do Fink imediatamente para
  informar-lhes que o mantenedor não pode ser contactado e que o pacote
  pode ser atualizado independentemente do mantenedor.

  2 Tempos de resposta e ações imediatas




  Tempos de resposta e ações tomadas dependem muito da severidade da
  perda introduzida por uma falha em particular no software que foi
  empacotado pelo Fink. De qualquer forma, o Grupo Central do Fink
  tomará ação imediata sempre que houver a percepção de que é 
necessário
  proteger a comunidade de usuários do Fink.


2.1 Tempos de resposta
  

  Cada pacote deve primar por respeitar os tempos de resposta seguintes.
  Para alguns tipos de vulnerabilidades, o Grupo Central do Fink
  pode escolh

[cvs] scripts/installer/dmg/doc/security sec-policy.pt.html,NONE,1.1

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/scripts/installer/dmg/doc/security
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv21441/scripts/installer/dmg/doc/security

Added Files:
sec-policy.pt.html 
Log Message:
add .pt (source .xml committed, but not generated docs)


--- NEW FILE: sec-policy.pt.html ---
http://www.w3.org/TR/html4/loose.dtd";>


Fink Documentation - Política geral de segurança do Fink para pacotes 
aceitos



Available Languages:  | 
English | 
Français | 
日本語 (Nihongo) | 
Português | 
中文 (简) (Simplified 
Chinese) | 



Política geral de segurança do Fink para 
pacotes aceitos
Este documento explica como o Fink lida com os incidentes de segurança
referentes a pacotes que foram aceitos pelo Fink. ainda que a
responsabilidade principal seja do mantenedor do pacote, o Fink reconhece a
necessidade de oferecer uma política uniforme de como reagir a incidentes
de segurança encontrados em softwares que são oferecidos como pacotes do
Fink. Cada mantenedor de pacote é obrigado a cumprir essa política.
  Contents1 
Responsabilidade1.1 Quem é 
responsável?1.2 Quem devo 
contactar?1.3 
Pré-Notificações1.4 
Resposta2 Tempos de resposta e 
ações imediatas2.1 Tempos de 
resposta2.2 Atualizações 
forçadas3 Fontes de 
incidentes3.1 Fontes de incidentes 
aceitas4 Política de 
atualização de segurança4.1 
Adicionando atualizações relacionadas a segurança4.2 Movendo de stable para 
unstable5 Enviando 
notificações5.1 Quem pode 
enviá-las?5.2 Como 
submeter1 Responsabilidade



1.1 Quem é responsável?
  

  Todo pacote do Fink possui um mantenedor. O mantenedor de um pacote
  específico pode ser determinado pelo comando fink info
  nomedopacote executado na linha de comando. Ele irá retornar uma
  listagem com um campo similar a este: Maintainer: Fink Core Group
  . O mantenedor é
  integralmente responsável por seu(s) pacote(s).


1.2 Quem devo contactar?
  

  Caso haja incidentes de segurança em uma determinada parte de um
  software empacotado, você deve notificar o mantenedor do pacote bem como
  o Grupo Central do Fink. O email do mantenedor pode ser
  encontrado pelo comando da seção anterior e o email do Grupo Central
  do Fink é fink-c...@lists.sourceforge.net


1.3 Pré-Notificações
  

  Incidentes sérios de segurança em software empacotado pelo Fink pode
  requerer que você pré-notifique o mantenedor daquele pacote. Como é
  possível que o mantenedor não possa ser encontrado em tempo hábil,
  pré-notificações devem ser sempre enviadas ao Time de Segurança do
  Fink. O email de cada membro do time está listado individualmente
  mais ao fim deste documento. Por favor, observe que, como o histórico da
  lista fink-c...@lists.sourceforge.net está disponível publicamente,
  pré-notificações privadas nunca devem ser enviadas àquela
  lista.


1.4 Resposta
  

  Relatórios sobre um incidente de segurança que tenham sido submetidos
  serão respondidos pelo Grupo Central do Fink. O Fink obriga cada
  mantenedor a confirmar individualmente o problema relatado. No caso
  improvável de o mantenedor não estar disponível e não confirmar o
  relatório dentro de 24 horas, uma observação deve ser enviada ao 
Grupo
  Central do Fink informando o time de que o mantenedor pode não estar
  respondendo.

  Caso você haja tentado notificar o mantenedor do pacote em questão 
mas
  o sistema de email retornou um erro de entrega para aquele email, você
  deve notificar o Grupo Central do Fink imediatamente para
  informar-lhes que o mantenedor não pode ser contactado e que o pacote
  pode ser atualizado independentemente do mantenedor.

  2 Tempos de resposta e ações imediatas




  Tempos de resposta e ações tomadas dependem muito da severidade da
  perda introduzida por uma falha em particular no software que foi
  empacotado pelo Fink. De qualquer forma, o Grupo Central do Fink
  tomará ação imediata sempre que houver a percepção de que é 
necessário
  proteger a comunidade de usuários do Fink.


2.1 Tempos de resposta
  

  Cada pacote deve primar por respeitar os tempos de resposta seguintes.
  Para alguns tipos de vulnerabilidades, o Grupo Central do Fink
  pode escolher agir imediatamente. Se este for o caso, um dos membros do
  Grupo Central notificará o mantenedor do pacote em questão. Além disso,
  lembre-se de que, ainda que tentemos respeitar estes tempos de resposta,
  o Fink é um esforço de voluntários, e por conseguinte não podemos
  garanti-los.

  VulnerabilityRepsonse 
timeroot exploit remoto
mínimo: imediato; máximo: 12 horas.
  root exploit local
mínimo: 1

[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods hash-case-pm-1.004.info, NONE, 1.1 hash-case-pm.info, 1.1, 1.2

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv25756

Modified Files:
hash-case-pm.info 
Added Files:
hash-case-pm-1.004.info 
Log Message:
new version, which is perlvarianted so keep unvarianted old version too


--- NEW FILE: hash-case-pm-1.004.info ---
Package: hash-case-pm
Version: 1.004
Revision: 1
Source: mirror:cpan:authors/id/M/MA/MARKOV/Hash-Case-%v.tar.gz
Source-MD5: f5b97f3504f9ccc202156d095c5be9d7
Type: perl
UpdatePOD: True
DocFiles: ChangeLog README
Description: Hashes with key-casing requirements
License: Artistic/GPL
Homepage: http://search.cpan.org/dist/Hash-Case
Maintainer: Daniel Macks 

Index: hash-case-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/hash-case-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- hash-case-pm.info   11 Jun 2008 06:29:52 -  1.1
+++ hash-case-pm.info   2 Jun 2010 18:38:47 -   1.2
@@ -1,12 +1,27 @@
-Package: hash-case-pm
-Version: 1.004
-Revision: 1
-Source: mirror:cpan:authors/id/M/MA/MARKOV/Hash-Case-%v.tar.gz
-Source-MD5: f5b97f3504f9ccc202156d095c5be9d7
-Type: perl
+Info2: <<
+Package: hash-case-pm%type_pkg[perl]
+Version: 1.010
+Revision: 2
+Distribution: (%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5
+Source: mirror:cpan:authors/id/M/MA/MARKOV/Hash-Case-1.01.tar.gz
+Source-MD5: 80c17b3e1724760d6ef145953b1f76de
+Type: perl (5.8.6 5.8.8)
+Depends: <<
+   perl%type_pkg[perl]-core,
+   log-report-pm%type_pkg[perl]
+<<
+InstallScript: <<
+   %{default_script}
+   mv %i/share/man %i/lib/perl5/%type_raw[perl]
+<<
 UpdatePOD: True
 DocFiles: ChangeLog README
+DescPackaging: <<
+   Calling this 1.010 so that it sorts higher than previous
+   1.004 version.
+<<
 Description: Hashes with key-casing requirements
 License: Artistic/GPL
 Homepage: http://search.cpan.org/dist/Hash-Case
 Maintainer: Daniel Macks 
+<<


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 config-inihash-pm-3.00.00.info, NONE, 1.1 config-inihash-pm.info, 1.1, 1.2

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv1331

Modified Files:
config-inihash-pm.info 
Added Files:
config-inihash-pm-3.00.00.info 
Log Message:
new version, now perlvarianted so keep old unvarianted one as well


Index: config-inihash-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/config-inihash-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- config-inihash-pm.info  11 Jun 2008 06:29:51 -  1.1
+++ config-inihash-pm.info  2 Jun 2010 19:12:39 -   1.2
@@ -1,13 +1,20 @@
-Package: config-inihash-pm
-Version: 3.00.00
+Info2: <<
+Package: config-inihash-pm%type_pkg[perl]
+Version: 3.01.01
 Revision: 1
+Distribution: (%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5
 Source: mirror:cpan:authors/id/J/JE/JENDA/Config-IniHash-%v.tar.gz
-Source-MD5: c53cbd0db1421c810400e1e8e095e0fc
-Type: perl
+Source-MD5: fc23892540d21996daae3c46c3de58ba
+Type: perl (5.8.6 5.8.8)
 BuildDepends: test-differences-pm
 Depends: <<
-   hash-case-pm,
-   hash-withdefaults-pm
+   hash-case-pm%type_pkg[perl],
+   hash-withdefaults-pm,
+   perl%type_pkg[perl]-core
+<<
+InstallScript: <<
+   %{default_script}
+   mv %i/share/man %i/lib/perl5/%type_raw[perl]
 <<
 UpdatePOD: True
 DocFiles: Changes README
@@ -15,3 +22,4 @@
 License: Artistic/GPL
 Homepage: http://search.cpan.org/dist/Config-IniHash
 Maintainer: Daniel Macks 
+<<

--- NEW FILE: config-inihash-pm-3.00.00.info ---
Package: config-inihash-pm
Version: 3.00.00
Revision: 2
Source: mirror:cpan:authors/id/J/JE/JENDA/Config-IniHash-%v.tar.gz
Source-MD5: c53cbd0db1421c810400e1e8e095e0fc
Type: perl
BuildDepends: test-differences-pm
Depends: <<
hash-case-pm,
hash-withdefaults-pm,
io-stringy-pm
<<
UpdatePOD: True
DocFiles: Changes README
Description: Read/write INI files
License: Artistic/GPL
Homepage: http://search.cpan.org/dist/Config-IniHash
Maintainer: Daniel Macks 


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dazjorz - New directory

2010-06-02 Thread Sjors Gielen
Update of /cvsroot/fink/experimental/dazjorz
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv31057/dazjorz

Log Message:
Directory /cvsroot/fink/experimental/dazjorz added to the repository



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dazjorz/finkinfo - New directory

2010-06-02 Thread Sjors Gielen
Update of /cvsroot/fink/experimental/dazjorz/finkinfo
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv1195/finkinfo

Log Message:
Directory /cvsroot/fink/experimental/dazjorz/finkinfo added to the repository



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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/gnome crow.info,1.1,1.2

2010-06-02 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv6974/main/finkinfo/gnome

Modified Files:
crow.info 
Log Message:
new upstream version

Index: crow.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/crow.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- crow.info   10 May 2010 11:51:47 -  1.1
+++ crow.info   2 Jun 2010 19:33:42 -   1.2
@@ -1,10 +1,10 @@
 Package: crow
-Version: 2.17.0
+Version: 2.17.1
 Revision: 1002
 Depends: atk1-shlibs (>= 1.28.0-2), cairo-shlibs (>= 1.8.10-1), 
cairomm1-shlibs (>= 1.8.4-1), dbus-glib1.2-shlibs (>= 0.84-1), dbus1.3-shlibs 
(>= 1.2.16-101), fontconfig2-shlibs (>= 2.8.0-4), freetype219-shlibs (>= 
2.3.12-1), glib2-shlibs (>= 2.22.4-2), glibmm2.4-shlibs (>= 2.22.2-1), 
glitz-shlibs (>= 0.5.6-3), gtk+2-shlibs (>= 2.18.9-4), gtkmm2.4-shlibs (>= 
2.18.2-1), guiloader++-shlibs (>= 2.17.0-1002), guiloader-shlibs (>= 2.17.0-2), 
libgettext8-shlibs (>= 0.17-19), libpng3-shlibs (>= 1:1.2.43-3), 
libsigc++2-shlibs (>= 2.2.7-1001), pango1-xft2-ft219-shlibs (>= 1.24.5-7), 
pangomm1.4.1-shlibs (>= 2.26.1-1), pixman-shlibs (>= 0.16.6-1), x11, x11-shlibs
 BuildDepends: pkgconfig, gettext-tools, atk1 (>= 1.28.0-2), cairo (>= 
1.8.10-1), cairomm1 (>= 1.8.4-1), dbus-glib1.2-dev (>= 0.84-1), dbus1.3-dev (>= 
1.2.16-101), fontconfig2-dev (>= 2.8.0-4), freetype219 (>= 2.3.12-1), glib2-dev 
(>= 2.22.4-2), glibmm2.4-dev (>= 2.22.2-1), glitz (>= 0.5.6-3), gtk+2-dev (>= 
2.18.9-4), gtkmm2.4-gtk-dev (>= 2.18.2-1), guiloader++ (>= 2.17.0-1002), 
guiloader (>= 2.17.0-2), libgettext8-dev (>= 0.17-19), libpng3 (>= 1:1.2.43-3), 
libsigc++2 (>= 2.2.7-1001), pango1-xft2-ft219-dev (>= 1.24.5-7), pangomm1.4.1 
(>= 2.26.1-1), pixman (>= 0.16.6-1), x11-dev
-Source: mirror:sourceforge:crow-designer/%n-%v.tar.bz2
-Source-MD5: 9e01f6386f8b5188dc325ede42a58861
+Source: http://nothing-personal.googlecode.com/files/%n-%v.tar.bz2
+Source-MD5: f85b53806bd6abb6ac30ea8018dab010
 SetCXXFLAGS: -Os
 ConfigureParams: --mandir=%p/share/man --disable-dependency-tracking
 InstallScript: make install DESTDIR=%d


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 mediawiki-pm.info, 1.2, NONE

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv8693

Removed Files:
mediawiki-pm.info 
Log Message:
no longer seems compatible with MediaWiki interface (self-test failure), and 
upstream author removed it from CPAN)


--- mediawiki-pm.info DELETED ---


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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/gnome guiloader.info,1.1,1.2

2010-06-02 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv19116/main/finkinfo/gnome

Modified Files:
guiloader.info 
Log Message:
new upstream version

Index: guiloader.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/guiloader.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- guiloader.info  10 May 2010 11:51:47 -  1.1
+++ guiloader.info  2 Jun 2010 20:14:55 -   1.2
@@ -1,11 +1,11 @@
 Package: guiloader
-Version: 2.17.0
+Version: 2.17.1
 Revision: 2
 Depends: %N-shlibs (= %v-%r), atk1-shlibs (>= 1.28.0-2), cairo-shlibs (>= 
1.8.10-1), freetype219-shlibs (>= 2.3.12-1), glib2-shlibs (>= 2.22.4-2), 
gtk+2-shlibs (>= 2.18.9-4), libgettext8-shlibs (>= 0.17-19), 
pango1-xft2-ft219-shlibs (>= 1.24.5-7), x11, x11-shlibs
 BuildDepends: gettext-tools, pkgconfig (>= 0.9.0-1), atk1 (>= 1.28.0-2), cairo 
(>= 1.8.10-1), freetype219 (>= 2.3.12-1), glib2-dev (>= 2.22.4-2), gtk+2-dev 
(>= 2.18.9-4), libgettext8-dev (>= 0.17-19), pango1-xft2-ft219-dev (>= 
1.24.5-7), x11-dev
 BuildDependsOnly: true
-Source: mirror:sourceforge:crow-designer/%n-%v.tar.bz2
-Source-MD5: 21c4a646841ff5f83ce61aff1c832e55
+Source: http://nothing-personal.googlecode.com/files/%n-%v.tar.bz2
+Source-MD5: c7639ae120c5a2c20885054f8abb53b3
 SetCFLAGS: -Os
 ConfigureParams: --mandir=%p/share/man --disable-dependency-tracking
 InstallScript: make install DESTDIR=%d
@@ -21,7 +21,7 @@
   DocFiles: ABOUT-NLS
 <<
 License: BSD
-Homepage: http://crow-designer.sourceforge.net
+Homepage: http://www.crowdesigner.org
 Maintainer: Jack Fink 
 Description: Loads GuiXml interface files
 DescDetail: <<


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dazjorz/finkinfo apt.info, NONE, 1.1 dpkg.info, NONE, 1.1 apt.patch, NONE, 1.1 dpkg.patch, NONE, 1.1

2010-06-02 Thread Sjors Gielen
Update of /cvsroot/fink/experimental/dazjorz/finkinfo
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv1465

Added Files:
apt.info dpkg.info apt.patch dpkg.patch 
Log Message:
Copying my apt and dpkg packages to my own experimental. First commit! Woo! :)


--- NEW FILE: dpkg.patch ---
diff -Nurd dpkg-1.15.5.6/configure dpkg-1.15.5.6-patched/configure
--- dpkg-1.15.5.6/configure 2010-01-08 19:02:47.0 +0100
+++ dpkg-1.15.5.6-patched/configure 2010-05-09 05:10:12.0 +0200
@@ -9745,11 +9745,7 @@
 if test "${enable_linker_optimisations+set}" = set; then :
   enableval=$enable_linker_optimisations; if test 
"x$enable_linker_optimisations" = "xno"; then
LDFLAGS=$(echo "$LDFLAGS" | sed -e "s/ -Wl,-O[0-9]*\b//g")
-else
-   LDFLAGS="$LDFLAGS -Wl,-O1"
 fi
-else
-  LDFLAGS="$LDFLAGS -Wl,-O1"
 fi
 
 
diff -Nurd dpkg-1.15.5.6/dpkg-deb/build.c dpkg-1.15.5.6-patched/dpkg-deb/build.c
--- dpkg-1.15.5.6/dpkg-deb/build.c  2010-01-08 18:23:06.0 +0100
+++ dpkg-1.15.5.6-patched/dpkg-deb/build.c  2010-05-09 04:23:57.0 
+0200
@@ -67,6 +67,7 @@
[...1065 lines suppressed...]
+virt_pkg = virt_pkg->next;
+  }
+
+/*
+  if (0==strcmp(possi->ed->name,"darwin") && darwin_version.version) {
+debug(dbg_depcondetail,"pseudo package darwin");
+found= 
check_pseudo_package(&darwin_version,possi,&interestingwarnings,&oemsgs);
+break;
+  }
+  else if (0==strcmp(possi->ed->name,"macosx") && macsox_version.version) {
+debug(dbg_depcondetail,"pseudo package macosx");
+found= 
check_pseudo_package(&macosx_version,possi,&interestingwarnings,&oemsgs);
+break;
+  }
+*/
+  /* FINK LOCAL end */
+
   if (possi->cyclebreak) {
 debug(dbg_depcondetail,"  break cycle so ok and found");
 found= 3; break;

--- NEW FILE: apt.patch ---
diff -Nurd apt-0.7.25.3/apt-inst/contrib/extracttar.cc 
apt-0.7.25.3-patched/apt-inst/contrib/extracttar.cc
--- apt-0.7.25.3/apt-inst/contrib/extracttar.cc 2010-02-01 20:44:40.0 
+0100
+++ apt-0.7.25.3-patched/apt-inst/contrib/extracttar.cc 2010-05-14 
17:31:52.0 +0200
@@ -148,6 +148,18 @@
return true;
 }
/*}}}*/
+
+// Handle the ridiculous way that tar stores large numbers
+static bool TarUIDToNum(const char *Str, unsigned long &Res, unsigned Len) {
+   switch (*Str) {
+  case '\200':
+ Res = ntohl(*((unsigned long *)(Str + Len - sizeof(unsigned long;
+ return true;
+  default:
+ return StrToNum(Str+1, Res, Len-1, 8);
+   }
+}
+
[...1084 lines suppressed...]
+  #define NI_DATAGRAM NI_DGRAM
+  #endif
 
   #define sockaddr_storage sockaddr_in
 #endif
diff -Nurd apt-0.7.25.3/patch_flush apt-0.7.25.3-patched/patch_flush
--- apt-0.7.25.3/patch_flush1970-01-01 01:00:00.0 +0100
+++ apt-0.7.25.3-patched/patch_flush2010-05-13 23:27:54.0 +0200
@@ -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: dpkg.info ---
Package: dpkg
Version: 1.15.5.6
Revision: 6
GCC: 4.0
BuildDepends: fink (>= 0.24.12), libgettext8-dev, gettext-tools
Conflicts: dpkg-bootstrap
Replaces: dpkg-bootstrap
Depends: libgettext8-shlibs, libiconv (>= 1.11-1), gzip, tar, 
libncurses5-shlibs (>= 5.4-20041023-1006)
Essential: yes
Maintainer: Fink Core Group 

Source: 
http://snapshot.debian.org/archive/debian/20100108T213813Z/pool/main/d/dpkg/dpkg_1.15.5.6.tar.bz2
SourceDirectory: dpkg-%v
Source-MD5: 4dcb0de9af234d16a62272bcc61b8873

PatchFile: %n.patch
PatchFile-MD5: a9b7dc03bb85e68b9a66104c3a71cdbf
PatchScript: <<
 cd %b/..; sed 's|@PREFIX@|%p|g' < %{PatchFile} | patch -p0

 # fix paths in the manpages
 perl -pi -e 's|/usr|%p|g' $(find . -name '*.1' -or -name '*.3' -or \
-name '*.5' -or -name '*.8') scripts/dpkg-name.pl;
 perl -pi -e 's|/etc|%p/etc|g' $(find . -name '*.1' -or -name '*.3' -or \
-name '*.5' -or -name '*.8') scripts/update-alternatives.pl;
<<

SetCFLAGS: -I%p/include -F/System/Library/Frameworks/CoreFoundation.framework
SetLDFLAGS: -framework CoreFoundation
CompileScript: <<
 PERL=/usr/bin/perl ./configure --build=%m-apple-darwin %c
 /usr/bin/make
<<
ConfigureParams: --without-start-stop-daemon --with-admindir=%p/var/lib/dpkg 
--mandir=%p/share/man --infodir=%p/share/info --srcdir=%b --disable-silent-rules
InstallScript: <<
 mkdir -p %i/share/doc/dpkg
 /usr/bin/make install DESTDIR=%d
 mkdir -p %i/etc/dpkg/origins
 install -c -p -m 644 origin.fink %i/etc/dpkg/origins/fink
 rm -rf %i/lib/dpkg/methods/*

 # some files that were previously installed in sbin are now in bin
 # but some stuff still expects it in sbin
 ln -s %i/bin/dpkg-divert %i/sbin/dpkg-divert
 ln -s %i/bin/dpkg-statoverride %i/sbin/dpkg-statoverride
 ln -s %i/bin/update-al

[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods sub-install-pm.info, 1.4, 1.5

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv23231

Modified Files:
sub-install-pm.info 
Log Message:
fix typo in akh's maintainer-permitted fix to RR's pkg.


Index: sub-install-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/sub-install-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- sub-install-pm.info 21 May 2010 15:59:19 -  1.4
+++ sub-install-pm.info 2 Jun 2010 20:29:56 -   1.5
@@ -3,7 +3,7 @@
 Version: 0.925
 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
+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
 Description: Install subroutines into packages easily
 Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0)
 License: Artistic


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 json-pm.info, 1.12, 1.13

2010-06-02 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv7274

Modified Files:
json-pm.info 
Log Message:
allow 5.8.6

Index: json-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/json-pm.info,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- json-pm.info6 Apr 2010 12:51:09 -   1.12
+++ json-pm.info2 Jun 2010 21:32:33 -   1.13
@@ -2,8 +2,8 @@
 Package: json-pm%type_pkg[perl]
 Version: 2.21
 Revision: 1
-Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6
-Type: perl (5.8.8 5.10.0)
+Distribution: (%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: perl (5.8.6 5.8.8 5.10.0)
 
 Description: JSON encoder/decoder
 DescDetail: <<


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/crypto/finkinfo crypt-blowfish-pm.info, 1.6, 1.7 crypt-cbc-pm.info, 1.1, 1.2 crypt-rijndael-pm.info, 1.5, 1.6

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/crypto/finkinfo
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv22617

Modified Files:
crypt-blowfish-pm.info crypt-cbc-pm.info 
crypt-rijndael-pm.info 
Log Message:
latest Crypt::* to stable


Index: crypt-cbc-pm.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/crypto/finkinfo/crypt-cbc-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- crypt-cbc-pm.info   26 Jul 2006 04:52:14 -  1.1
+++ crypt-cbc-pm.info   2 Jun 2010 22:31:50 -   1.2
@@ -1,15 +1,15 @@
 Package: crypt-cbc-pm
-Version: 2.12
+Version: 2.30
 Revision: 1
 Type: perl
-Description: Perl-only Crypt::CBC cipher block chaining (CBC)
+Description: Pure-perl cipher block chaining (CBC)
 License: Artistic
 Homepage: http://search.cpan.org/dist/Crypt-CBC/
-Maintainer: Blair Zajac 
+Maintainer: Daniel Macks 
 
 # Unpack Phase.
 Source: mirror:cpan:authors/id/L/LD/LDS/Crypt-CBC-%v.tar.gz
-Source-MD5: 27842b8ab627681b4a322610ea6184b5
+Source-MD5: c71ab992f3da65deb1a141bef79a4bff
 
 # Install Phase.
 UpdatePOD: true
@@ -49,3 +49,9 @@
 7. Crypt::Rijndael
Required for the Rijndael/AES encryption algorithm.
 <<
+DescPackaging: <<
+   Former maintainer: Blair Zajac 
+
+   Most self-tests are skipped because they use the other Crypt::
+   modules that Depends on this one (can't have circular deps).
+<<

Index: crypt-rijndael-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/crypto/finkinfo/crypt-rijndael-pm.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- crypt-rijndael-pm.info  25 Apr 2009 03:51:06 -  1.5
+++ crypt-rijndael-pm.info  2 Jun 2010 22:31:50 -   1.6
@@ -1,40 +1,40 @@
 Info2: <<
 Package: crypt-rijndael-pm%type_pkg[perl]
-Version: 0.05
+Version: 1.07
 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: perl (5.8.1)
+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.6 5.8.8)
 Description: Implementation of AES algorithm (Rijndael)
 License: GPL
 Homepage: http://search.cpan.org/dist/Crypt-Rijndael/
-Maintainer: Blair Zajac 
+Maintainer: Daniel Macks 
 
 # Dependencies.
 Depends: perl%type_pkg[perl]-core
 BuildDepends: fink (>= 0.20.3)
+Replaces: %N-man
+Conflicts: %N-man
 
 # Unpack Phase.
-Source: mirror:cpan:authors/id/D/DI/DIDO/Crypt-Rijndael-%v.tar.gz
-Source-MD5: af8628fee8648f26c94916ef8edf32d9
+Source: mirror:cpan:authors/id/B/BD/BDFOY/Crypt-Rijndael-%v.tar.gz
+Source-MD5: a362328753cdf781164b3963a5ac82e4
 
 # Install Phase.
+InstallScript: <<
+  %{default_script}
+  /bin/mv %i/share/man %i/lib/perl5/%type_raw[perl]
+<<
 UpdatePOD: true
 DocFiles: COPYING MANIFEST NEWS README
 
-SplitOff: <<
-  Package: %N-man
-  Description: Manual pages for crypt-rijndael-pm
-  Files: share/man
-  Conflicts: crypt-rijndael-pm560-man, crypt-rijndael-pm561-man, 
crypt-rijndael-pm580-man, crypt-rijndael-pm581-man, crypt-rijndael-pm584-man, 
crypt-rijndael-pm585-man
-  Replaces: crypt-rijndael-pm560-man, crypt-rijndael-pm561-man, 
crypt-rijndael-pm580-man, crypt-rijndael-pm581-man, crypt-rijndael-pm584-man, 
crypt-rijndael-pm585-man
-  DocFiles: COPYING MANIFEST NEWS README
-<<
-
 # Documentation.
 DescDetail: <<
-This is Crypt::Rijndael version 0.05, an XS-based implementation of
-the newly-selected Advanced Encryption Standard algorithm Rijndael,
-designed by Joan Daemen and Vincent Rijmen.
+This is Crypt::Rijndael, an XS-based implementation of the Advanced
+Encryption Standard algorithm Rijndael, designed by Joan Daemen and
+Vincent Rijmen.
+<<
+DescPackaging: <<
+   Former maintainer: Blair Zajac 
 <<
 <<

Index: crypt-blowfish-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/crypto/finkinfo/crypt-blowfish-pm.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- crypt-blowfish-pm.info  23 Aug 2009 04:30:39 -  1.6
+++ crypt-blowfish-pm.info  2 Jun 2010 22:31:50 -   1.7
@@ -1,35 +1,33 @@
 Info2: <<
 Package: crypt-blowfish-pm%type_pkg[perl]
-Version: 2.09
-Revision: 11
+Version: 2.10
+Revision: 1002
 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.6)
+Type: perl (5.8.1 5.8.6 5.8.8)
 Description: XS implementation of Blowfish cryptography
 License: BSD
 Homepage: http://search.cpan.org/dist/Crypt-Blowfish/
-Maintainer: Blair Zajac 
+Maintainer: Daniel Macks 
 
 # Dependencies.
 Depends: perl%type_pkg[pe

[cvs] dists/10.4/unstable/main/finkinfo/gnome guiloader++.info, 1.1, 1.2

2010-06-02 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv24415/main/finkinfo/gnome

Modified Files:
guiloader++.info 
Log Message:
new upstream version

Index: guiloader++.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/guiloader++.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- guiloader++.info10 May 2010 11:51:09 -  1.1
+++ guiloader++.info2 Jun 2010 22:38:25 -   1.2
@@ -1,11 +1,11 @@
 Package: guiloader++
-Version: 2.17.0
+Version: 2.17.1
 Revision: 1002
 Depends: %N-shlibs (= %v-%r), x11, x11-shlibs
 BuildDepends: pkgconfig (>= 0.9.0-1), gettext-tools, atk1 (>= 1.28.0-2), cairo 
(>= 1.8.10-1), cairomm1 (>= 1.8.4-1), fontconfig2-dev (>= 2.8.0-4), freetype219 
(>= 2.3.12-1), glib2-dev (>= 2.22.4-2), glibmm2.4-dev (>= 2.22.2-1), glitz (>= 
0.5.6-3), gtk+2-dev (>= 2.18.9-4), gtkmm2.4-gtk-dev (>= 2.18.2-1), guiloader 
(>= 2.17.0-2), libgettext8-dev (>= 0.17-19), libpng3 (>= 1:1.2.43-3), 
libsigc++2 (>= 2.2.7-1001), pango1-xft2-ft219-dev (>= 1.24.5-7), pangomm1.4.1 
(>= 2.26.1-1), pixman (>= 0.16.6-1), x11-dev
 BuildDependsOnly: true
-Source: mirror:sourceforge:crow-designer/guiloader-c++-%v.tar.bz2
-Source-MD5: eee70bc4e837af9e4c14902601e6c940
+Source: http://nothing-personal.googlecode.com/files/guiloader-c++-%v.tar.bz2
+Source-MD5: 9b02ea012929f44ee7692e4229180d2c
 SetCXXFLAGS: -Os
 ConfigureParams: --mandir=%p/share/man --disable-dependency-tracking
 InstallScript: make install DESTDIR=%d


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/crypto/finkinfo crypt-blowfish-pm.info, 1.8, 1.9 crypt-rijndael-pm.info, 1.9, 1.10

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv25663

Modified Files:
crypt-blowfish-pm.info crypt-rijndael-pm.info 
Log Message:
new version


Index: crypt-rijndael-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/crypto/finkinfo/crypt-rijndael-pm.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- crypt-rijndael-pm.info  23 Aug 2009 04:37:13 -  1.9
+++ crypt-rijndael-pm.info  2 Jun 2010 22:44:09 -   1.10
@@ -1,6 +1,6 @@
 Info2: <<
 Package: crypt-rijndael-pm%type_pkg[perl]
-Version: 1.07
+Version: 1.09
 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
@@ -12,13 +12,16 @@
 
 # Dependencies.
 Depends: perl%type_pkg[perl]-core
-BuildDepends: fink (>= 0.20.3)
+BuildDepends: <<
+   fink (>= 0.20.3),
+   test-manifest-pm%type_pkg[perl]
+<<
 Replaces: %N-man
 Conflicts: %N-man
 
 # Unpack Phase.
 Source: mirror:cpan:authors/id/B/BD/BDFOY/Crypt-Rijndael-%v.tar.gz
-Source-MD5: a362328753cdf781164b3963a5ac82e4
+Source-MD5: 6a2678fbd7a0c9ed277d4b758a530b1c
 
 # Install Phase.
 InstallScript: <<
@@ -26,7 +29,7 @@
   /bin/mv %i/share/man %i/lib/perl5/%type_raw[perl]
 <<
 UpdatePOD: true
-DocFiles: COPYING MANIFEST NEWS README
+DocFiles: COPYING NEWS README
 
 # Documentation.
 DescDetail: <<

Index: crypt-blowfish-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/crypto/finkinfo/crypt-blowfish-pm.info,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- crypt-blowfish-pm.info  23 Aug 2009 04:37:13 -  1.8
+++ crypt-blowfish-pm.info  2 Jun 2010 22:44:09 -   1.9
@@ -1,7 +1,7 @@
 Info2: <<
 Package: crypt-blowfish-pm%type_pkg[perl]
-Version: 2.10
-Revision: 1002
+Version: 2.12
+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: perl (5.8.1 5.8.4 5.8.6 5.8.8)
@@ -18,7 +18,7 @@
 
 # Unpack Phase.
 Source: mirror:cpan:authors/id/D/DP/DPARIS/Crypt-Blowfish-%v.tar.gz
-Source-MD5: 15b53308df3b29a62a9f2f718aace19a
+Source-MD5: a0eca17addc8bdaf38c044c365a8800c
 
 # Install Phase.
 InstallScript: <<


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/crypto/finkinfo ario-player.info,1.11,1.12

2010-06-02 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28407/crypto/finkinfo

Modified Files:
ario-player.info 
Log Message:
add missing dep+bdep

Index: ario-player.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo/ario-player.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- ario-player.info1 May 2010 20:27:49 -   1.11
+++ ario-player.info2 Jun 2010 22:55:22 -   1.12
@@ -1,8 +1,8 @@
 Package: ario-player
 Version: 1.4.4
-Revision: 2
-Depends: atk1-shlibs, cairo-shlibs, dbus-shlibs, expat1-shlibs, 
fontconfig2-shlibs, freetype219-shlibs (>= 2.3.7-7), glib2-shlibs, 
glitz-shlibs, gnutls26-shlibs, gtk+2-shlibs, libavahi-client3-shlibs, 
libavahi-common3-shlibs, libavahi-glib1-shlibs, libcurl4-shlibs, 
libgcrypt-shlibs, libgettext8-shlibs, libglade2-shlibs, libgpg-error-shlibs, 
libiconv, libpng3-shlibs, libsoup2.4.1-ssl-shlibs, libtasn1-3-shlibs, 
libxml2-shlibs, pango1-xft2-ft219-shlibs, pixman-shlibs, libnotify-shlibs (>= 
0.4.5-3), x11, x11-shlibs, libmpdclient-shlibs (>= 2.1-2), libunique-shlibs (>= 
1.1.6-2)
-BuildDepends: intltool40, gettext-tools, pkgconfig (>= 0.9.0-1), atk1, cairo, 
dbus-dev, expat1, fontconfig2-dev, freetype219 (>= 2.3.7-7), glib2-dev, glitz, 
gnutls26, gtk+2-dev, avahi-dev, libavahi-glib1-dev, libcurl4, libgcrypt, 
libgettext8-dev, libglade2, libgpg-error, libiconv-dev, libpng3, 
libsoup2.4.1-ssl, libtasn1-3, libxml2, pango1-xft2-ft219-dev, pixman, libnotify 
(>= 0.4.5-3), x11-dev, libmpdclient (>= 2.1-2), libunique (>= 1.1.6-2), 
automake1.11, autoconf | autoconf2.6, libtool2
+Revision: 3
+Depends: atk1-shlibs, cairo-shlibs, dbus-shlibs, expat1-shlibs, 
fontconfig2-shlibs, freetype219-shlibs (>= 2.3.7-7), glib2-shlibs, 
glitz-shlibs, gnutls26-shlibs, gtk+2-shlibs, libavahi-client3-shlibs, 
libavahi-common3-shlibs, libavahi-glib1-shlibs, libcurl4-shlibs, 
libgcrypt-shlibs, libgettext8-shlibs, libglade2-shlibs, libgpg-error-shlibs, 
libiconv, libpng3-shlibs, libsoup2.4.1-ssl-shlibs, libtasn1-3-shlibs, 
libxml2-shlibs, pango1-xft2-ft219-shlibs, pixman-shlibs, libnotify-shlibs (>= 
0.4.5-3), x11, x11-shlibs, libmpdclient-shlibs (>= 2.1-2), libunique-shlibs (>= 
1.1.6-2), taglib-shlibs
+BuildDepends: intltool40, gettext-tools, pkgconfig (>= 0.9.0-1), atk1, cairo, 
dbus-dev, expat1, fontconfig2-dev, freetype219 (>= 2.3.7-7), glib2-dev, glitz, 
gnutls26, gtk+2-dev, avahi-dev, libavahi-glib1-dev, libcurl4, libgcrypt, 
libgettext8-dev, libglade2, libgpg-error, libiconv-dev, libpng3, 
libsoup2.4.1-ssl, libtasn1-3, libxml2, pango1-xft2-ft219-dev, pixman, libnotify 
(>= 0.4.5-3), x11-dev, libmpdclient (>= 2.1-2), libunique (>= 1.1.6-2), 
automake1.11, autoconf | autoconf2.6, libtool2, taglib
 Source: mirror:sourceforge:%n/ario-%v.tar.gz
 Source-MD5: 5b41a2099800751cce14d3b94229cb03
 PatchScript: <<


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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/gnome gimmix.info,1.6,1.7

2010-06-02 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv30972/main/finkinfo/gnome

Modified Files:
gimmix.info 
Log Message:
add missing -l

Index: gimmix.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/gimmix.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- gimmix.info 22 May 2010 11:28:20 -  1.6
+++ gimmix.info 2 Jun 2010 23:05:58 -   1.7
@@ -1,6 +1,6 @@
 Package: gimmix
 Version: 0.5.7.1
-Revision: 2
+Revision: 3
 Depends: x11, x11-shlibs, atk1-shlibs (>= 1.24.0-1), cairo-shlibs (>= 
1.8.4-1), expat1-shlibs (>= 2.0.1-1), fontconfig2-shlibs (>= 2.4.1-5), 
freetype219-shlibs (>= 2.3.7-7), glib2-shlibs (>= 2.18.2-1), glitz-shlibs (>= 
0.5.6-3), gtk+2-shlibs (>= 2.14.5-1), libcurl4-shlibs (>= 7.19.2-2), 
libgettext8-shlibs (>= 0.14.5-2), libglade2-shlibs (>= 2.6.3-2), libiconv (>= 
1.12-3), libmpd-shlibs (>= 0.17.0-2), libnxml0-shlibs (>= 0.18.3-2), 
libpng3-shlibs (>= 1:1.2.33-1), libxml2-shlibs (>= 2.6.32-1), 
pango1-xft2-ft219-shlibs (>= 1.22.0-4), pixman-shlibs (>= 0.12.0-1), 
taglib-shlibs (>= 1.5-1)
 BuildDepends: pkgconfig (>= 0.9.0-1), intltool40, gettext-tools, x11-dev, atk1 
(>= 1.24.0-1), cairo (>= 1.8.4-1), expat1 (>= 2.0.1-1), fontconfig2-dev (>= 
2.4.1-5), freetype219 (>= 2.3.7-7), glib2-dev (>= 2.18.2-1), glitz (>= 
0.5.6-3), gtk+2-dev (>= 2.14.5-1), libcurl4 (>= 7.19.2-2), libgettext8-dev (>= 
0.14.5-2), libglade2 (>= 2.6.3-2), libiconv-dev (>= 1.12-3), libmpd (>= 
0.17.0-2), libnxml0 (>= 0.18.3-2), libpng3 (>= 1:1.2.33-1), libxml2 (>= 
2.6.32-1), pango1-xft2-ft219-dev (>= 1.22.0-4), pixman (>= 0.12.0-1), taglib 
(>= 1.5-1)
 Recommends: mpd
@@ -11,6 +11,7 @@
 Source: mirror:custom:%n/%n-%v.tar.bz2
 Source-MD5: d89f3d6a80a85e9e6f34f9abd2614c15
 SetCFLAGS: -Os
+SetLDFLAGS: -L/usr/X11R6/lib -lX11
 ConfigureParams: --mandir=%p/share/man --disable-dependency-tracking 
--enable-lyrics --enable-cover
 PatchScript: rm po/Makefile.in.in && ln -s %p/share/intltool/Makefile.in.in 
po/ && perl -pi -e "s,x11,atk,g" configure
 InstallScript: make install DESTDIR=%d


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 authen-sasl-pm.info, 1.1, 1.2

2010-06-02 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv14788

Modified Files:
authen-sasl-pm.info 
Log Message:
New upstream version.


Index: authen-sasl-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/authen-sasl-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- authen-sasl-pm.info 24 May 2010 23:11:39 -  1.1
+++ authen-sasl-pm.info 3 Jun 2010 00:17:29 -   1.2
@@ -1,6 +1,6 @@
 Info2: <<
 Package: authen-sasl-pm%type_pkg[perl]
-Version: 2.14.01
+Version: 2.15
 Revision: 1
 Distribution: (%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: perl (5.8.6 5.8.8 5.10.0)
@@ -17,8 +17,8 @@
 
 Depends: perl%type_pkg[perl]-core, digest-md5-pm%type_pkg[perl], 
digest-hmac-pm, gssapi-pm%type_pkg[perl]
 
-Source: mirror:cpan:authors/id/G/GB/GBARR/Authen-SASL-2.1401.tar.gz
-Source-MD5: 6f25b75af1f44bf1078e0fdb4a2f73af
+Source: mirror:cpan:authors/id/G/GB/GBARR/Authen-SASL-%v.tar.gz
+Source-MD5: 35929abb2755cf479d548672800aebee
 
 UpdatePOD: true
 DocFiles: Changes


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 json-xs-pm.info, 1.3, 1.4

2010-06-02 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv19375

Modified Files:
json-xs-pm.info 
Log Message:
whups, forgot this one

Index: json-xs-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/json-xs-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- json-xs-pm.info 26 Mar 2010 13:50:40 -  1.3
+++ json-xs-pm.info 3 Jun 2010 00:40:18 -   1.4
@@ -2,8 +2,8 @@
 Package: json-xs-pm%type_pkg[perl]
 Version: 2.29
 Revision: 1
-Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6
-Type: perl (5.8.8 5.10.0)
+Distribution: (%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: perl (5.8.6 5.8.8 5.10.0)
 
 Description: JSON done correctly and fast
 DescDetail: <<


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 yape-regex-pm.info, 1.1, 1.2

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9166

Modified Files:
yape-regex-pm.info 
Log Message:
new version


Index: yape-regex-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/yape-regex-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- yape-regex-pm.info  20 Jan 2006 20:21:22 -  1.1
+++ yape-regex-pm.info  3 Jun 2010 02:21:13 -   1.2
@@ -1,9 +1,10 @@
 Package: yape-regex-pm
-Version: 3.01
-Revision: 2
+Version: 3.04
+Revision: 1
 Source: mirror:cpan:authors/id/P/PI/PINYAN/YAPE-Regex-%v.tar.gz
-Source-MD5: 44f86788dfdf11fd74b58e1bedabb0fe
+Source-MD5: a9eacea3762269f183b122404714dc8e
 Type: perl
+Depends: text-balanced-pm
 UpdatePOD: true
 DocFiles: Changes README
 Description: Yet Another Parser/Extractor for reg exps


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 task-weaken-pm.info, 1.7, 1.8

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv11610

Modified Files:
task-weaken-pm.info 
Log Message:
new version


Index: task-weaken-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/task-weaken-pm.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- task-weaken-pm.info 23 May 2010 18:03:32 -  1.7
+++ task-weaken-pm.info 3 Jun 2010 02:31:55 -   1.8
@@ -1,6 +1,6 @@
 Info2: <<
 Package: task-weaken-pm%type_pkg[perl]
-Version: 1.02
+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] = 586) 10.4, 
(%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 
5100) 10.6
@@ -9,7 +9,7 @@
 Depends: perl%type_pkg[perl]-core, scalar-list-utils-pm%type_pkg[perl] (>= 
1.19-1)
 
 Source: mirror:cpan:authors/id/A/AD/ADAMK/Task-Weaken-%v.tar.gz
-Source-MD5: 684c2bd2a76f320679fd2df938467e01
+Source-MD5: 056ce36c576450d22e6b23b4dbfacd02
 
 InstallScript: <<
   %{default_script}


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 devel-cycle-pm.info, 1.1, 1.2

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv13269

Modified Files:
devel-cycle-pm.info 
Log Message:
New version

Index: devel-cycle-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/devel-cycle-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- devel-cycle-pm.info 27 Jan 2009 18:57:36 -  1.1
+++ devel-cycle-pm.info 3 Jun 2010 02:39:25 -   1.2
@@ -1,10 +1,10 @@
 Package: devel-cycle-pm
-Version: 1.10
+Version: 1.11
 Revision: 1
 Type: perl
 
 Source: mirror:cpan:authors/id/L/LD/LDS/Devel-Cycle-%v.tar.gz
-Source-MD5: 5d6999f6303b2d5ed959e6d48efc5c8c
+Source-MD5: 67c42d79bcb7beb337023e3e00b0ebcb
 
 DocFiles: Changes README
 UpdatePOD: true


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 test-memory-cycle-pm.info, 1.1, 1.2

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv14194

Modified Files:
test-memory-cycle-pm.info 
Log Message:
add pm588


Index: test-memory-cycle-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/test-memory-cycle-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- test-memory-cycle-pm.info   27 Jan 2009 18:57:36 -  1.1
+++ test-memory-cycle-pm.info   3 Jun 2010 02:43:27 -   1.2
@@ -2,7 +2,7 @@
 Package: test-memory-cycle-pm%type_pkg[perl]
 Version: 1.04
 Revision: 1
-Type: perl (5.8.8)
+Type: perl (5.8.6 5.8.8)
 
 Source: mirror:cpan:authors/id/P/PE/PETDANCE/Test-Memory-Cycle-%v.tar.gz
 Source-MD5: 0c51e09f6bc23676ca0112b1a95e129d


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 yaml-pm.info, 1.5, 1.6 yaml-syck-pm.info, 1.9, 1.10

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv17083

Modified Files:
yaml-pm.info yaml-syck-pm.info 
Log Message:
new version


Index: yaml-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/yaml-pm.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- yaml-pm.info20 Jun 2009 12:24:29 -  1.5
+++ yaml-pm.info3 Jun 2010 02:53:50 -   1.6
@@ -1,5 +1,5 @@
 Package: yaml-pm
-Version: 0.68
+Version: 0.71
 Revision: 1
 Type: perl
 Description: Perl module, data serialization language
@@ -11,8 +11,8 @@
 # See DescPackaging
 
 # Unpack Phase:
-Source: mirror:cpan:authors/id/I/IN/INGY/YAML-%v.tar.gz
-Source-MD5: 4b4255360bb885acdba05314daa9129a
+Source: mirror:cpan:authors/id/A/AD/ADAMK/YAML-%v.tar.gz
+Source-MD5: d0f7cf232dd43c28c0e3767d672d6887
 
 # Compile Phase:
 CompileScript: <<

Index: yaml-syck-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/yaml-syck-pm.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- yaml-syck-pm.info   23 Aug 2009 04:23:29 -  1.9
+++ yaml-syck-pm.info   3 Jun 2010 02:53:50 -   1.10
@@ -1,6 +1,6 @@
 Info2: <<
 Package: yaml-syck-pm%type_pkg[perl]
-Version: 1.07
+Version: 1.09
 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
@@ -13,8 +13,8 @@
 Depends: perl%type_pkg[perl]-core
 
 # Unpack Phase:
-Source: mirror:cpan:authors/id/A/AU/AUDREYT/YAML-Syck-%v.tar.gz
-Source-MD5: 410ef7e24185de2a04390e0543876cad
+Source: mirror:cpan:authors/id/A/AV/AVAR/YAML-Syck-%v.tar.gz
+Source-MD5: b21a90e9075c7b92d8f4e75fd1cf5f10
 
 # Install Phase:
 UpdatePOD: True


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 sort-packed-pm.info, 1.1, 1.2

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv17920

Modified Files:
sort-packed-pm.info 
Log Message:
new version

Index: sort-packed-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/sort-packed-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- sort-packed-pm.info 27 Feb 2009 09:35:15 -  1.1
+++ sort-packed-pm.info 3 Jun 2010 02:57:12 -   1.2
@@ -1,10 +1,10 @@
 Info2: <<
 Package: sort-packed-pm%type_pkg[perl]
-Version: 0.05
+Version: 0.06
 Revision: 1
 Source: mirror:cpan:authors/id/S/SA/SALVA/Sort-Packed-%v.tar.gz
-Source-MD5: 6040d4a788f1f34262bf034f788947b0
-Type: perl (5.8.8)
+Source-MD5: 7b4a470b1d747525bb925f818978d166
+Type: perl (5.8.6 5.8.8)
 Depends: perl%type_pkg[perl]-core
 InstallScript: <<
%{default_script}


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 error-pm.info, 1.6, 1.7

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv19096

Modified Files:
error-pm.info 
Log Message:
new version

Index: error-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/error-pm.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- error-pm.info   13 Sep 2008 16:58:59 -  1.6
+++ error-pm.info   3 Jun 2010 03:01:27 -   1.7
@@ -1,5 +1,5 @@
 Package: error-pm
-Version: 0.17.015
+Version: 0.17.016
 Revision: 1
 Description: Perl module for error/exception handling
 Type: perl
@@ -7,8 +7,8 @@
 Maintainer: Christian Schaffner 
 
 # Unpack Phase:
-Source: mirror:cpan:authors/id/S/SH/SHLOMIF/Error-0.17015.tar.gz
-Source-MD5: 203bc410ae5040e7b647a52aa0fabafe
+Source: mirror:cpan:authors/id/S/SH/SHLOMIF/Error-0.17016.tar.gz
+Source-MD5: eedcd3c6970568dd32092b5334328eff
 
 # Install Phase:
 UpdatePOD: true


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 attribute-handlers-pm.info, 1.4, 1.5 params-validate-pm.info, 1.13, 1.14 readonly-xs-pm.info, 1.6, 1.7 test-taint-pm.info, 1.5, 1.6

2010-06-02 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv21711

Modified Files:
attribute-handlers-pm.info params-validate-pm.info 
readonly-xs-pm.info test-taint-pm.info 
Log Message:
missed the Distribution: bits

Index: attribute-handlers-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/attribute-handlers-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- attribute-handlers-pm.info  1 Jun 2010 17:46:59 -   1.4
+++ attribute-handlers-pm.info  3 Jun 2010 03:11:34 -   1.5
@@ -3,7 +3,7 @@
 Version: 0.88
 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
+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: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0)
 Source: mirror:cpan:authors/id/S/SM/SMUELLER/Attribute-Handlers-%v.tar.gz
 Source-MD5: cfc775abb5871adb25f4d292348ce5a9

Index: params-validate-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/params-validate-pm.info,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- params-validate-pm.info 1 Jun 2010 17:46:59 -   1.13
+++ params-validate-pm.info 3 Jun 2010 03:11:34 -   1.14
@@ -3,7 +3,7 @@
 Version: 0.95
 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
+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
 Description: Perl module to validate parameters
 Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0)
 License: Artistic

Index: readonly-xs-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/readonly-xs-pm.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- readonly-xs-pm.info 1 Jun 2010 17:46:59 -   1.6
+++ readonly-xs-pm.info 3 Jun 2010 03:11:34 -   1.7
@@ -3,7 +3,7 @@
 Version: 1.05
 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
+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: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0)
 Source: mirror:cpan:authors/id/R/RO/ROODE/Readonly-XS-%v.tar.gz
 Source-MD5: df71f29abfcbd14c963f912d6d6ded6b

Index: test-taint-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/test-taint-pm.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- test-taint-pm.info  1 Jun 2010 17:46:59 -   1.5
+++ test-taint-pm.info  3 Jun 2010 03:11:34 -   1.6
@@ -3,7 +3,7 @@
 Version: 1.04
 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
+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: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0)
 Source: mirror:cpan:authors/id/P/PE/PETDANCE/Test-Taint-%v.tar.gz
 Source-MD5: a005ab5a2e22ab462b4f3661d1d1d5e0


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 rec-descent-pm.info, 1.4, 1.5

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv24179

Modified Files:
rec-descent-pm.info 
Log Message:
new version


Index: rec-descent-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/rec-descent-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- rec-descent-pm.info 9 Jun 2008 22:10:44 -   1.4
+++ rec-descent-pm.info 3 Jun 2010 03:22:05 -   1.5
@@ -1,11 +1,19 @@
 Package: rec-descent-pm
-Version: 1.94
+Version: 1.96.5001
 Revision: 1
-Source: mirror:cpan:authors/id/D/DC/DCONWAY/Parse-RecDescent-%v.tar.gz
-Source-MD5: 497600b337a501eae11f31195ccec9d4
+Source: mirror:cpan:authors/id/D/DC/DCONWAY/Parse-RecDescent-1.965001.tar.gz
+Source-MD5: e91351ad179a3843fbe8e521b135acaf
 Type: perl
+Depends: text-balanced-pm
+PatchScript: perl -ni -e "print unless /'version'/" Makefile.PL
 UpdatePOD: true
-DocFiles: Changes MANIFEST README
+DocFiles: Changes README
+DescPackaging: <<
+   Makefile.PL asserts dependency on version.pm, but I don't see
+   any use of it in the package itself. It's a perlversioned
+   package, so omitting this dep to avoid having to convert self
+   to perversioned packaging.
+<<
 Description: Generate Recursive-Descent Parsers
 License: Artistic
 Maintainer: Daniel Macks 


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 spreadsheet-writeexcel-pm.info, 1.8, 1.9

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv27705

Modified Files:
spreadsheet-writeexcel-pm.info 
Log Message:
new version


Index: spreadsheet-writeexcel-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/spreadsheet-writeexcel-pm.info,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- spreadsheet-writeexcel-pm.info  9 Jun 2008 22:10:44 -   1.8
+++ spreadsheet-writeexcel-pm.info  3 Jun 2010 03:36:38 -   1.9
@@ -1,14 +1,18 @@
 Package: spreadsheet-writeexcel-pm
-Version: 2.21
+Version: 2.37
 Revision: 1
 Source: mirror:cpan:authors/id/J/JM/JMCNAMARA/Spreadsheet-WriteExcel-%v.tar.gz
-Source-MD5: 0de7d8f827a2da9b1c77b1c15043836e
+Source-MD5: 07e038429dc7d7467c735e467cc1cfbe
 Type: perl
 UpdatePOD: true
 Depends: ole-storagelite-pm, rec-descent-pm
 Replaces: %N-man, %N581-bin, %N584-bin, %N586-bin
 PatchScript: perl -0 
-pe's/^.*=head\d\s+(COPYRIGHT.*?)(=head\d.*|=cut.*|)$/$1/is' 
lib/Spreadsheet/WriteExcel.pm > COPYRIGHT
-DocFiles: Changes README doc/* COPYRIGHT
+InstallScript: <<
+   mkdir -p %i/share/doc/%n
+   cp -r docs/* %i/share/doc/%n
+<<
+DocFiles: Changes README COPYRIGHT
 License: Artistic/GPL
 Description: Write cross-platform Excel binary file
 Maintainer: Daniel Macks 


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 params-util-pm.info, 1.10, 1.11

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv13580

Modified Files:
params-util-pm.info 
Log Message:
new version

Index: params-util-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/params-util-pm.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- params-util-pm.info 23 May 2010 18:16:45 -  1.10
+++ params-util-pm.info 3 Jun 2010 04:42:37 -   1.11
@@ -1,11 +1,11 @@
 Info2: <<
 Package: params-util-pm%type_pkg[perl]
-Version: 1.00
+Version: 1.01
 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
 Source: mirror:cpan:authors/id/A/AD/ADAMK/Params-Util-%v.tar.gz
-Source-MD5: 827ba4b8bed00e718cea60321129be41
+Source-MD5: 624a29683d7ea89a0bda10d7aeddca33
 Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0)
 UpdatePOD: true
 Depends: perl%type_pkg[perl]-core, scalar-list-utils-pm%type_pkg[perl] (>= 
1.14-1)


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 ipc-cmd-pm.info, 1.4, 1.5

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv14846

Modified Files:
ipc-cmd-pm.info 
Log Message:
new version

Index: ipc-cmd-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/ipc-cmd-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- ipc-cmd-pm.info 20 May 2010 06:33:20 -  1.4
+++ ipc-cmd-pm.info 3 Jun 2010 04:48:49 -   1.5
@@ -1,12 +1,13 @@
 Info2: <<
 Package: ipc-cmd-pm%type_pkg[perl]
-Version: 0.50
-Revision: 2
+Version: 0.58
+Revision: 1
 Source: mirror:cpan:authors/id/B/BI/BINGOS/IPC-Cmd-%v.tar.gz
-Source-MD5: 935b70701262eb1432e9e9c7495153ab
+Source-MD5: 2796bd95171f8b0e367a2d533fafb35c
 Type: perl (5.8.6 5.8.8)
 UpdatePOD: true
 Depends: <<
+   ipc-run-pm%type_pkg[perl],
locale-maketext-simple-pm,
module-load-conditional-pm%type_pkg[perl],
params-check-pm,


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 archive-tar-pm.info, 1.14, 1.15 b-keywords-pm.info, 1.3, 1.4 config-general-pm.info, 1.3, 1.4

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv18824

Modified Files:
archive-tar-pm.info b-keywords-pm.info config-general-pm.info 
Log Message:
new version

Index: b-keywords-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/b-keywords-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- b-keywords-pm.info  22 Jan 2009 19:24:47 -  1.3
+++ b-keywords-pm.info  3 Jun 2010 05:06:49 -   1.4
@@ -1,10 +1,10 @@
 Package: b-keywords-pm
-Version: 1.08
+Version: 1.09
 Revision: 1
 Type: perl
 
 Source: mirror:cpan:authors/id/J/JJ/JJORE/B-Keywords-%v.tar.gz
-Source-MD5: 92f0d9d63d6ee2a6a2d4c5e1a90c5367
+Source-MD5: ac42096fcde918eda4a3c47c9b71e8d5
 
 DocFiles: Changes LICENSE README
 UpdatePOD: true

Index: config-general-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/config-general-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- config-general-pm.info  20 Jan 2010 20:49:20 -  1.3
+++ config-general-pm.info  3 Jun 2010 05:06:49 -   1.4
@@ -1,5 +1,5 @@
 Package: config-general-pm
-Version: 2.44
+Version: 2.48
 Revision: 1
 Type: perl
 Description: Generic configuration file parsing module
@@ -9,7 +9,7 @@
 
 # Unpack Phase.
 Source: mirror:cpan:authors/id/T/TL/TLINDEN/Config-General-%v.tar.gz
-Source-MD5: ad17b4ae5e0142fadd9b81f264deb266
+Source-MD5: e9fb4ccf505ea750aa84613de95b0ff5
 
 # Install Phase.
 UpdatePOD: true

Index: archive-tar-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/archive-tar-pm.info,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- archive-tar-pm.info 2 Jun 2010 16:14:02 -   1.14
+++ archive-tar-pm.info 3 Jun 2010 05:06:49 -   1.15
@@ -1,6 +1,6 @@
 Info2: <<
 Package: archive-tar-pm%type_pkg[perl]
-Version: 1.52
+Version: 1.60
 Revision: 1
 Distribution: (%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: perl (5.8.6 5.8.8 5.10.0)
@@ -17,7 +17,7 @@
 
 # Unpack Phase.
 Source: mirror:cpan:modules/by-module/Archive/Archive-Tar-%v.tar.gz
-Source-MD5: a2bcf46c095f6b4ea747fc978a72d0da
+Source-MD5: ba7eac884fc76a403f3afee5ef30fdd6
 
 # Install Phase.
 InstallScript: <<


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 compress-lzf-pm.info, 1.3, 1.4 compress-raw-bzip2-pm.info, 1.9, 1.10 compress-raw-zlib-pm.info, 1.11, 1.12

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv22261

Modified Files:
compress-lzf-pm.info compress-raw-bzip2-pm.info 
compress-raw-zlib-pm.info 
Log Message:
new version

Index: compress-raw-bzip2-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/compress-raw-bzip2-pm.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- compress-raw-bzip2-pm.info  23 Aug 2009 04:23:28 -  1.9
+++ compress-raw-bzip2-pm.info  3 Jun 2010 05:23:15 -   1.10
@@ -1,9 +1,9 @@
 Info2: <<
 Package: compress-raw-bzip2-pm%type_pkg[perl]
-Version: 2.015
-Revision: 2
+Version: 2.027
+Revision: 1
 Source: mirror:cpan:modules/by-module/Compress/Compress-Raw-Bzip2-%v.tar.gz
-Source-MD5: dc30ce4bfdd83df0da5b460c8b93c76d
+Source-MD5: 3338fe762ec77009316adb405197bf40
 Distribution: (%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: perl (5.8.6 5.8.8 5.10.0)
 BuildDepends: bzip2-dev, fink (>= 0.29.0)

Index: compress-raw-zlib-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/compress-raw-zlib-pm.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- compress-raw-zlib-pm.info   23 Aug 2009 04:23:28 -  1.11
+++ compress-raw-zlib-pm.info   3 Jun 2010 05:23:15 -   1.12
@@ -1,9 +1,9 @@
 Info2: <<
 Package: compress-raw-zlib-pm%type_pkg[perl]
-Version: 2.015
-Revision: 2
+Version: 2.027
+Revision: 1
 Source: mirror:cpan:modules/by-module/Compress/Compress-Raw-Zlib-%v.tar.gz
-Source-MD5: 6680d7ee3fbfd5171ccf239328c284fd
+Source-MD5: 6af5c62e55f3118e142326798a28d278
 Distribution: (%type_pkg[perl] = 581) 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
 Architecture: (%type_pkg[perl] = 581) powerpc
 Type: perl (5.8.1 5.8.6 5.8.8 5.10.0)

Index: compress-lzf-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/compress-lzf-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- compress-lzf-pm.info23 Aug 2009 04:23:28 -  1.3
+++ compress-lzf-pm.info3 Jun 2010 05:23:15 -   1.4
@@ -1,10 +1,10 @@
 Info2: <<
 Package: compress-lzf-pm%type_pkg[perl]
-Version: 3.11
+Version: 3.43
 Revision: 1
 Distribution: (%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5
 Source: mirror:cpan:authors/id/M/ML/MLEHMANN/Compress-LZF-%v.tar.gz
-Source-MD5: 850d2c1c22553b122f620dbc793c57df
+Source-MD5: b9dcb1bae6dc48ec45dd370e75000c05
 Type: perl (5.8.6 5.8.8)
 Depends: perl%type_pkg[perl]-core
 InstallScript: <<


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 exception-class-pm.info, 1.10, 1.11 extutils-xsbuilder-pm.info, 1.1, 1.2

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv24308

Modified Files:
exception-class-pm.info extutils-xsbuilder-pm.info 
Log Message:
new version

Index: extutils-xsbuilder-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/extutils-xsbuilder-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- extutils-xsbuilder-pm.info  29 Mar 2006 02:00:11 -  1.1
+++ extutils-xsbuilder-pm.info  3 Jun 2010 05:32:57 -   1.2
@@ -1,12 +1,16 @@
 Package: extutils-xsbuilder-pm
-Version: 0.27
+Version: 0.28
 Revision: 1
 ###
 ###
 Source: mirror:cpan:authors/id/G/GR/GRICHTER/ExtUtils-XSBuilder-%v.tar.gz
-Source-MD5: 6e1f1c8207b598166dc7a06d633db308
+Source-MD5: 1d33ddeacc01426a02e23c71c2e4cd04
 ###
 Type: perl
+Depends: <<
+   rec-descent-pm,
+   tie-ixhash-pm
+<<
 ###
 UpdatePOD: true
 ###

Index: exception-class-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/exception-class-pm.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- exception-class-pm.info 23 Aug 2009 04:23:28 -  1.10
+++ exception-class-pm.info 3 Jun 2010 05:32:57 -   1.11
@@ -1,6 +1,6 @@
 Info2: <<
 Package: exception-class-pm%type_pkg[perl]
-Version: 1.29
+Version: 1.30
 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
@@ -11,13 +11,13 @@
 
 # Dependencies:
 Depends: perl%type_pkg[perl]-core, devel-stacktrace-pm (>= 1.20-1), 
class-data-inheritable-pm
-BuildDepends: fink (>= 0.20.1-1), test-simple-pm%type_pkg[perl]
+BuildDepends: fink (>= 0.20.1-1), test-simple-pm%type_pkg[perl] (>= 0.88-1)
 Replaces: exception-class-pm (<= 1.16-1), exception-class-pm560, %N-man
 Conflicts: %N-man
 
 # Unpack Phase:
 Source: mirror:cpan:authors/id/D/DR/DROLSKY/Exception-Class-%v.tar.gz
-Source-MD5: b9a91cd9eb10a02a9b53880359d2228b
+Source-MD5: bada41515f94274bec2ddf3b2b21215e
 
 # Install Phase:
 UpdatePOD: true


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 io-stty-pm.info, 1.1, 1.2

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv27377

Modified Files:
io-stty-pm.info 
Log Message:
new version

Index: io-stty-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/io-stty-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- io-stty-pm.info 20 Jan 2006 20:21:21 -  1.1
+++ io-stty-pm.info 3 Jun 2010 05:45:21 -   1.2
@@ -1,13 +1,32 @@
 Package: io-stty-pm
-Version: 0.02
-Revision: 12
+Version: 0.03
+Revision: 1
 ###
 ###
-Source: mirror:cpan:authors/id/A/AU/AUSCHUTZ/IO-Stty-.02.tar.gz
-Source-MD5: db2919cf267fce93682f0f854359f04e
+Source: mirror:cpan:authors/id/T/TO/TODDR/IO-Stty-%v.tar.gz
+Source-MD5: 936386b3996613678d8b6a7f0b044f67
 ###
 Type: perl
 ###
+BuildDepends: module-build-pm
+CompileScript: <<
+#!/bin/sh -ev
+   exec 2>&1
+   perl$perlversion Build.PL \
+   --install_path arch=%i/lib/perl5 \
+   --install_path bin=%i/bin \
+   --install_path bindoc=%i/share/man/man1 \
+   --install_path lib=%i/lib/perl5 \
+   --install_path libdoc=%i/share/man/man3 \
+   --install_path script=%i/bin
+   ./Build
+<<
+InfoTest: <<
+   TestScript: ./Build test || exit 2
+<<
+InstallScript: <<
+   ./Build install
+<<
 UpdatePOD: true
 ###
 DocFiles: README
@@ -17,4 +36,4 @@
 License: Artistic
 Maintainer: Dave Vasilevsky 
 Homepage: http://search.cpan.org/dist/IO-Stty
-PatchScript: perl -i -pe 's,^#!\S+,#!/usr/bin/perl,' stty.pl
+#PatchScript: perl -i -pe 's,^#!\S+,#!/usr/bin/perl,' stty.pl


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 devel-stacktrace-pm.info, 1.5, 1.6

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28157

Modified Files:
devel-stacktrace-pm.info 
Log Message:
new version

Index: devel-stacktrace-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/devel-stacktrace-pm.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- devel-stacktrace-pm.info22 Jan 2009 19:24:10 -  1.5
+++ devel-stacktrace-pm.info3 Jun 2010 05:48:28 -   1.6
@@ -1,5 +1,5 @@
 Package: devel-stacktrace-pm
-Version: 1.20
+Version: 1.22
 Revision: 1
 Description: Perl module for stack trace
 Type: perl
@@ -8,11 +8,11 @@
 
 # Unpack Phase:
 Source: mirror:cpan:authors/id/D/DR/DROLSKY/Devel-StackTrace-%v.tar.gz
-Source-MD5: 86beb2e26a674718264d6c513ca071ff
+Source-MD5: e114310258a893ac3454fb0b36a57166
 
 # Install Phase:
 UpdatePOD: true
-DocFiles: Changes LICENSE MANIFEST README
+DocFiles: Changes LICENSE README
 
 # Additional Data:
 DescDetail: <<


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 log-report-pm.info, 1.1, 1.2

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv2628

Modified Files:
log-report-pm.info 
Log Message:
new version

Index: log-report-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/log-report-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- log-report-pm.info  25 May 2010 06:58:32 -  1.1
+++ log-report-pm.info  3 Jun 2010 06:02:26 -   1.2
@@ -1,15 +1,17 @@
 Info2: <<
 Package: log-report-pm%type_pkg[perl]
-Version: 0.26
+Version: 0.28
 Revision: 1
 Distribution: (%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5
 Source: mirror:cpan:authors/id/M/MA/MARKOV/Log-Report-%v.tar.gz
-Source-MD5: 38296fa12d2f44fb1c99f1ff37b55a5b
+Source-MD5: 5662f0f547707eeb29428f1b96c5fdad
 Type: perl (5.8.6 5.8.8)
 BuildDepends: <<
+   test-simple-pm%type_pkg[perl] (>= 0.86-1),
test-pod-pm
 <<
 Depends: <<
+   locale-gettext-pm%type_pkg[perl],
log-dispatch-pm%type_pkg[perl],
log-log4perl-pm%type_pkg[perl],
perl%type_pkg[perl]-core,


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 test-harness-pm.info, 1.10, 1.11 test-longstring-pm.info, 1.3, 1.4

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv6201

Modified Files:
test-harness-pm.info test-longstring-pm.info 
Log Message:
new version

Index: test-longstring-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/test-longstring-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- test-longstring-pm.info 2 Dec 2006 19:18:05 -   1.3
+++ test-longstring-pm.info 3 Jun 2010 06:13:58 -   1.4
@@ -1,5 +1,5 @@
 Package: test-longstring-pm
-Version: 0.11
+Version: 0.13
 Revision: 1
 Type: perl
 Description: Perl module to tests strings for equality
@@ -11,11 +11,11 @@
 
 # Unpack Phase:
 Source: mirror:cpan:authors/id/R/RG/RGARCIA/Test-LongString-%v.tar.gz
-Source-MD5: 860635425e63c5f15261418f25cf106f
+Source-MD5: 578cb904041a121298ed3aebaf503108
 
 # Install Phase:
 UpdatePOD: true
-DocFiles: Changes MANIFEST README
+DocFiles: Changes README
 
 # Additional Info:
 DescDetail: <<

Index: test-harness-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/test-harness-pm.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- test-harness-pm.info23 Aug 2009 04:23:29 -  1.10
+++ test-harness-pm.info3 Jun 2010 06:13:58 -   1.11
@@ -1,6 +1,6 @@
 Info2: <<
 Package: test-harness-pm%type_pkg[perl]
-Version: 3.16
+Version: 3.21
 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
@@ -9,7 +9,7 @@
 Depends: perl%type_pkg[perl]-core
 
 Source: mirror:cpan:authors/id/A/AN/ANDYA/Test-Harness-%v.tar.gz
-Source-MD5: cd2f3b018767ae9e61d09b23845cb68a
+Source-MD5: 74c6de5202456484c186ba92af4f1474
 
 InstallScript: <<
   %{default_script}


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 test-nowarnings-pm-0.84.info, NONE, 1.1 test-nowarnings-pm.info, 1.4, 1.5

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv11194

Modified Files:
test-nowarnings-pm.info 
Added Files:
test-nowarnings-pm-0.84.info 
Log Message:
new version, perlvarianted (due to dependency) so keep older unvarianted 
version available too


Index: test-nowarnings-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/test-nowarnings-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- test-nowarnings-pm.info 22 Jan 2009 20:26:17 -  1.4
+++ test-nowarnings-pm.info 3 Jun 2010 06:35:43 -   1.5
@@ -1,12 +1,24 @@
-Package: test-nowarnings-pm
-Version: 0.084
+Info2: <<
+Package: test-nowarnings-pm%type_pkg[perl]
+Version: 1.01
 Revision: 1
-Source: mirror:cpan:authors/id/F/FD/FDALY/Test-NoWarnings-%v.tar.gz
-Source-MD5: 26341294a4062e9e7d8a643485ca78d4
-Type: perl
+Distribution: (%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, 
(%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6
+Source: mirror:cpan:authors/id/A/AD/ADAMK/Test-NoWarnings-%v.tar.gz
+Source-MD5: ea97a1891812c2968f2fa8f89c06ff30
+Type: perl (5.8.6 5.8.8 5.10.0)
 UpdatePOD: true
-Depends: test-tester-pm (>= 0.103-1)
-DocFiles: CHANGES LGPL README
+Depends: <<
+   perl%type_pkg[perl]-core,
+   test-simple-pm%type_pkg[perl] (>= 0.86-1)
+<<
+BuildDepends: <<
+   test-tester-pm (>= 0.107-1)
+<<
+InstallScript: <<
+   %{default_script}
+   /bin/mv %i/share/man %i/lib/perl5/%type_raw[perl]
+<<
+DocFiles: CHANGES LICENSE README
 License: LGPL
 Description: Ensure you didn't emit warnings while testing
 Maintainer: Daniel Macks 
@@ -15,3 +27,4 @@
  Report bugs to the maintainer or the CPAN bug tracker:
  http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-NoWarnings
 <<
+<<

--- NEW FILE: test-nowarnings-pm-0.84.info ---
Package: test-nowarnings-pm
Version: 0.084
Revision: 1
Source: mirror:cpan:authors/id/F/FD/FDALY/Test-NoWarnings-%v.tar.gz
Source-MD5: 26341294a4062e9e7d8a643485ca78d4
Type: perl
UpdatePOD: true
Depends: test-tester-pm (>= 0.103-1)
DocFiles: CHANGES LGPL README
License: LGPL
Description: Ensure you didn't emit warnings while testing
Maintainer: Daniel Macks 
Homepage: http://search.cpan.org/dist/Test-NoWarnings
DescPackaging: <<
 Report bugs to the maintainer or the CPAN bug tracker:
 http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-NoWarnings
<<


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 test-classapi-pm.info, 1.7, 1.8

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv12206

Modified Files:
test-classapi-pm.info 
Log Message:
new version

Index: test-classapi-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/test-classapi-pm.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- test-classapi-pm.info   23 Aug 2009 04:23:29 -  1.7
+++ test-classapi-pm.info   3 Jun 2010 06:39:46 -   1.8
@@ -1,11 +1,11 @@
 Info2: <<
 Package: test-classapi-pm%type_pkg[perl]
-Version: 1.05
+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
 Source: mirror:cpan:authors/id/A/AD/ADAMK/Test-ClassAPI-%v.tar.gz
-Source-MD5: 3d36eb9f51ea3beb5a9d090c6bfaef05
+Source-MD5: ee31a9e1ecedcf720a9e89461a83442e
 Type: perl(5.8.1 5.8.4 5.8.6 5.8.8)
 UpdatePOD: true
 Depends: perl%type_pkg[perl]-core, class-inspector-pm%type_pkg[perl], 
config-tiny-pm, params-util-pm%type_pkg[perl]


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
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 test-deep-pm.info, 1.3, 1.4

2010-06-02 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv15180

Modified Files:
test-deep-pm.info 
Log Message:
new version

Index: test-deep-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/test-deep-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- test-deep-pm.info   22 Jan 2009 20:26:17 -  1.3
+++ test-deep-pm.info   3 Jun 2010 06:54:28 -   1.4
@@ -1,12 +1,15 @@
 Package: test-deep-pm
-Version: 0.103
+Version: 0.106
 Revision: 1
 Source: mirror:cpan:authors/id/F/FD/FDALY/Test-Deep-%v.tar.gz
-Source-MD5: 2fc92524553a3077475ea9589f02d4ee
+Source-MD5: 8cf0066dca9c3c102e4ae8f57173d12f
 Type: perl
 PatchScript: perl -0 
-pe's/^.*=head\d\s+(COPYRIGHT.*?)(=head\d.*|=cut.*|)$/$1/is' 
./lib/Test/Deep.pod > COPYRIGHT
 UpdatePOD: true
-Depends: test-nowarnings-pm, test-tester-pm
+BuildDepends: <<
+   test-nowarnings-pm,
+   test-tester-pm (>= 0.107-1)
+<<
 DocFiles: CHANGES META.yml README TODO COPYRIGHT
 License: Artistic/GPL
 Description: Extremely flexible deep comparison


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs