[cvs] dists/10.4/stable/main/finkinfo/sci 4ti2.patch, NONE, 1.1 4ti2.info, 1.3, 1.4

2012-09-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv26458

Modified Files:
4ti2.info 
Added Files:
4ti2.patch 
Log Message:
update for modern compilers (thanks to Jack Howarth for the patch)


Index: 4ti2.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/4ti2.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 4ti2.info   20 Feb 2012 05:45:44 -  1.3
+++ 4ti2.info   29 Sep 2012 16:40:29 -  1.4
@@ -1,13 +1,16 @@
 Package: 4ti2
 Version: 1.3.2
-Revision: 4
-BuildDepends: gmp5 (>= 5.0.1-2), glpk-dev (>= 4.44-1)
-Depends: gmp5-shlibs (>= 5.0.1-2), libgmpxx5-shlibs (>= 4.2.1-1), glpk-shlibs 
(>= 4.44-1)
+Revision: 103
+BuildDepends: gmp5 (>= 5.0.2-1), glpk-dev (>= 4.44-1)
+Depends: gmp5-shlibs (>= 5.0.2-1), libgmpxx5-shlibs (>= 5.0.2-1), glpk-shlibs 
(>= 4.44-1)
 Source: http://4ti2.de/version_%v/4ti2-%v.tar.gz
 Source-MD5: 93367e63944d8bb18192c4984544ed0d
+PatchFile: %n.patch
+PatchFile-MD5: 1bdba6baffb3a5c0b76dc853dd4c5117 
 License: GPL2+
 GCC: 4.0
 DocFiles: COPYING NEWS README TODO
+InfoTest: TestScript: make check || :
 SplitOff: <<
  Package: %N-dev
  Conflicts: %N (<= 1.3.2-1), libecat
@@ -33,4 +36,6 @@
 
  As of rev. 2, we do create a -dev splitoff, so that conflicts between
  4ti2's include files and those of other packages can be easily resolved.
+
+ Thanks to Jack Howarth for patching this for use with modern compilers.
 <<

--- NEW FILE: 4ti2.patch ---
diff -uNr 4ti2-1.3.2/src/groebner/CircuitMatrixAlgorithm.tpp 
4ti2-1.3.2.clang/src/groebner/CircuitMatrixAlgorithm.tpp
--- 4ti2-1.3.2/src/groebner/CircuitMatrixAlgorithm.tpp  2008-11-14 
21:08:37.0 -0500
+++ 4ti2-1.3.2.clang/src/groebner/CircuitMatrixAlgorithm.tpp2012-09-26 
10:08:32.0 -0400
@@ -152,23 +152,23 @@
 )
 
 // Find the next column.
-Index next_col = next_column(vs, remaining);
+Index next_col = this->next_column(vs, remaining);
 
 int start = 0; int end = vs.get_number(); int middle;
 // We sort the vectors into nonzeros and then zeros.
-sort_nonzeros(vs, start, end, rays, supps, pos_supps, neg_supps, 
next_col, middle);
+this->sort_nonzeros(vs, start, end, rays, supps, pos_supps, neg_supps, 
next_col, middle);
 int nonzero_start = start, nonzero_end = middle;
 //int zero_start = middle, zero_end = end;
 // We sort the nonzeros into rays and circuits.
-sort_rays(vs, nonzero_start, nonzero_end, rays, supps, pos_supps, 
neg_supps, middle);
+this->sort_rays(vs, nonzero_start, nonzero_end, rays, supps, 
pos_supps, neg_supps, middle);
 int ray_start = nonzero_start, ray_end = middle;
 int cir_start = middle, cir_end = nonzero_end;
 // We sort the rays into positives and then negatives.
-sort_positives(vs, ray_start, ray_end, supps, pos_supps, neg_supps, 
next_col, middle);
+this->sort_positives(vs, ray_start, ray_end, supps, pos_supps, 
neg_supps, next_col, middle);
 int pos_ray_start = ray_start, pos_ray_end = middle;
 int neg_ray_start = middle, neg_ray_end = ray_end;
 // We sort the circuits into positives and then negatives.
-sort_positives(vs, cir_start, cir_end, supps, pos_supps, neg_supps, 
next_col, middle);
+this->sort_positives(vs, cir_start, cir_end, supps, pos_supps, 
neg_supps, next_col, middle);
 int pos_cir_start = cir_start, pos_cir_end = middle;
 int neg_cir_start = middle, neg_cir_end = cir_end;
 
@@ -185,8 +185,8 @@
 
 // Switch the positive and negative supports, so that it is as if all
 // vectors have a positive entry in the next column.
-switch_supports(neg_ray_start, neg_ray_end, pos_supps, neg_supps);
-switch_supports(neg_cir_start, neg_cir_end, pos_supps, neg_supps);
+this->switch_supports(neg_ray_start, neg_ray_end, pos_supps, 
neg_supps);
+this->switch_supports(neg_cir_start, neg_cir_end, pos_supps, 
neg_supps);
 
 matrix = orig_matrix;
 int remaining_row = upper_triangle(matrix, remaining, 0);
@@ -212,15 +212,15 @@
 rays.insert(rays.end(), vs.get_number()-previous_size, false);
 
 // Switch back the positive and negative supports.
-switch_supports(neg_ray_start, neg_ray_end, pos_supps, neg_supps);
-switch_supports(neg_cir_start, neg_cir_end, pos_supps, neg_supps);
+this->switch_supports(neg_ray_start, neg_ray_end, pos_supps, 
neg_supps);
+this->switch_supports(neg_cir_start, neg_cir_end, pos_supps, 
neg_supps);
 
 // Update the supp vectors for the next_col.
-update_supports(supps, next_col, nonzero_start, nonzero_end);
-update_supports(pos_supps, next_col, pos_ray_start, pos_ray_end);
-update_supports(pos_supps, next_col, pos_cir_start, pos_cir_end);
-update_sup

[cvs] dists/10.7/stable/main/finkinfo/sci 4ti2.patch, NONE, 1.1 4ti2.info, 1.4, 1.5

2012-09-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv26356

Modified Files:
4ti2.info 
Added Files:
4ti2.patch 
Log Message:
update for modern compilers (thanks to Jack Howarth for the patch)


Index: 4ti2.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/4ti2.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- 4ti2.info   4 Dec 2011 16:30:30 -   1.4
+++ 4ti2.info   29 Sep 2012 16:39:21 -  1.5
@@ -1,19 +1,21 @@
 Package: 4ti2
 Version: 1.3.2
-Revision: 101
+Revision: 103
 BuildDepends: gmp5 (>= 5.0.2-1), glpk-dev (>= 4.44-1)
 Depends: gmp5-shlibs (>= 5.0.2-1), libgmpxx5-shlibs (>= 5.0.2-1), glpk-shlibs 
(>= 4.44-1)
 Source: http://4ti2.de/version_%v/4ti2-%v.tar.gz
 Source-MD5: 93367e63944d8bb18192c4984544ed0d
+PatchFile: %n.patch
+PatchFile-MD5: 1bdba6baffb3a5c0b76dc853dd4c5117 
 License: GPL2+
 GCC: 4.0
-SetCC: llvm-gcc-4.2
-SetCXX: llvm-g++-4.2
 DocFiles: COPYING NEWS README TODO
+InfoTest: TestScript: make check || :
 SplitOff: <<
  Package: %N-dev
  Conflicts: %N (<= 1.3.2-1), libecat
  Replaces: %N (<= 1.3.2-1), libecat
+ BuildDependsOnly: true
  Files: include lib
  DocFiles: COPYING NEWS README TODO
 <<
@@ -34,4 +36,6 @@
 
  As of rev. 2, we do create a -dev splitoff, so that conflicts between
  4ti2's include files and those of other packages can be easily resolved.
+
+ Thanks to Jack Howarth for patching this for use with modern compilers.
 <<

--- NEW FILE: 4ti2.patch ---
diff -uNr 4ti2-1.3.2/src/groebner/CircuitMatrixAlgorithm.tpp 
4ti2-1.3.2.clang/src/groebner/CircuitMatrixAlgorithm.tpp
--- 4ti2-1.3.2/src/groebner/CircuitMatrixAlgorithm.tpp  2008-11-14 
21:08:37.0 -0500
+++ 4ti2-1.3.2.clang/src/groebner/CircuitMatrixAlgorithm.tpp2012-09-26 
10:08:32.0 -0400
@@ -152,23 +152,23 @@
 )
 
 // Find the next column.
-Index next_col = next_column(vs, remaining);
+Index next_col = this->next_column(vs, remaining);
 
 int start = 0; int end = vs.get_number(); int middle;
 // We sort the vectors into nonzeros and then zeros.
-sort_nonzeros(vs, start, end, rays, supps, pos_supps, neg_supps, 
next_col, middle);
+this->sort_nonzeros(vs, start, end, rays, supps, pos_supps, neg_supps, 
next_col, middle);
 int nonzero_start = start, nonzero_end = middle;
 //int zero_start = middle, zero_end = end;
 // We sort the nonzeros into rays and circuits.
-sort_rays(vs, nonzero_start, nonzero_end, rays, supps, pos_supps, 
neg_supps, middle);
+this->sort_rays(vs, nonzero_start, nonzero_end, rays, supps, 
pos_supps, neg_supps, middle);
 int ray_start = nonzero_start, ray_end = middle;
 int cir_start = middle, cir_end = nonzero_end;
 // We sort the rays into positives and then negatives.
-sort_positives(vs, ray_start, ray_end, supps, pos_supps, neg_supps, 
next_col, middle);
+this->sort_positives(vs, ray_start, ray_end, supps, pos_supps, 
neg_supps, next_col, middle);
 int pos_ray_start = ray_start, pos_ray_end = middle;
 int neg_ray_start = middle, neg_ray_end = ray_end;
 // We sort the circuits into positives and then negatives.
-sort_positives(vs, cir_start, cir_end, supps, pos_supps, neg_supps, 
next_col, middle);
+this->sort_positives(vs, cir_start, cir_end, supps, pos_supps, 
neg_supps, next_col, middle);
 int pos_cir_start = cir_start, pos_cir_end = middle;
 int neg_cir_start = middle, neg_cir_end = cir_end;
 
@@ -185,8 +185,8 @@
 
 // Switch the positive and negative supports, so that it is as if all
 // vectors have a positive entry in the next column.
-switch_supports(neg_ray_start, neg_ray_end, pos_supps, neg_supps);
-switch_supports(neg_cir_start, neg_cir_end, pos_supps, neg_supps);
+this->switch_supports(neg_ray_start, neg_ray_end, pos_supps, 
neg_supps);
+this->switch_supports(neg_cir_start, neg_cir_end, pos_supps, 
neg_supps);
 
 matrix = orig_matrix;
 int remaining_row = upper_triangle(matrix, remaining, 0);
@@ -212,15 +212,15 @@
 rays.insert(rays.end(), vs.get_number()-previous_size, false);
 
 // Switch back the positive and negative supports.
-switch_supports(neg_ray_start, neg_ray_end, pos_supps, neg_supps);
-switch_supports(neg_cir_start, neg_cir_end, pos_supps, neg_supps);
+this->switch_supports(neg_ray_start, neg_ray_end, pos_supps, 
neg_supps);
+this->switch_supports(neg_cir_start, neg_cir_end, pos_supps, 
neg_supps);
 
 // Update the supp vectors for the next_col.
-update_supports(supps, next_col, nonzero_start, nonzero_end);
-update_supports(pos_supps, next_col, pos_ray_start, pos_ray_end);
-update_supports(pos_supps, next_col, pos_cir_start, pos_cir_end

[cvs] dists/10.7/stable/main/finkinfo/libs gc.info,1.1,1.2

2012-09-18 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv23655

Modified Files:
gc.info 
Log Message:
latest version


Index: gc.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/gc.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gc.info 10 Sep 2011 14:09:23 -  1.1
+++ gc.info 18 Sep 2012 18:21:30 -  1.2
@@ -1,13 +1,14 @@
 Info2: <<
 Package: gc%type_pkg[-64bit]
-Version: 7.1
-Revision: 1002
+Version: 7.2d
+Revision: 1
 GCC: 4.0
 Type: -64bit (boolean)
 Architecture: ( %type_raw[-64bit] = -64bit ) powerpc, ( %type_raw[-64bit] = 
-64bit ) i386
 BuildDependsOnly: true
 Source: http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-%v.tar.gz
-Source-MD5: 2ff9924c7249ef7f736ecfe6f08f3f9b
+Source-MD5: 91340b28c61753a789eb6077675d87d2
+SourceDirectory: %n-7.2
 Depends: %N-shlibs (= %v-%r), ( %type_raw[-64bit] = -64bit ) 64bit-cpu
 Conflicts: gc-static, gc, gc-64bit
 Replaces: gc-static, gc, gc-64bit


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs gc.info,1.5,1.6

2012-09-18 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv23565

Modified Files:
gc.info 
Log Message:
latest version


Index: gc.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/gc.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- gc.info 6 Jan 2011 04:23:09 -   1.5
+++ gc.info 18 Sep 2012 18:21:04 -  1.6
@@ -1,13 +1,14 @@
 Info2: <<
 Package: gc%type_pkg[-64bit]
-Version: 7.1
-Revision: 1002
+Version: 7.2d
+Revision: 1
 GCC: 4.0
 Type: -64bit (boolean)
 Architecture: ( %type_raw[-64bit] = -64bit ) powerpc, ( %type_raw[-64bit] = 
-64bit ) i386
 BuildDependsOnly: true
 Source: http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-%v.tar.gz
-Source-MD5: 2ff9924c7249ef7f736ecfe6f08f3f9b
+Source-MD5: 91340b28c61753a789eb6077675d87d2
+SourceDirectory: %n-7.2
 Depends: %N-shlibs (= %v-%r), ( %type_raw[-64bit] = -64bit ) 64bit-cpu
 Conflicts: gc-static, gc, gc-64bit
 Replaces: gc-static, gc, gc-64bit


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[fink/fink] c8db37: Suppress error message from invocation of xcode-se...

2012-07-03 Thread David R. Morrison
  Branch: refs/heads/branch_0_33
  Home:   https://github.com/fink/fink
  Commit: c8db37f50ee9119ac7517e673078d5ce208a8695
  
https://github.com/fink/fink/commit/c8db37f50ee9119ac7517e673078d5ce208a8695
  Author: David R. Morrison 
  Date:   2012-07-02 (Mon, 02 Jul 2012)

  Changed paths:
M perlmod/Fink/VirtPackage.pm

  Log Message:
  ---
  Suppress error message from invocation of xcode-select (for the
benefit of users with the xcode-CLI only)



--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods compress-lzma-external-pm.info, 1.2, 1.3 perl-critic-bangs-pm.info, 1.1, 1.2 perl-critic-deprecated-pm.info, 1.1, 1.2 perl-critic-pm.info, 1.2, 1.3

2012-07-03 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv23800

Modified Files:
compress-lzma-external-pm.info perl-critic-bangs-pm.info 
perl-critic-deprecated-pm.info perl-critic-pm.info 
perl-minimumversion-pm.info poe-pm.info ppi-html-pm.info 
ppi-pm.info ppi-xs-pm.info ppix-regexp-pm.info 
ppix-utilities-pm.info test-perl-critic-pm.info 
Log Message:
widen distribution, add variant


Index: perl-critic-bangs-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/perl-critic-bangs-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- perl-critic-bangs-pm.info   15 Jan 2012 21:50:57 -  1.1
+++ perl-critic-bangs-pm.info   3 Jul 2012 14:19:22 -   1.2
@@ -2,7 +2,7 @@
 Package: perl-critic-bangs-pm%type_pkg[perl]
 Version: 1.06
 Revision: 2
-Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, 
(%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6
+Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, 
(%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Collection of handy Perl::Critic policies
 DescDetail: <<
@@ -37,7 +37,7 @@
 Source: mirror:cpan:authors/id/P/PE/PETDANCE/Perl-Critic-Bangs-%v.tar.gz
 Source-MD5: b7f024919fce71b30bb25a9279ba31d7
 
-Type: perl (5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 DocFiles: Changes README

Index: ppix-regexp-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/ppix-regexp-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- ppix-regexp-pm.info 24 Jun 2012 12:10:16 -  1.3
+++ ppix-regexp-pm.info 3 Jul 2012 14:19:22 -   1.4
@@ -2,7 +2,7 @@
 Package: ppix-regexp-pm%type_pkg[perl]
 Version: 0.028
 Revision: 1
-Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, 
(%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6
+Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, 
(%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Represent a regular expression of some sort
 DescDetail: <<
@@ -17,7 +17,7 @@
 Source: mirror:cpan:authors/id/W/WY/WYANT/PPIx-Regexp-%v.tar.gz
 Source-MD5: de7334a0c2f121812e59e5ccddea96ec
 
-Type: perl (5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 DocFiles: Changes README

Index: test-perl-critic-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/test-perl-critic-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- test-perl-critic-pm.info15 Jan 2012 21:50:57 -  1.1
+++ test-perl-critic-pm.info3 Jul 2012 14:19:22 -   1.2
@@ -2,7 +2,7 @ritic-pm.info3 Jul 2012 14:19:22 -   
1.2perlmods/test-perl-critic-pm.info,v23) 10.7, (%type_pkg[perl] = 588) 
10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, 
(%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] 
= 5124) 10.8Ä*6 
èè!è!€´ÜÂÿð´ÜÂÿxTUÄ*«ÜÂÿ"¡ýSÄ*¾ýSÄ*€´ÜÂÿð ýSÄ*¿´ÜÂÿÀO~UÄ*ó¨ýSÄ*@~UÄ*ØD~UÄ*¨I~UÄ*€ÊþSÄ*xTUÄ*«ÜÂÿЩÜÂÿë½ýSÄ*à!à!€´ÜÂÿð´ÜÂÿÈúTÄ*à«ÜÂÿ"¡ýSÄ*¾ýSÄ*€´ÜÂÿð ýSÄ*¿´ÜÂÿ°´ÜÂÿ¨´ÜÂÿ»TÄ*Œp˜ð´ÜÂÿó¨ýSÄ*€ÊþSÄ*à«ÜÂÿ°ªÜÂÿë½ýSÄ*GHIJKMNOP€´ÜÂÿð´ÜÂÿHÕÐTÄ*€­ÜÂÿ"¡ýSÄ*¾ýSÄ*€´ÜÂÿ0O~UÄ*ó¨ýSÄ*`UÄ* 
   
®TÄ*@~UÄ*ØD~UÄ*¨I~UÄ*€ÊþSÄ*HÕÐTÄ*€­ÜÂÿÀ«ÜÂÿë½ýSÄ*8ÕÐTÄ*€­ÜÂÿð«ÜÂÿë½ýSÄ*(ÕÐTÄ*€­ÜÂÿ
 ¬ÜÂÿë½ýSÄ*ÕÐTÄ*€­ÜÂÿP¬ÜÂÿë½ýSÄ*  
¨N~UÄ*ó¨ýSÄ*¨I~UÄ*ЦÜÂÿŠX®TÄ*æ§ýSÄ*ØD~UÄ*ð¬ÜÂÿyX®TÄ*æ§ýSÄ*@~UÄ*
 ­ÜÂÿZX®TÄ*æ§ýSÄ*Ø®TÄ*`UÄ* 
®TÄ*@~UÄ*ØdUÄ*ØD~UÄ*¨I~UÄ*€ÊþSÄ*

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods compress-lzma-external-pm.info, 1.2, 1.3 perl-critic-bangs-pm.info, 1.1, 1.2 perl-critic-deprecated-pm.info, 1.1, 1.2 perl-critic-pm.info, 1.3, 1.4

2012-07-03 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv23651

Modified Files:
compress-lzma-external-pm.info perl-critic-bangs-pm.info 
perl-critic-deprecated-pm.info perl-critic-pm.info 
perl-minimumversion-pm.info poe-pm.info ppi-html-pm.info 
ppi-pm.info ppi-xs-pm.info ppix-regexp-pm.info 
ppix-utilities-pm.info readonly-xs-pm.info 
test-perl-critic-pm.info 
Log Message:
widen distribution, add variant


Index: perl-critic-bangs-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/perl-critic-bangs-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- perl-critic-bangs-pm.info   7 Aug 2011 13:16:47 -   1.1
+++ perl-critic-bangs-pm.info   3 Jul 2012 14:18:41 -   1.2
@@ -2,7 +2,7 @@
 Package: perl-critic-bangs-pm%type_pkg[perl]
 Version: 1.06
 Revision: 2
-Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, 
(%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6
+Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, 
(%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Collection of handy Perl::Critic policies
 DescDetail: <<
@@ -37,7 +37,7 @@
 Source: mirror:cpan:authors/id/P/PE/PETDANCE/Perl-Critic-Bangs-%v.tar.gz
 Source-MD5: b7f024919fce71b30bb25a9279ba31d7
 
-Type: perl (5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 DocFiles: Changes README

Index: ppix-regexp-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/ppix-regexp-pm.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- ppix-regexp-pm.info 24 Jun 2012 12:10:09 -  1.6
+++ ppix-regexp-pm.info 3 Jul 2012 14:18:41 -   1.7
@@ -2,7 +2,7 @@
 Package: ppix-regexp-pm%type_pkg[perl]
 Version: 0.028
 Revision: 1
-Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, 
(%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6
+Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, 
(%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Represent a regular expression of some sort
 DescDetail: <<
@@ -17,7 +17,7 @@
 Source: mirror:cpan:authors/id/W/WY/WYANT/PPIx-Regexp-%v.tar.gz
 Source-MD5: de7334a0c2f121812e59e5ccddea96ec
 
-Type: perl (5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 DocFiles: Changes README

Index: test-perl-critic-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/test-perl-critic-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- test-perl-critic-pm.info7 Aug 2011 13:16:47 -   1.1
+++ test-perl-critic-pm.info3 Jul 2012 14:18:41 -   1.2
@@ -2,7 +2,7 @@
 Package: test-perl-critic-pm%type_pkg[perl]
 Version: 1.02
 Revision: 1
-Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, 
(%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6
+Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, 
(%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Use Perl::Critic in test programs
 Maintainer: Daniel Johnson 
@@ -11,7 +11,7 @@
 Source: mirror:cpan:authors/id/T/TH/THALJEF/Test-Perl-Critic-%v.tar.gz
 Source-MD5: 7f1e75cc3d933e4deab5097c5b8c812d
 
-Type: perl (5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 DocFiles: Changes README LICENSE

Index: compress-lzma-external-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/compress-lzma-external-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- compress-lzma-external-pm.info  2 Jul 2012 21:45:35 -   1.2
+++ compress-lzma-external-pm.info  3 Jul 2012 14:18:41 -   1.3
@@ -3,7 +3,7 @@
 Version: 0.37
 Revision: 2
 Licen

[cvs] dists/10.4/stable/main/finkinfo/devel doxygen.info, 1.9, 1.10 doxygen.patch, 1.6, 1.7

2012-07-02 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv24028

Modified Files:
doxygen.info doxygen.patch 
Log Message:
prepare for the future


Index: doxygen.patch
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel/doxygen.patch,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- doxygen.patch   16 Oct 2011 08:46:28 -  1.6
+++ doxygen.patch   2 Jul 2012 19:43:09 -   1.7
@@ -1,6 +1,6 @@
-diff -ru doxygen-1.7.4-orig/Makefile.in doxygen-1.7.4/Makefile.in
 doxygen-1.7.4-orig/Makefile.in 2011-07-25 18:33:47.0 +0200
-+++ doxygen-1.7.4/Makefile.in  2011-07-25 18:33:59.0 +0200
+diff -ruN doxygen-1.7.4/Makefile.in doxygen-1.7.4-patched/Makefile.in
+--- doxygen-1.7.4/Makefile.in  2009-08-20 13:41:13.0 -0600
 doxygen-1.7.4-patched/Makefile.in  2012-07-02 13:40:11.0 -0600
 @@ -44,7 +44,7 @@
  
  DATE=$(shell date "+%B %Y")
@@ -10,10 +10,9 @@
  
  install: doxywizard_install 
$(INSTTOOL) -d $(DESTDIR)/$(INSTALL)/bin
-Only in doxygen-1.7.4: Makefile.in.orig
-diff -ru doxygen-1.7.4-orig/addon/doxywizard/doxywizard.pro.in 
doxygen-1.7.4/addon/doxywizard/doxywizard.pro.in
 doxygen-1.7.4-orig/addon/doxywizard/doxywizard.pro.in  2011-07-25 
18:33:47.0 +0200
-+++ doxygen-1.7.4/addon/doxywizard/doxywizard.pro.in   2011-07-25 
18:38:01.0 +0200
+diff -ruN doxygen-1.7.4/addon/doxywizard/doxywizard.pro.in 
doxygen-1.7.4-patched/addon/doxywizard/doxywizard.pro.in
+--- doxygen-1.7.4/addon/doxywizard/doxywizard.pro.in   2011-01-03 
13:20:50.0 -0700
 doxygen-1.7.4-patched/addon/doxywizard/doxywizard.pro.in   2012-07-02 
13:40:11.0 -0600
 @@ -6,7 +6,7 @@
  DESTDIR  = ../../bin
  TARGET   = 
@@ -34,9 +33,9 @@
  # Input
  HEADERS += doxywizard.h version.h expert.h config.h helplabel.h \
 inputbool.h inputstring.h inputint.h inputstrlist.h wizard.h
-diff -ru doxygen-1.7.4-orig/configure doxygen-1.7.4/configure
 doxygen-1.7.4-orig/configure   2011-07-25 18:33:47.0 +0200
-+++ doxygen-1.7.4/configure2011-07-25 18:33:59.0 +0200
+diff -ruN doxygen-1.7.4/configure doxygen-1.7.4-patched/configure
+--- doxygen-1.7.4/configure2011-03-28 07:12:47.0 -0600
 doxygen-1.7.4-patched/configure2012-07-02 13:40:11.0 -0600
 @@ -559,7 +559,7 @@
  TMAKE_CXXFLAGS += -D_LARGEFILE_SOURCE
  EOF
@@ -46,10 +45,10 @@
if test -n "`ls /Developer/SDKs/MacOSX10.*.sdk 2>/dev/null`"; then
  mac_sdk=MacOSX10.4u.sdk
fi
-diff -ru doxygen-1.7.4-orig/qtools/qglobal.h doxygen-1.7.4/qtools/qglobal.h
 doxygen-1.7.4-orig/qtools/qglobal.h2011-07-25 18:33:47.0 
+0200
-+++ doxygen-1.7.4/qtools/qglobal.h 2011-07-25 18:43:24.0 +0200
-@@ -89,7 +89,10 @@
+diff -ruN doxygen-1.7.4/qtools/qglobal.h doxygen-1.7.4-patched/qtools/qglobal.h
+--- doxygen-1.7.4/qtools/qglobal.h 2010-06-09 03:49:13.0 -0600
 doxygen-1.7.4-patched/qtools/qglobal.h 2012-07-02 13:42:38.0 
-0600
+@@ -89,7 +89,13 @@
  #  if !defined(MAC_OS_X_VERSION_10_6)
  #   define MAC_OS_X_VERSION_10_6 MAC_OS_X_VERSION_10_5 + 1
  #  endif
@@ -57,15 +56,16 @@
 +#  if !defined(MAC_OS_X_VERSION_10_7)
 +#   define MAC_OS_X_VERSION_10_7 MAC_OS_X_VERSION_10_6 + 1
 +#  endif
-+#  if (MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_7)
++#  if !defined(MAC_OS_X_VERSION_10_8)
++#   define MAC_OS_X_VERSION_10_8 MAC_OS_X_VERSION_10_7 + 1
++#  endif
++#  if (MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_8)
  #error "This version of Mac OS X is unsupported"
  #  endif
  #elif defined(MSDOS) || defined(_MSDOS) || defined(__MSDOS__)
-Only in doxygen-1.7.4/qtools: qglobal.h.orig
-Only in doxygen-1.7.4/qtools: qglobal.h.rej
-diff -ru doxygen-1.7.4-orig/qtools/qtools.pro.in 
doxygen-1.7.4/qtools/qtools.pro.in
 doxygen-1.7.4-orig/qtools/qtools.pro.in2011-07-25 18:33:47.0 
+0200
-+++ doxygen-1.7.4/qtools/qtools.pro.in 2011-07-25 18:37:40.0 +0200
+diff -ruN doxygen-1.7.4/qtools/qtools.pro.in 
doxygen-1.7.4-patched/qtools/qtools.pro.in
+--- doxygen-1.7.4/qtools/qtools.pro.in 2010-06-09 13:41:23.0 -0600
 doxygen-1.7.4-patched/qtools/qtools.pro.in 2012-07-02 13:40:11.0 
-0600
 @@ -93,7 +93,7 @@
  qmutex_win32.cpp \
  qwaitcondition_win32.cpp
@@ -75,9 +75,9 @@
  #TMAKE_CXXFLAGS += -DQT_NO_CODECS -DQT_LITE_UNICODE
  TMAKE_CXXFLAGS += -DQT_LITE_UNICODE
  win32:TMAKE_CXXFLAGS += -DQT_NODLL
-diff -ru doxygen-1.7.4-orig/src/doxygen.pro.in doxygen-1.7.4/src/doxygen.pro.in
 doxygen-1.7.4-orig/src/doxygen.pro.in  2011-07-25 18:33:47.0 
+0200
-+++ doxygen-1.7.4/src/doxygen.pro.in   2011-07-25 18:39:18.0 +0200
+diff -ruN doxygen-1.7.4/src/doxygen.pro.in 
doxygen-1.7.4-patched/src/doxygen.pro.in
+--- doxygen-1.7.4/src

[cvs] dists/10.7/stable/main/finkinfo/devel doxygen.info, 1.2, 1.3 doxygen.patch, 1.1, 1.2

2012-07-02 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv23993

Modified Files:
doxygen.info doxygen.patch 
Log Message:
prepare for the future


Index: doxygen.patch
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel/doxygen.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- doxygen.patch   26 Jul 2011 01:06:58 -  1.1
+++ doxygen.patch   2 Jul 2012 19:42:20 -   1.2
@@ -1,6 +1,6 @@
-diff -ru doxygen-1.7.4-orig/Makefile.in doxygen-1.7.4/Makefile.in
 doxygen-1.7.4-orig/Makefile.in 2011-07-25 18:33:47.0 +0200
-+++ doxygen-1.7.4/Makefile.in  2011-07-25 18:33:59.0 +0200
+diff -ruN doxygen-1.7.4/Makefile.in doxygen-1.7.4-patched/Makefile.in
+--- doxygen-1.7.4/Makefile.in  2009-08-20 13:41:13.0 -0600
 doxygen-1.7.4-patched/Makefile.in  2012-07-02 13:40:11.0 -0600
 @@ -44,7 +44,7 @@
  
  DATE=$(shell date "+%B %Y")
@@ -10,10 +10,9 @@
  
  install: doxywizard_install 
$(INSTTOOL) -d $(DESTDIR)/$(INSTALL)/bin
-Only in doxygen-1.7.4: Makefile.in.orig
-diff -ru doxygen-1.7.4-orig/addon/doxywizard/doxywizard.pro.in 
doxygen-1.7.4/addon/doxywizard/doxywizard.pro.in
 doxygen-1.7.4-orig/addon/doxywizard/doxywizard.pro.in  2011-07-25 
18:33:47.0 +0200
-+++ doxygen-1.7.4/addon/doxywizard/doxywizard.pro.in   2011-07-25 
18:38:01.0 +0200
+diff -ruN doxygen-1.7.4/addon/doxywizard/doxywizard.pro.in 
doxygen-1.7.4-patched/addon/doxywizard/doxywizard.pro.in
+--- doxygen-1.7.4/addon/doxywizard/doxywizard.pro.in   2011-01-03 
13:20:50.0 -0700
 doxygen-1.7.4-patched/addon/doxywizard/doxywizard.pro.in   2012-07-02 
13:40:11.0 -0600
 @@ -6,7 +6,7 @@
  DESTDIR  = ../../bin
  TARGET   = 
@@ -34,9 +33,9 @@
  # Input
  HEADERS += doxywizard.h version.h expert.h config.h helplabel.h \
 inputbool.h inputstring.h inputint.h inputstrlist.h wizard.h
-diff -ru doxygen-1.7.4-orig/configure doxygen-1.7.4/configure
 doxygen-1.7.4-orig/configure   2011-07-25 18:33:47.0 +0200
-+++ doxygen-1.7.4/configure2011-07-25 18:33:59.0 +0200
+diff -ruN doxygen-1.7.4/configure doxygen-1.7.4-patched/configure
+--- doxygen-1.7.4/configure2011-03-28 07:12:47.0 -0600
 doxygen-1.7.4-patched/configure2012-07-02 13:40:11.0 -0600
 @@ -559,7 +559,7 @@
  TMAKE_CXXFLAGS += -D_LARGEFILE_SOURCE
  EOF
@@ -46,10 +45,10 @@
if test -n "`ls /Developer/SDKs/MacOSX10.*.sdk 2>/dev/null`"; then
  mac_sdk=MacOSX10.4u.sdk
fi
-diff -ru doxygen-1.7.4-orig/qtools/qglobal.h doxygen-1.7.4/qtools/qglobal.h
 doxygen-1.7.4-orig/qtools/qglobal.h2011-07-25 18:33:47.0 
+0200
-+++ doxygen-1.7.4/qtools/qglobal.h 2011-07-25 18:43:24.0 +0200
-@@ -89,7 +89,10 @@
+diff -ruN doxygen-1.7.4/qtools/qglobal.h doxygen-1.7.4-patched/qtools/qglobal.h
+--- doxygen-1.7.4/qtools/qglobal.h 2010-06-09 03:49:13.0 -0600
 doxygen-1.7.4-patched/qtools/qglobal.h 2012-07-02 13:42:38.0 
-0600
+@@ -89,7 +89,13 @@
  #  if !defined(MAC_OS_X_VERSION_10_6)
  #   define MAC_OS_X_VERSION_10_6 MAC_OS_X_VERSION_10_5 + 1
  #  endif
@@ -57,15 +56,16 @@
 +#  if !defined(MAC_OS_X_VERSION_10_7)
 +#   define MAC_OS_X_VERSION_10_7 MAC_OS_X_VERSION_10_6 + 1
 +#  endif
-+#  if (MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_7)
++#  if !defined(MAC_OS_X_VERSION_10_8)
++#   define MAC_OS_X_VERSION_10_8 MAC_OS_X_VERSION_10_7 + 1
++#  endif
++#  if (MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_8)
  #error "This version of Mac OS X is unsupported"
  #  endif
  #elif defined(MSDOS) || defined(_MSDOS) || defined(__MSDOS__)
-Only in doxygen-1.7.4/qtools: qglobal.h.orig
-Only in doxygen-1.7.4/qtools: qglobal.h.rej
-diff -ru doxygen-1.7.4-orig/qtools/qtools.pro.in 
doxygen-1.7.4/qtools/qtools.pro.in
 doxygen-1.7.4-orig/qtools/qtools.pro.in2011-07-25 18:33:47.0 
+0200
-+++ doxygen-1.7.4/qtools/qtools.pro.in 2011-07-25 18:37:40.0 +0200
+diff -ruN doxygen-1.7.4/qtools/qtools.pro.in 
doxygen-1.7.4-patched/qtools/qtools.pro.in
+--- doxygen-1.7.4/qtools/qtools.pro.in 2010-06-09 13:41:23.0 -0600
 doxygen-1.7.4-patched/qtools/qtools.pro.in 2012-07-02 13:40:11.0 
-0600
 @@ -93,7 +93,7 @@
  qmutex_win32.cpp \
  qwaitcondition_win32.cpp
@@ -75,9 +75,9 @@
  #TMAKE_CXXFLAGS += -DQT_NO_CODECS -DQT_LITE_UNICODE
  TMAKE_CXXFLAGS += -DQT_LITE_UNICODE
  win32:TMAKE_CXXFLAGS += -DQT_NODLL
-diff -ru doxygen-1.7.4-orig/src/doxygen.pro.in doxygen-1.7.4/src/doxygen.pro.in
 doxygen-1.7.4-orig/src/doxygen.pro.in  2011-07-25 18:33:47.0 
+0200
-+++ doxygen-1.7.4/src/doxygen.pro.in   2011-07-25 18:39:18.0 +0200
+diff -ruN doxygen-1.7.4/src/doxygen.pro.in 
doxygen-1.7.4-patched/src/doxygen.pro.in
+--- doxygen-1.7.4/src

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods bioperl-pm.info, 1.3, 1.4 bioperl-run-pm.info, 1.2, 1.3 data-stag-pm.info, 1.1, 1.2 tk-pm.info, 1.2, 1.3

2012-07-02 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv13418

Modified Files:
bioperl-pm.info bioperl-run-pm.info data-stag-pm.info 
tk-pm.info 
Log Message:
add -pm5124 for 10.7 only


Index: bioperl-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/bioperl-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- bioperl-pm.info 12 Apr 2012 18:08:38 -  1.3
+++ bioperl-pm.info 2 Jul 2012 17:46:40 -   1.4
@@ -2,11 +2,13 @@
 Package: bioperl-pm%type_pkg[perl]
 Version: 1.6.901
 Revision: 2
+# note that data-stag-pm is not yet available on 10.8
 Distribution: <<
   (%type_pkg[perl] = 586) 10.5,
   (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6,
   (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6,
-  (%type_pkg[perl] = 5123) 10.7
+  (%type_pkg[perl] = 5123) 10.7,
+  (%type_pkg[perl] = 5124) 10.7
 <<
 BuildDepends: <<
  perl%type_pkg[perl]-core, 
@@ -49,7 +51,7 @@
 Replaces: bioperl-pm%type_pkg[perl] (<= 1.6)
 Conflicts: bioperl-pm%type_pkg[perl] (<= 1.6)
 
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 PatchFile: %{ni}.patch
 PatchFile-MD5: a85983206608e1684fe4187393e23bba
 

Index: data-stag-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/data-stag-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- data-stag-pm.info   27 Aug 2011 18:59:55 -  1.1
+++ data-stag-pm.info   2 Jul 2012 17:46:40 -   1.2
@@ -19,7 +19,9 @@
  graph-pm
 <<
 
-Type: perl (5.12.3)
+#note that tk-pm%type_pkg[perl] is not yet available on 10.8
+Distribution: 10.7
+Type: perl (5.12.3 5.12.4)
 UpdatePOD: True
 
 Source-MD5: 6bfa3cf196b69180d04602e956f8b626

Index: bioperl-run-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/bioperl-run-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- bioperl-run-pm.info 9 May 2012 20:14:36 -   1.2
+++ bioperl-run-pm.info 2 Jul 2012 17:46:40 -   1.3
@@ -3,12 +3,14 @@
 Package: bioperl-run-pm%type_pkg[perl]
 Version: 1.6.900
 Revision: 1
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+#note that bioperl-pm is not yet available on 10.8
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 Distribution: <<
   (%type_pkg[perl] = 586) 10.5,
   (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6,
   (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6,
-  (%type_pkg[perl] = 5123) 10.7
+  (%type_pkg[perl] = 5123) 10.7,
+  (%type_pkg[perl] = 5124) 10.7
 <<
 Depends: <<
algorithm-diff-pm,

Index: tk-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/tk-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- tk-pm.info  16 Dec 2011 02:04:03 -  1.2
+++ tk-pm.info  2 Jul 2012 17:46:40 -   1.3
@@ -36,7 +36,9 @@
 <<
 Source: mirror:cpan:authors/id/S/SR/SREZIC/Tk-%v.tar.gz
 Source-MD5: 13275e85f99ee467a86d9598a437abff
-Type: perl (5.12.3)
+#note that this does not yet build on 10.8
+Distribution: 10.7
+Type: perl (5.12.3 5.12.4)
 UpdatePOD: true
 NoPerlTests: true
 UseMaxBuildJobs: false


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2012-07-02 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv8048

Modified Files:
file-which-pm.info 
Log Message:
expand conflicts/replaces of the splitoff


Index: file-which-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/file-which-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- file-which-pm.info  30 Jun 2012 21:44:25 -  1.4
+++ file-which-pm.info  2 Jul 2012 13:06:42 -   1.5
@@ -1,7 +1,7 @@
 Info2: <<
 Package: file-which-pm%type_pkg[perl]
 Version: 1.09
-Revision: 4
+Revision: 5
 Source: mirror:cpan:authors/id/A/AD/ADAMK/File-Which-%v.tar.gz
 Source-MD5: b9429edaad7f45caafa4d458afcfd8af
 
@@ -25,11 +25,11 @@
Package: pwhich%type_pkg[perl]
Conflicts: <<
file-which-pm,
-   pwhich581, pwhich584, pwhich586, pwhich588, pwhich5100, 
pwhich5123
+   pwhich581, pwhich584, pwhich586, pwhich588, pwhich5100, 
pwhich5123, pwhich5124
<<
Replaces: <<
file-which-pm,
-   pwhich581, pwhich584, pwhich586, pwhich588, pwhich5100, 
pwhich5123
+   pwhich581, pwhich584, pwhich586, pwhich588, pwhich5100, 
pwhich5123, pwhich5124
<<
Depends: %N (>= %v-%r)
Files: <<


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods text-csv-xs-pm.info, 1.2, 1.3 text-markdown-pm.info, 1.1, 1.2 text-simpletable-pm.info, 1.1, 1.2 tie-toobject-pm.info, 1.1, 1.2 unicode-map8-pm.info

2012-07-01 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv5972

Modified Files:
text-csv-xs-pm.info text-markdown-pm.info 
text-simpletable-pm.info tie-toobject-pm.info 
unicode-map8-pm.info want-pm.info www-curl-pm.info 
www-curl-simple-pm.info xml-dumper-pm.info xml-rss-pm.info 
Log Message:
widen distrubtion, add variant


Index: www-curl-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/www-curl-pm.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- www-curl-pm.info23 Oct 2011 15:33:44 -  1.6
+++ www-curl-pm.info2 Jul 2012 03:27:12 -   1.7
@@ -3,7 +3,7 @@
 Version: 4.15
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) 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, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6
+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, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 
5123) 10.8, (%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: BSD
 Description: Perl bindings for libcurl
 Maintainer: Daniel Johnson 
@@ -12,7 +12,7 @@
 Source: mirror:cpan:authors/id/S/SZ/SZBALINT/WWW-Curl-%v.tar.gz
 Source-MD5: 31c0b8c7e5e2d26bcc8213d702186d5f
 
-Type: perl (5.8.1 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.1 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 # Tests need live network connection. They do pass, however.
 NoPerlTests: True

Index: www-curl-simple-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/www-curl-simple-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- www-curl-simple-pm.info 23 Feb 2012 14:52:14 -  1.2
+++ www-curl-simple-pm.info 2 Jul 2012 03:27:12 -   1.3
@@ -2,7 +2,7 @@
 Package: www-curl-simple-pm%type_pkg[perl]
 Version: 0.100185
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Simpler interface to WWW::Curl
 Maintainer: Daniel Johnson 
@@ -11,7 +11,7 @@
 Source: mirror:cpan:authors/id/A/AN/ANDREMAR/WWW-Curl-Simple-%v.tar.gz
 Source-MD5: f4cda6f068cc11618324479c2b4e47b6
 
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 DocFiles: Changes README

Index: want-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/want-pm.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- want-pm.info22 Oct 2011 18:37:46 -  1.5
+++ want-pm.info2 Jul 2012 03:27:12 -   1.6
@@ -3,8 +3,8 @@
 Version: 0.18
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
-Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
+Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 Description: Perl Module - generalisation of wantarray
 License: Artistic/GPL
 Maintainer: Christian Schaffner 

Index: unicode-map8-pm.info
===
RCS file: 
/cvs

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods text-csv-xs-pm.info, 1.2, 1.3 text-markdown-pm.info, 1.2, 1.3 text-simpletable-pm.info, 1.1, 1.2 tie-toobject-pm.info, 1.1, 1.2 unicode-map8-pm.info

2012-07-01 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv5903

Modified Files:
text-csv-xs-pm.info text-markdown-pm.info 
text-simpletable-pm.info tie-toobject-pm.info 
unicode-map8-pm.info want-pm.info www-curl-pm.info 
www-curl-simple-pm.info xml-autowriter-pm.info 
xml-dumper-pm.info xml-rss-pm.info 
Log Message:
widen distribution, add variant


Index: www-curl-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/www-curl-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- www-curl-pm.info7 Aug 2011 14:37:14 -   1.1
+++ www-curl-pm.info2 Jul 2012 03:26:32 -   1.2
@@ -3,7 +3,7 @@
 Version: 4.15
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) 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, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6
+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, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 
5123) 10.8, (%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: BSD
 Description: Perl bindings for libcurl
 Maintainer: Daniel Johnson 
@@ -12,7 +12,7 @@
 Source: mirror:cpan:authors/id/S/SZ/SZBALINT/WWW-Curl-%v.tar.gz
 Source-MD5: 31c0b8c7e5e2d26bcc8213d702186d5f
 
-Type: perl (5.8.1 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.1 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 # Tests need live network connection. They do pass, however.
 NoPerlTests: True

Index: www-curl-simple-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/www-curl-simple-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- www-curl-simple-pm.info 23 Feb 2012 14:52:03 -  1.2
+++ www-curl-simple-pm.info 2 Jul 2012 03:26:32 -   1.3
@@ -2,7 +2,7 @@
 Package: www-curl-simple-pm%type_pkg[perl]
 Version: 0.100185
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Simpler interface to WWW::Curl
 Maintainer: Daniel Johnson 
@@ -11,7 +11,7 @@
 Source: mirror:cpan:authors/id/A/AN/ANDREMAR/WWW-Curl-Simple-%v.tar.gz
 Source-MD5: f4cda6f068cc11618324479c2b4e47b6
 
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 DocFiles: Changes README

Index: want-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/want-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- want-pm.info25 Aug 2011 13:12:55 -  1.1
+++ want-pm.info2 Jul 2012 03:26:32 -   1.2
@@ -3,8 +3,8 @@
 Version: 0.18
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
-Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
+Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 Description: Perl Module - generalisation of wantarray
 License: Artistic/GPL
 Maintainer: Christian Schaffner 

Index: unicode-map8-pm.info
==

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods text-csv-xs-pm.info, 1.1, 1.2

2012-07-01 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1165

Modified Files:
text-csv-xs-pm.info 
Log Message:
latest version (sync from 10.4 tree)


Index: text-csv-xs-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/text-csv-xs-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- text-csv-xs-pm.info 25 Aug 2011 16:48:37 -  1.1
+++ text-csv-xs-pm.info 2 Jul 2012 02:53:22 -   1.2
@@ -1,6 +1,6 @@
 Info4: <<
 Package: text-csv-xs-pm%type_pkg[perl]
-Version: 0.73
+Version: 0.86
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
 Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
@@ -11,12 +11,11 @@
 
 Depends: perl%type_pkg[perl]-core
 BuildDepends: <<
-   fink (>= 0.29.7-1),
-   test-simple-pm%type_pkg[perl]
+   fink (>= 0.29.7-1)
 <<
 
 Source: mirror:cpan:modules/by-module/Text/Text-CSV_XS-%v.tgz
-Source-MD5: e048b3c4eb6ff2dd9dc4ae67be358ca4
+Source-MD5: 4f21293f85fea370ab121606dd0f17d9
 
 UseMaxBuildJobs: true
 


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods datetime-format-w3cdtf-pm.info, 1.1, 1.2 html-tagcloud-centred-pm.info, 1.1, 1.2 http-body-pm.info, 1.1, 1.2 http-dav-pm.info, 1.1, 1.2 http-request

2012-07-01 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv5274

Modified Files:
datetime-format-w3cdtf-pm.info html-tagcloud-centred-pm.info 
http-body-pm.info http-dav-pm.info http-request-ascgi-pm.info 
perlio-via-bzip2-pm.info podtohtml-pm.info 
proc-processtable-pm.info smart-comments-pm.info 
socket-getaddrinfo-pm.info solr-pm.info template-timer-pm.info 
test-deep-pm.info test-fatal-pm.info test-manifest-pm.info 
test-numeric-pm.info test-output-pm.info test-use-ok-pm.info 
Log Message:
widen distribution, add variant


Index: html-tagcloud-centred-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/html-tagcloud-centred-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- html-tagcloud-centred-pm.info   25 Aug 2011 14:47:33 -  1.1
+++ html-tagcloud-centred-pm.info   1 Jul 2012 21:36:32 -   1.2
@@ -2,8 +2,7 @@
 Package: html-tagcloud-centred-pm%type_pkg[perl]
 Version: 10
 Revision: 1
-Distribution: (%type_pkg[perl] = 5123) 10.7
-Type: perl (5.12.3)
+Type: perl (5.12.3 5.12.4)
 
 Source: mirror:cpan:authors/id/L/LG/LGODDARD/HTML-TagCloud-Centred-%v.tar.gz
 Source-MD5: 28b6f00b610b729626ce90f85565b4d4

Index: socket-getaddrinfo-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/socket-getaddrinfo-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- socket-getaddrinfo-pm.info  30 Jul 2011 02:11:09 -  1.1
+++ socket-getaddrinfo-pm.info  1 Jul 2012 21:36:33 -   1.2
@@ -2,7 +2,7 @@
 Package: socket-getaddrinfo-pm%type_pkg[perl]
 Version: 0.21
 Revision: 2
-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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Getaddrinfo and getnameinfo functions
 Maintainer: Daniel Johnson 
@@ -11,7 +11,7 @@
 Source: mirror:cpan:authors/id/P/PE/PEVANS/Socket-GetAddrInfo-%v.tar.gz
 Source-MD5: ec28c0139f5694ca982f392c7c699128
 
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 
 DocFiles: Changes LICENSE README
 

Index: test-output-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/test-output-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- test-output-pm.info 30 Jul 2011 02:49:51 -  1.1
+++ test-output-pm.info 1 Jul 2012 21:36:33 -   1.2
@@ -3,9 +3,9 @@
 Version: 0.16
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] 
=ds/test-output-pm.info,v 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, 
(%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 
10.8`JGdÿxt~+p@Gdÿ"aW}+~W}+ðIGdÿð`W}+/JGdÿÀØ~+óhW}+Ø~+ØØ~+¨

Ø~+€ŠX}+xt~+p@Gdÿ@?Gdÿë}W}+à!à!ðIGdÿ`JGdÿÈÝS~+PAGdÿ"aW}+~W}+ðIGdÿð`W}+/JGdÿ
 
JGdÿJGdÿ{x}+Œp˜`JGdÿóhW}+€ŠX}+PAGdÿ
 
@Gdÿë}W}+GHIJKMNOPðIGdÿ`JGdÿH•*~+ðBGdÿ"aW}+~W}+ðIGdÿ0Ø~+óhW}+
 t~+ É~+Ø~+ØØ~+¨ 
Ø~+€ŠX}+H•*~+ðBGdÿ0AGdÿë}W}+8•*~+ðBGdÿ`AGdÿë}W}+(•*~+ðBGdÿAGdÿë}W}+•*~+ðBGdÿÀAGdÿë}W}+
  ¨Ø~+óhW}+¨
Ø~+@?@BDðIGdÿ`JGdÿàÐ}+`JGdÿóhW}+ètx}+ÀBGdÿ

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods test-numeric-pm.info, 1.1, 1.2

2012-07-01 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv5180

Modified Files:
test-numeric-pm.info 
Log Message:
latest version, synced from the 10.4 tree


Index: test-numeric-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/test-numeric-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- test-numeric-pm.info25 Aug 2011 13:12:55 -  1.1
+++ test-numeric-pm.info1 Jul 2012 21:31:45 -   1.2
@@ -1,7 +1,7 @@
 Info2: <<
 Package: test-numeric-pm%type_pkg[perl]
 Version: 0.3
-Revision: 2
+Revision: 3
 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] = 5100) 10.5, (%type_pkg[perl] = 
5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6
 Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
@@ -13,6 +13,7 @@
 # Optional dependency Test-inline removed, as it doesn't seem to work
 #   here, nor do I see how it adds value to this pm
 #Depends: test-inline-pm%type_pkg[perl]
+Depends: perl%type_pkg[perl]-core
 BuildDepends: module-build-pm%type_pkg[perl], test-builder-tester-pm, fink (>= 
0.30.2)
 
 # Unpack Phase.


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods datetime-calendar-mayan-pm.info, 1.1, 1.2 datetime-format-builder-pm.info, 1.2, 1.3 datetime-format-mail-pm.info, 1.1, 1.2 datetime-format-mysql-pm.

2012-07-01 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1998

Modified Files:
datetime-calendar-mayan-pm.info 
datetime-format-builder-pm.info datetime-format-mail-pm.info 
datetime-format-mysql-pm.info datetime-format-oracle-pm.info 
datetime-format-pg-pm.info datetime-format-strptime-pm.info 
dbm-deep-pm.info html-form-pm.info html-format-pm.info 
html-html5-parser-pm.info http-tiny-pm.info pathtools-pm.info 
perlio-gzip-pm.info rose-conf-pm.info rose-datetime-pm.info 
rose-db-object-pm.info rose-db-pm.info 
rose-html-objects-pm.info rose-object-pm.info rose-pm.info 
rose-uri-pm.info rrd-pm.info shout2-pm.info 
sql-reservedwords-pm.info svn-simple-pm.info template-pm.info 
Log Message:
widen distribution, add variant


Index: dbm-deep-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/dbm-deep-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- dbm-deep-pm.info1 Apr 2012 00:35:58 -   1.2
+++ dbm-deep-pm.info1 Jul 2012 15:54:50 -   1.3
@@ -2,7 +2,7 @@
 Package: dbm-deep-pm%type_pkg[perl]
 Version: 2.0005
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Pure perl multi-level hash/array DBM
 DescDetail: <<
@@ -29,7 +29,7 @@
fi
 <<
 
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 Depends: <<

Index: datetime-format-builder-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/datetime-format-builder-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- datetime-format-builder-pm.info 16 Jan 2012 04:33:02 -  1.2
+++ datetime-format-builder-pm.info 1 Jul 2012 15:54:50 -   1.3
@@ -3,9 +3,9 @@
 Version: 0.80
 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, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Create DateTime parser classes and objects
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Benjamin Reed 
 

Index: datetime-format-mysql-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/datetime-format-mysql-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- datetime-format-mysql-pm.info   8 Jan 2012 17:34:49 -   1.1
+++ datetime-format-mysql-pm.info   1 Jul 2012 15:54:50 -   1.2
@@ -3,9 +3,9 @@
 Version: 0.04
 Revision: 1023
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Descri

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods bit-vector-pm.info, 1.1, 1.2 datetime-calendar-mayan-pm.info, 1.1, 1.2 datetime-format-builder-pm.info, 1.2, 1.3 datetime-format-mail-pm.info, 1.1,

2012-07-01 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1904

Modified Files:
bit-vector-pm.info datetime-calendar-mayan-pm.info 
datetime-format-builder-pm.info datetime-format-mail-pm.info 
datetime-format-mysql-pm.info datetime-format-oracle-pm.info 
datetime-format-pg-pm.info datetime-format-strptime-pm.info 
dbm-deep-pm.info html-form-pm.info html-format-pm.info 
html-html5-parser-pm.info http-tiny-pm.info pathtools-pm.info 
perlio-gzip-pm.info pilot-link-pm.info rose-conf-pm.info 
rose-datetime-pm.info rose-db-object-pm.info rose-db-pm.info 
rose-html-objects-pm.info rose-object-pm.info rose-pm.info 
rose-uri-pm.info rrd-pm.info shout2-pm.info 
sql-reservedwords-pm.info svn-simple-pm.info template-pm.info 
Log Message:
widen distribution, add variant


Index: dbm-deep-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/dbm-deep-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- dbm-deep-pm.info1 Apr 2012 00:35:49 -   1.2
+++ dbm-deep-pm.info1 Jul 2012 15:53:29 -   1.3
@@ -2,7 +2,7 @@
 Package: dbm-deep-pm%type_pkg[perl]
 Version: 2.0005
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Pure perl multi-level hash/array DBM
 DescDetail: <<
@@ -29,7 +29,7 @@
fi
 <<
 
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 Depends: <<

Index: datetime-format-builder-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/datetime-format-builder-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- datetime-format-builder-pm.info 1 Jul 2012 14:56:37 -   1.2
+++ datetime-format-builder-pm.info 1 Jul 2012 15:53:29 -   1.3
@@ -3,9 +3,9 @@
 Version: 0.80
 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, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Create DateTime parser classes and objects
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Benjamin Reed 
 

Index: datetime-format-mysql-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/datetime-format-mysql-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- datetime-format-mysql-pm.info   30 Jul 2011 02:49:51 -  1.1
+++ datetime-format-mysql-pm.info   1 Jul 2012 15:53:29 -   1.2
@@ -3,9 +3,9 @@
 Version: 0.04
 Revision: 1023
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods html-format-pm.info, 1.1, 1.2

2012-07-01 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1653

Modified Files:
html-format-pm.info 
Log Message:
latest version, sync from 10.4 tree


Index: html-format-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/html-format-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- html-format-pm.info 7 Aug 2011 13:35:55 -   1.1
+++ html-format-pm.info 1 Jul 2012 15:33:50 -   1.2
@@ -1,27 +1,34 @@
 Info2: <<
 Package: html-format-pm%type_pkg[perl]
-Version: 2.04
-Revision: 4
+Version: 2.10
+Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
 Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
 Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
 Description: Perl module to format HTML
-License: Artistic
+License: Artistic/GPL
 Maintainer: Christian Schaffner 
 
 # Dependencies:
 Depends: perl%type_pkg[perl]-core, html-tree-pm%type_pkg[perl], font-afm-pm
-BuildDepends: fink (>= 0.20.1-1)
+BuildDepends: <<
+   file-slurp-pm,
+   fink (>= 0.30.2),
+   module-build-pm%type_pkg[perl],
+   test-simple-pm%type_pkg[perl] (>= 0.96-1)
+<<
 Conflicts: %N-man
 Replaces: %N-man
 
 # Unpack Phase:
-Source: mirror:cpan:authors/id/S/SB/SBURKE/HTML-Format-%v.tar.gz
-Source-MD5: 2d287392b77c959f06397371116c2d7e
+Source: mirror:cpan:authors/id/N/NI/NIGELM/HTML-Format-%v.tar.gz
+Source-MD5: 34831ec506eaa8a7ad5da698224cf58d
+
+DefaultScript: ModuleBuild
 
 # Install Phase:
 UpdatePOD: True
-DocFiles: Changes MANIFEST README
+DocFiles: Changes LICENSE README
 InstallScript: <<
   %{default_script}
   mv %i/share/man %i/lib/perl5/%type_raw[perl]


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods module-build-pm-10.8.info, NONE, 1.1

2012-07-01 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv32659

Added Files:
module-build-pm-10.8.info 
Log Message:
module-build-pm for 10.8


--- NEW FILE: module-build-pm-10.8.info ---
Package: module-build-pm
Version: 0.36.24
Revision: 501
Epoch: 1
Distribution: 10.8
Depends: system-perl5124, %n5124 (>= %e:%v-1)
Type: bundle
Description: Module::Build for /usr/bin/perl
DescDetail: <<
Use BuildDepends:module-build-pm for packages that do not
otherwise need to be perl-version varianted so that they do
not need to be perl-version varianted on account of this build
dependency.

For packages that *are* perl-version varianted, use
BuildDepends:module-build-pmXXX for the appropriate perlXXX.
<<
License: Artistic
Maintainer: Fink Core Group 
Homepage: http://search.cpan.org/dist/Module-Build/


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods datetime-format-builder-pm.info, 1.1, 1.2

2012-07-01 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv30356

Modified Files:
datetime-format-builder-pm.info 
Log Message:
forwardport InfoTest


Index: datetime-format-builder-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/datetime-format-builder-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- datetime-format-builder-pm.info 30 Jul 2011 02:49:51 -  1.1
+++ datetime-format-builder-pm.info 1 Jul 2012 14:56:37 -   1.2
@@ -35,6 +35,13 @@
 UseMaxBuildJobs: true
 DefaultScript: ModuleBuild
 
+InfoTest: <<
+   TestDepends: <<
+   devel-cycle-pm,
+   test-memory-cycle-pm%type_pkg[perl]
+   <<
+<<
+
 InstallScript: <<
 %{default_script}
 mv %i/share/man %i/lib/perl5/%type_raw[perl]


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods convert-tnef-pm.info, 1.1, 1.2 crypt-openssl-bignum-pm.info, 1.1, 1.2 crypt-openssl-random-pm.info, 1.1, 1.2 crypt-openssl-rsa-pm.info, 1.1, 1.2 cur

2012-07-01 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv29789

Modified Files:
convert-tnef-pm.info crypt-openssl-bignum-pm.info 
crypt-openssl-random-pm.info crypt-openssl-rsa-pm.info 
curses-pm.info curses-ui-pm.info data-messagepack-pm.info 
db-file-pm.info device-serialport-pm.info digest-pm.info 
html-encoding-pm.info mac-propertylist-sax-pm.info 
namespace-autoclean-pm.info net-delicious-pm.info 
net-httpserver-pm.info net-idn-nameprep-pm.info 
net-ldap-pm.info net-server-pm.info net-ssh2-pm.info 
object-signature-pm.info unicode-stringprep-pm.info 
uri-find-pm.info uri-find-rule-pm.info xml-sax-expat-pm.info 
xml-simple-pm.info 
Log Message:
widen distribution, add variant


Index: crypt-openssl-random-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/crypt-openssl-random-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- crypt-openssl-random-pm.info8 Jan 2012 08:59:01 -   1.1
+++ crypt-openssl-random-pm.info1 Jul 2012 14:31:42 -   1.2
@@ -2,14 +2,15 @@
 Package: crypt-openssl-random-pm%type_pkg[perl]
 Version: 0.04
 Revision: 1
-Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 Distribution: <<
(%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4,
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5,
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5,
(%type_pkg[perl] = 588) 10.6,
(%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6,
-   (%type_pkg[perl] = 5123) 10.7
+   (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 5123) 10.8, 
+   (%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 <<
 Depends: perl%type_pkg[perl]-core
 BuildDepends: fink (>= 0.29.0-1), perl%type_pkg[perl]-core, system-openssl-dev

Index: object-signature-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/object-signature-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- object-signature-pm.info8 Jan 2012 09:40:44 -   1.1
+++ object-signature-pm.info1 Jul 2012 14:31:42 -   1.2
@@ -3,9 +3,9 @@
 Version: 1.05
 Revision: 1021
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Generate cryptographic signatures for objects
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Benjamin Reed 
 

Index: data-messagepack-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/data-messagepack-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- data-messagepack-pm.info16 Mar 2012 20:33:17 -  1.1
+++ data-messagepack-pm.info1 Jul 2012 14:31:42 -   1.2
@@ -2,7 +2,7 @@
 Package: data-messagepack-pm%type_pkg[perl]
 Version: 0.39
 Revision: 1
-Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 588) 10.5, (%type_pkg[perl] = 588) 10.6
+Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: MessagePack serialising/deserialising
 Maintainer: Daniel Johnson 
@@ -11,7 +11,7 @@
 Source: mirror:cpan:authors/id/G/GF/GFUJI/Data-MessagePack-%v.tar.gz
 Source-MD5: 363dd7a54f43e04ef8cccd6927841c6e
 
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 Depends: <<

Index: digest-pm.info
===
RCS file: 
/c

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods convert-asn1-pm.info, 1.2, 1.3 convert-tnef-pm.info, 1.1, 1.2 crypt-openssl-bignum-pm.info, 1.1, 1.2 crypt-openssl-random-pm.info, 1.1, 1.2 crypt-op

2012-07-01 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv29715

Modified Files:
convert-asn1-pm.info convert-tnef-pm.info 
crypt-openssl-bignum-pm.info crypt-openssl-random-pm.info 
crypt-openssl-rsa-pm.info curses-pm.info curses-ui-pm.info 
data-messagepack-pm.info db-file-pm.info 
device-serialport-pm.info digest-pm.info html-encoding-pm.info 
log-dispatch-pm.info mac-propertylist-sax-pm.info 
namespace-autoclean-pm.info net-delicious-pm.info 
net-httpserver-pm.info net-idn-nameprep-pm.info 
net-ldap-pm.info net-server-pm.info net-ssh2-pm.info 
object-signature-pm.info unicode-stringprep-pm.info 
uri-find-pm.info uri-find-rule-pm.info xml-sax-expat-pm.info 
xml-simple-pm.info 
Log Message:
widen distribution, add variant


Index: crypt-openssl-random-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/crypt-openssl-random-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- crypt-openssl-random-pm.info24 Aug 2011 22:14:09 -  1.1
+++ crypt-openssl-random-pm.info1 Jul 2012 14:31:01 -   1.2
@@ -2,14 +2,15 @@
 Package: crypt-openssl-random-pm%type_pkg[perl]
 Version: 0.04
 Revision: 1
-Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 Distribution: <<
(%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4,
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5,
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5,
(%type_pkg[perl] = 588) 10.6,
(%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6,
-   (%type_pkg[perl] = 5123) 10.7
+   (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 5123) 10.8, 
+   (%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 <<
 Depends: perl%type_pkg[perl]-core
 BuildDepends: fink (>= 0.29.0-1), perl%type_pkg[perl]-core, system-openssl-dev

Index: object-signature-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/object-signature-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- object-signature-pm.info26 Aug 2011 15:25:26 -  1.1
+++ object-signature-pm.info1 Jul 2012 14:31:01 -   1.2
@@ -3,9 +3,9 @@
 Version: 1.05
 Revision: 1021
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Generate cryptographic signatures for objects
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Benjamin Reed 
 

Index: digest-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/digest-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- digest-pm.info  25 Aug 2011 13:27:40 -  1.1
+++ digest-pm.info  1 Jul 2012 14:31:01 -   1.2
@@ -3,9 +3,9 @@
 Version: 1.16
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Perl modules that calculate message digests
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 L

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods namespace-autoclean-pm.info, 1.1, 1.2

2012-07-01 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv22132

Modified Files:
namespace-autoclean-pm.info 
Log Message:
new version (sync from 10.4 tree)


Index: namespace-autoclean-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/namespace-autoclean-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- namespace-autoclean-pm.info 26 Aug 2011 15:56:14 -  1.1
+++ namespace-autoclean-pm.info 1 Jul 2012 13:47:31 -   1.2
@@ -1,6 +1,6 @@
 Info3: <<
 Package: namespace-autoclean-pm%type_pkg[perl]
-Version: 0.12
+Version: 0.13
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
 Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
@@ -20,7 +20,7 @@
 BuildDepends: fink (>= 0.29.7-1)
 
 Source: mirror:cpan:modules/by-module/namespace/namespace-autoclean-%v.tar.gz
-Source-MD5: 6c433fdcb070eec03e20b1e2d34bbf12
+Source-MD5: ec5527b420ec45d3f930c6345ec23926
 
 UseMaxBuildJobs: true
 


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods cgi-simple-pm.info, 1.1, 1.2 class-load-pm.info, 1.4, 1.5 class-load-xs-pm.info, 1.2, 1.3 cocoa-growl-pm.info, 1.2, 1.3 compress-bzip2-pm.info, 1.1,

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv4063

Modified Files:
cgi-simple-pm.info class-load-pm.info class-load-xs-pm.info 
cocoa-growl-pm.info compress-bzip2-pm.info 
devel-ppport-pm.info dist-checkconflicts-pm.info 
list-moreutils-pm.info module-implementation-pm.info 
module-runtime-pm.info package-deprecationmanager-pm.info 
package-stash-pm.info package-stash-xs-pm.info 
xsloader-pm.info 
Log Message:
widen distribution, add variant


Index: devel-ppport-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/devel-ppport-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- devel-ppport-pm.info22 Oct 2011 18:37:45 -  1.4
+++ devel-ppport-pm.info1 Jul 2012 02:39:54 -   1.5
@@ -3,9 +3,9 @@
 Version: 3.19
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Perl/Pollution/Portability
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Benjamin Reed 
 

Index: cocoa-growl-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/cocoa-growl-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- cocoa-growl-pm.info 17 Jul 2011 02:43:03 -  1.2
+++ cocoa-growl-pm.info 1 Jul 2012 02:39:54 -   1.3
@@ -2,7 +2,7 @@
 Package: cocoa-growl-pm%type_pkg[perl]
 Version: 0.05
 Revision: 1
-Distribution: (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, 
(%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] 
= 5123) 10.7
+Distribution: (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, 
(%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Growl module using Growl.framework
 Maintainer: Daniel Johnson 
@@ -11,7 +11,7 @@
 Source: mirror:cpan:authors/id/T/TY/TYPESTER/Cocoa-Growl-%v.tar.gz
 Source-MD5: 2d97562b838a4ec89dfc17c193aeedba
 
-Type: perl (5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 DocFiles: Changes LICENSE README

Index: package-stash-xs-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/package-stash-xs-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- package-stash-xs-pm.info8 Jan 2012 09:25:45 -   1.1
+++ package-stash-xs-pm.info1 Jul 2012 02:39:54 -   1.2
@@ -2,7 +2,7 @@
 Package: package-stash-xs-pm%type_pkg[perl]
 Version: 0.25
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Faster implementation of Package::Stash
 Maintainer: Daniel Johnson 
@@ -14,7 +14,7 @@
 PatchFile: %{ni}.patch
 PatchFile-MD5: 61c43eabae4f0f8ad7dfeda12386d44a
 
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 Depends: <<

Index: class-load-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/class-load-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- class-load-pm.info  19 Feb 

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods cgi-simple-pm.info, 1.1, 1.2 class-load-pm.info, 1.4, 1.5 class-load-xs-pm.info, 1.2, 1.3 cocoa-growl-pm.info, 1.1, 1.2 compress-bzip2-pm.info, 1.1,

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv3957

Modified Files:
cgi-simple-pm.info class-load-pm.info class-load-xs-pm.info 
cocoa-growl-pm.info compress-bzip2-pm.info 
devel-ppport-pm.info dist-checkconflicts-pm.info 
file-sharedir-pm.info list-moreutils-pm.info 
module-implementation-pm.info module-runtime-pm.info 
package-deprecationmanager-pm.info package-stash-pm.info 
package-stash-xs-pm.info params-classify-pm.info 
xsloader-pm.info 
Log Message:
widen distribution, add variant


Index: devel-ppport-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/devel-ppport-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- devel-ppport-pm.info26 Jul 2011 13:08:58 -  1.1
+++ devel-ppport-pm.info1 Jul 2012 02:39:03 -   1.2
@@ -3,9 +3,9 @@
 Version: 3.19
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Perl/Pollution/Portability
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Benjamin Reed 
 

Index: cocoa-growl-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/cocoa-growl-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- cocoa-growl-pm.info 26 Jul 2011 13:08:58 -  1.1
+++ cocoa-growl-pm.info 1 Jul 2012 02:39:03 -   1.2
@@ -2,7 +2,7 @@
 Package: cocoa-growl-pm%type_pkg[perl]
 Version: 0.05
 Revision: 1
-Distribution: (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, 
(%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] 
= 5123) 10.7
+Distribution: (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, 
(%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Growl module using Growl.framework
 Maintainer: Daniel Johnson 
@@ -11,7 +11,7 @@
 Source: mirror:cpan:authors/id/T/TY/TYPESTER/Cocoa-Growl-%v.tar.gz
 Source-MD5: 2d97562b838a4ec89dfc17c193aeedba
 
-Type: perl (5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 DocFiles: Changes LICENSE README

Index: package-stash-xs-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/package-stash-xs-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- package-stash-xs-pm.info6 Sep 2011 21:43:35 -   1.3
+++ package-stash-xs-pm.info1 Jul 2012 02:39:03 -   1.4
@@ -2,7 +2,7 @@
 Package: package-stash-xs-pm%type_pkg[perl]
 Version: 0.25
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Faster implementation of Package::Stash
 Maintainer: Daniel Johnson 
@@ -14,7 +14,7 @@
 PatchFile: %{ni}.patch
 PatchFile-MD5: 61c43eabae4f0f8ad7dfeda12386d44a
 
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 Depends: <<

Index: class-load-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/class-load-pm.info,v
retrieving revision 1.4
retrieving revision 1.5

[cvs] dists/10.7/stable/main/finkinfo/crypto crypt-blowfish-pm.info, 1.1, 1.2

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv28414

Modified Files:
crypt-blowfish-pm.info 
Log Message:
add variant


Index: crypt-blowfish-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/crypto/crypt-blowfish-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- crypt-blowfish-pm.info  24 Aug 2011 19:58:29 -  1.1
+++ crypt-blowfish-pm.info  1 Jul 2012 01:49:23 -   1.2
@@ -2,7 +2,7 @@
 Package: crypt-blowfish-pm%type_pkg[perl]
 Version: 2.12
 Revision: 1
-Type: perl (5.12.3)
+Type: perl (5.12.3 5.12.4)
 Description: XS implementation of Blowfish cryptography
 License: BSD
 Homepage: http://search.cpan.org/dist/Crypt-Blowfish/


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/sci xraylib-pm.info,1.5,1.6

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv28314

Modified Files:
xraylib-pm.info 
Log Message:
add variant


Index: xraylib-pm.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/xraylib-pm.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- xraylib-pm.info 29 Jan 2012 21:34:16 -  1.5
+++ xraylib-pm.info 1 Jul 2012 01:43:34 -   1.6
@@ -2,7 +2,7 @@
 Package: xraylib-pm%type_pkg[perl]
 Version: 2.15.0
 Revision: 3
-Type: perl (5.12.3)
+Type: perl (5.12.3 5.12.4)
 
 Description:  X-ray fluorescence library (Perl interface)
 DescDetail: <<


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods email-valid-pm.info, 1.13, 1.14 locale-textdomain-pm.info, 1.9, 1.10 net-smtp-ssl-pm.info, 1.3, 1.4

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv23986

Modified Files:
email-valid-pm.info locale-textdomain-pm.info 
net-smtp-ssl-pm.info 
Log Message:
widen distribution, add variant


Index: email-valid-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/email-valid-pm.info,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- email-valid-pm.info 22 Oct 2011 18:37:45 -  1.13
+++ email-valid-pm.info 1 Jul 2012 00:31:20 -   1.14
@@ -3,9 +3,9 @@
 Version: 0.182
 Revision: 11
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Determine if an email address is well-formed
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Benjamin Reed 
 

Index: net-smtp-ssl-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/net-smtp-ssl-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- net-smtp-ssl-pm.info21 Jul 2011 21:31:56 -  1.3
+++ net-smtp-ssl-pm.info1 Jul 2012 00:31:20 -   1.4
@@ -2,8 +2,8 @@
 Package: net-smtp-ssl-pm%type_pkg[perl]
 Version: 1.01
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 
 Description: SSL support for Net::SMTP
 DescDetail: <<

Index: locale-textdomain-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/locale-textdomain-pm.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- locale-textdomain-pm.info   20 Mar 2012 13:56:30 -  1.9
+++ locale-textdomain-pm.info   1 Jul 2012 00:31:20 -   1.10
@@ -3,13 +3,13 @@
 Version: 1.20
 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, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 
5123) 10.8, (%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 Depends: perl%type_pkg[perl]-core, libgettext8-shlibs, libiconv
 Builddepends: fink (>= 0.24.12), libgettext8-dev, libiconv-dev
 Replaces: libintl-pm%type_pkg[perl]
 Source: mirror:cpan:authors/id/G/GU/GUIDO/libintl-perl-%v.tar.gz
 Source-MD5: cb36f58a7d2e15974f25b35381548b1b
-Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 
 PatchFile: %{ni}.patch
 PatchFile-MD5: 81cabb1a3814d51dc64a7cdd286fe130


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.acc

[cvs] dists/10.4/stable/main/finkinfo/devel svn-swig-pm.info, 1.25, 1.26

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv23952

Modified Files:
svn-swig-pm.info 
Log Message:
widen distribution, add variant


Index: svn-swig-pm.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel/svn-swig-pm.info,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- svn-swig-pm.info25 Apr 2012 00:13:45 -  1.25
+++ svn-swig-pm.info1 Jul 2012 00:30:47 -   1.26
@@ -3,11 +3,11 @@
 Version: 1.6.18
 Revision: 1
 Description: Swig svn Perl %type_raw[perl] bindings
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: BSD
 Maintainer: Daniel Johnson 
 
-Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 
5100) 10.6, (%type_pkg[perl] = 5123) 10.7
+Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 
5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 5123) 10.8, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 
 # Dependencies:
 Depends: perl%type_pkg[perl]-core, %N-shlibs (= %v-%r)


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods email-valid-pm.info, 1.1, 1.2 locale-textdomain-pm.info, 1.1, 1.2 net-smtp-ssl-pm.info, 1.1, 1.2

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv23886

Modified Files:
email-valid-pm.info locale-textdomain-pm.info 
net-smtp-ssl-pm.info 
Log Message:
widen distribution, add variant


Index: email-valid-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/email-valid-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- email-valid-pm.info 28 Jul 2011 02:19:18 -  1.1
+++ email-valid-pm.info 1 Jul 2012 00:29:55 -   1.2
@@ -3,9 +3,9 @@
 Version: 0.182
 Revision: 11
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Determine if an email address is well-formed
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Benjamin Reed 
 

Index: net-smtp-ssl-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/net-smtp-ssl-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- net-smtp-ssl-pm.info28 Jul 2011 02:17:28 -  1.1
+++ net-smtp-ssl-pm.info1 Jul 2012 00:29:55 -   1.2
@@ -2,8 +2,8 @@
 Package: net-smtp-ssl-pm%type_pkg[perl]
 Version: 1.01
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 
 Description: SSL support for Net::SMTP
 DescDetail: <<

Index: locale-textdomain-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/locale-textdomain-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- locale-textdomain-pm.info   20 Mar 2012 13:56:45 -  1.1
+++ locale-textdomain-pm.info   1 Jul 2012 00:29:55 -   1.2
@@ -3,13 +3,13 @@
 Version: 1.20
 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, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 
5123) 10.8, (%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 Depends: perl%type_pkg[perl]-core, libgettext8-shlibs, libiconv
 Builddepends: fink (>= 0.24.12), libgettext8-dev, libiconv-dev
 Replaces: libintl-pm%type_pkg[perl]
 Source: mirror:cpan:authors/id/G/GU/GUIDO/libintl-perl-%v.tar.gz
 Source-MD5: cb36f58a7d2e15974f25b35381548b1b
-Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 
 PatchFile: %{ni}.patch
 PatchFile-MD5: 81cabb1a3814d51dc64a7cdd286fe130


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.c

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

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv23856

Modified Files:
svn-swig-pm.info 
Log Message:
widen distribution, add variant


Index: svn-swig-pm.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel/svn-swig-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- svn-swig-pm.info25 Apr 2012 00:13:33 -  1.4
+++ svn-swig-pm.info1 Jul 2012 00:28:47 -   1.5
@@ -3,11 +3,11 @@
 Version: 1.6.18
 Revision: 1
 Description: Swig svn Perl %type_raw[perl] bindings
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: BSD
 Maintainer: Daniel Johnson 
 
-Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 
5100) 10.6, (%type_pkg[perl] = 5123) 10.7
+Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 
5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 5123) 10.8, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 
 # Dependencies:
 Depends: perl%type_pkg[perl]-core, %N-shlibs (= %v-%r)
@@ -19,6 +19,7 @@
fink (>= 0.24.12-1),
gettext-bin,
gettext-tools,
+   io-string-pm,
libgettext8-dev,
libiconv-dev (>= 1.9.1-11),
libserf0 (>= 0.7.2-1),


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods berkeleydb-pm.info, 1.13, 1.14 class-inspector-pm.info, 1.4, 1.5 crypt-ssleay-pm.info, 1.10, 1.11 data-uuid-pm.info, 1.8, 1.9 encode-locale-pm.info,

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv18303

Modified Files:
berkeleydb-pm.info class-inspector-pm.info 
crypt-ssleay-pm.info data-uuid-pm.info encode-locale-pm.info 
encode-pm.info file-homedir-pm.info file-listing-pm.info 
html-parser-pm.info html-tidy-pm.info html-tree-pm.info 
http-cookies-pm.info http-daemon-pm.info http-date-pm.info 
http-message-pm.info http-negotiate-pm.info 
io-socket-ssl-pm.info libwww-pm.info lwp-mediatypes-pm.info 
mailtools-pm.info mime-lite-pm.info mime-tools-pm.info 
mime-types-pm.info net-http-pm.info net-idn-encode-pm.info 
net-ssleay-pm.info text-iconv-pm.info unicode-map-pm.info 
unicode-normalize-pm.info unicode-string-pm.info uri-pm.info 
www-robotrules-pm.info xml-sax-pm.info xml-twig-pm.info 
Log Message:
widen distribution, add variants


Index: mailtools-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/mailtools-pm.info,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- mailtools-pm.info   22 Oct 2011 18:37:45 -  1.13
+++ mailtools-pm.info   30 Jun 2012 23:57:09 -  1.14
@@ -3,9 +3,9 @@
 Version: 2.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, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Perl modules related to mail applications
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Benjamin Reed 
 

Index: unicode-normalize-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/unicode-normalize-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- unicode-normalize-pm.info   12 Mar 2012 19:58:01 -  1.2
+++ unicode-normalize-pm.info   30 Jun 2012 23:57:09 -  1.3
@@ -2,8 +2,8 @@
 Package: unicode-normalize-pm%type_pkg[perl]
 Version: 1.14
 Revision: 1
-Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 588) 10.5, (%type_pkg[perl] = 588) 10.6
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 
 Description: Unicode Normalization Forms
 License: Artistic/GPL

Index: http-date-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/http-date-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- http-date-pm.info   18 Nov 2011 20:38:06 -  1.1
+++ http-date-pm.info   30 Jun 2012 23:57:09 -  1.2
@@ -2,7 +2,7 @@
 Package: http-date-pm%type_pkg[perl]
 Version: 6.00
 Revision: 1
-Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, 
(%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6
+Distribution: (%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, 
(%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 Description: Date conversion routines
 License: Artistic/GPL
 Maintainer: Daniel Johnson 
@@ -15,7 +15,7 @@
 Source: mirror:cpan:authors/id/G/GA/GAAS/HTTP-Date-%v.tar.gz
 Source-MD5: 41b875ac89c14d7f66515b52cdd12acd
 
-Type: perl (5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.8 5.10.0 5.12.3 5.12.4)
 
 UpdatePOD: true
 DocFiles: Changes README

Index: lwp-mediatypes-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinf

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods rec-descent-pm-10.8.info, NONE, 1.1

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv15553

Added Files:
rec-descent-pm-10.8.info 
Log Message:
version for [redacted]


--- NEW FILE: rec-descent-pm-10.8.info ---
Info2: <<
Package: rec-descent-pm
Version: 1.96.7006
Revision: 100
Source: mirror:cpan:authors/id/J/JT/JTBRAUN/Parse-RecDescent-1.967006.tar.gz
Source-MD5: d672da11944ffe0884471b975e47cd2d
Distribution: 10.8
Type: perl, systemperl (5.12.4)
BuildDepends: <<
system-perl%type_pkg[systemperl],
extutils-makemaker-pm%type_pkg[systemperl] (>= 6.62)
<<

Depends: text-balanced-pm
PatchScript: perl -ni -e "print unless /'version'/" Makefile.PL
UpdatePOD: true
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 
Homepage: http://search.cpan.org/dist/Parse-RecDescent
<<


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods data-uuid-pm.info, 1.1, 1.2

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv11388

Modified Files:
data-uuid-pm.info 
Log Message:
forward-port InfoTest


Index: data-uuid-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/data-uuid-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- data-uuid-pm.info   28 Jul 2011 01:44:37 -  1.1
+++ data-uuid-pm.info   30 Jun 2012 22:53:57 -  1.2
@@ -24,6 +24,9 @@
  export PERL_MM_USE_DEFAULT=1 && %{default_script}
 <<
 
+InfoTest: <<
+   TestDepends: test-harness-pm%type_pkg[perl] (>= 3.23-1)
+<<
 # Install Phase:
 UpdatePOD: True
 DocFiles: Changes MANIFEST README LICENSE


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods io-socket-ssl-pm.info, 1.17, 1.18

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv7494

Modified Files:
io-socket-ssl-pm.info 
Log Message:
forward-port InfoTest


Index: io-socket-ssl-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/io-socket-ssl-pm.info,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- io-socket-ssl-pm.info   24 Jun 2012 12:07:34 -  1.17
+++ io-socket-ssl-pm.info   30 Jun 2012 22:22:32 -  1.18
@@ -15,6 +15,11 @@
 ###
 DocFiles: Changes README
 ###
+InfoTest: <<
+   TestDepends: <<
+   io-socket-inet6-pm%type_pkg[perl]
+   <<
+<<
 InstallScript: <<
   %{default_script}
   mv %i/share/man %i/lib/perl5/%type_raw[perl]


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods encode-pm.info, 1.3, 1.4

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv3125

Modified Files:
encode-pm.info 
Log Message:
forward-port TestDepends


Index: encode-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/encode-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- encode-pm.info  9 Aug 2011 17:00:25 -   1.3
+++ encode-pm.info  30 Jun 2012 21:52:37 -  1.4
@@ -20,6 +20,7 @@
 Source-MD5: a18f8021a2bbb9b6ae0a25c26cc14410
 
 InfoTest: <<
+   TestDepends: test-harness-pm%type_pkg[perl] (>= 3.23-1)
TestScript: <<
#!/bin/sh -ex
if dpkg --compare-versions "%type_raw[perl]" ">=" "5.10.0" && [ 
"%m" != "powerpc" ]; then


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods file-which-pm.info, 1.3, 1.4

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1735

Modified Files:
file-which-pm.info 
Log Message:
add variant


Index: file-which-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/file-which-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- file-which-pm.info  11 Sep 2011 21:24:23 -  1.3
+++ file-which-pm.info  30 Jun 2012 21:44:25 -  1.4
@@ -7,7 +7,7 @@
 
 # remember to update Conflicts/Replaces in SplitOff of this package
 # and in Package:file-which-pm when adding variants here
-Type: perl (5.12.3)
+Type: perl (5.12.3 5.12.4)
 
 BuildDepends: <<
test-script-pm,


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods algorithm-c3-pm.info, 1.4, 1.5 class-c3-pm.info, 1.3, 1.4 class-c3-xs-pm.info, 1.3, 1.4 module-build-pm.info, 1.13, 1.14 module-metadata-pm.info, 1.

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1418

Modified Files:
algorithm-c3-pm.info class-c3-pm.info class-c3-xs-pm.info 
module-build-pm.info module-metadata-pm.info 
mro-compat-pm.info perl-ostype-pm.info sub-name-pm.info 
term-readkey-pm.info 
Log Message:
widen distribution, add variant


Index: mro-compat-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/mro-compat-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- mro-compat-pm.info  21 Jul 2011 21:31:56 -  1.3
+++ mro-compat-pm.info  30 Jun 2012 21:26:25 -  1.4
@@ -2,8 +2,8 @@
 Package: mro-compat-pm%type_pkg[perl]
 Version: 0.11
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5124) 10.8, (%type_pkg[perl] = 
5123) 10.8, (%type_pkg[perl] = 5124) 10.7
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 ###
 Depends: perl%type_pkg[perl]-core, class-c3-pm%type_pkg[perl] (>= 0.19-1)
 BuildDepends: <<

Index: sub-name-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/sub-name-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- sub-name-pm.info20 Feb 2012 21:46:24 -  1.4
+++ sub-name-pm.info30 Jun 2012 21:26:25 -  1.5
@@ -2,8 +2,8 @@
 Package: sub-name-pm%type_pkg[perl]
 Version: 0.05
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 ###
 Depends: perl%type_pkg[perl]-core
 BuildDepends: perl%type_pkg[perl]-core

Index: class-c3-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/class-c3-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- class-c3-pm.info21 Jul 2011 21:31:56 -  1.3
+++ class-c3-pm.info30 Jun 2012 21:26:25 -  1.4
@@ -2,8 +2,8 @@
 Package: class-c3-pm%type_pkg[perl]
 Version: 0.23
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5124) 10.8, (%type_pkg[perl] = 
5123) 10.8, (%type_pkg[perl] = 5124) 10.7
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 ###
 Depends: <<
   perl%type_pkg[perl]-core, algorithm-c3-pm%type_pkg[perl] (>= 0.06-1),

Index: module-metadata-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/module-metadata-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- module-metadata-pm.info 10 Feb 2012 21:49:52 -  1.2
+++ module-metadata-pm.info 30 Jun 2012 21:26:25 -  1.3
@@ -3,8 +3,8 @@
 Version: 1.09
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) 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, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6
-Type: perl (5.8.1 5.8.6 5.8.8 5.10.0 5.12.3)
+Distribution: (%type_pkg[pe

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods algorithm-c3-pm.info, 1.3, 1.4 class-c3-pm.info, 1.2, 1.3 class-c3-xs-pm.info, 1.2, 1.3 module-build-pm.info, 1.2, 1.3 module-metadata-pm.info, 1.6,

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1384

Modified Files:
algorithm-c3-pm.info class-c3-pm.info class-c3-xs-pm.info 
module-build-pm.info module-metadata-pm.info 
mro-compat-pm.info perl-ostype-pm.info term-readkey-pm.info 
Log Message:
widen distribution


Index: mro-compat-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/mro-compat-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- mro-compat-pm.info  30 Jun 2012 04:32:10 -  1.2
+++ mro-compat-pm.info  30 Jun 2012 21:25:44 -  1.3
@@ -2,7 +2,7 @@
 Package: mro-compat-pm%type_pkg[perl]
 Version: 0.11
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5124) 10.8
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5124) 10.8, (%type_pkg[perl] = 
5123) 10.8, (%type_pkg[perl] = 5124) 10.7
 Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 ###
 Depends: perl%type_pkg[perl]-core, class-c3-pm%type_pkg[perl] (>= 0.19-1)

Index: class-c3-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/class-c3-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- class-c3-pm.info30 Jun 2012 04:32:10 -  1.2
+++ class-c3-pm.info30 Jun 2012 21:25:44 -  1.3
@@ -2,7 +2,7 @@
 Package: class-c3-pm%type_pkg[perl]
 Version: 0.23
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5124) 10.8
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5124) 10.8, (%type_pkg[perl] = 
5123) 10.8, (%type_pkg[perl] = 5124) 10.7
 Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 ###
 Depends: <<

Index: module-metadata-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/module-metadata-pm.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- module-metadata-pm.info 30 Jun 2012 04:32:10 -  1.6
+++ module-metadata-pm.info 30 Jun 2012 21:25:44 -  1.7
@@ -3,7 +3,7 @@
 Version: 1.09
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) 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, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 
5124) 10.8 
+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, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 
5124) 10.8 , (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7
 Type: perl (5.8.1 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic/GPL
 Description: Gather package info from perl module files

Index: module-build-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/module-build-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- module-build-pm.info30 Jun 2012 04:32:10 -  1.2
+++ module-build-pm.info30 Jun 2012 21:25:44 -  1.3
@@ -4,7 +4,7 @@
 Revision: 2
 Epoch: 1
 Architecture: (%type_pkg[perl] = 581) 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, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] = 588) 10.4, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 
5124) 10.8
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 586) 10.4, 
(%type_pkg[perl] = 586) 1

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods sub-name-pm.info, 1.3, 1.4

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1250

Modified Files:
sub-name-pm.info 
Log Message:
correct error from previous commit


Index: sub-name-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/sub-name-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- sub-name-pm.info30 Jun 2012 21:10:09 -  1.3
+++ sub-name-pm.info30 Jun 2012 21:15:14 -  1.4
@@ -3,7 +3,7 @@
 Version: 0.05
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 ###
 Depends: perl%type_pkg[perl]-core
 BuildDepends: perl%type_pkg[perl]-core


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods sub-name-pm.info, 1.2, 1.3

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1161

Modified Files:
sub-name-pm.info 
Log Message:
forward-port InfoTest; widen distribution


Index: sub-name-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/sub-name-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- sub-name-pm.info30 Jun 2012 04:32:10 -  1.2
+++ sub-name-pm.info30 Jun 2012 21:10:09 -  1.3
@@ -2,8 +2,8 @@
 Package: sub-name-pm%type_pkg[perl]
 Version: 0.05
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5124) 10.8
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
 ###
 Depends: perl%type_pkg[perl]-core
 BuildDepends: perl%type_pkg[perl]-core
@@ -13,6 +13,9 @@
 ###
 UpdatePOD: true
 ###
+InfoTest: <<
+   TestDepends: test-simple-pm%type_pkg[perl] (>= 0.98-1)
+<<
 InstallScript: <<
   %{default_script}
   mv %i/share/man %i/lib/perl5/%type_raw[perl]


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods async-interrupt-pm.info, 1.1, 1.2 authen-ntlm-pm.info, 1.1, 1.2 authen-pam-pm.info, 1.1, 1.2 authen-sasl-pm.info, 1.1, 1.2 b-hooks-endofscope-pm.inf

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv30421

Modified Files:
async-interrupt-pm.info authen-ntlm-pm.info authen-pam-pm.info 
authen-sasl-pm.info b-hooks-endofscope-pm.info 
data-optlist-pm.info gssapi-pm.info sub-exporter-pm.info 
sub-install-pm.info variable-magic-pm.info 
Log Message:
widen distribution, add variant


Index: authen-sasl-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/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 7 Aug 2011 02:42:04 -   1.1
+++ authen-sasl-pm.info 30 Jun 2012 20:42:55 -  1.2
@@ -2,8 +2,8 @@
 Package: authen-sasl-pm%type_pkg[perl]
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 
 Description: SASL Authentication framework
 DescDetail: <<

Index: sub-exporter-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/sub-exporter-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- sub-exporter-pm.info30 Jun 2012 04:32:10 -  1.3
+++ sub-exporter-pm.info30 Jun 2012 20:42:55 -  1.4
@@ -3,7 +3,7 @@
 Version: 0.982
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5124) 10.8
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Exporter for custom-built routines
 Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic

Index: authen-pam-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/authen-pam-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- authen-pam-pm.info  28 Jul 2011 01:19:06 -  1.1
+++ authen-pam-pm.info  30 Jun 2012 20:42:55 -  1.2
@@ -2,8 +2,8 @@
 Package: authen-pam-pm%type_pkg[perl]
 Version: 0.16
 Revision: 1
-Distribution: (%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, 
(%type_pkg[perl] = 86) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 
10.8=+`ž¹uÿðÔÆ=+Ÿž¹uÿÀ?UÈ=+ó˜ÔÆ=+0UÈ=+Ø4UÈ=+¨9UÈ=+€ºÕÆ=+xDñÇ=+à”¹uÿ°“¹uÿë­ÔÆ=+à!à!`ž¹uÿО¹uÿÈ
ÑÇ=+À•¹uÿ"‘ÔÆ=+®ÔÆ=+`ž¹uÿðÔÆ=+Ÿž¹uÿž¹uÿˆž¹uÿ«õÆ=+Œp˜О¹uÿó˜ÔÆ=+€ºÕÆ=+À•¹uÿ”¹uÿë­ÔÆ=+GHIJKMNOP`ž¹uÿО¹uÿHŧÇ=+`—¹uÿ"‘ÔÆ=+®ÔÆ=+`ž¹uÿ0?UÈ=+ó˜ÔÆ=+PñÇ=+ ù„Ç=+0UÈ=+Ø4UÈ=+¨9UÈ=+€ºÕÆ=+HŧÇ=+`—¹uÿ •¹uÿë­ÔÆ=+8ŧÇ=+`—¹uÿЕ¹uÿë­ÔÆ=+(ŧÇ=+`—¹uÿ–¹uÿë­ÔÆ=+ŧÇ=+`—¹uÿ0–¹uÿë­ÔÆ=+
  
¨>UÈ=+ó˜ÔÆ=+¨9UÈ=+°¹uÿŠH…Ç=+æ—ÔÆ=+Ø4UÈ=+Ж¹uÿyH…Ç=+æ—ÔÆ=+0UÈ=+—¹uÿZH…Ç=+æ—ÔÆ=+Øô„Ç=+PñÇ=+ ù„Ç=+0UÈ=+ØTñÇ=+Ø4UÈ=+¨9UÈ=+€ºÕÆ=+«õÆ=+

[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods archive-ar-pm.info, 1.1, 1.2 test-mockobject-pm.info, 1.1, 1.2 universal-can-pm.info, 1.1, 1.2 universal-isa-pm.info, 1.1, 1.2

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv30039

Modified Files:
archive-ar-pm.info test-mockobject-pm.info 
universal-can-pm.info universal-isa-pm.info 
Log Message:
widen distribution, add variant


Index: archive-ar-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/archive-ar-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- archive-ar-pm.info  8 Jan 2012 08:44:00 -   1.1
+++ archive-ar-pm.info  30 Jun 2012 20:17:46 -  1.2
@@ -2,7 +2,8 @@
 Package: archive-ar-pm%type_pkg[perl]
 Version: 1.14
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
+
 License: Artistic/GPL
 Description: Interface for manipulating ar archives
 Maintainer: Daniel Johnson 
@@ -11,7 +12,7 @@
 Source: mirror:cpan:authors/id/J/JB/JBAZIK/Archive-Ar-%v.tar.gz
 Source-MD5: 33a123dfc299f33e1497b297fdc40b14
 
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 DocFiles: CHANGES

Index: test-mockobject-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/test-mockobject-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- test-mockobject-pm.info 8 Jan 2012 08:44:00 -   1.1
+++ test-mockobject-pm.info 30 Jun 2012 20:17:46 -  1.2
@@ -3,9 +3,9 @@
 Version: 1.09
 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, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Emulate troublesome interfaces
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Benjamin Reed 
 

Index: universal-can-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/universal-can-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- universal-can-pm.info   8 Jan 2012 08:44:00 -   1.1
+++ universal-can-pm.info   30 Jun 2012 20:17:46 -  1.2
@@ -3,9 +3,9 @@
 Version: 1.16
 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, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: UNIVERSAL::can module hack
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Benjamin Reed 
 

Index: universal-isa-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/universal-isa-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- universal-isa-pm.info   2 Jan 2012 21:04:10 -   1.1
+++ universal-isa-pm

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods archive-ar-pm.info, 1.1, 1.2 array-compare-pm.info, 1.1, 1.2 test-mockobject-pm.info, 1.1, 1.2 test-warn-pm.info, 1.2, 1.3 universal-can-pm.info, 1.

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv30001

Modified Files:
archive-ar-pm.info array-compare-pm.info 
test-mockobject-pm.info test-warn-pm.info 
universal-can-pm.info universal-isa-pm.info 
Log Message:
widen distribution, add variant


Index: universal-isa-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/universal-isa-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- universal-isa-pm.info   7 Aug 2011 02:34:51 -   1.1
+++ universal-isa-pm.info   30 Jun 2012 20:17:10 -  1.2
@@ -3,9 +3,9 @@
 Version: 1.03
 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, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: UNIVERSAL::isa module hack
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Benjamin Reed 
 

Index: archive-ar-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/archive-ar-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- archive-ar-pm.info  7 Aug 2011 02:34:51 -   1.1
+++ archive-ar-pm.info  30 Jun 2012 20:17:10 -  1.2
@@ -2,7 +2,8 @@
 Package: archive-ar-pm%type_pkg[perl]
 Version: 1.14
 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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 
5124) 10.7, (%type_pkg[perl] = 5124) 10.8
+
 License: Artistic/GPL
 Description: Interface for manipulating ar archives
 Maintainer: Daniel Johnson 
@@ -11,7 +12,7 @@
 Source: mirror:cpan:authors/id/J/JB/JBAZIK/Archive-Ar-%v.tar.gz
 Source-MD5: 33a123dfc299f33e1497b297fdc40b14
 
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 DocFiles: CHANGES

Index: test-mockobject-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/test-mockobject-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- test-mockobject-pm.info 7 Aug 2011 02:34:51 -   1.1
+++ test-mockobject-pm.info 30 Jun 2012 20:17:10 -  1.2
@@ -3,9 +3,9 @@
 Version: 1.09
 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, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Emulate troublesome interfaces
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Benjamin Reed 
 

Index: universal-can-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/universal-can-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- universal-can-pm.info   7 Aug 2

[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods test-builder-tester-pm.info, 1.4, 1.5

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv29930

Modified Files:
test-builder-tester-pm.info 
Log Message:
widen distribution


Index: test-builder-tester-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/test-builder-tester-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- test-builder-tester-pm.info 5 Oct 2011 03:37:08 -   1.4
+++ test-builder-tester-pm.info 30 Jun 2012 20:13:04 -  1.5
@@ -2,7 +2,7 @@
 Version: 1.02
 Revision: 101
 Type: bundle
-Distribution: 10.5, 10.6, 10.7
+Distribution: 10.5, 10.6, 10.7, 10.8
 Description: Check testsuites built with Test::Builder
 License: Artistic
 Homepage: http://search.cpan.org/dist/Test-Simple/


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods test-builder-tester-pm.info, 1.1, 1.2

2012-06-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv29911

Modified Files:
test-builder-tester-pm.info 
Log Message:
widen distribution


Index: test-builder-tester-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/test-builder-tester-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- test-builder-tester-pm.info 21 Jul 2011 20:51:01 -  1.1
+++ test-builder-tester-pm.info 30 Jun 2012 20:12:26 -  1.2
@@ -2,7 +2,7 @@
 Version: 1.02
 Revision: 101
 Type: bundle
-Distribution: 10.5, 10.6, 10.7
+Distribution: 10.5, 10.6, 10.7, 10.8
 Description: Check testsuites built with Test::Builder
 License: Artistic
 Homepage: http://search.cpan.org/dist/Test-Simple/


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/graphics xfig-10.8.info, NONE, 1.1 xfig.info, 1.1, 1.2

2012-06-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics
In directory vz-cvs-3.sog:/tmp/cvs-serv18330

Modified Files:
xfig.info 
Added Files:
xfig-10.8.info 
Log Message:
temporary fix to prepare for [redacted] until we can find out the real problem


Index: xfig.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics/xfig.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- xfig.info   11 Aug 2011 16:23:48 -  1.1
+++ xfig.info   29 Jun 2012 22:28:33 -  1.2
@@ -1,6 +1,7 @@
 Package: xfig
 Version: 3.2.5
 Revision: 2013
+Distribution: 10.7
 BuildDepends: libjpeg (>= 6b-3), libpng3, libtiff, xaw3d (>= 1.5-11), x11-dev, 
fink (>= 0.24.12), xmkmf (>= 1.0.2-3)
 Depends: x11, xaw3d-shlibs (>= 1.5-11), libjpeg-bin, app-defaults, 
x-ghostscript-fonts, transfig-graphicx (>= 3.2.5-1008) | transfig-epsfig (>= 
3.2.5-1008), libjpeg-shlibs, libpng3-shlibs, x11-shlibs
 Source: http://www.xfig.org/software/%n/%v/%n.%v.full.tar.gz

--- NEW FILE: xfig-10.8.info ---
Package: xfig
Version: 3.2.5
Revision: 2013
Distribution: 10.8
BuildDepends: libjpeg (>= 6b-3), libpng3, libtiff, xaw3d (>= 1.5-11), x11-dev, 
fink (>= 0.24.12), xmkmf (>= 1.0.2-3)
Depends: x11, xaw3d-shlibs (>= 1.5-11), libjpeg-bin, app-defaults, 
x-ghostscript-fonts, transfig-graphicx (>= 3.2.5-1008) | transfig-epsfig (>= 
3.2.5-1008), libjpeg-shlibs, libpng3-shlibs, x11-shlibs
Source: http://www.xfig.org/software/%n/%v/%n.%v.full.tar.gz
Source-MD5: fae0c67a3951bd41c057deb63b6aa47a
SourceDirectory: %n.%v
PatchFile: %n.patch
PatchFile-MD5: 132f1ab681b4ef8985f0eee0d6ac2a26
PatchScript: <<
 rm -f Libraries/*/*.bak
 sed 's|@FINKPREFIX@|%p|g' < %{PatchFile} | patch -p1
 chmod 644 CHANGES FIGAPPS LATEX.AND.XFIG README
 perl -pi -e 's|XCOMM CC = /opt/SUNWspro/bin/cc|CC = cc|' Imakefile
 perl -pi -e 's|-lpng|%p/lib/libpng.dylib|' Imakefile
 perl -pi -e 's|void main|int main|' main.c
<<
CompileScript: <<
#!/bin/sh -ev
 perl -pi -e 's|CC = cc|CC = llvm-gcc|' Imakefile
 export PATH=%p/lib/xmkmf/bin:$PATH 
 export IMAKEINCLUDE=-I%p/lib/X11/config
 xmkmf
 make PREFIX=%p CDEBUGFLAGS=-O0 w_fontpanel.o
 make PREFIX=%p
<<
InstallScript: <<
#!/bin/sh -ev
 export PATH=%p/lib/xmkmf/bin:$PATH 
 export IMAKEINCLUDE=-I%p/lib/X11/config
 make install PREFIX=%p DESTDIR=%d INSTALLFLAGS=-c
 make install.all PREFIX=%p DESTDIR=%d MANDIR=%p/share/man/man1 
DOCDIR=%p/share/doc/xfig INSTALLFLAGS=-c
 rm -Rf %d/usr
 rm -Rf %d/etc
 chmod 644 %i/share/doc/xfig/html/*.* 
 chmod 644 %i/share/doc/xfig/html/images/*.* 
 chmod 644 %i/share/xfig/Libraries/*/README %i/share/xfig/Libraries/*/AUTHOR 
%i/share/xfig/Libraries/*/LICENSE %i/share/xfig/Libraries/*/*.*
 chmod 644 %i/share/xfig/Libraries/*/*/README %i/share/xfig/Libraries/*/AUTHOR 
%i/share/xfig/Libraries/*/LICENSE %i/share/xfig/Libraries/*/*/*.*
 chmod 644 %i/share/xfig/Libraries/*/*/*/README 
%i/share/xfig/Libraries/*/*/*/*.*
 chmod 644 %i/share/xfig/Libraries/*/*/*/*/*.fig
 chmod -R a+rX %i/share/doc/xfig
 chmod -R a+rX %i/share/xfig
<<
DocFiles: CHANGES FIGAPPS LATEX.AND.XFIG README
License: BSD
Description: Menu-driven tool to create graphical objects
DescPort: <<
 There have been reports that this package does not compile succesfully when
 xtools is intalled rather than xfree86.

 Patched an 'install' command to fix installation of filenames
 beginning with hyphens (may not be needed in future upstream
 releases) and an internal system(gunzip) to be able to read the
 installed files.

 Thanks to Martin Costabel for devising a fix for the 10.6 bug reported
 at http://www.mail-archive.com/fink-users@lists.sourceforge.net/msg31785.html
<<
DescPackaging: <<
 XFIGLIBDIR was set to %p/share/xfig.  Looks in /etc/printcap
 for printer descriptions, which may not be correct for darwin or OS X.
 Also, "make install" creates some empty directories in the /usr and /etc
 trees so we remove them. 
<<
DescUsage: <<
 The environment variable XAPPLRESDIR must point to  
 /sw/etc/app-defaults when using this package.  (This happens by default 
 if /sw/bin/init.* is sourced, thanks to the app-defaults package.) The
 user can also specify "*customization: -color" in the .Xdefaults or
 .Xresources file, to take advantage of the color support which was
 compiled in. 
<<
Homepage: http://www.xfig.org/
Maintainer:  Dave Morrison 









--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/base gettext-tools.info, 1.1, 1.2

2012-06-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/base
In directory vz-cvs-3.sog:/tmp/cvs-serv17756

Modified Files:
gettext-tools.info 
Log Message:
prepare for the future


Index: gettext-tools.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/base/gettext-tools.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gettext-tools.info  20 Jul 2011 13:29:03 -  1.1
+++ gettext-tools.info  29 Jun 2012 22:22:02 -  1.2
@@ -7,9 +7,14 @@
 PatchFile: libgettext8-shlibs.patch
 PatchFile-MD5: 9db9231d64d3580f367190aeee292ee6
 PatchScript: <<
+#!/bin/sh -ex
  patch -p1 < %{PatchFile}
  perl -pi -e 's/.*chmod.*777.*$//g' build-aux/ltmain.sh
  perl -pi -e 's/extern char \*stpncpy \(char \*dest, const char \*src, size_t 
n\)\;//g' gettext-tools/configure
+ darwin_vers=`uname -r | cut -d. -f1`
+ if [ "$darwin_vers" -ge 11 ]; then
+   perl -pi -e 's/\$\(CCLD\) \$\(AM_CFLAGS\) \$\(CFLAGS\) 
\$\(xgettext_LDFLAGS\) \$\(LDFLAGS\)/llvm-gcc-4.2 \$\(AM_CFLAGS\) \$\(CFLAGS\) 
\$\(xgettext_LDFLAGS\) \$\(LDFLAGS\)/g' gettext-tools/src/Makefile.in
+ fi
 <<
 Depends: <<
expat1-shlibs (>= 2.0.1-1),


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/devel intltool40-10.8.info, NONE, 1.1

2012-06-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv13999

Added Files:
intltool40-10.8.info 
Log Message:
variant for [redacted]


--- NEW FILE: intltool40-10.8.info ---
Info2: <<
Package: intltool40
Version: 0.50.1
Revision: 401
Distribution: 10.8
Type: systemperl (5.12.4)
Depends: <<
gettext-tools,
system-perl%type_pkg[systemperl],
xml-parser-pm%type_pkg[systemperl]
<<
BuildDepends: <<
system-perl%type_pkg[systemperl],
xml-parser-pm%type_pkg[systemperl]
<<
Conflicts: intltool
Replaces: intltool
Source: http://edge.launchpad.net/intltool/trunk/%v/+download/intltool-%v.tar.gz
Source-MD5: 892f9a3e809b55b7c6c8ceae4f1188d6
UseMaxBuildJobs: false
RuntimeVars: ac_cv_path_INTLTOOL_PERL: /usr/bin/perl
ConfigureParams: --mandir=%p/share/man
CompileScript: <<
PERL=/usr/bin/perl ./configure %c
make
<<
InfoTest: TestScript: make check || exit 2
InstallScript: <<
make install DESTDIR=%d
<<
DocFiles: AUTHORS COPYING README TODO doc/I18N-HOWTO
Description: Internationalize various kinds of data files
DescDetail: <<
Automatically extracts translatable strings from oaf, glade, bonobo
ui, nautilus theme and other files into the po files.

Automatically merges translations from po files back into .oaf files
(encoding to be 7-bit clean). Also merges into other kinds of files.
<<
DescPort: <<
Use Dep:system-perlXXX,xml-parser-pmXXX to correspond to what Apple
ships as /usr/bin/perl. Unfortunately ./configure doesn't allow PERL
to be versioned (perlX.X.X), so that's the best we can figure to try
to force things to be self-consistent and likely-to-be-present with
a minimum of additional packages needed.
<<
DescPackaging: <<
The ac_cv_path_INTLTOOL_PERL shell variable is automatically set to
the system perl interpretter, so any package that uses intltool and
has ./configure checks for "perl" and "XML::Parser" will get the
correct perl interpretter that is used by intltool and thus test for
the matched perl version of xml-parser-pmXXX that is needed, even if
there are other perl interpretters in PATH.
<<
License: GPL
Maintainer: The Gnome Core Team 
Homepage: http://www.freedesktop.org/wiki/Software/intltool
<<


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/web mhonarc-10.8.info,NONE,1.1

2012-06-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/web
In directory vz-cvs-3.sog:/tmp/cvs-serv13643

Added Files:
mhonarc-10.8.info 
Log Message:
variant for [redacted]


--- NEW FILE: mhonarc-10.8.info ---
Package: mhonarc
Version: 2.6.16
Revision: 4001
Distribution: 10.8
Depends: digest-md5-pm5124 | perl5124-core
BuildDepends: perl5124-core, fink (>= 0.26.0-1)
Source: http://www.mhonarc.org/release/MHonArc/tar/MHonArc-%v.tar.bz2
Source-MD5: 1aae948971869d6fdf3d810d9894b3db
CompileScript: echo "Nothing to do"
InstallScript: <<
perl5.12 install.me -batch -nodoc -nolib -noman -prefix %i -libpath 
%p/lib/mhonarc -binpath %i/bin
perl5.12 install.me -batch -nobin -prefix %i -docpath %i/share/doc/mhonarc 
-libpath %i/lib/mhonarc -manpath %i/share/man
mkdir -p %i/share/mhonarc
cp -r admin contrib examples extras logo %i/share/mhonarc
cd %i/share/mhonarc && ln -s ../doc/mhonarc doc
<<
DocFiles: ACKNOWLG BUGS CHANGES COPYING FILELIST INSTALL README.txt RELNOTES 
TODO
License: GPL
Description: Converts mail messages to HTML
DescPackaging: <<
Installation is done in two steps: in the first step, the
binaries are installed with the eventual libpath name supplied (this is put
into the perl scripts by the installer); in the second step, everything
else is installed in the fink installation directory.
<<
Homepage: http://www.mhonarc.org
Maintainer:  Dave Morrison 



--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/languages ocaml.info,1.3,1.4

2012-06-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv12081

Modified Files:
ocaml.info 
Log Message:
widen distribution


Index: ocaml.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages/ocaml.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- ocaml.info  2 Aug 2011 23:34:45 -   1.3
+++ ocaml.info  29 Jun 2012 22:06:52 -  1.4
@@ -1,7 +1,7 @@
 Package: ocaml
 Version: 3.12.1
 Revision: 1
-Distribution: 10.6, 10.7
+Distribution: 10.6, 10.7, 10.8
 Description: Latest implementation of Caml dialect of ML
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (>= 5.4-20041023-1006), fink (>= 
0.24.12)
 Depends: tcltk, x11, libncurses5-shlibs (>= 5.4-20041023-1006)


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs system-openssl-dev-0.9.8.info, 1.2, 1.3

2012-06-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv11927

Modified Files:
system-openssl-dev-0.9.8.info 
Log Message:
widen distribution


Index: system-openssl-dev-0.9.8.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/system-openssl-dev-0.9.8.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- system-openssl-dev-0.9.8.info   21 Jul 2011 00:34:13 -  1.2
+++ system-openssl-dev-0.9.8.info   29 Jun 2012 22:05:06 -  1.3
@@ -1,10 +1,10 @@
 Package: system-openssl-dev
 Epoch: 1
 Version: 0.9.8
-Revision: 4
+Revision: 5
 BuildDependsOnly: true
-Depends: macosx (>= 10.6.0-1), macosx (<< 10.8.0-1)
-Distribution: 10.6, 10.7
+Depends: macosx (>= 10.6.0-1), macosx (<< 10.9.0-1)
+Distribution: 10.6, 10.7, 10.8
 Conflicts: openssl-dev, openssl097-dev, openssl098-dev, openssl100-dev
 Replaces: openssl-dev, openssl097-dev, openssl098-dev, openssl100-dev
 Type: nosource


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods cpan-meta-pm.info, 1.8, 1.9 extutils-makemaker-pm.info, 1.4, 1.5 file-temp-pm.info, 1.1, 1.2 test-harness-pm.info, 1.3, 1.4 test-simple-pm.info, 1.2

2012-06-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv10043

Modified Files:
cpan-meta-pm.info extutils-makemaker-pm.info file-temp-pm.info 
test-harness-pm.info test-simple-pm.info version-pm.info 
version-requirements-pm.info xml-parser-pm.info 
Log Message:
widen distribution, add variant


Index: test-harness-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/test-harness-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- test-harness-pm.info11 Sep 2011 21:22:36 -  1.3
+++ test-harness-pm.info29 Jun 2012 22:02:38 -  1.4
@@ -2,7 +2,7 @@
 Package: test-harness-pm%type_pkg[perl]
 Version: 3.23
 Revision: 1
-Type: perl (5.12.3)
+Type: perl (5.12.3 5.12.4)
 
 BuildDepends: fink (>= 0.24.12)
 Depends: perl%type_pkg[perl]-core

Index: test-simple-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/test-simple-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- test-simple-pm.info 21 Jul 2011 22:15:15 -  1.2
+++ test-simple-pm.info 29 Jun 2012 22:02:38 -  1.3
@@ -3,9 +3,9 @@
 Version: 0.98
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Basic utilities for writing tests
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Daniel Johnson 
 

Index: version-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/version-pm.info,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- version-pm.info 1 Apr 2012 00:35:49 -   1.8
+++ version-pm.info 29 Jun 2012 22:02:38 -  1.9
@@ -3,8 +3,8 @@
 Version: 0.97
 Revision: 1
 Epoch: 1
-Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 588) 10.5, (%type_pkg[perl] = 588) 10.6
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 5123) 10.8, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 Description: Version objects as in Perl core >= v5.9.0
 License: Artistic
 Homepage: http://search.cpan.org/dist/version/

Index: file-temp-pm.info
===
RCS fi 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 5123) 10.8, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 
10.8²*0ŠbéÿððÛ²*oŠbéÿÀŸŸÜ²*óøÛ²*ŸÜ²*ؔŸÜ²*¨™ŸÜ²*€
 Û²*x¤;ܲ*°€béÿ€béÿë
Û²*à!à!0Šbéÿ ŠbéÿÈmܲ*béÿ"ñÛ²*Û²*0ŠbéÿððÛ²*oŠbéÿ`ŠbéÿXŠbéÿ
@Û²*Œp˜ ŠbéÿóøÛ²*€ 
Û²*béÿ`€béÿë
Û²*GHIJKMNOP0Šbéÿ ŠbéÿH%òÛ²*0ƒbéÿ"ñÛ²*Û²*0Šbéÿ0ŸŸÜ²*óøÛ²*°;ܲ* YÏÛ²*ŸÜ²*ؔŸÜ²*¨™ŸÜ²*€
 Û²*H%òÛ²*0ƒbéÿpbéÿë
Û²*8%òÛ²*0ƒbéÿ béÿë
Û²*(%òÛ²*0ƒbéÿЁbéÿë
Û²*%òÛ²*0ƒbéÿ‚béÿë
Û²*  
¨žŸÜ²*óøÛ²*¨™ŸÜ²*€|béÿŠ¨ÏÛ²*æ÷Û²*ؔŸÜ²* ‚béÿy¨ÏÛ²*æ÷Û²*ŸÜ²*Ђbéÿ

[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods version-requirements-pm.info, 1.2, 1.3

2012-06-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv9817

Modified Files:
version-requirements-pm.info 
Log Message:
widen distribution, add variant


Index: version-requirements-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/version-requirements-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- version-requirements-pm.info5 Feb 2012 23:29:06 -   1.2
+++ version-requirements-pm.info29 Jun 2012 22:01:45 -  1.3
@@ -2,7 +2,7 @@
 Package: version-requirements-pm%type_pkg[perl]
 Version: 0.101022
 Revision: 1
-Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 588) 10.5, (%type_pkg[perl] = 588) 10.6
+Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 5123) 10.8, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Set of version requirements for a CPAN dist
 DescUsage: Deprecated packge.
@@ -12,7 +12,7 @@
 Source: mirror:cpan:authors/id/R/RJ/RJBS/Version-Requirements-%v.tar.gz
 Source-MD5: 74e8a660969e30ffbb64999806c0769c
 
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 Depends: <<


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods cpan-meta-pm.info, 1.5, 1.6 extutils-makemaker-pm.info, 1.5, 1.6 test-simple-pm.info, 1.20, 1.21 version-pm.info, 1.13, 1.14 xml-parser-pm.info, 1.1

2012-06-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv9568

Modified Files:
cpan-meta-pm.info extutils-makemaker-pm.info 
test-simple-pm.info version-pm.info xml-parser-pm.info 
Log Message:
widen distribution, add variant


Index: test-simple-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/test-simple-pm.info,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- test-simple-pm.info 23 Oct 2011 15:33:44 -  1.20
+++ test-simple-pm.info 29 Jun 2012 22:01:08 -  1.21
@@ -3,9 +3,9 @@
 Version: 0.98
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6, (%type_pkg[perl] = 5124) 10.7, 
(%type_pkg[perl] = 5124) 10.8
 Description: Basic utilities for writing tests
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 License: Artistic
 Maintainer: Daniel Johnson 
 

Index: cpan-meta-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/cpan-meta-pm.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- cpan-meta-pm.info   4 Apr 2012 20:50:36 -   1.5
+++ cpan-meta-pm.info   29 Jun 2012 22:01:08 -  1.6
@@ -2,7 +2,7 @@
 Package: cpan-meta-pm%type_pkg[perl]
 Version: 2.120900
 Revision: 1
-Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 588) 10.5, (%type_pkg[perl] = 588) 10.6
+Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 5123) 10.8, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
 License: Artistic/GPL
 Description: Distribution metadata for a CPAN dist
 Maintainer: Daniel Johnson 
@@ -11,7 +11,7 @@
 Source: mirror:cpan:authors/id/D/DA/DAGOLDEN/CPAN-Meta-%v.tar.gz
 Source-MD5: 47a33638f7d9d449626d896aaddcecd4
 
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 UpdatePOD: true
 
 PatchScript: <<

Index: extutils-makemaker-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/extutils-makemaker-pm.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- extutils-makemaker-pm.info  8 Jan 2012 08:16:58 -   1.5
+++ extutils-makemaker-pm.info  29 Jun 2012 22:01:08 -  1.6
@@ -2,8 +2,8 @@
 Package: extutils-makemaker-pm%type_pkg[perl]
 Version: 6.62
 Revision: 1
-Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 588) 10.5, (%type_pkg[perl] = 588) 10.6
-Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
+Distribution: (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, (%type_pkg[perl] 
= 5123) 10.8, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6, 
(%type_pkg[perl] = 5124) 10.7, (%type_pkg[perl] = 5124) 10.8
+Type: perl (5.8.6 5.8.8 5.10.0 5.12.3 5.12.4)
 Description: Perl module to create a module Makefile
 License: Artistic
 Maintainer: Daniel Johnson 

Index: xml-parser-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/xml-parser-pm.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- xml-parser-pm.info  18 Nov 2011 20:40:11 -  1.11
+++ xml-parser-pm.info  29 Jun 2012 22:01:08 -  1.12
@@ -3,7 +3,7 @@
 Version: 2.41
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] 

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods text-csv-hash-pm.info, 1.1, 1.2

2012-06-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv7752

Modified Files:
text-csv-hash-pm.info 
Log Message:
widen distribution


Index: text-csv-hash-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/text-csv-hash-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- text-csv-hash-pm.info   25 Aug 2011 16:48:37 -  1.1
+++ text-csv-hash-pm.info   29 Jun 2012 21:29:54 -  1.2
@@ -3,7 +3,7 @@
 Version: 0.18
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6
 Description: Perl for manipulation of CSV files
 Type: perl(5.8.8 5.10.0 5.12.3)
 License: Restrictive/Distributable


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods text-csv-hash-pm.info, 1.1, 1.2

2012-06-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv7731

Modified Files:
text-csv-hash-pm.info 
Log Message:
widen distribution


Index: text-csv-hash-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/text-csv-hash-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- text-csv-hash-pm.info   15 Nov 2011 02:27:32 -  1.1
+++ text-csv-hash-pm.info   29 Jun 2012 21:29:23 -  1.2
@@ -3,7 +3,7 @@
 Version: 0.18
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 
588) 10.5, (%type_pkg[perl] = 588) 10.6
 Description: Perl for manipulation of CSV files
 Type: perl(5.8.8 5.10.0 5.12.3)
 License: Restrictive/Distributable


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods algorithm-c3-pm.info, 1.3, 1.4

2012-06-26 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv28183

Modified Files:
algorithm-c3-pm.info 
Log Message:
widen distribution


Index: algorithm-c3-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/algorithm-c3-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- algorithm-c3-pm.info21 Jul 2011 21:31:56 -  1.3
+++ algorithm-c3-pm.info26 Jun 2012 17:23:13 -  1.4
@@ -2,7 +2,7 @@
 Package: algorithm-c3-pm%type_pkg[perl]
 Version: 0.08
 Revision: 3
-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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 588) 10.4, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6
 Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
 ###
 Depends: perl%type_pkg[perl]-core


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods algorithm-c3-pm.info, 1.1, 1.2

2012-06-26 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv24017

Modified Files:
algorithm-c3-pm.info 
Log Message:
widen distribution


Index: algorithm-c3-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/algorithm-c3-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- algorithm-c3-pm.info25 Jul 2011 22:24:43 -  1.1
+++ algorithm-c3-pm.info26 Jun 2012 16:44:43 -  1.2
@@ -2,7 +2,7 @@
 Package: algorithm-c3-pm%type_pkg[perl]
 Version: 0.08
 Revision: 3
-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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
+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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 5123) 10.8, (%type_pkg[perl] = 588) 10.4, 
(%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 588) 10.6
 Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
 ###
 Depends: perl%type_pkg[perl]-core


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2012-06-26 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv22442

Added Files:
perl5123.info perl5124.info 
Log Message:
new perls for the transition


--- NEW FILE: perl5124.info ---
Package: perl5124
Version: 5.12.4
Revision: 1
Distribution: 10.7
Depends: %n-core (>= %v-%r)
Conflicts: perl560, perl561, perl580, perl581, perl584, perl586, perl588, 
perl5123, perl5124
Replaces: cgi-pm (<= 3.00-1), file-temp-pm560 (<= 0.12-2), filter-simple-pm (<= 
0.77-1), getopt-long-pm581-man, libnet-pm560 (<= 1.17-10), libnet-pm581 (<= 
1.17-10), memoize-pm581 (<= 1.01-10), test-simple-pm581 (<= 0.47-10), 
text-tabs-wrap-pm (<= 2001.0929-1), perl560, perl561, perl580, perl581, 
perl584, perl586, perl588, perl5123, perl5124, attribute-handlers-pm, cgi-pm, 
digest-md5-pm560, file-spec-pm, file-temp-pm, filter-util-pm560, 
getopt-long-pm-man, i18n-langtags-pm, libnet-pm, locale-maketext-pm, 
memoize-pm, mime-base64-pm560, mime-base64-pm581, mime-base64-pm581-man, 
podparser-pm, scalar-list-utils-pm560, scalar-list-utils-pm581, 
test-harness-pm, test-simple-pm, time-hires-pm560, time-hires-pm581, 
test-simple-pm581, archive-tar-pm581-bin, archive-tar-pm584-bin, 
archive-tar-pm586-bin, archive-tar-pm588-bin, archive-tar-pm5100-bin, 
archive-tar-pm5123-bin, archive-tar-pm5124-bin, cpanplus-pm586-bin, 
module-build-pm581-bin, module-build-pm584-bin, module-build-pm586-bin, 
module-build-pm588-bin, module-build-pm5100-bin, module-build-pm5123-bin, 
module-build-pm5124-bin, module-corelist-pm581-bin, module-corelist-pm584-bin, 
module-corelist-pm586-bin, module-corelist-pm588-bin, 
module-corelist-pm5100-bin, module-corelist-pm5123-bin, 
module-corelist-pm5124-bin
Provides: podparser-pm
License: Artistic
Description: The Perl programming language, v. 5.12.4
DescDetail: <<
Perl is a high-level programming language with roots in C, sed, awk
and shell scripting.  Perl is good at handling processes and files,
and is especially good at handling text.  Perl's hallmarks are
practicality and efficiency.  While it is used to do a lot of
different things, Perl's most common applications are system
administration utilities and web programming.  A large proportion of
the CGI scripts on the web are written in Perl.

Fink's perl packages retain the perl version subdirectories in the
lib tree.  Without these, upgrading or downgrading Perl breaks all of
the binary modules.
<<
DescPort: <<

This package does not alter /usr/bin/perl.  If you wish to use this
version of perl in scripts, the script should begin with #!/sw/bin/perl5.12.4
instead of #!/usr/bin/perl .

Disabled 'make test', since one test fails.

Because the perl build system is designed to download source files for
"extra" perlmodules directly from CPAN, we do not include those "extra" 
perlmodules in this package.  For that reason, the following packages
which are Provided by Apple's build of perl5.12.4 on XX are not provided
here:
  apache-pm5124, convert-tnef-pm5124, html-parser-pm5124, 
  perl-objcbridge-pm5124, scalar-list-utils-pm5124, uri-pm5124, 
  algorithm-diff-pm5124, class-autouse-pm5124, corefoundation-pm5124, 
  data-hierarcy-pm5124, date-parse-pm5124, freezethaw-pm5124, io-pager-pm5124, 
  ipc-run3-pm5124, locale-maketext-lexicon-pm5124, perlio-eol-pm5124, 
  svn-pm5124, svk-pm5124, timedate-pm5124, vcp-pm5124, yaml-pm5124
<<
DescUsage: <<
Most perl scripts start with #!/usr/bin/perl which will invoke Apple's
/usr/bin/perl.  If you wish to use this
version of perl in scripts, the script should begin with #!/sw/bin/perl5.12.4
instead of #!/usr/bin/perl .
<<
Source: mirror:cpan:src/5.0/perl-%v.tar.gz
Source-MD5: fd22aba88e4e27ab879f142eec6452a0
CompileScript: <<
#! /bin/sh -ev
 sh Configure -desr -Dcc="gcc" -Dcpp="-gcc -E" -Dprefix=%p 
-Dccflags=-I%p/include -Dldflags=-L%p/lib -Dperladmin=none -Uinstallusrbinperl 
-Dprivlib="%p/lib/perl5-core/5.12.4" 
-Darchlib="%p/lib/perl5-core/5.12.4/darwin-thread-multi-2level" 
-Dman3dir="%p/lib/perl5-core/5.12.4/man/man3" -Dman3ext=3pm -Duseithreads 
-Dinc_version_list=none -Adefine:startperl="#!%p/bin/perl5.12.4" 
-Adefine:perlpath="%p/bin/perl5.12.4"
 make
<<
DocFiles: README Copying

InstallScript: <<
 make install DESTDIR=%d

 mkdir -p %i/etc/profile.d
 echo "append_path MANPATH %p/lib/perl5-core/5.12.4/man" >> 
%i/etc/profile.d/%N-core.csh
 echo "append_path MANPATH %p/lib/perl5/5.12.4/man" >> 
%i/etc/profile.d/%N-core.csh
 echo "append_path MANPATH %p/lib/perl5-core/5.12.4/man" >> 
%i/etc/profile.d/%N-core.sh
 echo "append_path MANPATH %p/lib/perl5/5.12.4/man" >> 
%i/etc/profile.d/%N-core.sh
 echo "export MANPATH" >> %i/etc/profile.d/%N-core.sh
 chmod 755 %i/etc/profile.d/%N-core.*

<<
SplitOff: <<
 Package: %N-core
 Conflicts: compress-zlib-pm (<= 1.19-2), crypt-ssleay-pm (<= 0.45-2), 
dbd-mysql-pm (<= 2.1026-1), dbd-pg-pm (<= 1.21-4), dbd-pg-pm-ssl (<= 1.21-4), 
dbi-pm (<= 1:1.35-1), digest-md5-pm (<= 2.24-1), digest-sha1-pm (<= 2.02-1), 
egd (<= 0.8-3), eperl-pm (<= 2.2.

[cvs] dists/10.4/unstable/main/finkinfo/sci pari-gp-2.1.7.info, 1.2, NONE pari-gp-2.1.7.patch, 1.1, NONE

2012-06-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv1557

Removed Files:
pari-gp-2.1.7.info pari-gp-2.1.7.patch 
Log Message:
remove obsolete package


--- pari-gp-2.1.7.patch DELETED ---

--- pari-gp-2.1.7.info DELETED ---


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/devel xmkmf.info,1.5,1.6

2012-05-13 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv4027

Modified Files:
xmkmf.info 
Log Message:
adjust whitespace


Index: xmkmf.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel/xmkmf.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- xmkmf.info  30 Apr 2012 16:22:38 -  1.5
+++ xmkmf.info  13 May 2012 20:56:23 -  1.6
@@ -3,7 +3,7 @@
 Revision: 1103
 Description: X11 legacy build tools
 License: BSD
-Maintainer: Dave Morrison  
+Maintainer:  Dave Morrison 
 BuildDepends: pkgconfig, fink (>= 0.24.12)
 Source:  mirror:sourceforge:fink/imake-%v.tar.bz2
 Source2: mirror:sourceforge:fink/xorg-cf-files-%v.tar.bz2


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
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 xmkmf.info,1.6,1.7

2012-05-13 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv3930

Modified Files:
xmkmf.info 
Log Message:
adjust whitespace


Index: xmkmf.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel/xmkmf.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- xmkmf.info  30 Apr 2012 16:21:25 -  1.6
+++ xmkmf.info  13 May 2012 20:55:40 -  1.7
@@ -4,7 +4,7 @@
 Distribution: 10.5, 10.6
 Description: X11 legacy build tools
 License: BSD
-Maintainer: Dave Morrison  
+Maintainer:  Dave Morrison 
 BuildDepends: pkgconfig, fink (>= 0.24.12)
 Source:  mirror:sourceforge:fink/imake-%v.tar.bz2
 Source2: mirror:sourceforge:fink/xorg-cf-files-%v.tar.bz2


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/graphics libpng14.info, 1.4, 1.5 libpng15-32bit.info, 1.4, 1.5 libpng15.info, 1.5, 1.6 libpng3.info, 1.4, 1.5

2012-03-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics
In directory vz-cvs-3.sog:/tmp/cvs-serv10132

Modified Files:
libpng14.info libpng15-32bit.info libpng15.info libpng3.info 
Log Message:
new upstream (fixes CVE-2011-3048)


Index: libpng14.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics/libpng14.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- libpng14.info   9 Mar 2012 17:09:45 -   1.4
+++ libpng14.info   30 Mar 2012 13:09:02 -  1.5
@@ -1,5 +1,5 @@
 Package: libpng14
-Version: 1.4.9
+Version: 1.4.11
 Revision: 1
 Depends: %N-shlibs (= %v-%r), pkgconfig
 BuildDepends: fink (>= 0.24.12-1)
@@ -9,7 +9,7 @@
 Conflicts: libpng, libpng3, libpng15, libpng15-32bit
 Replaces: libpng, libpng3, libpng15, libpng15-32bit
 Source: mirror:sourceforge:libpng/libpng-%v.tar.gz
-Source-MD5: 4749962ca8e8a2491f650b20f5a12d04
+Source-MD5: 41d1ccf9dc7ae56812203519f207b3d0
 ConfigureParams: --mandir='${prefix}/share/man' --disable-dependency-tracking
 DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO
 BuildDependsOnly: True
@@ -21,7 +21,7 @@
   Package: %N-shlibs
   Files: lib/libpng14.14.dylib
   Shlibs: <<
-%p/lib/libpng14.14.dylib 24.0.0 %n (>= 1.4.9-1)
+%p/lib/libpng14.14.dylib 26.0.0 %n (>= 1.4.11-1)
   <<
   Description: Shared libraries for libpng14 package
   DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO

Index: libpng15-32bit.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics/libpng15-32bit.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- libpng15-32bit.info 9 Mar 2012 17:09:45 -   1.4
+++ libpng15-32bit.info 30 Mar 2012 13:09:02 -  1.5
@@ -1,5 +1,5 @@
 Package: libpng15-32bit
-Version: 1.5.9
+Version: 1.5.10
 Revision: 1
 BuildDepends: fink-package-precedence
 Depends: %N-shlibs (= %v-%r), pkgconfig
@@ -9,7 +9,7 @@
 Conflicts: libpng, libpng3, libpng14, libpng15
 Replaces: libpng, libpng3, libpng14, libpng15
 Source: mirror:sourceforge:libpng/libpng-%v.tar.gz
-Source-MD5: c740ba66cd7074ba2471b6a4ff48e1fb
+Source-MD5: 9e5d864bce8f06751bbd99962ecf4aad
 ConfigureParams: --mandir='${prefix}/share/man' --libdir=%p/lib/i386
 DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO
 BuildDependsOnly: True
@@ -29,7 +29,7 @@
   Package: %N-shlibs
   Files: lib/i386/libpng15.15.dylib
   Shlibs: <<
-%p/lib/i386/libpng15.15.dylib 25.0.0 %n (>= 1.5.9-1)
+%p/lib/i386/libpng15.15.dylib 26.0.0 %n (>= 1.5.10-1)
   <<
   Description: Shared libraries for libpng15 package
   DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO

Index: libpng3.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics/libpng3.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- libpng3.info9 Mar 2012 17:09:45 -   1.4
+++ libpng3.info30 Mar 2012 13:09:02 -  1.5
@@ -1,5 +1,5 @@
 Package: libpng3
-Version: 1.2.47
+Version: 1.2.49
 Revision: 1
 Epoch: 1
 Depends: %N-shlibs (= %e:%v-%r), pkgconfig
@@ -15,7 +15,7 @@
 Conflicts: libpng, libpng14, libpng15, libpng15-32bit
 Replaces: libpng, libpng14, libpng15, libpng15-32bit
 Source: mirror:sourceforge:libpng/libpng-%v.tar.gz
-Source-MD5: 740e59df64630c56902d43b5905c67ed
+Source-MD5: 39a35257cd888d29f1d000c2ffcc79eb
 ConfigureParams: --mandir='${prefix}/share/man' --disable-dependency-tracking
 DocFiles: LICENSE README ANNOUNCE Y2KINFO KNOWNBUG
 BuildDependsOnly: True
@@ -26,8 +26,8 @@
   Package: %N-shlibs
   Files: lib/libpng12.0.dylib lib/libpng.3.dylib
   Shlibs: <<
-%p/lib/libpng.3.dylib 51.0.0 %n (>= 1:1.2.47-1)
-%p/lib/libpng12.0.dylib 48.0.0 %n (>= 1:1.2.47-1)
+%p/lib/libpng.3.dylib 53.0.0 %n (>= 1:1.2.49-1)
+%p/lib/libpng12.0.dylib 50.0.0 %n (>= 1:1.2.49-1)
   <<
   Description: Shared libraries for libpng3 package
   DocFiles: LICENSE README ANNOUNCE Y2KINFO KNOWNBUG

Index: libpng15.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics/libpng15.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- libpng15.info   9 Mar 2012 17:09:45 -   1.5
+++ libpng15.info   30 Mar 2012 13:09:02 -  1.6
@@ -1,5 +1,5 @@
 Package: libpng15
-Version: 1.5.9
+Version: 1.5.10
 Revision: 1
 BuildDepends: fink-package-precedence
 Depends: %N-shlibs (= %v-%r), pkgconfig
@@ -9,7 +9,7 @@
 Conflicts: libpng, libpng3, libpng14, %n-32bit
 Replaces: libpng, libpng3, libpng14, %n-32bit
 Source: mirror:sourceforge:libpng/libpng-%v.tar.gz
-Source-MD5: c740ba66cd7074ba2471b6a4ff48e1fb
+Source-MD5: 9e5d864bce8f06751bbd99962ecf4aad
 ConfigureParams: --mandir='${prefix}/share/man' 
 DocFiles: ANNOUNCE CHANGES INSTALL LICENS

[cvs] dists/10.4/stable/main/finkinfo/graphics libpng14.info, 1.4, 1.5 libpng15.info, 1.3, 1.4 libpng3.info, 1.10, 1.11

2012-03-30 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics
In directory vz-cvs-3.sog:/tmp/cvs-serv10062

Modified Files:
libpng14.info libpng15.info libpng3.info 
Log Message:
new upstream (fixes CVE-2011-3048)


Index: libpng14.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics/libpng14.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- libpng14.info   9 Mar 2012 17:10:15 -   1.4
+++ libpng14.info   30 Mar 2012 13:08:43 -  1.5
@@ -1,5 +1,5 @@
 Package: libpng14
-Version: 1.4.9
+Version: 1.4.11
 Revision: 1
 Depends: %N-shlibs (= %v-%r), pkgconfig
 BuildDepends: fink (>= 0.24.12-1)
@@ -9,7 +9,7 @@
 Conflicts: libpng, libpng3, libpng15, libpng15-32bit
 Replaces: libpng, libpng3, libpng15, libpng15-32bit
 Source: mirror:sourceforge:libpng/libpng-%v.tar.gz
-Source-MD5: 4749962ca8e8a2491f650b20f5a12d04
+Source-MD5: 41d1ccf9dc7ae56812203519f207b3d0
 ConfigureParams: --mandir='${prefix}/share/man' --disable-dependency-tracking
 DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO
 BuildDependsOnly: True
@@ -21,7 +21,7 @@
   Package: %N-shlibs
   Files: lib/libpng14.14.dylib
   Shlibs: <<
-%p/lib/libpng14.14.dylib 24.0.0 %n (>= 1.4.9-1)
+%p/lib/libpng14.14.dylib 26.0.0 %n (>= 1.4.11-1)
   <<
   Description: Shared libraries for libpng14 package
   DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO

Index: libpng3.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics/libpng3.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- libpng3.info9 Mar 2012 17:10:15 -   1.10
+++ libpng3.info30 Mar 2012 13:08:43 -  1.11
@@ -1,5 +1,5 @@
 Package: libpng3
-Version: 1.2.47
+Version: 1.2.49
 Revision: 1
 Epoch: 1
 Depends: %N-shlibs (= %e:%v-%r), pkgconfig
@@ -15,7 +15,7 @@
 Conflicts: libpng, libpng14, libpng15, libpng15-32bit
 Replaces: libpng, libpng14, libpng15, libpng15-32bit
 Source: mirror:sourceforge:libpng/libpng-%v.tar.gz
-Source-MD5: 740e59df64630c56902d43b5905c67ed
+Source-MD5: 39a35257cd888d29f1d000c2ffcc79eb
 ConfigureParams: --mandir='${prefix}/share/man' --disable-dependency-tracking
 DocFiles: LICENSE README ANNOUNCE Y2KINFO KNOWNBUG
 BuildDependsOnly: True
@@ -26,8 +26,8 @@
   Package: %N-shlibs
   Files: lib/libpng12.0.dylib lib/libpng.3.dylib
   Shlibs: <<
-%p/lib/libpng.3.dylib 51.0.0 %n (>= 1:1.2.47-1)
-%p/lib/libpng12.0.dylib 48.0.0 %n (>= 1:1.2.47-1)
+%p/lib/libpng.3.dylib 53.0.0 %n (>= 1:1.2.49-1)
+%p/lib/libpng12.0.dylib 50.0.0 %n (>= 1:1.2.49-1)
   <<
   Description: Shared libraries for libpng3 package
   DocFiles: LICENSE README ANNOUNCE Y2KINFO KNOWNBUG

Index: libpng15.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics/libpng15.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libpng15.info   9 Mar 2012 17:10:15 -   1.3
+++ libpng15.info   30 Mar 2012 13:08:43 -  1.4
@@ -1,5 +1,5 @@
 Package: libpng15
-Version: 1.5.9
+Version: 1.5.10
 Revision: 1
 BuildDepends: fink-package-precedence
 Depends: %N-shlibs (= %v-%r), pkgconfig
@@ -9,7 +9,7 @@
 Conflicts: libpng, libpng3, libpng14, %n-32bit
 Replaces: libpng, libpng3, libpng14, %n-32bit
 Source: mirror:sourceforge:libpng/libpng-%v.tar.gz
-Source-MD5: c740ba66cd7074ba2471b6a4ff48e1fb
+Source-MD5: 9e5d864bce8f06751bbd99962ecf4aad
 ConfigureParams: --mandir='${prefix}/share/man' 
 DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO
 BuildDependsOnly: True
@@ -25,7 +25,7 @@
   Package: %N-shlibs
   Files: lib/libpng15.15.dylib
   Shlibs: <<
-%p/lib/libpng15.15.dylib 25.0.0 %n (>= 1.5.9-1)
+%p/lib/libpng15.15.dylib 26.0.0 %n (>= 1.5.10-1)
   <<
   Description: Shared libraries for libpng15 package
   DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/text detex.info,1.3,1.4

2012-03-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/text
In directory vz-cvs-3.sog:/tmp/cvs-serv3364

Modified Files:
detex.info 
Log Message:
allow this version of detex to be installed in a texlive environment


Index: detex.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/text/detex.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- detex.info  9 Mar 2012 19:18:53 -   1.3
+++ detex.info  29 Mar 2012 12:49:49 -  1.4
@@ -1,12 +1,13 @@
 Package: detex
 Version: 2.8
-Revision: 1000
+Revision: 1001
 Source: ftp://ftp.cs.purdue.edu/pub/trinkle/%n-%v.tar
 SourceRename: %n-%v.tar
 Source-MD5: 7a96b647f43bb077323cde92faa1e893
 PatchFile: %n.patch
 PatchFile-MD5: 537c51bd969b49d27d201eaf8f8586e0
 BuildDepends: fink (>= 0.24.12), flex
+Replaces: texlive-base, texlive-nox-base
 CompileScript: make DESTDIR=%p/bin
 InstallScript: <<
  mkdir -p %i/bin


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/text detex.info,1.6,1.7

2012-03-29 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/text
In directory vz-cvs-3.sog:/tmp/cvs-serv3299

Modified Files:
detex.info 
Log Message:
allow this version of detex to be installed in a texlive environment


Index: detex.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/text/detex.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- detex.info  9 Mar 2012 19:18:37 -   1.6
+++ detex.info  29 Mar 2012 12:48:29 -  1.7
@@ -1,12 +1,13 @@
 Package: detex
 Version: 2.8
-Revision: 1000
+Revision: 1001
 Source: ftp://ftp.cs.purdue.edu/pub/trinkle/%n-%v.tar
 SourceRename: %n-%v.tar
 Source-MD5: 7a96b647f43bb077323cde92faa1e893
 PatchFile: %n.patch
 PatchFile-MD5: 537c51bd969b49d27d201eaf8f8586e0
 BuildDepends: fink (>= 0.24.12), flex
+Replaces: texlive-base, texlive-nox-base
 CompileScript: make DESTDIR=%p/bin
 InstallScript: <<
  mkdir -p %i/bin


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/graphics libjpeg8.info,1.2,1.3

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics
In directory vz-cvs-3.sog:/tmp/cvs-serv25672

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


Index: libjpeg8.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics/libjpeg8.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libjpeg8.info   14 Oct 2010 05:08:16 -  1.2
+++ libjpeg8.info   10 Mar 2012 03:46:29 -  1.3
@@ -1,12 +1,12 @@
 Package: libjpeg8
-Version: 8b
-Revision: 2
+Version: 8d
+Revision: 1
 Depends: %N-shlibs (= %v-%r), libjpeg-bin
 BuildDepends: fink (>= 0.24.12)
 Conflicts: libjpeg
 Replaces: libjpeg
 Source: http://www.ijg.org/files/jpegsrc.v%v.tar.gz
-Source-MD5: e022acbc5b36cd2cb70785f5b575661e
+Source-MD5: 52654eb3b2e60c35731ea8fc87f1bd29
 SourceDirectory: jpeg-%v
 ConfigureParams: --disable-static
 InstallScript: <<
@@ -19,7 +19,7 @@
   Package: %N-shlibs
   Suggests: libjpeg-bin
   Files: lib/libjpeg.8.dylib
-  Shlibs: %p/lib/libjpeg.8.dylib 9.0.0 %n (>= 8-1)
+  Shlibs: %p/lib/libjpeg.8.dylib 13.0.0 %n (>= 8d-1)
   Description: Shared libraries for libjpeg package
   DocFiles: README
 <<


--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/graphics libjpeg8.info,1.1,1.2

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics
In directory vz-cvs-3.sog:/tmp/cvs-serv25633

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


Index: libjpeg8.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics/libjpeg8.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libjpeg8.info   20 Jul 2011 13:29:03 -  1.1
+++ libjpeg8.info   10 Mar 2012 03:46:16 -  1.2
@@ -1,12 +1,12 @@
 Package: libjpeg8
-Version: 8b
-Revision: 2
+Version: 8d
+Revision: 1
 Depends: %N-shlibs (= %v-%r), libjpeg-bin
 BuildDepends: fink (>= 0.24.12)
 Conflicts: libjpeg
 Replaces: libjpeg
 Source: http://www.ijg.org/files/jpegsrc.v%v.tar.gz
-Source-MD5: e022acbc5b36cd2cb70785f5b575661e
+Source-MD5: 52654eb3b2e60c35731ea8fc87f1bd29
 SourceDirectory: jpeg-%v
 ConfigureParams: --disable-static
 InstallScript: <<
@@ -19,7 +19,7 @@
   Package: %N-shlibs
   Suggests: libjpeg-bin
   Files: lib/libjpeg.8.dylib
-  Shlibs: %p/lib/libjpeg.8.dylib 9.0.0 %n (>= 8-1)
+  Shlibs: %p/lib/libjpeg.8.dylib 13.0.0 %n (>= 8d-1)
   Description: Shared libraries for libjpeg package
   DocFiles: README
 <<


--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/text
In directory vz-cvs-3.sog:/tmp/cvs-serv24349

Added Files:
latex2rtf.info 
Log Message:
move to 10.7


--- NEW FILE: latex2rtf.info ---
Package: latex2rtf
Version: 2.1.0
Revision: 1
Source: mirror:sourceforge:%n/%n-%v.tar.gz
Source-MD5: e89b78f9cfe6d83c79e657a9390e8bc9
Depends: tetex-base, imagemagick (>= 5.5.1-13) | imagemagick-nox (>= 5.5.1-13)
Description: Converts a LaTeX file to an RTF file
License: GPL
PatchScript: <<
 perl -pi -e 's/\tinstall-info /\t#install-info /' Makefile
<<
CompileScript: <<
 make PREFIX=%p 
<<
InstallScript: <<
 make install PREFIX=%i MAN_INSTALL=%i/share/man/man1
 make install-info INFO_INSTALL=%i/share/info
<<
DocFiles: ChangeLog Copyright README doc/copying.txt
InfoDocs: latex2rtf.info
Maintainer:  Dave Morrison 
Homepage: http://latex2rtf.sourceforge.net/


--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/text latex2rtf.info,1.6,1.7

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/text
In directory vz-cvs-3.sog:/tmp/cvs-serv24306

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


Index: latex2rtf.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/text/latex2rtf.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- latex2rtf.info  6 Mar 2012 06:25:57 -   1.6
+++ latex2rtf.info  10 Mar 2012 03:38:12 -  1.7
@@ -1,8 +1,8 @@
 Package: latex2rtf
-Version: 1.9.19
-Revision: 2
+Version: 2.1.0
+Revision: 1
 Source: mirror:sourceforge:%n/%n-%v.tar.gz
-Source-MD5: 8a3b920d59f6b38736aa256c26374472
+Source-MD5: e89b78f9cfe6d83c79e657a9390e8bc9
 Depends: tetex-base, imagemagick (>= 5.5.1-13) | imagemagick-nox (>= 5.5.1-13)
 Description: Converts a LaTeX file to an RTF file
 License: GPL


--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
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/text latex2html.info, 1.4, NONE

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/text
In directory vz-cvs-3.sog:/tmp/cvs-serv23983

Removed Files:
latex2html.info 
Log Message:
latest version to stable


--- latex2html.info DELETED ---


--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/text latex2html.info,1.3,1.4

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/text
In directory vz-cvs-3.sog:/tmp/cvs-serv23939

Modified Files:
latex2html.info 
Log Message:
latest version to stable


Index: latex2html.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/text/latex2html.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- latex2html.info 5 Sep 2006 04:43:00 -   1.3
+++ latex2html.info 10 Mar 2012 03:26:12 -  1.4
@@ -1,6 +1,10 @@
-Package: latex2html
+Info2: <<
+Package: latex2html%type_pkg[-ppdf]
 Version: 2002-2-1
-Revision: 3
+Revision: 4
+Type: -ppdf (boolean)
+Conflicts: latex2html, latex2html-ppdf
+Replaces: latex2html, latex2html-ppdf
 Depends: tetex-base, ghostscript | ghostscript-nox, netpbm-bin
 Source: 
http://saftsack.fs.uni-bayreuth.de/~latex2ht/current/latex2html-%v.tar.gz
 SourceRename: latex2html-%v.v1.71.tar.gz
@@ -8,7 +12,12 @@
 Source-MD5: a79cda0648c8721ab6df5020cd11e220
 ConfigureParams: --with-texpath=%p/etc/texmf.local/tex/latex/html 
--with-mktexlsr=/bin/ls
 InstallScript: <<
- make install DESTDIR=%d
+#! /bin/sh -ev
+ if [ "%type_raw[-ppdf]" == "." ]; then
+  sed "s: -Ppdf  -E::" l2hconf.pm > l2hconf.pm.new
+  mv -f l2hconf.pm.new l2hconf.pm
+ fi
+make install DESTDIR=%d
 <<
 DocFiles: BUGS Changes FAQ INSTALL LICENSE MANIFEST README TODO
 License: OSI-Approved
@@ -18,7 +27,7 @@
 PostRmScript: <<
  if [ -f %p/bin/mktexlsr ]; then %p/bin/mktexlsr %p/etc/texmf.local; fi
 <<
-Description: Converts LaTeX documents to HTML
+Description: LaTeX->HTML (-ppdf variant gives old behavior
 DescPackaging: <<
  The source file changed in October 2004 without the name changing.
  We have thus made a new fink package based on the new source file,
@@ -27,6 +36,19 @@
  1.70 to 1.71.
 <<
 DescPort: <<
+There is considerable discussion online about supressing "-Ppdf" during
+latex2html's call to dvips, in order to avoid lines underneath images: see 
+for example 
+http://ccrma-www.stanford.edu/~jos/webpub/Eliminating_Black_Rules_Under.html
+
+On the other hand, there is a reason for that call, in ensuring that scalable
+fonts are used in the output: see for example
+http://web.mit.edu/acs/faq/webmath/samples_and_tools.html
+
+So for now, fink users will have a choice.  The default behavior is to suppress
+"-Ppdf" (which is new), but the package latex2html-ppdf restores the original
+behavior.
+
 We substitute /bin/ls for mkteklsr during compile/install to avoid problems
 if mktexlsr is not present on the system.  We run mktexlsr (if present) in
 a Post Install script instead.
@@ -36,4 +58,5 @@
 <<
 Homepage: http://www.latex2html.org
 Maintainer:  Dave Morrison 
+<<
 


--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/text latex2html.info,1.1,1.2

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/text
In directory vz-cvs-3.sog:/tmp/cvs-serv23920

Modified Files:
latex2html.info 
Log Message:
validation fix


Index: latex2html.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/text/latex2html.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- latex2html.info 24 Jul 2011 10:25:08 -  1.1
+++ latex2html.info 10 Mar 2012 03:25:55 -  1.2
@@ -27,7 +27,7 @@
 PostRmScript: <<
  if [ -f %p/bin/mktexlsr ]; then %p/bin/mktexlsr %p/etc/texmf.local; fi
 <<
-Description: Convert LaTeX->HTML (-ppdf variant reverts to old behavior)
+Description: LaTeX->HTML (-ppdf variant gives old behavior
 DescPackaging: <<
  The source file changed in October 2004 without the name changing.
  We have thus made a new fink package based on the new source file,


--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/utils mpack.patch, NONE, 1.1 mpack.info, 1.2, 1.3

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/utils
In directory vz-cvs-3.sog:/tmp/cvs-serv11279

Modified Files:
mpack.info 
Added Files:
mpack.patch 
Log Message:
Patched for clang by Jack Howarth


Index: mpack.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/utils/mpack.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- mpack.info  23 Nov 2011 05:22:41 -  1.2
+++ mpack.info  9 Mar 2012 19:31:15 -   1.3
@@ -1,12 +1,13 @@
 Package: mpack
 Version: 1.6
-Revision: 1000
+Revision: 1001
 Source: ftp://ftp.andrew.cmu.edu/pub/mpack/mpack-%v.tar.gz
 Source-MD5: a70fa5afa76539a9afb70b9d81568fe8
-SetCC: llvm-gcc-4.2
-SetCXX: llvm-g++-4.2
+PatchFile: %n.patch
+PatchFile-MD5: 142b4569f483b4a8caacd14f34b004d3
 #CompileScript: make 
 InstallScript: <<
+#!/bin/bash -ev
 # make install DESTDIR=%i
  make install prefix=%i
  mkdir -p %i/share
@@ -17,5 +18,6 @@
 License: BSD
 Description: Encodes and decodes MIME files
 DescUsage: See "man mpack" and "man munpack".
+DescPort: Patched for clang by Jack Howarth.
 Homepage: ftp://ftp.andrew.cmu.edu/pub/mpack/
 Maintainer:  Dave Morrison 

--- NEW FILE: mpack.patch ---
--- mpack-1.6.orig/unixunpk.man
+++ mpack-1.6/unixunpk.man
@@ -50,7 +50,7 @@
 appends ".1", ".2", etc to find a nonexistent file.
 .TP
 .B \-q
-Be quiet.  Supresses messages about saving partial messages and about
+Be quiet.  Suppresses messages about saving partial messages and about
 messages with no interesting information.
 .TP
 .B \-t
@@ -107,7 +107,7 @@
 .SH ENVIRONMENT
 .TP
 .B TMPDIR
-Directory to store temporary files.  Default is /usr/tmp.
+Directory to store temporary files.  Default is /var/tmp.
 .SH FILES
 .TP
 .B $TMPDIR/m-prts-$USER/
--- mpack-1.6.orig/part.c
+++ mpack-1.6/part.c
@@ -27,6 +27,7 @@
  */
 
 #include 
+#include 
 #include 
 
 #include "part.h"
@@ -58,7 +59,7 @@
 /*
  * Close and free 'part'.
  */
-int part_close(struct part *part)
+void part_close(struct part *part)
 {
 fclose(part->infile);
 if (part->buf) free(part->buf);
@@ -77,8 +78,7 @@
 /*
  * Add to 'part' the multipart boundary 'boundary'.
  */
-int
-part_addboundary(struct part *part, char *boundary)
+void part_addboundary(struct part *part, char *boundary)
 {
 /* Grow boundary array if necessary */
 if (part->boundary_num == part->boundary_alloc) {
@@ -165,8 +165,7 @@
  * Leaves room in the input buffer to push back an additional single
  * character using the prot_ungetc() macro.
  */
-int
-part_ungets(char *s, struct part *part)
+void part_ungets(char *s, struct part *part)
 {
 int len = strlen(s);
 int i;
--- mpack-1.6.orig/decode.c
+++ mpack-1.6/decode.c
@@ -26,8 +26,10 @@
  * SOFTWARE.  */
 
 #include 
+#include 
 #include 
 #include 
+#include 
 #include "xmalloc.h"
 #include "common.h"
 #include "part.h"
@@ -37,6 +39,19 @@
 extern FILE *os_newtypedfile(char *fname, char *contentType, int flags, params 
contentParams);
 extern FILE *os_createnewfile(char *fname);
 extern char *md5contextTo64(MD5_CTX *context);
+extern void warn(char *s);
+extern void os_perror(char *str);
+extern void chat(char *s);
+extern void os_donewithdir(char *dir);
+extern void os_warnMD5mismatch(void);
+extern void os_closetypedfile(FILE *outfile);
+
+extern int part_depth(struct part *part);
+extern void part_ungets(char *s, struct part *part);
+extern void part_close(struct part *part);
+extern int part_fill(struct part *part);
+extern void part_addboundary(struct part *part, char *boundary);
+extern int part_readboundary(struct part *part);
 
 /* The possible content transfer encodings */
 enum encoding { enc_none, enc_qp, enc_base64 };
@@ -49,6 +64,17 @@
 void from64(struct part *inpart, FILE *outfile, char **digestp, int 
suppressCR);
 void fromqp(struct part *inpart, FILE *outfile, char **digestp);
 void fromnone(struct part *inpart, FILE *outfile, char **digestp);
+int handlePartial(struct part *inpart, char *headers, params contentParams,
+ int extractText);
+int ignoreMessage(struct part *inpart);
+int handleMultipart(struct part *inpart, char *contentType,
+   params contentParams, int extractText);
+int handleUuencode(struct part *inpart, char *subject, int extractText);
+int handleText(struct part *inpart, enum encoding contentEncoding);
+int saveToFile(struct part *inpart, int inAppleDouble, char *contentType,
+  params contentParams, enum encoding contentEncoding,
+  char *contentDisposition, char *contentMD5);
+
 /*
  * Read and handle an RFC 822 message from the body-part 'inpart'.
  */
@@ -545,8 +571,8 @@
SkipWhitespace(&disposition);
if (!disposition) return 0;
 
-   /* If we're looking at a ";", we found what we're looking for */
-   if (*disposition++ == ';') break;
+   /* If we're looking at a "=", we found what we're looking for */
+   if (*disposition++ == '='

[cvs] dists/10.4/stable/main/finkinfo/utils rpl.info,1.4,1.5

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/utils
In directory vz-cvs-3.sog:/tmp/cvs-serv9400

Modified Files:
rpl.info 
Log Message:
new upstream (thanks to Jack Howarth for locating this)


Index: rpl.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/utils/rpl.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- rpl.info1 Oct 2011 19:24:32 -   1.4
+++ rpl.info9 Mar 2012 19:27:03 -   1.5
@@ -1,12 +1,17 @@
 Package: rpl
-Version: 1.4.0
+Version: 1.5.5
 Revision: 1
-Distribution: 10.5, 10.6
-Source: http://downloads.laffeycomputer.com/current_builds/%n-%v.tar.gz
-Source-MD5: 35af9ac5425f5a6278e5890c3272684e
-ConfigureParams: --mandir='${prefix}/share/man'
-DocFiles: INSTALL
-License: Restrictive
+Source: mirror:sourceforge:%n/%n-%v.tar.gz
+Source-MD5: 0db1569ec6e5f4908bf8a25b183eb9a4
+Depends: python27
+CompileScript: %p/bin/python2.7 setup.py build
+InstallScript: <<
+%p/bin/python2.7 setup.py install --root=%d
+install -d %i/share/man/man1
+install -m 644 rpl.1 %i/share/man/man1/
+<<
+DocFiles: COPYING
+License: GPL
 Description: Replace strings in multiple files
 Maintainer:  Dave Morrison 
-Homepage: http://www.laffeycomputer.com/rpl.html
+Homepage: http://rpl.sourceforge.net


--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/utils rpl.info,1.2,1.3

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/utils
In directory vz-cvs-3.sog:/tmp/cvs-serv9328

Modified Files:
rpl.info 
Log Message:
new upstream (thanks to Jack Howarth for locating this)


Index: rpl.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/utils/rpl.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- rpl.info23 Nov 2011 05:25:52 -  1.2
+++ rpl.info9 Mar 2012 19:26:47 -   1.3
@@ -1,13 +1,17 @@
 Package: rpl
-Version: 1.4.0
+Version: 1.5.5
 Revision: 1
-Distribution: 10.7
-Source: http://downloads.laffeycomputer.com/current_builds/%n-%v.tar.gz
-Source-MD5: 35af9ac5425f5a6278e5890c3272684e
-SetCC: llvm-gcc-4.2
-ConfigureParams: --mandir='${prefix}/share/man'
-DocFiles: INSTALL
-License: Restrictive
+Source: mirror:sourceforge:%n/%n-%v.tar.gz
+Source-MD5: 0db1569ec6e5f4908bf8a25b183eb9a4
+Depends: python27
+CompileScript: %p/bin/python2.7 setup.py build
+InstallScript: <<
+%p/bin/python2.7 setup.py install --root=%d
+install -d %i/share/man/man1
+install -m 644 rpl.1 %i/share/man/man1/
+<<
+DocFiles: COPYING
+License: GPL
 Description: Replace strings in multiple files
 Maintainer:  Dave Morrison 
-Homepage: http://www.laffeycomputer.com/rpl.html
+Homepage: http://rpl.sourceforge.net


--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/text detex.info, 1.2, 1.3 detex.patch, 1.1, 1.2 djvulibre.info, 1.2, 1.3 djvulibre.patch, 1.1, 1.2

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/text
In directory vz-cvs-3.sog:/tmp/cvs-serv5613

Modified Files:
detex.info detex.patch djvulibre.info djvulibre.patch 
Log Message:
new upstream; patched for clang by Jack Howarth.


Index: detex.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/text/detex.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- detex.info  23 Nov 2011 05:15:48 -  1.2
+++ detex.info  9 Mar 2012 19:18:53 -   1.3
@@ -1,16 +1,12 @@
 Package: detex
-Version: 2.7
-Revision: 1003
-Source: ftp://ftp.cs.purdue.edu/pub/trinkle/%n-%v.tar.orig
+Version: 2.8
+Revision: 1000
+Source: ftp://ftp.cs.purdue.edu/pub/trinkle/%n-%v.tar
 SourceRename: %n-%v.tar
-Source-MD5: df837b1adb40503f40b94b8169f0e154
-NoSourceDirectory: True
+Source-MD5: 7a96b647f43bb077323cde92faa1e893
 PatchFile: %n.patch
-PatchFile-MD5: 7b462b99b8637a502123531960eb34a7
-PatchScript: patch <%{PatchFile}
+PatchFile-MD5: 537c51bd969b49d27d201eaf8f8586e0
 BuildDepends: fink (>= 0.24.12), flex
-SetCC: llvm-gcc-4.2
-SetCXX: llvm-g++-4.2
 CompileScript: make DESTDIR=%p/bin
 InstallScript: <<
  mkdir -p %i/bin
@@ -23,7 +19,8 @@
 License: OSI-Approved
 Description: Filter to strip TeX commands from a .tex file
 DescPort: <<
- Patched Makefile to take care of malloc() problem.
+ Patched Makefile to take care of malloc() problem and to
+ pass -std=c89 as well as -Wno-return-type for clang. (Jack Howarth)
 <<
 DescPackaging: Patched Makefile to install delatex as well as detex.
 Homepage: ftp://ftp.cs.purdue.edu/pub/trinkle/README

Index: djvulibre.patch
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/text/djvulibre.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- djvulibre.patch 23 Jul 2011 18:02:35 -  1.1
+++ djvulibre.patch 9 Mar 2012 19:18:53 -   1.2
@@ -1,28 +1,22 @@
-diff -Nurd -x'*~' djvulibre-3.5.21.orig/configure djvulibre-3.5.21/configure
 djvulibre-3.5.21.orig/configure2008-07-02 18:43:52.0 -0400
-+++ djvulibre-3.5.21/configure 2008-11-12 09:30:17.0 -0500
-@@ -27343,12 +27343,8 @@
- if test x$ac_enable_djview != xno
- then
-  NSDEJAVU_CFLAGS=${X_CFLAGS}
-- case "$host" in
-- *-cygwin* | *-mingw*)
-NSDEJAVU_LIBS="`echo ${X_LIBS} | sed -e 's/-lXext/-lXt -lXext/'`"
-NSDEJAVU_LIBS="-no-undefined $NSDEJAVU_LIBS"
--   ;;
-- esac
- fi
- 
+--- djvulibre-3.5.24/configure.orig2011-03-06 12:43:17.0 -0500
 djvulibre-3.5.24/configure 2012-03-02 19:47:30.0 -0500
+@@ -18820,7 +18820,7 @@
  
-diff -Nurd -x'*~' djvulibre-3.5.21.orig/gui/nsdejavu/Makefile.in 
djvulibre-3.5.21/gui/nsdejavu/Makefile.in
 djvulibre-3.5.21.orig/gui/nsdejavu/Makefile.in 2007-04-20 
12:44:23.0 -0400
-+++ djvulibre-3.5.21/gui/nsdejavu/Makefile.in  2008-11-12 09:09:27.0 
-0500
-@@ -51,7 +51,7 @@
+ NSDEJAVU_CFLAGS=${X_CFLAGS}
+ case "$host" in
+-*-cygwin* | *-mingw*)
++*-cygwin* | *-mingw* | *-darwin*)
+ NSDEJAVU_LIBS="`echo ${X_LIBS} | sed -e 's/-lXext/-lXt -lXext/'`"
+ NSDEJAVU_LIBS="-no-undefined $NSDEJAVU_LIBS"
+ ;;
+--- djvulibre-3.5.24/gui/nsdejavu/Makefile.in.orig 2011-03-06 
12:43:17.0 -0500
 djvulibre-3.5.24/gui/nsdejavu/Makefile.in  2012-03-02 19:49:20.0 
-0500
+@@ -52,7 +52,7 @@
   -I${top_srcdir}/gui/shared/res \
   -I${top_srcdir}/gui/npsdk 
  
--CFLAGS = @CPPFLAGS@ ${DEFS} ${OPTS} ${INCS} ${NSDEJAVU_CFLAGS} 
-+CFLAGS = ${DEFS} ${OPTS} ${INCS} ${NSDEJAVU_CFLAGS} @CPPFLAGS@
+-CFLAGS = @CPPFLAGS@ ${DEFS} ${OPTS} ${INCS} ${NSDEJAVU_CFLAGS} ${GLIB_CFLAGS}
++CFLAGS = ${DEFS} ${OPTS} ${INCS} ${NSDEJAVU_CFLAGS} @CPPFLAGS@ ${GLIB_CFLAGS}
  
  LIBS = @LDFLAGS@ ${NSDEJAVU_LIBS} 
  
@@ -40,3 +34,56 @@
  
  
  OBJS = classify.o cuts.o frames.o patterns.o
+--- djvulibre-3.5.24/gui/indep/utils/execdir.cpp.orig  2012-03-02 
20:13:00.0 -0500
 djvulibre-3.5.24/gui/indep/utils/execdir.cpp   2012-03-02 
20:14:34.0 -0500
+@@ -141,22 +141,22 @@
+ {
+   GURL url = GURL(file, paths[pos]);
+   GUTF8String urls = (const char*)url;
+-  int pos = urls.search(osi);
+-  if (pos >= 0)
++  int ipos = urls.search(osi);
++  if (ipos >= 0)
+ {
+   GUTF8String urlx;
+-  urlx += urls.substr(0, pos);
++  urlx += urls.substr(0, ipos);
+   urlx += djview3;
+-  urlx += urls.substr(pos+strlen(osi), -1);
++  urlx += urls.substr(ipos+strlen(osi), -1);
+   GURL url = GURL::UTF8(urlx);
+   if (url.is_file())
+ return url;
+ }
+ }
+   // end hack alert
+-  for (GPosition pos=paths; pos; ++pos)
++  for (GPosition ipos=paths; ipos; ++ipos)
+ {
+-  GURL url = GURL(file, paths[pos]);
++  GURL url = GURL(file, paths[ip

[cvs] dists/10.4/stable/main/finkinfo/text detex.info, 1.5, 1.6 detex.patch, 1.2, 1.3 djvulibre.info, 1.8, 1.9 djvulibre.patch, 1.1, 1.2

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/text
In directory vz-cvs-3.sog:/tmp/cvs-serv5678

Modified Files:
detex.info detex.patch djvulibre.info djvulibre.patch 
Log Message:
new upstream; patched for clang by Jack Howarth.


Index: detex.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/text/detex.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- detex.info  17 Jul 2011 03:28:00 -  1.5
+++ detex.info  9 Mar 2012 19:18:37 -   1.6
@@ -1,14 +1,11 @@
 Package: detex
-Version: 2.7
-Revision: 3
-Distribution: 10.5, 10.6
-Source: ftp://ftp.cs.purdue.edu/pub/trinkle/%n-%v.tar.orig
+Version: 2.8
+Revision: 1000
+Source: ftp://ftp.cs.purdue.edu/pub/trinkle/%n-%v.tar
 SourceRename: %n-%v.tar
-Source-MD5: df837b1adb40503f40b94b8169f0e154
-NoSourceDirectory: True
+Source-MD5: 7a96b647f43bb077323cde92faa1e893
 PatchFile: %n.patch
-PatchFile-MD5: 7b462b99b8637a502123531960eb34a7
-PatchScript: patch <%{PatchFile}
+PatchFile-MD5: 537c51bd969b49d27d201eaf8f8586e0
 BuildDepends: fink (>= 0.24.12), flex
 CompileScript: make DESTDIR=%p/bin
 InstallScript: <<
@@ -22,9 +19,8 @@
 License: OSI-Approved
 Description: Filter to strip TeX commands from a .tex file
 DescPort: <<
- Patched Makefile to take care of malloc() problem.
-
- Doesn't currently build under 10.7.
+ Patched Makefile to take care of malloc() problem and to
+ pass -std=c89 as well as -Wno-return-type for clang. (Jack Howarth)
 <<
 DescPackaging: Patched Makefile to install delatex as well as detex.
 Homepage: ftp://ftp.cs.purdue.edu/pub/trinkle/README

Index: djvulibre.patch
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/text/djvulibre.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- djvulibre.patch 22 Oct 2010 20:30:51 -  1.1
+++ djvulibre.patch 9 Mar 2012 19:18:37 -   1.2
@@ -1,28 +1,22 @@
-diff -Nurd -x'*~' djvulibre-3.5.21.orig/configure djvulibre-3.5.21/configure
 djvulibre-3.5.21.orig/configure2008-07-02 18:43:52.0 -0400
-+++ djvulibre-3.5.21/configure 2008-11-12 09:30:17.0 -0500
-@@ -27343,12 +27343,8 @@
- if test x$ac_enable_djview != xno
- then
-  NSDEJAVU_CFLAGS=${X_CFLAGS}
-- case "$host" in
-- *-cygwin* | *-mingw*)
-NSDEJAVU_LIBS="`echo ${X_LIBS} | sed -e 's/-lXext/-lXt -lXext/'`"
-NSDEJAVU_LIBS="-no-undefined $NSDEJAVU_LIBS"
--   ;;
-- esac
- fi
- 
+--- djvulibre-3.5.24/configure.orig2011-03-06 12:43:17.0 -0500
 djvulibre-3.5.24/configure 2012-03-02 19:47:30.0 -0500
+@@ -18820,7 +18820,7 @@
  
-diff -Nurd -x'*~' djvulibre-3.5.21.orig/gui/nsdejavu/Makefile.in 
djvulibre-3.5.21/gui/nsdejavu/Makefile.in
 djvulibre-3.5.21.orig/gui/nsdejavu/Makefile.in 2007-04-20 
12:44:23.0 -0400
-+++ djvulibre-3.5.21/gui/nsdejavu/Makefile.in  2008-11-12 09:09:27.0 
-0500
-@@ -51,7 +51,7 @@
+ NSDEJAVU_CFLAGS=${X_CFLAGS}
+ case "$host" in
+-*-cygwin* | *-mingw*)
++*-cygwin* | *-mingw* | *-darwin*)
+ NSDEJAVU_LIBS="`echo ${X_LIBS} | sed -e 's/-lXext/-lXt -lXext/'`"
+ NSDEJAVU_LIBS="-no-undefined $NSDEJAVU_LIBS"
+ ;;
+--- djvulibre-3.5.24/gui/nsdejavu/Makefile.in.orig 2011-03-06 
12:43:17.0 -0500
 djvulibre-3.5.24/gui/nsdejavu/Makefile.in  2012-03-02 19:49:20.0 
-0500
+@@ -52,7 +52,7 @@
   -I${top_srcdir}/gui/shared/res \
   -I${top_srcdir}/gui/npsdk 
  
--CFLAGS = @CPPFLAGS@ ${DEFS} ${OPTS} ${INCS} ${NSDEJAVU_CFLAGS} 
-+CFLAGS = ${DEFS} ${OPTS} ${INCS} ${NSDEJAVU_CFLAGS} @CPPFLAGS@
+-CFLAGS = @CPPFLAGS@ ${DEFS} ${OPTS} ${INCS} ${NSDEJAVU_CFLAGS} ${GLIB_CFLAGS}
++CFLAGS = ${DEFS} ${OPTS} ${INCS} ${NSDEJAVU_CFLAGS} @CPPFLAGS@ ${GLIB_CFLAGS}
  
  LIBS = @LDFLAGS@ ${NSDEJAVU_LIBS} 
  
@@ -40,3 +34,56 @@
  
  
  OBJS = classify.o cuts.o frames.o patterns.o
+--- djvulibre-3.5.24/gui/indep/utils/execdir.cpp.orig  2012-03-02 
20:13:00.0 -0500
 djvulibre-3.5.24/gui/indep/utils/execdir.cpp   2012-03-02 
20:14:34.0 -0500
+@@ -141,22 +141,22 @@
+ {
+   GURL url = GURL(file, paths[pos]);
+   GUTF8String urls = (const char*)url;
+-  int pos = urls.search(osi);
+-  if (pos >= 0)
++  int ipos = urls.search(osi);
++  if (ipos >= 0)
+ {
+   GUTF8String urlx;
+-  urlx += urls.substr(0, pos);
++  urlx += urls.substr(0, ipos);
+   urlx += djview3;
+-  urlx += urls.substr(pos+strlen(osi), -1);
++  urlx += urls.substr(ipos+strlen(osi), -1);
+   GURL url = GURL::UTF8(urlx);
+   if (url.is_file())
+ return url;
+ }
+ }
+   // end hack alert
+-  for (GPosition pos=paths; pos; ++pos)
++  for (GPosition ipos=paths; ipos; ++ipos)
+ {
+-  GURL url = GURL(file, paths[pos]);
++  GURL url = GURL(file, paths[

[cvs] dists/10.7/stable/main/finkinfo/languages aplus-fsf.info, 1.2, 1.3 aplus-fsf.patch, 1.1, 1.2

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv26179

Modified Files:
aplus-fsf.info aplus-fsf.patch 
Log Message:
Patched for clang by Jack Howarth


Index: aplus-fsf.patch
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/languages/aplus-fsf.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- aplus-fsf.patch 23 Jul 2011 17:40:20 -  1.1
+++ aplus-fsf.patch 9 Mar 2012 18:36:21 -   1.2
@@ -78,3 +78,78 @@
  #include 
  #include 
  #include 
+--- aplus-fsf-4.22/src/MSTypes/MSFloatMatrix.H,orig2012-03-05 
20:37:58.0 -0500
 aplus-fsf-4.22/src/MSTypes/MSFloatMatrix.H 2012-03-05 20:38:36.0 
-0500
+@@ -27,7 +27,7 @@
+ template class MSMatrixSTypePick; // MSTypeMatrix indexed by an 
unsigned int
+ 
+ #if !defined(MS_NO_PREDECLARE_SPECIALIZATION)
+-class MSMatrixSTypePick; 
++template<> class MSMatrixSTypePick; 
+ #endif
+ 
+ 
+--- aplus-fsf-4.22/src/MSTypes/MSObservableTree.C.orig 2012-03-05 
20:45:20.0 -0500
 aplus-fsf-4.22/src/MSTypes/MSObservableTree.C  2012-03-05 
20:47:44.0 -0500
+@@ -94,7 +94,7 @@
+ void MSObservableTree::removeSubtree(const 
MSTabularTreeCursor& cursor_)
+ {
+   MSTabularTreeCursor cursor2(cursor_);
+-  unsigned long pos=position(cursor2);
++  unsigned long pos=this->position(cursor2);
+   cursor2.setToParent();
+   MSTabularTree::removeSubtree(cursor_);
+   if (cursor2.isValid()) changed(cursor2,pos,MSObservableTreeDelete);
+@@ -162,7 +162,7 @@
+ void MSObservableTree::replaceAt(MSTabularTreeCursor const& 
cursor_,Element const& element_)
+ {
+   MSTabularTree::replaceAt(cursor_,element_);
+-  changed(cursor_,position(cursor_),MSObservableTreeAssign);
++  changed(cursor_,this->position(cursor_),MSObservableTreeAssign);
+ }
+ 
+ template 
+@@ -170,10 +170,10 @@
+ {
+   if (&tree_!=this)
+{
+- if (isRoot(cursor_)) copy(tree_);
++ if (this->isRoot(cursor_)) copy(tree_);
+  else
+   {
+-  unsigned long pos=position(cursor_);
++  unsigned long pos=this->position(cursor_);
+   MSTabularTreeCursor cursor=cursor_;
+   cursor.setToParent();
+   MSTabularTree::removeSubtree(cursor_);
+@@ -199,7 +199,7 @@
+ template 
+ void MSObservableTree::elementChanged(MSTabularTreeCursor 
const& cursor_)
+ {
+-  changed(cursor_,position(cursor_),MSObservableTreeAssign);
++  changed(cursor_,this->position(cursor_),MSObservableTreeAssign);
+ }
+ 
+ template 
+--- aplus-fsf-4.22/src/MSTypes/MSObjectTypeVectorInlines.C.orig
2012-03-05 21:02:04.0 -0500
 aplus-fsf-4.22/src/MSTypes/MSObjectTypeVectorInlines.C 2012-03-05 
21:02:35.0 -0500
+@@ -87,7 +87,7 @@
+ template 
+ INLINELINKAGE MSObjectVector MSObjectVector::operator[] (const 
MSBinaryVector & bVect_) const
+ {
+-  return compress (*this, bVect_);
++  return this->compress (*this, bVect_);
+ }
+ 
+ 
+--- aplus-fsf-4.22/src/MSTypes/MSBuiltinTypeVectorInlines.C.orig   
2012-03-05 21:19:51.0 -0500
 aplus-fsf-4.22/src/MSTypes/MSBuiltinTypeVectorInlines.C2012-03-05 
21:20:13.0 -0500
+@@ -77,7 +77,7 @@
+ template 
+ INLINELINKAGE MSBuiltinVector MSBuiltinVector::operator[] (const 
MSBinaryVector & bVect_) const
+ {
+-  return compress (*this, bVect_);
++  return this->compress (*this, bVect_);
+ }
+ 
+ 

Index: aplus-fsf.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/languages/aplus-fsf.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- aplus-fsf.info  23 Nov 2011 05:11:37 -  1.2
+++ aplus-fsf.info  9 Mar 2012 18:36:21 -   1.3
@@ -1,6 +1,6 @@
 Package: aplus-fsf
 Version: 4.22-1
-Revision: 2004
+Revision: 2005
 GCC: 4.0
 Maintainer:  Dave Morrison 
 Depends: x11, xfontpath, %N-shlibs (>= %v-%r)
@@ -11,7 +11,7 @@
 Source-MD5: 27cb5f78c81dee06127f63e982bd0aaf
 SourceDirectory: %n-4.22
 PatchFile: %n.patch
-PatchFile-MD5: 8c1e79e53ad7d948ea78e7a4b1d2de13
+PatchFile-MD5: 7f0a591cfccc3ab82adde14dd9425158
 PatchScript: <<
 #!/bin/sh -ev
%{default_script}
@@ -21,8 +21,6 @@
 ConfigureParams: --disable-dependency-tracking
 NoSetLDFLAGS: true
 SetLIBRARY_PATH: %p/lib
-SetCC: llvm-gcc-4.2
-SetCXX: llvm-g++-4.2
 # ./fix4mac
 CompileScript: <<
 #!/bin/sh -ev
@@ -147,6 +145,8 @@
 linking to fink's libdap3 instead of the supplied libdap0; thanks to JF Mertens
 for help with this as well.
 
+Patched for clang by Jack Howarth.
+
 Original fink package by Brian Redman .
 <<
 License: GPL/GFDL


--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/

[cvs] dists/10.4/stable/main/finkinfo/languages aplus-fsf.info, 1.5, 1.6

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv15674

Modified Files:
aplus-fsf.info 
Log Message:
clarification


Index: aplus-fsf.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/languages/aplus-fsf.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- aplus-fsf.info  17 Jul 2011 03:25:21 -  1.5
+++ aplus-fsf.info  9 Mar 2012 17:17:41 -   1.6
@@ -148,7 +148,7 @@
 
 Original fink package by Brian Redman .
 
-Doesn't currently compile under 10.7.
+This version doesn't compile under 10.7.
 <<
 License: GPL/GFDL
 Homepage: http://www.aplusdev.org/


--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/graphics libpng14.info, 1.3, 1.4 libpng15.info, 1.2, 1.3 libpng3.info, 1.9, 1.10

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics
In directory vz-cvs-3.sog:/tmp/cvs-serv14099

Modified Files:
libpng14.info libpng15.info libpng3.info 
Log Message:
upstream security fix


Index: libpng14.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics/libpng14.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libpng14.info   4 Sep 2011 11:56:04 -   1.3
+++ libpng14.info   9 Mar 2012 17:10:15 -   1.4
@@ -1,15 +1,15 @@
 Package: libpng14
-Version: 1.4.7
+Version: 1.4.9
 Revision: 1
 Depends: %N-shlibs (= %v-%r), pkgconfig
 BuildDepends: fink (>= 0.24.12-1)
 DescPackaging: <<
  Uses pkgconfig, but there are no pkgconfig-related dependencies.
 <<
-Conflicts: libpng, libpng3, libpng15
-Replaces: libpng, libpng3, libpng15
-Source: mirror:sourceforge:libpng/libpng-%v.tar.bz2
-Source-MD5: 1afcf7f0463a815366480a0624fb478c
+Conflicts: libpng, libpng3, libpng15, libpng15-32bit
+Replaces: libpng, libpng3, libpng15, libpng15-32bit
+Source: mirror:sourceforge:libpng/libpng-%v.tar.gz
+Source-MD5: 4749962ca8e8a2491f650b20f5a12d04
 ConfigureParams: --mandir='${prefix}/share/man' --disable-dependency-tracking
 DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO
 BuildDependsOnly: True
@@ -21,7 +21,7 @@
   Package: %N-shlibs
   Files: lib/libpng14.14.dylib
   Shlibs: <<
-%p/lib/libpng14.14.dylib 22.0.0 %n (>= 1.4.4-1)
+%p/lib/libpng14.14.dylib 24.0.0 %n (>= 1.4.9-1)
   <<
   Description: Shared libraries for libpng14 package
   DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO

Index: libpng3.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics/libpng3.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- libpng3.info4 Sep 2011 11:56:05 -   1.9
+++ libpng3.info9 Mar 2012 17:10:15 -   1.10
@@ -1,6 +1,6 @@
 Package: libpng3
-Version: 1.2.44
-Revision: 2
+Version: 1.2.47
+Revision: 1
 Epoch: 1
 Depends: %N-shlibs (= %e:%v-%r), pkgconfig
 PatchFile: %n.patch
@@ -12,10 +12,10 @@
  The Epoch was introduced when a bug in 1.2.6 forced us to revert to 1.2.5.
  Versions 1:1.2.5-1 and later include the August 2004 security patches.
 <<
-Conflicts: libpng, libpng14, libpng15
-Replaces: libpng, libpng14, libpng15
-Source: mirror:sourceforge:libpng/libpng-%v.tar.bz2
-Source-MD5: e3ac7879d62ad166a6f0c7441390d12b
+Conflicts: libpng, libpng14, libpng15, libpng15-32bit
+Replaces: libpng, libpng14, libpng15, libpng15-32bit
+Source: mirror:sourceforge:libpng/libpng-%v.tar.gz
+Source-MD5: 740e59df64630c56902d43b5905c67ed
 ConfigureParams: --mandir='${prefix}/share/man' --disable-dependency-tracking
 DocFiles: LICENSE README ANNOUNCE Y2KINFO KNOWNBUG
 BuildDependsOnly: True
@@ -26,8 +26,8 @@
   Package: %N-shlibs
   Files: lib/libpng12.0.dylib lib/libpng.3.dylib
   Shlibs: <<
-%p/lib/libpng.3.dylib 48.0.0 %n (>= 1:1.2.44-1)
-%p/lib/libpng12.0.dylib 45.0.0 %n (>= 1:1.2.44-1)
+%p/lib/libpng.3.dylib 51.0.0 %n (>= 1:1.2.47-1)
+%p/lib/libpng12.0.dylib 48.0.0 %n (>= 1:1.2.47-1)
   <<
   Description: Shared libraries for libpng3 package
   DocFiles: LICENSE README ANNOUNCE Y2KINFO KNOWNBUG

Index: libpng15.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics/libpng15.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libpng15.info   4 Oct 2011 14:09:13 -   1.2
+++ libpng15.info   9 Mar 2012 17:10:15 -   1.3
@@ -1,27 +1,31 @@
 Package: libpng15
-Version: 1.5.5
+Version: 1.5.9
 Revision: 1
+BuildDepends: fink-package-precedence
 Depends: %N-shlibs (= %v-%r), pkgconfig
-BuildDepends: fink (>= 0.24.12-1)
 DescPackaging: <<
  Uses pkgconfig, but there are no pkgconfig-related dependencies.
 <<
-Conflicts: libpng, libpng3, libpng14
-Replaces: libpng, libpng3, libpng14
-Source: mirror:sourceforge:libpng/libpng-%v.tar.bz2
-Source-MD5: 3270bf2990c3174ae939388398de751e
-ConfigureParams: --mandir='${prefix}/share/man' --disable-dependency-tracking
+Conflicts: libpng, libpng3, libpng14, %n-32bit
+Replaces: libpng, libpng3, libpng14, %n-32bit
+Source: mirror:sourceforge:libpng/libpng-%v.tar.gz
+Source-MD5: c740ba66cd7074ba2471b6a4ff48e1fb
+ConfigureParams: --mandir='${prefix}/share/man' 
 DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO
 BuildDependsOnly: True
 InfoTest: TestScript: make test
+CompileScript: <<
+ %{default_script}
+ fink-package-precedence . 
+<<
 InstallScript: <<
- make install prefix=%i
+ make install DESTDIR=%d
 <<
 SplitOff: <<
   Package: %N-shlibs
   Files: lib/libpng15.15.dylib
   Shlibs: <<
-%p/lib/libpng15.15.dylib 21.0.0 %n (>= 1.5.5-1)
+%p/lib/libpng15.15.dylib 25.0.0 %n (>= 1.5.9-1)
   <<
   Description: Shared libraries for libpng15 package

[cvs] dists/10.7/stable/main/finkinfo/graphics libpng14.info, 1.3, 1.4 libpng15-32bit.info, 1.3, 1.4 libpng15.info, 1.4, 1.5 libpng3.info, 1.3, 1.4

2012-03-09 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics
In directory vz-cvs-3.sog:/tmp/cvs-serv14032

Modified Files:
libpng14.info libpng15-32bit.info libpng15.info libpng3.info 
Log Message:
upstream security fix


Index: libpng14.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics/libpng14.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libpng14.info   17 Feb 2012 20:32:37 -  1.3
+++ libpng14.info   9 Mar 2012 17:09:45 -   1.4
@@ -1,6 +1,6 @@
 Package: libpng14
-Version: 1.4.7
-Revision: 2
+Version: 1.4.9
+Revision: 1
 Depends: %N-shlibs (= %v-%r), pkgconfig
 BuildDepends: fink (>= 0.24.12-1)
 DescPackaging: <<
@@ -8,8 +8,8 @@
 <<
 Conflicts: libpng, libpng3, libpng15, libpng15-32bit
 Replaces: libpng, libpng3, libpng15, libpng15-32bit
-Source: mirror:sourceforge:libpng/libpng-%v.tar.bz2
-Source-MD5: 1afcf7f0463a815366480a0624fb478c
+Source: mirror:sourceforge:libpng/libpng-%v.tar.gz
+Source-MD5: 4749962ca8e8a2491f650b20f5a12d04
 ConfigureParams: --mandir='${prefix}/share/man' --disable-dependency-tracking
 DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO
 BuildDependsOnly: True
@@ -21,7 +21,7 @@
   Package: %N-shlibs
   Files: lib/libpng14.14.dylib
   Shlibs: <<
-%p/lib/libpng14.14.dylib 22.0.0 %n (>= 1.4.4-1)
+%p/lib/libpng14.14.dylib 24.0.0 %n (>= 1.4.9-1)
   <<
   Description: Shared libraries for libpng14 package
   DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO

Index: libpng15-32bit.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics/libpng15-32bit.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libpng15-32bit.info 17 Feb 2012 20:32:37 -  1.3
+++ libpng15-32bit.info 9 Mar 2012 17:09:45 -   1.4
@@ -1,6 +1,6 @@
 Package: libpng15-32bit
-Version: 1.5.5
-Revision: 2
+Version: 1.5.9
+Revision: 1
 BuildDepends: fink-package-precedence
 Depends: %N-shlibs (= %v-%r), pkgconfig
 DescPackaging: <<
@@ -8,8 +8,8 @@
 <<
 Conflicts: libpng, libpng3, libpng14, libpng15
 Replaces: libpng, libpng3, libpng14, libpng15
-Source: mirror:sourceforge:libpng/libpng-%v.tar.bz2
-Source-MD5: 3270bf2990c3174ae939388398de751e
+Source: mirror:sourceforge:libpng/libpng-%v.tar.gz
+Source-MD5: c740ba66cd7074ba2471b6a4ff48e1fb
 ConfigureParams: --mandir='${prefix}/share/man' --libdir=%p/lib/i386
 DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO
 BuildDependsOnly: True
@@ -29,7 +29,7 @@
   Package: %N-shlibs
   Files: lib/i386/libpng15.15.dylib
   Shlibs: <<
-%p/lib/i386/libpng15.15.dylib 21.0.0 %n (>= 1.5.5-2)
+%p/lib/i386/libpng15.15.dylib 25.0.0 %n (>= 1.5.9-1)
   <<
   Description: Shared libraries for libpng15 package
   DocFiles: ANNOUNCE CHANGES INSTALL LICENSE README TODO

Index: libpng3.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics/libpng3.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libpng3.info17 Feb 2012 20:32:37 -  1.3
+++ libpng3.info9 Mar 2012 17:09:45 -   1.4
@@ -1,6 +1,6 @@
 Package: libpng3
-Version: 1.2.44
-Revision: 3
+Version: 1.2.47
+Revision: 1
 Epoch: 1
 Depends: %N-shlibs (= %e:%v-%r), pkgconfig
 PatchFile: %n.patch
@@ -14,8 +14,8 @@
 <<
 Conflicts: libpng, libpng14, libpng15, libpng15-32bit
 Replaces: libpng, libpng14, libpng15, libpng15-32bit
-Source: mirror:sourceforge:libpng/libpng-%v.tar.bz2
-Source-MD5: e3ac7879d62ad166a6f0c7441390d12b
+Source: mirror:sourceforge:libpng/libpng-%v.tar.gz
+Source-MD5: 740e59df64630c56902d43b5905c67ed
 Conce-MD5: 
740e59df64630c56902d43b5905c67edr.gzgraphics/libpng3.info,vnfo,v30.179]v2ÿ€P+Pk2ÿ"Aѐ+òÇѐ+Ðu2ÿ@v2ÿóHѐ+€jҐ+èTò+’8î+@v2ÿ€P+Pk2ÿ
 j2ÿë]ѐ+6 
èè!è!Ðu2ÿ@v2ÿxôí+Pl2ÿ"Aѐ+^ѐ+Ðu2ÿð@ѐ+v2ÿÀïQ+óHѐ+àQ+ØäQ+¨éQ+€jҐ+xôí+Pl2ÿ
 
k2ÿë]ѐ+à!à!Ðu2ÿ@v2ÿȽ͐+0m2ÿ"Aѐ+^ѐ+Ðu2ÿð@ѐ+v2ÿv2ÿøu2ÿ[ò+Œp˜@v2ÿóHѐ+€jҐ+0m2ÿl2ÿë]ѐ+GHIJKMNOPÐu2ÿ@v2ÿHu¤+Ðn2ÿ"Aѐ+^ѐ+Ðu2ÿ0ïQ+óHѐ+î+ ©+àQ+ØäQ+¨éQ+€jҐ+Hu¤+Ðn2ÿm2ÿë]ѐ+8u¤+Ðn2ÿ@m2ÿë]ѐ+(u¤+Ðn2ÿpm2ÿë]ѐ+u¤+Ðn2ÿ m2ÿë]ѐ+
 ¨

[cvs] dists/10.4/unstable/main/finkinfo/sci pari-gp.info, 1.17, NONE pari-gp.patch, 1.3, NONE surf.info, 1.8, NONE

2012-01-16 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv11915

Removed Files:
pari-gp.info pari-gp.patch surf.info 
Log Message:
latest version to stable


--- pari-gp.info DELETED ---

--- surf.info DELETED ---

--- pari-gp.patch DELETED ---


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


[cvs] dists/10.4/stable/main/finkinfo/sci pari-gp.info, 1.7, 1.8 surf.info, 1.6, 1.7

2012-01-16 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv11787

Modified Files:
pari-gp.info surf.info 
Log Message:
latest version to stable


Index: pari-gp.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/pari-gp.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- pari-gp.info8 Jun 2011 18:39:43 -   1.7
+++ pari-gp.info17 Jan 2012 00:30:54 -  1.8
@@ -1,8 +1,8 @@
 Info2: <<
 Package: pari-gp%type_pkg[-nox]%type_pkg[-64bit]
-Type: -nox (. -nox -xemacs), -64bit (.)
-Version: 2.3.4
-Revision: 1003
+Type: -nox (. -nox -xemacs), -64bit (boolean)
+Version: 2.3.5
+Revision: 1
 Architecture: ( %type_raw[-64bit] = -64bit ) powerpc, ( %type_raw[-64bit] = 
-64bit ) i386
 Distribution: ( %type_raw[-64bit] = -64bit ) 10.5, ( %type_raw[-64bit] = 
-64bit ) 10.6
 PatchFile: %{ni}.patch
@@ -28,7 +28,7 @@
 Conflicts: pari-gp, pari-gp-nox, pari-gp-xemacs, pari-gp-64bit, 
pari-gp-nox-64bit, pari-gp-xemacs-64bit
 Replaces: pari-gp, pari-gp-nox, pari-gp-xemacs, pari-gp-64bit, 
pari-gp-nox-64bit, pari-gp-xemacs-64bit
 Source: http://pari.math.u-bordeaux.fr/pub/pari/unix/pari-%v.tar.gz
-Source-MD5: 35c896266e4257793387ba22d5d76078
+Source-MD5: 6077c6db56fdd32e39a06a9bf320e1f7
 Source2: http://pari.math.u-bordeaux.fr/pub/pari/packages/galdata.tgz
 Source2-MD5: 4b5203e36ddd9e1786cd761e78fdc4f0
 Source2ExtractDir: pari-%v

Index: surf.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/surf.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- surf.info   20 Jan 2010 06:01:10 -  1.6
+++ surf.info   17 Jan 2012 00:30:54 -  1.7
@@ -1,10 +1,10 @@
 Package: surf
-Version: 1.0.5
-Revision: 3
+Version: 1.0.6
+Revision: 2
 Source: mirror:sourceforge:%n/%n-%v.tar.gz
-Source-MD5: e19fbfdeffd60e8b178be89aeb43f7b1
-Depends: gtk+-shlibs, glib-shlibs, gmp-shlibs (>= 4.1.4-1), libmpfr1-shlibs, 
x11, libtiff-bin, libjpeg-bin, libgettext3-shlibs
-BuildDepends: gtk+, glib, gmp (>= 4.1.4-1), libmpfr1, libtiff, libjpeg, 
libgettext3-dev, gettext-bin, gettext-tools, x11-dev, flex, libiconv-dev
+Source-MD5: 598142168e940a818c7b5a7a66b35082
+Depends: gtk+-shlibs, glib-shlibs, gmp5-shlibs (>= 4.1.4-1), libmpfr4-shlibs, 
x11, libtiff-bin, libjpeg-bin, libgettext8-shlibs
+BuildDepends: gtk+, glib, gmp5 (>= 4.1.4-1), libmpfr4, libtiff, libjpeg8, 
libgettext8-dev, gettext-bin, gettext-tools, x11-dev, flex, libiconv-dev
 ConfigureParams: --mandir='${prefix}/share/man' 
 GCC: 4.0
 InstallScript: <<
@@ -12,9 +12,19 @@
   mkdir -p %i/share/surf
   mv docs %i/share/surf
   mv examples %i/share/surf
+  rm -rf %i/share/surf/docs/.svn
+  rm -rf %i/share/surf/examples/.svn
+  rm -rf %i/share/surf/examples/curves/.svn
+  rm -rf %i/share/surf/examples/surfaces/.svn
+  rm -rf %i/share/surf/examples/new/.svn
+  rm -rf %i/share/surf/examples/useless_but_nice/.svn
 <<
 DocFiles: AUTHORS COPYING ChangeLog NEWS README TODO
 License: GPL
 Description: Tool to visualize real algebraic geometry
+DescDetail: <<
+ This package is hopelessly gtk1, but a gtk2 fork called "surfer" is
+ under ongoing development (and available in fink).
+<<
 Homepage: http://surf.sourceforge.net
 Maintainer:  Dave Morrison 


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


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

2012-01-15 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv9559

Removed Files:
perlmagick-pm.info 
Log Message:
remove obsolete version from unstable


--- perlmagick-pm.info DELETED ---


--
RSA(R) Conference 2012
Mar 27 - Feb 2
Save $400 by Jan. 27
Register now!
http://p.sf.net/sfu/rsa-sfdev2dev2
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2012-01-15 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv9251

Added Files:
perlmagick-pm.info 
Log Message:
new upstream


--- NEW FILE: perlmagick-pm.info ---
Info2: <<
Package: perlmagick-pm%type_pkg[perl]
Version: 6.5.8.10
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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
NoPerlTests: true
Replaces: perlmagick-pm (<= 5.5.4-1)
Conflicts: perlmagick-pm (<= 5.5.4-1)
Source: mirror:sourceforge:imagemagick/legacy/ImageMagick-6.5.8-10.tar.gz
Source-MD5: 6f9abe829e718a04720cc4f9ea4f8606
SourceDirectory: ImageMagick-6.5.8-10/PerlMagick
BuildDepends: pango1-xft2-ft219-dev, pkgconfig, x11-dev, bzip2-dev, libjpeg8, 
lcms, libpng14, libtiff, libxml2, libiconv-dev, librsvg2 (>= 2.9.5-11), 
imagemagick2-dev (>= 6.5.8.10-1), libdjvulibre21-dev (>= 3.5.21-1003), 
fontconfig2-dev (>= 2.4.1-1), freetype219 (>= 2.3.5-1)
Depends: imagemagick (>= 6.5.8.10-1), perl%type_pkg[perl]-core, ghostscript, 
freetype219-shlibs (>= 2.3.5-1), x11, x11-shlibs, bzip2-shlibs, 
libjpeg8-shlibs, lcms-shlibs, libpng14-shlibs, libtiff-shlibs, libxml2-shlibs, 
libiconv, libdjvulibre21-shlibs (>= 3.5.21-1003)
UpdatePOD: true
SetLDFLAGS: -L%p/lib/fontconfig2/lib -L%p/lib/freetype219/lib
SetCPPFLAGS: -I%p/lib/fontconfig2/include -I%p/lib/freetype219/include 
-I%p/lib/freetype219/include/freetype2
CompileScript: <<
 #!/bin/sh -ev
 export PATH=%p/lib/freetype219/bin:%p/lib/fontconfig2/bin:$PATH
 export 
PKG_CONFIG_PATH="%p/lib/fontconfig2/lib/pkgconfig:%p/lib/freetype219/lib/pkgconfig:$PKG_CONFIG_PATH"
 pushd ..
   PKG_CONFIG=%p/bin/pkg-config ac_cv_func_poll=no ./configure --prefix=%p 
--without-perl --mandir='${prefix}/share/man' --with-bzlib --without-dps 
--without-fpx --without-fontconfig 
--with-gs-font-dir=%p/share/ghostscript/fonts --without-gslib --without-gvc 
--without-jbig --with-jpeg --without-jp2 --with-lcms --with-magic-plus-plus  
--without-openexr --with-png --without-rsvg --with-tiff --without-wmf 
--with-xml --with-zlib --with-djvu
 popd
if [ "%type_raw[perl]" == "5.8.8" ] ; then
 perl -pi -e "s|-fopenmp||" Makefile.PL
fi
 %{default_script}
<<
InstallScript: <<
  %{default_script}
  mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
DocFiles: MANIFEST README.txt ../LICENSE
Description: Perl interface to ImageMagick
License: BSD
Maintainer: Dave Morrison 
Homepage: http://www.imagemagick.org/
<<


--
RSA(R) Conference 2012
Mar 27 - Feb 2
Save $400 by Jan. 27
Register now!
http://p.sf.net/sfu/rsa-sfdev2dev2
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2012-01-15 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv8154

Added Files:
perlmagick-pm.info 
Log Message:
new upstream


--- NEW FILE: perlmagick-pm.info ---
Info2: <<
Package: perlmagick-pm%type_pkg[perl]
Version: 6.5.8.10
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_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
NoPerlTests: true
Replaces: perlmagick-pm (<= 5.5.4-1)
Conflicts: perlmagick-pm (<= 5.5.4-1)
Source: mirror:sourceforge:imagemagick/legacy/ImageMagick-6.5.8-10.tar.gz
Source-MD5: 6f9abe829e718a04720cc4f9ea4f8606
SourceDirectory: ImageMagick-6.5.8-10/PerlMagick
BuildDepends: pango1-xft2-ft219-dev, pkgconfig, x11-dev, bzip2-dev, libjpeg8, 
lcms, libpng14, libtiff, libxml2, libiconv-dev, librsvg2 (>= 2.9.5-11), 
imagemagick2-dev (>= 6.5.8.10-1), libdjvulibre21-dev (>= 3.5.21-1003), 
fontconfig2-dev (>= 2.4.1-1), freetype219 (>= 2.3.5-1)
Depends: imagemagick (>= 6.5.8.10-1), perl%type_pkg[perl]-core, ghostscript, 
freetype219-shlibs (>= 2.3.5-1), x11, x11-shlibs, bzip2-shlibs, 
libjpeg8-shlibs, lcms-shlibs, libpng14-shlibs, libtiff-shlibs, libxml2-shlibs, 
libiconv, libdjvulibre21-shlibs (>= 3.5.21-1003)
UpdatePOD: true
SetLDFLAGS: -L%p/lib/fontconfig2/lib -L%p/lib/freetype219/lib
SetCPPFLAGS: -I%p/lib/fontconfig2/include -I%p/lib/freetype219/include 
-I%p/lib/freetype219/include/freetype2
CompileScript: <<
 #!/bin/sh -ev
 export PATH=%p/lib/freetype219/bin:%p/lib/fontconfig2/bin:$PATH
 export 
PKG_CONFIG_PATH="%p/lib/fontconfig2/lib/pkgconfig:%p/lib/freetype219/lib/pkgconfig:$PKG_CONFIG_PATH"
 pushd ..
   PKG_CONFIG=%p/bin/pkg-config ac_cv_func_poll=no ./configure --prefix=%p 
--without-perl --mandir='${prefix}/share/man' --with-bzlib --without-dps 
--without-fpx --without-fontconfig 
--with-gs-font-dir=%p/share/ghostscript/fonts --without-gslib --without-gvc 
--without-jbig --with-jpeg --without-jp2 --with-lcms --with-magic-plus-plus  
--without-openexr --with-png --without-rsvg --with-tiff --without-wmf 
--with-xml --with-zlib --with-djvu
 popd
if [ "%type_raw[perl]" == "5.8.8" ] ; then
 perl -pi -e "s|-fopenmp||" Makefile.PL
fi
 %{default_script}
<<
InstallScript: <<
  %{default_script}
  mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
DocFiles: MANIFEST README.txt ../LICENSE
Description: Perl interface to ImageMagick
License: BSD
Maintainer: Dave Morrison 
Homepage: http://www.imagemagick.org/
<<


--
RSA(R) Conference 2012
Mar 27 - Feb 2
Save $400 by Jan. 27
Register now!
http://p.sf.net/sfu/rsa-sfdev2dev2
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/crypto pidgin.info, NONE, 1.1 pidgin.patch, NONE, 1.1

2012-01-13 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv3587

Added Files:
pidgin.info pidgin.patch 
Log Message:
add to 10.7, with maintainer's permission


--- NEW FILE: pidgin.info ---
Info3: <<
# Info3 packaging is temporary, just to support comments in depends fields
Package: pidgin
Version: 2.10.1
Revision: 1
# Architecture: powerpc, i386
Maintainer: David Fang 
Source: mirror:sourceforge:%n/%n-%v.tar.bz2
Source-MD5: eafb06b4083a201fe22d310e897a19dd
License: GPL
Homepage: http://www.pidgin.im/
Description: Multi-protocol instant messenger client
BuildDepends: <<
#   aspell-dev (>= 0.60.4-1001),
atk1 (>= 1.20.0-1),
cairo (>= 1.6-1),
cyrus-sasl2-dev,
db51-aes | db51,
dbus-glib1.2-dev,
dbus1.3-dev,
#   enchant1-dev,
#   expat1,
farsight2 (>= 0.0.9), 
fink (>= 0.24.12-1),
fontconfig2-dev (>= 2.4.1-1),
freetype219 (>= 2.3.5-1),
gconf2-dev,
gettext-bin,
gettext-tools,
glib2-dev (>= 2.14.0-1),
#   glitz,
gnutls26 (>= 2.2.2-3),
gstreamer-0.10-dev (>= 0.10.17-1),
gst-plugins-base-0.10-dev, 
gtk+2-dev (>= 2.12.8-1),
gtkspell2-dev (>= 2.0.11-1004),
intltool40,
#   libao2,
libavahi-client3-dev,
libavahi-common3-dev,
libavahi-glib1-dev,
#   libavahi-core7-dev,
libgettext8-dev,
#   libgpg-error, 
#   libgcrypt,
libiconv-dev,
libidn,
libncurses5,
#   libpng14,
libproxy1,
#   libtasn1-3,
libxml2 (>= 2.6.30-1),
nspr.0d,
pango1-xft2-ft219-dev (>= 1.18.4-4),
#   pixman (>= 0.11.0-1),
pkgconfig (>= 0.21-1),
python26,
silc-toolkit,
#   sqlite3-dev,
#   system-openssl-dev,
#   tcltk-dev,
x11-dev,
xft2-dev
<<
Depends: <<
%N-shlibs (= %v-%r),
#   aspell-shlibs (>= 0.60.4-1001),
gconf2,
gstreamer-0.10-shlibs (>= 0.10.17-1),
gtkspell2-shlibs (>= 2.0.11-1004)
<<
BuildConflicts: <<
tcltk-dev
<<
# rely on recursive Depends from pidgin-shlibs
PatchFile: %n.patch
PatchFile-MD5: fa7fd5d31293d8fee491909adb1f4fa5
DocFiles: <<
AUTHORS COPYING COPYRIGHT ChangeLog HACKING INSTALL
NEWS PLUGIN_HOWTO README
doc/*.txt
<<
# --with-perl-lib confuses the build somehow?
# TODO: re-enable perl
ConfigureParams: <<
--mandir=%p/share/man \
--disable-schemas-install \
--disable-perl \
--disable-meanwhile \
--disable-nm \
--disable-screensaver \
--enable-dbus \
--enable-cyrus-sasl \
--enable-farsight \
--enable-gnutls \
--enable-doxygen \
--enable-dot \
--enable-sm \
-C \
--disable-dependency-tracking \
--with-x \
--x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib \
--with-nspr-includes=%p/include/nspr --with-nspr-libs=%p/lib \

PKG_CONFIG_PATH="%p/lib/pango-ft219/lib/pkgconfig:%p/lib/fontconfig2/lib/pkgconfig:%p/lib/freetype219/lib/pkgconfig:$PKG_CONFIG_PATH"
   
<<
# SetCFLAGS: -Os -g
UseMaxBuildJobs: true
CompileScript: <<
#!/bin/sh -ev
# additional patching of configure: to fix validation-failure on .la files
# patch could also apply to configure.ac
mv configure configure.bkp1
sed -e '/LIBS=/s|-framework |-Wl,-framework,|g' \
-e '/eval.*TCL_LIB_SPEC=/a\
TCL_LIB_SPEC=`echo "$TCL_LIB_SPEC" | sed "s/-framework /-Wl,-framework,/g"`' \
-e '/eval.*TK_LIB_SPEC=/a\
TK_LIB_SPEC=`echo "$TK_LIB_SPEC" | sed "s/-framework /-Wl,-framework,/g"`' \
-e '/SM_LIBS.*libpath_add/s|-lICE|& -lX11|' \
configure.bkp1 > configure
chmod +x configure
mkdir build
cd build
PYTHON=%p/bin/python2.6 pythonpath=%p/bin/python2.6 ../configure %c
# hack HAVE_X11 because configure failed to find x11.pc
mv config.h config.h.bkp
sed '/HAVE_X11/s|.*|#define HAVE_X11 1|' config.h.bkp > config.h
make
<<
InfoTest: <<
TestScript: <<
#!/bin/sh -ev
cd build
make -k check || exit 2
fink-package-precedence --prohibit-bdep=pidgin-dev,finch-dev,libpurple .
<<
TestDepends: check, fink-package-precedence
TestConfigureParams: --enable-dependency-tracking
TestSuiteSize: small
<<
InstallScript: <<
#!/bin/sh -ev
cd build
# will need this when we re-enable perl:
# force man pages to install into prefix/share/man
# There must be a proper way to do this with Makefile.PL...
if test -f libpurple/plugins/perl/common/Makefile
then
cd libpurple/plugins/perl
# this Makefile is not produced until *after* make is run:
hackfile=common/Makefile
mv $hackfile $hackfile.orig
sed -e '/^INSTALLVENDORMAN3DIR/s|man/|share/man/|' \
-e '/^INSTALLSITEMAN3DIR/s|man/|share/man/|' \
$hackfile.orig > $hackfile
cd ../../..
cd pidgin/plugins/perl
# this Makefile is not produced until *after* make 

[cvs] dists/10.7/stable/main/finkinfo/crypto farsight2.info, NONE, 1.1 libnice.info, NONE, 1.1

2012-01-13 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv3470

Added Files:
farsight2.info libnice.info 
Log Message:
add to 10.7


--- NEW FILE: libnice.info ---
Package: libnice
Version: 0.0.9
Revision: 7
Depends: %N-shlibs (= %v-%r)
BuildDepends: <<
fink-package-precedence,
pkgconfig (>= 0.23.0-1),
glib2-dev (>= 2.22.0-1),
gstreamer-0.10-dev (>= 0.10.24-1),
libgettext8-dev (>= 0.14.5-2),
libgssdp-dev (>= 0.6.4-4),
libgupnp-igd (>= 0.1.3-3),
libgupnp-dev (>= 0.12.8-2),
libiconv-dev,
libsoup2.4.1-ssl (>= 2.26.2-2),
libxml2 (>= 2.6.32-1),
gtk-doc (>= 1.13-5)
<<
BuildDependsOnly: true
Conflicts: libnice10
Replaces: libnice10
Source: http://nice.freedesktop.org/releases/%n-%v.tar.gz
Source-MD5: 19ac2565ee7487c1f32487b948110b19
SetCFLAGS: -Os
ConfigureParams: --mandir=%p/share/man
CompileScript: <<
#!/bin/sh -ev
./configure %c
fink-package-precedence .
<<
InfoTest: <<
  TestScript: <<
#!/bin/sh -ev
# make -k check || status=2
# fink-package-precedence .
# test "$status" != 2 || exit 2
  <<
<<
InstallScript: make install DESTDIR=%d
DocFiles: AUTHORS COPYING* ChangeLog NEWS README TODO
Splitoff: <<
  Package: %N-shlibs
  Depends: <<
glib2-shlibs (>= 2.20.3-1),
libgettext8-shlibs (>= 0.14.5-2),
libgssdp-shlibs (>= 0.6.4-4),
libgupnp-igd-shlibs (>= 0.1.3-3),
libgupnp-shlibs (>= 0.12.8-2),
libiconv,
libsoup2.4.1-ssl-shlibs (>= 2.26.2-2),
libxml2-shlibs (>= 2.6.32-1)
  <<
  Files: <<
lib/libnice.0.dylib
  <<
  Shlibs: <<
%p/lib/libnice.0.dylib 6.0.0 %n (>= 0.0.9-2)
  <<
  DocFiles: COPYING
<<
Splitoff2: <<
Package: %N-doc
Conflicts: libnice10-doc
Replaces: libnice10-doc
Files: share/gtk-doc
DocFiles: COPYING
<<
Splitoff3: <<
  Package: %N-gstplugin
  Conflicts: libnice10-gstplugin
  Replaces: libnice10-gstplugin
  Depends: <<
%N-shlibs,
gstreamer-0.10-shlibs (>= 0.10.24-1)
  <<
  Files: lib/gstreamer-0.10/libgstnice.so
  DocFiles: COPYING
<<
License: LGPL
Homepage: http://nice.freedesktop.org/wiki
Maintainer: Jack Fink 
Description: The GLib ICE implementation
DescDetail: <<
Libnice is an implementation of the IETF's draft Interactive 
Connectivity
Establishment standard (ICE). It provides GLib-based library, libnice 
and
GStreamer elements. 
ICE is useful for applications that want to establish peer-to-peer UDP 
data
streams. It automates the process of traversing NATs and provides 
security
against some attacks. 
Existing standards that use ICE include Session Initiation Protocol 
(SIP)
and XMPP Jingle.
<<
DescPort: <<
HELP WANTED: 
The test suite fails 5 tests on darwin8 and 7 tests on darwin10.
Triaging these test failures would be a great help.  
<<

--- NEW FILE: farsight2.info ---
Package: farsight2
Version: 0.0.21
Revision: 2
BuildDependsOnly: true
Depends: %N-shlibs (= %v-%r)
BuildDepends: pkgconfig (>= 0.9.0-1), glib2-dev (>= 2.20.3-1), gnutls26 (>= 
2.8.0-1), gst-plugins-base-0.10-dev (>= 0.10.23-1), gstreamer-0.10-dev (>= 
0.10.23-1), libgcrypt (>= 1.4.4-1), libgettext8-dev (>= 0.14.5-2), libgpg-error 
(>= 1.6-2), libgssdp-dev (>= 0.6.4-4), libgupnp-igd (>= 0.1.3-2), libgupnp-dev 
(>= 0.12.8-2), libiconv-dev (>= 1.12-3), libsoup2.4.1-ssl (>= 2.26.2-2), 
libtasn1-3 (>= 2.2-2), libxml2 (>= 2.6.32-1), uuid (>= 1.6.2-4), libnice (>= 
0.0.9-2), python
Source: http://farsight.freedesktop.org/releases/%n/%n-%v.tar.gz
Source-MD5: 5898612c389f3538a4160e677c03087a
SetCFLAGS: -Os
ConfigureParams: --mandir=%p/share/man --disable-dependency-tracking 
--disable-python
InstallScript: <<
make install DESTDIR=%d
grep -rl /usr %i/share/gtk-doc/html/* |xargs perl -pi -e "s,/usr,%p,g"
<<
DocFiles: AUTHORS COPYING ChangeLog NEWS README
Splitoff: <<
  Package: %N-shlibs
  Depends: glib2-shlibs (>= 2.20.3-1), gnutls26-shlibs (>= 2.8.0-1), 
gst-plugins-base-0.10-shlibs (>= 0.10.23-1), gstreamer-0.10-shlibs (>= 
0.10.23-1), libgcrypt-shlibs (>= 1.4.4-1), libgettext8-shlibs (>= 0.14.5-2), 
libgpg-error-shlibs (>= 1.6-2), libgssdp-shlibs (>= 0.6.4-4), 
libgupnp-igd-shlibs (>= 0.1.3-2), libgupnp-shlibs (>= 0.12.8-2), libiconv (>= 
1.12-3), libsoup2.4.1-ssl-shlibs (>= 2.26.2-2), libtasn1-3-shlibs (>= 2.2-2), 
libxml2-shlibs (>= 2.6.32-1), uuid-shlibs (>= 1.6.2-4), libnice-shlibs (>= 
0.0.9-2)
  Files: <<
lib/libgstfarsight-0.10.0.dylib
lib/farsight2-0.0/lib*.so
lib/gstreamer-0.10/lib*.so
  <<
  Shlibs: <<
%p/lib/libgstfarsight-0.10.0.dylib 6.0.0 %n (>= 0.0.7-2)
  <<
  DocFiles: COPYING
<<
License: LGPL
Homepage: http://farsight.freedesktop.org
Maintainer: Jack Fink 
Description: Audio/Video communications framework



--
RSA(R) Conferen

[cvs] dists/10.7/stable/main/finkinfo/crypto silc-toolkit.info, NONE, 1.1 silc-toolkit.patch, NONE, 1.1

2012-01-05 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv11973

Added Files:
silc-toolkit.info silc-toolkit.patch 
Log Message:
add to 10.7, with maintainer's permission


--- NEW FILE: silc-toolkit.patch ---
diff -Nurd -x'*~' silc-toolkit-1.1.10.orig/configure.ac 
silc-toolkit-1.1.10/configure.ac
--- silc-toolkit-1.1.10.orig/configure.ac   2009-08-07 07:51:30.0 
-0400
+++ silc-toolkit-1.1.10/configure.ac2011-08-23 02:54:37.0 -0400
@@ -598,7 +598,6 @@
 compile_libs=true
 LIBSUBDIR=lib
 
-LDFLAGS="-L\$(silc_top_srcdir)/lib $LDFLAGS"
 
 # SIM support checking
 # XXX These needs to be changed as more supported platforms appear.
diff -Nurd -x'*~' silc-toolkit-1.1.10.orig/lib/Makefile.am 
silc-toolkit-1.1.10/lib/Makefile.am
--- silc-toolkit-1.1.10.orig/lib/Makefile.am2011-08-23 02:33:27.0 
-0400
+++ silc-toolkit-1.1.10/lib/Makefile.am 2011-08-23 03:37:07.0 -0400
@@ -29,9 +29,9 @@
 SILCLIB_DIRS = contrib silccoresilcutilsilcapputil 
silccrypt   silcskr silcmathsilcsim silcasn1silcske 
silchttpsilcsftpsilcvcard
 if SILC_ENABLE_SHARED
 if SILC_WIN32
-LIBTOOL_OPTS= -release $(LIB_BASE_VERSION) -rpath $(DESTDIR)$(libdir) 
-export-dynamic -no-undefined
+LIBTOOL_OPTS= -release $(LIB_BASE_VERSION) -export-dynamic -no-undefined
 else
-LIBTOOL_OPTS= -release $(LIB_BASE_VERSION) -rpath $(DESTDIR)$(libdir)
+LIBTOOL_OPTS= -release $(LIB_BASE_VERSION) -no-undefined
 endif
 LIBTOOL_SILC_VERSION = -version-info 
$(LIBSILC_CURRENT):$(LIBSILC_REVISION):$(LIBSILC_AGE)
 LIBTOOL_SILCCLIENT_VERSION = -version-info 
$(LIBSILCCLIENT_CURRENT):$(LIBSILCCLIENT_REVISION):$(LIBSILCCLIENT_AGE)
@@ -43,53 +43,45 @@
 LIBTOOL_SILCSERVER_VERSION =
 endif
 
-if SILC_WIN32
 SILC_LINK_LIBS=$(LIBS)
-SILCCLIENT_LINK_LIBS=$(LIBS) -lsilc
-SILCSERVER_LIBS=$(LIBS) -lsilc
-else
-SILC_LINK_LIBS=
-SILCCLIENT_LINK_LIBS=
-SILCSERVER_LIBS=
-endif
+SILCCLIENT_LINK_LIBS=$(LIBS) libsilc.la
+SILCSERVER_LIBS=$(LIBS) libsilc.la
 
-SILCLIB = libsilc.a
 
 # SILC Client Library dirs
 SILCCLIENTLIB_DIRS = silcclient
-SILCCLIENTLIB = libsilcclient.a
 
 
 SUBDIRS = $(SILCLIB_DIRS) $(SILCSERVERLIB_DIRS) $(SILCCLIENTLIB_DIRS)
 
-CLEANFILES = libsilc.a $(SILCCLIENTLIB) $(SILCSERVERLIB)
-DISTCLEANFILES = libsilc.a $(SILCCLIENTLIB) $(SILCSERVERLIB)
 
 remove:
-rm -f $(CLEANFILES)
 
-all:
-   $(MAKE) remove $(SILCLIB) $(SILCSERVERLIB) $(SILCCLIENTLIB)
-
-install-exec-hook:
-   -mkdir -p $(DESTDIR)$(libdir)
-   -$(LIBTOOL) --mode=install $(INSTALL) libsilc.la $(DESTDIR)$(libdir)/
-   -$(LIBTOOL) --mode=install $(INSTALL) libsilcclient.la 
$(DESTDIR)$(libdir)/
 
 LIB_BASE_VERSION=@LIB_BASE_VERSION@
 LIBSILC_CURRENT=@LIBSILC_CURRENT@
 LIBSILC_REVISION=@LIBSILC_REVISION@
 LIBSILC_AGE=@LIBSILC_AGE@
 
-libsilc.a:
-   find $(SILCLIB_DIRS) -type f -name *.lo | xargs $(LIBTOOL) --mode=link 
$(CC) $(CFLAGS) $(LDFLAGS) $(SILC_LINK_LIBS) $(LIBTOOL_SILC_VERSION) 
$(LIBTOOL_OPTS) -o libsilc.la
+if SILC_SIM
+silcsimlibs = silcsim/libsilcsim.la
+else
+silcsimlibs =
+endif
+lib_LTLIBRARIES = libsilc.la
+libsilc_la_LDFLAGS = $(LIBTOOL_SILC_VERSION) $(LIBTOOL_OPTS)
+libsilc_la_SOURCES =
+libsilc_la_LIBADD = contrib/libcontrib.la silccore/libsilccore.la 
silcutil/libsilcutil.la silcapputil/libsilcapputil.la silccrypt/libsilccrypt.la 
silcskr/libsilcskr.la silcmath/libsilcmath.la $(silcsimlibs) 
silcasn1/libsilcasn1.la silcske/libsilcske.la silchttp/libsilchttp.la 
silcsftp/libsilcsftp.la silcvcard/libsilcvcard.la $(SILC_LINK_LIBS)
 
 LIBSILCCLIENT_CURRENT=@LIBSILCCLIENT_CURRENT@
 LIBSILCCLIENT_REVISION=@LIBSILCCLIENT_REVISION@
 LIBSILCCLIENT_AGE=@LIBSILCCLIENT_AGE@
 
-libsilcclient.a:
-   find $(SILCCLIENTLIB_DIRS) -type f -name *.lo | xargs   $(LIBTOOL) 
--mode=link $(CC) $(CFLAGS) $(LDFLAGS)   $(SILCCLIENT_LINK_LIBS) 
$(LIBTOOL_SILCCLIENT_VERSION)   $(LIBTOOL_OPTS) -o libsilcclient.la
+lib_LTLIBRARIES += libsilcclient.la
+libsilcclient_la_LDFLAGS = $(LIBTOOL_SILCCLIENT_VERSION) $(LIBTOOL_OPTS)
+libsilcclient_la_SOURCES =
+libsilcclient_la_LIBADD = silcclient/libsilcclient.la $(SILCCLIENT_LINK_LIBS)
 
 
 pkgconfigdir = $(libdir)/pkgconfig
diff -Nurd -x'*~' silc-toolkit-1.1.10.orig/lib/silc.pc.in 
silc-toolkit-1.1.10/lib/silc.pc.in
--- silc-toolkit-1.1.10.orig/lib/silc.pc.in 2009-08-07 07:51:24.0 
-0400
+++ silc-toolkit-1.1.10/lib/silc.pc.in  2011-08-23 03:18:16.0 -0400
@@ -6,6 +6,6 @@
 Name: @PACKAGE@
 Description: SILC Library
 Version: @VERSION@
-Libs: -L${libdir} -lsilc @LIBS@
+Libs: -L${libdir} -lsilc
 Cflags: -I${includedir}
 
diff -Nurd -x'*~' silc-toolkit-1.1.10.orig/lib/silcclient.pc.in 
silc-toolkit-1.1.10/lib/silcclient.pc.in
--- silc-toolkit-1.1.10.orig/lib/silcclient.pc.in   2009-08-07 
07:51:26.0 -0400
+++ silc-toolkit-1.1.10/lib/silcclient.pc.in2011-08-23 03:18:13.0 
-0400
@@ -7,6 +7,6 @@
 Description: SILC Client Library
 Version: @VERSION@
 Require

[cvs] dists/10.7/stable/main/finkinfo/sci 4ti2.info,1.3,1.4

2011-12-04 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv11528

Modified Files:
4ti2.info 
Log Message:
ensure use of the latest glpk


Index: 4ti2.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/4ti2.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 4ti2.info   3 Dec 2011 19:50:28 -   1.3
+++ 4ti2.info   4 Dec 2011 16:30:30 -   1.4
@@ -1,8 +1,8 @@
 Package: 4ti2
 Version: 1.3.2
-Revision: 100
-BuildDepends: gmp5, glpk-dev
-Depends: gmp5-shlibs (>= 5.0.2-1), libgmpxx5-shlibs (>= 5.0.2-1), glpk-shlibs 
(>= 4.26-1)
+Revision: 101
+BuildDepends: gmp5 (>= 5.0.2-1), glpk-dev (>= 4.44-1)
+Depends: gmp5-shlibs (>= 5.0.2-1), libgmpxx5-shlibs (>= 5.0.2-1), glpk-shlibs 
(>= 4.44-1)
 Source: http://4ti2.de/version_%v/4ti2-%v.tar.gz
 Source-MD5: 93367e63944d8bb18192c4984544ed0d
 License: GPL2+


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2011-12-04 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory vz-cvs-3.sog:/tmp/cvs-serv11379

Modified Files:
4ti2.info 
Log Message:
switch to gmp5


Index: 4ti2.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/4ti2.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- 4ti2.info   3 Dec 2011 19:51:31 -   1.1
+++ 4ti2.info   4 Dec 2011 16:28:13 -   1.2
@@ -1,8 +1,8 @@
 Package: 4ti2
 Version: 1.3.2
-Revision: 2
-BuildDepends: gmp, glpk-dev
-Depends: gmp-shlibs (>= 4.2.1-1), libgmpxx-shlibs (>= 4.2.1-1), glpk-shlibs 
(>= 4.26-1)
+Revision: 3
+BuildDepends: gmp5 (>= 5.0.1-2), glpk-dev (>= 4.44-1)
+Depends: gmp5-shlibs (>= 5.0.1-2), libgmpxx5-shlibs (>= 4.2.1-1), glpk-shlibs 
(>= 4.44-1)
 Source: http://4ti2.de/version_%v/4ti2-%v.tar.gz
 Source-MD5: 93367e63944d8bb18192c4984544ed0d
 License: GPL2+


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs libgeos3.3.1.info, NONE, 1.1

2011-11-28 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv26244

Added Files:
libgeos3.3.1.info 
Log Message:
new upstream version; compiles on 10.7/XCode4.2.  with maintainer's permission


--- NEW FILE: libgeos3.3.1.info ---
Info4: <<
Package: libgeos3.3.1
Version: 3.3.1
Revision: 1
Description: Geometry Engine - Open Source
License: LGPL
Maintainer: BABA Yoshihiko 

Depends: %N-shlibs (>= %v-%r)
BuildDepends: fink (>= 0.29.7-1)
BuildDependsOnly: true
GCC: 4.0

Source: http://download.osgeo.org/geos/geos-%v.tar.bz2
Source-MD5: b1ceefe205c9ee520b99f2b072c345f7

UseMaxBuildJobs: true
CompileScript: <<
#!/bin/sh -ev
if [ -x /usr/bin/gcc-4.2 ]; then
export CC="gcc-4.2" CXX="g++-4.2"
fi
./configure --prefix=%p/opt/%N
make
<<

InstallScript: make -j1 install-strip DESTDIR=%d
DocFiles: AUTHORS ChangeLog COPYING README TODO
SplitOff: <<
Package: %N-shlibs
DocFiles: AUTHORS ChangeLog COPYING README TODO
Files: <<
opt/%N/lib/libgeos-%v.dylib
opt/%N/lib/libgeos_c.1*.dylib
<<
Shlibs: <<
%p/opt/%N/lib/libgeos-%v.dylib  0.0.0 %n (>= 3.3.1-1)
%p/opt/%N/lib/libgeos_c.1.dylib 9.0.0 %n (>= 3.3.1-1)
<<
<<

Homepage: http://geos.refractions.net/
DescDetail: <<
Geometry Engine - Open Source is a C++ port of the Java Topology Suite
(JTS). As such, it aims to contain the complete functionality of JTS
in C++. This includes all the OpenGIS "Simple Features for SQL"
spatial predicate functions and spatial operators, as well as specific
JTS topology functions such as IsValid().
<<
<<



--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
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/x11-wm fvwm2.info, 1.17, NONE fvwm2.patch, 1.1, NONE

2011-11-27 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/x11-wm
In directory vz-cvs-3.sog:/tmp/cvs-serv26073

Removed Files:
fvwm2.info fvwm2.patch 
Log Message:
latest version is now in stable, so we can remove the unstable one


--- fvwm2.info DELETED ---

--- fvwm2.patch DELETED ---


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
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/x11-wm fvwm2.info,1.9,1.10

2011-11-27 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/x11-wm
In directory vz-cvs-3.sog:/tmp/cvs-serv25633

Modified Files:
fvwm2.info 
Log Message:
now with bidi support (thanks, dmacks)


Index: fvwm2.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/x11-wm/fvwm2.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- fvwm2.info  11 May 2009 18:02:00 -  1.9
+++ fvwm2.info  28 Nov 2011 03:20:52 -  1.10
@@ -1,15 +1,24 @@
 Info2: <<
 Package: fvwm2%type_pkg[-no-gnome]
 Type: -no-gnome (boolean)
-Version: 2.4.20
-Revision: 1003
+Version: 2.6.1
+Revision: 3
 Distribution: (%type_raw[-no-gnome] = .) 10.4, (%type_raw[-no-gnome] = .) 10.5
 Depends: <<
- fvwm-common%type_pkg[-no-gnome] (= %v-%r), x11, readline5-shlibs (>= 
5.0-1004), libstroke-shlibs, gtk+-shlibs, imlib-shlibs (>= 1.9.14-2), gettext,
+ fvwm-common%type_pkg[-no-gnome] (= %v-%r), x11, 
+ readline5-shlibs (>= 5.0-1004), libstroke-shlibs, gtk+-shlibs, gtk+2-shlibs,
+ imlib-shlibs (>= 1.9.14-2), libpng3-shlibs, 
+ libgettext8-shlibs, librsvg2-shlibs, 
+ glib-shlibs, glib2-shlibs, freetype219-shlibs,
+ cairo-shlibs, libncurses5-shlibs, fribidi-shlibs (>= 0.19.2-2),
  (%type_raw[-no-gnome] = .) gnome-libs-shlibs (>= 1.4.2-3)
 <<
 BuildDepends: <<
- libstroke (>= 0.5.1-3), fink (>= 0.24.12), libjpeg, libpng3, libtiff, glib, 
giflib, readline5 (>= 5.0-1004), gtk+, imlib (>= 1.9.14-2), x11-dev, 
gettext-dev,
+ libstroke (>= 0.5.1-3), fink (>= 0.24.12), libjpeg8, libpng3, libtiff, 
+ glib, glib2-dev, freetype219, 
+ giflib, readline5 (>= 5.0-1004), gtk+, gtk+2-dev, imlib (>= 1.9.14-2), 
+ x11-dev, libncurses5, fribidi-dev (>= 0.19.2-2),
+ libgettext8-dev, librsvg2, pkgconfig, libxslt-bin, gettext-tools, cairo, 
  (%type_raw[-no-gnome] = .) audiofile, 
  (%type_raw[-no-gnome] = .) esound, 
  (%type_raw[-no-gnome] = .) orbit-dev, 
@@ -19,10 +28,10 @@
 Conflicts: fvwm2, fvwm2-no-gnome, fvwm-ewmh, fvwm (<= 1.24r-5)
 Replaces: fvwm2, fvwm2-no-gnome, fvwm-ewmh, fvwm-common, fvwm-common-no-gnome, 
fvwm-common-ewmh
 Source: ftp://ftp.fvwm.org/pub/fvwm/version-2/fvwm-%v.tar.gz
-Source-MD5: 3ac10558411c896f3afba285697cf42c
+Source-MD5: c83c185d4241739d8b6161933e810260
 PatchFile: %{ni}.patch
 PatchFile-MD5: a30e94aacc5fcd36e9af2926d7648c33
-ConfigureParams: (%type_raw[-no-gnome] = -no-gnome) --disable-sm 
(%type_raw[-no-gnome] = -no-gnome) --without-gnome --libexecdir='${prefix}/lib' 
--mandir='${prefix}/share/man' 
--with-iconpath=/usr/X11R6/includes/X11/bitmaps:%p/share/bitmaps:%p/share/pixmaps
 --x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib
+ConfigureParams: (%type_raw[-no-gnome] = -no-gnome) --disable-sm 
(%type_raw[-no-gnome] = -no-gnome) --without-gnome --libexecdir='${prefix}/lib' 
--mandir='${prefix}/share/man' --x-includes=/usr/X11R6/include 
--x-libraries=/usr/X11R6/lib
 CompileScript: <<
  ./configure %c
  make RANLIB="ranlib -c"
@@ -30,13 +39,15 @@
 InstallScript: <<
  #!/bin/sh -ev
  make install prefix=%i
- rm %i/bin/fvwm
- rm %i/bin/fvwm-root
- mv %i/bin/xpmroot %i/bin/fvwm-root
- ln -s %p/bin/fvwm-root %i/bin/xpmroot2
- rm %i/share/man/man1/fvwm-root.1
- mv %i/share/man/man1/xpmroot.1 %i/share/man/man1/fvwm-root.1
- ln -s %p/share/man/man1/fvwm-root.1 %i/share/man/man1/xpmroot2.1
+ pushd %i/bin
+ rm fvwm2
+ mv fvwm fvwm2
+ rm xpmroot
+ ln -s fvwm-root xpmroot2
+ popd
+ pushd %i/share/man/man1
+ ln -s fvwm-root.1 xpmroot2.1
+ popd
  if [ "%type_raw[-no-gnome]" == "." ]; then
mkdir -p %i/share/gnome/wm-properties 
install -p -m 644 fvwm2.desktop %i/share/gnome/wm-properties 
@@ -108,6 +119,8 @@
  using the alternatives system.  In the fvwm2/fvwm2-no-gnome/fvwm-ewmh
  packages, we name the executables fvwm2 and fvwm-root and create xpmroot2
  as a symlink to fvwm-root.
+
+ Yes, this package depends on both glib and glib2, and on both gtk+ and gtk+2.
 <<
 Homepage: http://www.fvwm.org/
 Maintainer:  Dave Morrison 


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs fribidi.info,1.5,1.6

2011-11-27 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv13487

Modified Files:
fribidi.info 
Log Message:
rearrange some files (thanks dmacks)


Index: fribidi.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/fribidi.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- fribidi.info27 Nov 2011 03:44:03 -  1.5
+++ fribidi.info28 Nov 2011 02:50:03 -  1.6
@@ -1,6 +1,6 @@
 Package: fribidi
 Version: 0.19.2
-Revision: 1
+Revision: 2
 Depends: %N-shlibs (= %v-%r)
 Source: http://fribidi.org/download/%n-%v.tar.gz
 Source-MD5: 626db17d2d99b43615ad9d12500f568a
@@ -14,8 +14,9 @@
 SplitOff2: <<
   Package: %N-dev
   Depends: %N-shlibs (= %v-%r)
+  Replaces: %N (<= 0.19.2-1)
   BuildDependsOnly: True
-  Files: include lib/libfribidi.dylib lib/libfribidi.a lib/libfribidi.la
+  Files: include lib/libfribidi.dylib lib/libfribidi.a lib/libfribidi.la 
lib/pkgconfig share/man
   Description: Developer files for fribidi package
   DocFiles: AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO
 <<


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs fribidi.info,1.2,1.3

2011-11-27 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv3905

Modified Files:
fribidi.info 
Log Message:
rearrange some files (thanks dmacks)


Index: fribidi.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/fribidi.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- fribidi.info27 Nov 2011 03:43:02 -  1.2
+++ fribidi.info27 Nov 2011 23:00:13 -  1.3
@@ -1,6 +1,6 @@
 Package: fribidi
 Version: 0.19.2
-Revision: 1
+Revision: 2
 Depends: %N-shlibs (= %v-%r)
 Source: http://fribidi.org/download/%n-%v.tar.gz
 Source-MD5: 626db17d2d99b43615ad9d12500f568a
@@ -14,8 +14,9 @@
 SplitOff2: <<
   Package: %N-dev
   Depends: %N-shlibs (= %v-%r)
+  Replaces: %N (<= 0.19.2-1)
   BuildDependsOnly: True
-  Files: include lib/libfribidi.dylib lib/libfribidi.a lib/libfribidi.la
+  Files: include lib/libfribidi.dylib lib/libfribidi.a lib/libfribidi.la 
lib/pkgconfig share/man
   Description: Developer files for fribidi package
   DocFiles: AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO
 <<


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2011-11-27 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv3755

Removed Files:
fribidi-pm.info fribidi-pm.patch 
Log Message:
has been abandoned upstream, and no longer builds


--- fribidi-pm.info DELETED ---

--- fribidi-pm.patch DELETED ---


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


  1   2   3   4   5   6   7   8   9   10   >