Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1521
Added Files:
math-matrix-pm.info ai-nnflex-pm.info
algorithm-dependency-pm.info annocpan-perldoc-pm.info
annocpan-perldoc-pm.patch
Log Message:
to 10.7
--- NEW FILE: ai-nnflex-pm.info ---
Package: ai-nnflex-pm
Version: 0.24
Revision: 3
Depends: math-matrix-pm
Source: mirror:cpan:authors/id/C/CC/CCOLBOURN/ai-nnflex/AI-NNFlex-%v.tar.gz
Type: perl
UpdatePOD: True
Source-MD5: 9d192b7c209ccafbca88d6ac6048b677
DocFiles: CHANGES README.txt
DescPackaging: <<
Former Maintainer: Koen van der Drift <[email protected]>
<<
Description: Perl module for implementing neural networks
DescDetail: <<
AI::NNFlex is a base class for constructing your own neural network
modules. To implement a neural network, start with the documentation for
AI::NNFlex::Backprop, included in this distribution
<<
License: Artistic
Maintainer: None <[email protected]>
Homepage: http://search.cpan.org/dist/AI-NNFlex/
--- NEW FILE: annocpan-perldoc-pm.info ---
Info2: <<
Package: annocpan-perldoc-pm%type_pkg[perl]
Version: 0.10
Revision: 3
Source: mirror:cpan:authors/id/I/IT/ITUB/AnnoCPAN-Perldoc-%v.tar.gz
Source-MD5: bf22a5eb9d3535a73e55883b83940e13
PatchFile: %{Ni}.patch
PatchFile-MD5: ce888524d56997753b1d08f3b154df25
PatchScript: sed 's|@PREFIX@|%p|g' < %{PatchFile} | patch -p1
Type: perl (5.12.3)
UpdatePOD: true
BuildDepends: fink (>= 0.24.12), test-pod-pm
Depends: <<
perl%type_pkg[perl]-core, dbd-sqlite-pm%type_pkg[perl],
dbi-pm%type_pkg[perl], io-string-pm
<<
Recommends: annocpan-perldoc-pm-bin, annocpan-perldoc-syncdb-pm-bin
Conflicts: <<
%{Ni}588-bin, %{Ni}5100-bin
<<
Replaces: <<
%{Ni}588-bin, %{Ni}5100-bin
<<
InstallScript: <<
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]
mv %i/bin/annopod %i/bin/annopod-%type_raw[perl]
<<
DocFiles: README
PostInstScript: <<
if [ "$1" = configure ]; then
update-alternatives --install %p/bin/annopod annopod
%p/bin/annopod-%type_raw[perl] %type_pkg[perl]
fi
<<
PreRmScript: <<
if [ "$1" = remove ]; then
update-alternatives --remove annopod %p/bin/annopod-%type_raw[perl]
fi
<<
License: Artistic/GPL
Description: Integrate AnnoCPAN notes locally into perldoc
DescDetail: <<
The annopod command-line enhances the standard perldoc command by
including user-submitted comments from the live documentation at
annocpan.org.
This package requires that you install annopod.db somewhere on your
system. See the AnnoCPAN-Perldoc homepage for the download URL of
that file, or simply install the Fink package
annocpan-perldoc-syncdb-pm-bin and add syncannopod to your cron.
If you like the annopod command line, I recommend you alias perldoc
to annopod.
<<
Maintainer: None <[email protected]>
Homepage: http://search.cpan.org/dist/AnnoCPAN-Perldoc
DescPackaging: <<
This package originally depended artificially on Pod::Perldoc v3.14,
Really, an earlier version (like v3.13 which is in the Perl 5.8.6
core) suffices on all platforms except Windows/Cygwin. So, we patch
Makefile.PL to downgrade that dependency to make this easier to
package.
The various files in this distro are patched to add %p/var/annocpan
to the search path for the database file.
Report bugs to the maintainer or the CPAN bug tracker:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=AnnoCPAN-Perldoc
Former Maintainer: Chris Dolan <[email protected]>
%N-man splitoff merged back into %N as of 0.10-2
%N-bin splitoff merged back into %N as of 0.10-3
<<
<<
--- NEW FILE: annocpan-perldoc-pm.patch ---
diff -Nur AnnoCPAN-Perldoc-0.10-orig/Makefile.PL
AnnoCPAN-Perldoc-0.10/Makefile.PL
--- AnnoCPAN-Perldoc-0.10-orig/Makefile.PL 2005-07-21 21:37:41.000000000
-0500
+++ AnnoCPAN-Perldoc-0.10/Makefile.PL 2005-09-27 10:24:17.000000000 -0500
@@ -10,7 +10,7 @@
DBD::SQLite => 1.0,
IO::String => 0,
Digest::MD5 => 0,
- Pod::Perldoc => 3.14,
+ Pod::Perldoc => 3.13,
},
);
diff -Nur AnnoCPAN-Perldoc-0.10-orig/README AnnoCPAN-Perldoc-0.10/README
--- AnnoCPAN-Perldoc-0.10-orig/README 2005-07-21 21:22:57.000000000 -0500
+++ AnnoCPAN-Perldoc-0.10/README 2005-09-27 21:32:03.000000000 -0500
@@ -17,6 +17,7 @@
$HOME
$USERPROFILE
$ALLUSERSPROFILE
+@PREFIX@/var/annocpan
/var/annocpan
It can also be called .annopod.db, to hide it in Unix-like systems. It is your
diff -Nur AnnoCPAN-Perldoc-0.10-orig/annopod AnnoCPAN-Perldoc-0.10/annopod
--- AnnoCPAN-Perldoc-0.10-orig/annopod 2005-07-21 21:36:28.000000000 -0500
+++ AnnoCPAN-Perldoc-0.10/annopod 2005-09-27 21:31:43.000000000 -0500
@@ -43,6 +43,7 @@
$HOME
$USERPROFILE
$ALLUSERSPROFILE
+@PREFIX@/var/annocpan
/var/annocpan
It can also be called .annopod.db, to hide it in Unix-like systems. It is your
diff -Nur AnnoCPAN-Perldoc-0.10-orig/lib/AnnoCPAN/Perldoc/Filter.pm
AnnoCPAN-Perldoc-0.10/lib/AnnoCPAN/Perldoc/Filter.pm
--- AnnoCPAN-Perldoc-0.10-orig/lib/AnnoCPAN/Perldoc/Filter.pm 2005-07-21
21:12:11.000000000 -0500
+++ AnnoCPAN-Perldoc-0.10/lib/AnnoCPAN/Perldoc/Filter.pm 2005-09-27
21:30:51.000000000 -0500
@@ -32,7 +32,7 @@
my $signature = md5_hex($pod);
my $db_file;
DIR: for my $dir (@ENV{qw(HOME USERPROFILE ALLUSERSPROFILE)},
- '/var/annocpan', '.'
+ '@PREFIX@/var/annocpan', '/var/annocpan', '.'
) {
for my $file ('annopod.db', '.annopod.db') {
no warnings 'uninitialized';
diff -Nur AnnoCPAN-Perldoc-0.10-orig/lib/AnnoCPAN/Perldoc.pm
AnnoCPAN-Perldoc-0.10/lib/AnnoCPAN/Perldoc.pm
--- AnnoCPAN-Perldoc-0.10-orig/lib/AnnoCPAN/Perldoc.pm 2005-07-21
21:29:50.000000000 -0500
+++ AnnoCPAN-Perldoc-0.10/lib/AnnoCPAN/Perldoc.pm 2005-09-27
21:31:20.000000000 -0500
@@ -101,6 +101,7 @@
$HOME
$USERPROFILE
$ALLUSERSPROFILE
+ @PREFIX@/var/annocpan
/var/annocpan
It can also be called .annopod.db, to hide it in Unix-like systems. It is your
--- NEW FILE: math-matrix-pm.info ---
Package: math-matrix-pm
Version: 0.5
Revision: 1
Source: mirror:cpan:authors/id/U/UL/ULPFR/Math-Matrix-%v.tar.gz
Type: perl
UpdatePOD: True
Source-MD5: 840a9ef812ad12bd1798752f1e90cf41
DocFiles: README MANIFEST
DescPackaging: <<
Former Maintainer: Koen van der Drift <[email protected]>
<<
Description: Perl module to multiply and invert matrices
DescDetail: <<
Math::Matrix is a is a perl module to perform various operations
on mathematical matrices
<<
License: Artistic
Maintainer: None <[email protected]>
Homepage: http://search.cpan.org/~ulpfr/Math-Matrix/
--- NEW FILE: algorithm-dependency-pm.info ---
Info2: <<
Package: algorithm-dependency-pm%type_pkg[perl]
Version: 1.110
Revision: 1
Description: Base class for implementing dependency trees
Type: perl (5.12.3)
License: Artistic/GPL
Maintainer: Daniel Macks <[email protected]>
Depends: <<
params-util-pm%type_pkg[perl],
perl%type_pkg[perl]-core
<<
BuildDepends: <<
test-classapi-pm%type_pkg[perl]
<<
Source: mirror:cpan:authors/id/A/AD/ADAMK/Algorithm-Dependency-%v.tar.gz
Source-MD5: dc1dab2ac44c315caa092397423b1429
UpdatePOD: true
InstallScript: <<
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
DocFiles: Changes LICENSE README
Homepage: http://search.cpan.org/dist/Algorithm-Dependency
<<
------------------------------------------------------------------------------
EMC VNX: the world's simplest storage, starting under $10K
The only unified storage solution that offers unified management
Up to 160% more powerful than alternatives and 25% more efficient.
Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev
_______________________________________________
Fink-commits mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.cvs