[cvs] fink/perlmod/Fink ChangeLog, 1.1439.2.6, 1.1439.2.7 SelfUpdate.pm, 1.117.2.5, 1.117.2.6

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv2211

Modified Files:
  Tag: selfupdate_classes
ChangeLog SelfUpdate.pm 
Log Message:
Massively overhaul SU::check...headed towards plugin-able format


Index: SelfUpdate.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/SelfUpdate.pm,v
retrieving revision 1.117.2.5
retrieving revision 1.117.2.6
diff -u -d -r1.117.2.5 -r1.117.2.6
--- SelfUpdate.pm   8 Mar 2007 03:12:30 -   1.117.2.5
+++ SelfUpdate.pm   8 Mar 2007 07:28:54 -   1.117.2.6
@@ -112,124 +112,118 @@
 
 =cut
 
+# TODO: auto-detect all available classes and their descs
+our @known_method_classes = qw( rsync CVS point );
+our %known_method_descs = (
+   'rsync' => 'rsync',
+   'CVS'   => 'cvs',
+   'point' => 'Stick to point releases',
+);
+
 sub check {
-   my $method = shift;
+   my $method = shift;  # requested selfupdate method to use
+
+   $method = '' if ! defined $method;
 
{
+   # compatibility for old calling parameters
my %methods = (
-   0   => undef,
-   1   => 'cvs',
-   2   => 'rsync',
-   'cvs'   => 'cvs',
-   'rsync' => 'rsync',
+   0 => '',
+   1 => 'cvs',
+   2 => 'rsync',
);
-   $method = 0 if ! defined $method;
-   if (! exists $methods{lc $method}) {
-   die "Invalid method '$method' passed to 
Selfupdate::check\n";
+   if (length $method and exists $methods{$method}) {
+   $method = $methods{$method};
}
-   $method = $methods{lc $method};
}
 
-   if (defined $method) {
+   # canonical form is all-lower-case
+   $method = lc($method);
+   my $prev_method = lc($config->param_default("SelfUpdateMethod", ''));
+
+   if ($method eq '') {
+   # no explicit method requested
+
+   if ($prev_method ne '') {
+   # use existing default
+   $method = $prev_method;
+   } else {
+   # no existing default so ask user
+
+   $method = &prompt_selection(
+   'Choose an update method',
+   intro   => 'fink needs you to choose a 
SelfUpdateMethod.',
+   default => [ 'value' => 'rsync' ],  # TODO: 
make sure this exists
+   choices => [ map { $known_method_descs{$_} => 
lc($_) } @known_method_classes ]
+   );
+   }
+   } else {
+   # explicit method requested
&print_breaking("\n Please note: the command 'fink selfupdate' "
-   . "should be used for routine updating; you 
only need to use " 
-   . "'fink selfupdate-cvs' or 'fink 
selfupdate-rsync' if you are "
-   . "changing your update method. \n\n");
-   }
-   if (! defined $config->param("SelfUpdateMethod") and defined $method) {
-   my $answer = $method;
-   $answer = 'point' if !defined $answer;
-   &need_devtools($answer);
-   &print_breaking("fink is setting your default update method to 
$answer \n");
-   $config->set_param("SelfUpdateMethod", $answer);
-   $config->save();
+   . "should be used for routine 
updating; you only "
+   . "need to use a command like 
'fink selfupdate-cvs' "
+   . "or 'fink selfupdate-rsync' 
if you are changing "
+   . "your update method. \n\n");
+
+   if ($method ne $prev_method) {
+   # requested a method different from previously-saved 
default
+   # better double-check that user really wants to do this
+   my $answer =
+   &prompt_boolean("The current selfupdate method 
is $prev_method. "
+   . "Do you wish 
to change this default method "
+   . "to $method?",
+   default => 1
+   );
+   return if !$answer;
+   }
}
 
-   # The user has not chosen a selfupdatemethod yet, always ask
-   # if the fink.conf setting is not there.
-   if (! defined $config->param("SelfUpdateMethod") and ! defined $method) 
{
-   m

[cvs] fink/perlmod/Fink/SelfUpdate point.pm, 1.1.2.4, 1.1.2.5 rsync.pm, 1.1.2.5, 1.1.2.6

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink/SelfUpdate
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv2211/SelfUpdate

Modified Files:
  Tag: selfupdate_classes
point.pm rsync.pm 
Log Message:
Massively overhaul SU::check...headed towards plugin-able format


Index: point.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/SelfUpdate/Attic/point.pm,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -u -d -r1.1.2.4 -r1.1.2.5
--- point.pm8 Mar 2007 03:12:30 -   1.1.2.4
+++ point.pm8 Mar 2007 07:28:54 -   1.1.2.5
@@ -69,11 +69,10 @@
}
my $latest_fink = cat "$srcdir/$currentfink";
chomp($latest_fink);
-   if ( ! Fink::SelfUpdate::CVS->stamp_check() and ! 
Fink::SelfUpdate::rsync->stamp_check() ) {
-   # no evidence of cvs or rsync selfupdates, so assume on-disk
-   # package descriptions are a point/tarball release, therefore
-   # can skip doing another point/tarball release if we already
-   # have the latest release version
+   if ($class->stamp_check()) {
+   # on-disk package descriptions are a point/tarball release,
+   # therefore can skip doing another point/tarball release if we
+   # already have the latest release version
my $installed_version = &pkginfo_version();
if (&version_cmp($latest_fink . '-1', '<=', $distribution . '-' 
. $installed_version . '-1')) {
print "\n";
@@ -83,9 +82,6 @@
return;
}
}
-   Fink::SelfUpdate::CVS->stamp_clear();
-   Fink::SelfUpdate::rsync->stamp_clear();
-   Fink::SelfUpdate::CVS->clear_metadata();

my $newversion = $latest_fink;
my ($downloaddir, $dir);
@@ -145,6 +141,8 @@
}
 }
 
+### TODO: implement stampfile handling somehow
+
 =head2 Private Methods
 
 None yet.

Index: rsync.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/SelfUpdate/Attic/rsync.pm,v
retrieving revision 1.1.2.5
retrieving revision 1.1.2.6
diff -u -d -r1.1.2.5 -r1.1.2.6
--- rsync.pm8 Mar 2007 03:12:30 -   1.1.2.5
+++ rsync.pm8 Mar 2007 07:28:55 -   1.1.2.6
@@ -193,8 +193,6 @@
}
}
 
-   Fink::SelfUpdate::CVS->clear_metadata();
-   Fink::SelfUpdate::CVS->stamp_clear();
$class->stamp_set();
$class->setup_version_file("$basepath/fink/$dist/VERSION");
 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/kde dolphin.info,1.4,1.5

2007-03-07 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv32428/unstable/main/finkinfo/kde

Modified Files:
dolphin.info 
Log Message:
new version

Index: dolphin.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde/dolphin.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- dolphin.info4 Jan 2007 11:06:15 -   1.4
+++ dolphin.info8 Mar 2007 06:00:11 -   1.5
@@ -1,5 +1,5 @@
 Package: dolphin
-Version: 0.8.1
+Version: 0.8.2
 Revision: 1002
 Source: http://enzosworld.gmxhome.de/download/%n-%v.tar.gz
 Depends: kdelibs3-unified (>= 3.5.3-1), libart2-shlibs (>= 2.3.17-1), 
freetype219-shlibs, fontconfig2-shlibs, libiconv, libidn-shlibs, 
libpng3-shlibs, qt3-shlibs, x11, x11-shlibs, libgettext3-shlibs
@@ -10,7 +10,7 @@
 Homepage: http://enzosworld.gmxhome.de
 License: GPL
 Description: KDE - Fast file manager
-Source-MD5: 62f526d93df2fe255d04625cbc67
+Source-MD5: 376f7a1deca0f4d69fa96a393cea464b
 PatchScript: perl -pi -e "s,doc/HTML,doc/kde,;s,-g -O,-O,g;s,-O2,-Os,g;" 
configure
 SetLDFLAGS: -L%{p}/lib/freetype219/lib -L%{p}/lib/fontconfig2/lib
 SetCPPFLAGS: -I%{p}/lib/freetype219/include -I%{p}/lib/fontconfig2/include


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


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

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv16392

Removed Files:
gperf.info 
Log Message:
in 10.3; need testing on 10.4


--- gperf.info DELETED ---


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] experimental/dmacks/finkinfo rpm2cpio.info, 1.2, NONE rpm2cpio.patch, 1.1, NONE

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv15147

Removed Files:
rpm2cpio.info rpm2cpio.patch 
Log Message:
obsolete..."rpmextract" in package "extractors" does it


--- rpm2cpio.info DELETED ---

--- rpm2cpio.patch DELETED ---


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] web/doc/packaging compilers.en.php, 1.24, 1.25 format.en.php, 1.78, 1.79 fslayout.en.php, 1.77, 1.78 index.en.php, 1.78, 1.79 intro.en.php, 1.77, 1.78 packaging.en.html, 1.92, 1.93 policy.en.php

2007-03-07 Thread David R. Morrison
Update of /cvsroot/fink/web/doc/packaging
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv12019

Modified Files:
compilers.en.php format.en.php fslayout.en.php index.en.php 
intro.en.php packaging.en.html policy.en.php reference.en.php 
Log Message:
document Info4


Index: intro.en.php
===
RCS file: /cvsroot/fink/web/doc/packaging/intro.en.php,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -d -r1.77 -r1.78
--- intro.en.php23 Feb 2007 22:17:23 -  1.77
+++ intro.en.php8 Mar 2007 05:07:52 -   1.78
@@ -1,7 +1,7 @@
 ';
 
 

Index: policy.en.php
===
RCS file: /cvsroot/fink/web/doc/packaging/policy.en.php,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -d -r1.78 -r1.79
--- policy.en.php   23 Feb 2007 22:17:25 -  1.78
+++ policy.en.php   8 Mar 2007 05:07:52 -   1.79
@@ -1,7 +1,7 @@
 ';
 
 

Index: index.en.php
===
RCS file: /cvsroot/fink/web/doc/packaging/index.en.php,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -d -r1.78 -r1.79
--- index.en.php23 Feb 2007 22:17:22 -  1.78
+++ index.en.php8 Mar 2007 05:07:52 -   1.79
@@ -1,7 +1,7 @@
 ';
 
 
@@ -30,7 +30,7 @@
 
 
1 Introduction1.1 What is a Package?1.2 Identifying a 
Package2 Package 
Descriptions2.1 Tree 
Layout2.2 File 
Format2.3 Percent 
Expansion3 Packaging 
Policy3.1 Package 
Licenses3.2 The GPL and 
OpenSSL3.3 Base System 
Interference3.4 Shared 
Libraries3.5 Perl 
Modules3.6 Emacs Policy4 Filesystem Layout4.1 The Filesystem Hierarchy 
Standard4.2 The 
Directories4.3 Things to 
Avoid5 
Compilers5.1 
Compiler Versions5.2 The 
g++ ABI6 
Reference6.1 The Build 
Process6.2 
Fields6.3 
SplitOffs6.4 
Scripts6.5 
Patches6.6 Profile.d 
scripts
-
+
 
 
 

Index: reference.en.php
===
RCS file: /cvsroot/fink/web/doc/packaging/reference.en.php,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -d -r1.80 -r1.81
--- reference.en.php23 Feb 2007 22:17:25 -  1.80
+++ reference.en.php8 Mar 2007 05:07:52 -   1.81
@@ -1,7 +1,7 @@
 ';
 
 
@@ -350,6 +350,10 @@
 no more support for RFC-822 multi-lines, and can put comments in
 pkglist fields.
 
+
+Info4 (fink>=0.26.2): adds %V expansion, and permits
+%lib in ConfigureParams field.
+
 
 
 Dependencies:

Index: compilers.en.php
===
RCS file: /cvsroot/fink/web/doc/packaging/compilers.en.php,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- compilers.en.php23 Feb 2007 22:17:22 -  1.24
+++ compilers.en.php8 Mar 2007 05:07:52 -   1.25
@@ -1,7 +1,7 @@
 ';
 
 

Index: packaging.en.html
===
RCS file: /cvsroot/fink/web/doc/packaging/packaging.en.html,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -d -r1.92 -r1.93
--- packaging.en.html   23 Feb 2007 22:17:25 -  1.92
+++ packaging.en.html   8 Mar 2007 05:07:52 -   1.93
@@ -1,7 +1,7 @@
 http://www.w3.org/TR/html4/loose.dtd";>
 
 
 Fink Documentation - Creating Fink Packages
 
@@ -252,6 +252,12 @@
 the package version. Note that the Epoch is not part
 of %v.
 
+%V
+
+the full package Version, which automatically includes the Epoch
+if present.  Note that this percent expansion is only available for
+packages whose InfoN level is at least 4.
+
 %r
 
 the package revision
@@ -370,6 +376,10 @@
 for 64-bit libraries); otherwise, this expands to lib.
 (Introduced in fink-0.26.0)
 
+Note that %lib is not permitted in the
+ConfigureParams field unless the InfoN
+ level is at least 4.
+
 
 
 
@@ -1677,6 +1687,10 @@
 no more support for RFC-822 multi-lines, and can put comments in
 pkglist fields.
 
+
+Info4 (fink>=0.26.2): adds %V 
expansion, and permits
+%lib in ConfigureParams field.
+
 
 
 Dependencies:
@@ -2867,4 +2881,4 @@
 provided the document and this copyright notice remain complete and
 unmodified. Any commercial reproduction and any online publication
 requires the explicit consent of the author.
-Generated from $Fink: packaging.en.xml,v 1.94 2007/02/23 22:04:55 
rangerrick Exp $
+Generated from $Fink: packaging.en.xml,v 1.95 2007/03/04 22:11:38 dmrrsn 
Exp $

Index: format.en.php
===
RCS file: /cvsroot/fink/web/doc/packaging/format.en.php,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -d -r1.78 -r1.79
--- format.en.php   23 Feb 2007 22:17:22 -  1.78
+++ format.en.php   8 Mar 2007 05:07:52 -   1.79
@@ -1,7 +1,7 @@
 ';
 
 
@@ -162,6 +162,12 @@
 the package version. Note that the Epoch is not part
 of %v.
 
+%V
+
+the full package Version, which aut

[cvs] dists/10.4/unstable/main/finkinfo/base fink.info,1.19,1.20

2007-03-07 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/base
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv7716

Modified Files:
fink.info 
Log Message:
new version


Index: fink.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/base/fink.info,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- fink.info   22 Jan 2007 21:28:45 -  1.19
+++ fink.info   8 Mar 2007 04:57:10 -   1.20
@@ -1,5 +1,5 @@
 Package: fink
-Version: 0.26.1
+Version: 0.26.2
 Revision: 31
 Depends: base-files
 Suggests: <<
@@ -12,7 +12,7 @@
 Replaces: gcc3.1 (= 1175-6)
 Essential: yes
 Source: mirror:custom:fink/%n-%v.tar.gz
-Source-MD5: 5146bc26486df1c535627685eae8b9fb
+Source-MD5: 6fe4448d5e7fb42e6e2af08d29f1b73f
 NoSetPATH: true
 CompileScript: <<
  make test PREFIX=%p


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.3/unstable/main/finkinfo/base fink.info,1.54,1.55

2007-03-07 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/base
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv7673

Modified Files:
fink.info 
Log Message:
new version


Index: fink.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/base/fink.info,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -d -r1.54 -r1.55
--- fink.info   22 Jan 2007 21:28:17 -  1.54
+++ fink.info   8 Mar 2007 04:56:18 -   1.55
@@ -1,5 +1,5 @@
 Package: fink
-Version: 0.26.1
+Version: 0.26.2
 Revision: 11
 Depends: base-files
 Suggests: <<
@@ -12,7 +12,7 @@
 Replaces: gcc3.1 (= 1175-6)
 Essential: yes
 Source: mirror:custom:fink/%n-%v.tar.gz
-Source-MD5: 5146bc26486df1c535627685eae8b9fb
+Source-MD5: 6fe4448d5e7fb42e6e2af08d29f1b73f
 NoSetPATH: true
 CompileScript: <<
  make test PREFIX=%p


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] scripts/buildfink buildfink,1.48,1.49

2007-03-07 Thread Matthew Sachs
Update of /cvsroot/fink/scripts/buildfink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv5314

Modified Files:
buildfink 
Log Message:
Fix typo which broke restoring checkpoints, pointed out by drm

Index: buildfink
===
RCS file: /cvsroot/fink/scripts/buildfink/buildfink,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- buildfink   16 Nov 2006 22:49:48 -  1.48
+++ buildfink   8 Mar 2007 04:50:20 -   1.49
@@ -1028,7 +1028,7 @@
 
print CHECKPOINT Data::Dumper->Dump(
[$FinkDir, $RunDir, $BuildNobody, $BuildAll, $CheckFiles, 
$DoValidate, $pkglist, $pkgfiles],
-   [qw(FinkDir rundir BuildNobody BuildAll CheckFiles DoValidate 
pkglist pkgfiles)]
+   [qw(FinkDir RunDir BuildNobody BuildAll CheckFiles DoValidate 
pkglist pkgfiles)]
);
 
close CHECKPOINT;


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/kde digikam-imageplugins.info, 1.1, 1.2

2007-03-07 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv31860/unstable/main/finkinfo/kde

Modified Files:
digikam-imageplugins.info 
Log Message:
new version

Index: digikam-imageplugins.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde/digikam-imageplugins.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- digikam-imageplugins.info   8 Jan 2007 14:25:22 -   1.1
+++ digikam-imageplugins.info   8 Mar 2007 04:35:22 -   1.2
@@ -1,9 +1,9 @@
 Package: digikam-imageplugins
-Version: 0.9.0
-Revision: 1003
+Version: 0.9.1
+Revision: 1002
 Source: mirror:sourceforge:digikam/digikamimageplugins-%v.tar.bz2
 Depends: digikam-shlibs (>= %v-%r), freetype219-shlibs, 
kdelibs3-unified-shlibs (>= 3.5-1), lcms-shlibs, libart2-shlibs, 
libexif12-shlibs, libgettext3-shlibs, libgphoto2-shlibs, libiconv, 
libidn-shlibs, libjpeg-shlibs, libkipi-shlibs, libpng3-shlibs, libtiff-shlibs, 
libtool14-shlibs, qt3-shlibs, sqlite3-shlibs, libexiv2-0.12-shlibs
-BuildDepends: digikam-dev (>= %v-%r), libgphoto2, gettext-tools, libexif12, 
libiconv-dev, libgettext3-dev, libtool14, kdelibs3-unified-dev (>= 3.5-1), 
libkipi, libart2, libidn, qt3, libjpeg, libtiff, libpng3, freetype219, 
libxml2-bin, doxygen, graphviz, sqlite3, lcms, pkgconfig, libexiv2-0.12
+BuildDepends: libkexiv2, digikam-dev (>= %v-%r), libgphoto2, gettext-tools, 
libexif12, libiconv-dev, libgettext3-dev, libtool14, kdelibs3-unified-dev (>= 
3.5-1), libkipi, libart2, libidn, qt3, libjpeg, libtiff, libpng3, freetype219, 
libxml2-bin, doxygen, graphviz, sqlite3, lcms, pkgconfig, libexiv2-0.12
 Recommends: dcraw, kipi-plugins, digikam (>= %v-%r)
 GCC: 4.0
 SourceDirectory: digikamimageplugins-%v
@@ -11,7 +11,7 @@
 Homepage: http://www.digikam.org
 License: GPL
 Description: KDE - Digital photo management, plugins
-Source-MD5: 4bc4b9c0562e5248d9f82c7ac418fb7a
+Source-MD5: 91cc6facd337d4daf5007e54e57cad3c
 PatchScript: perl -pi -e "s,-g -O,-O,g;s/-O2/-Os/g;s,doc/HTML,doc/kde," 
configure
 ConfigureParams: --mandir=%{i}/share/man --with-extra-libs=%{p}/lib 
--with-extra-includes=%{p}/include --disable-dependency-tracking
 DocFiles: AUTHORS COPYING ChangeLog INSTALL README TODO


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[svn] commit: r700 - in /trunk/experimental: 10.3/main/finkinfo/devel/ 10.4/main/finkinfo/devel/ common/main/finkinfo/devel/

2007-03-07 Thread ranger
Author: ranger
Date: Thu Mar  8 05:27:20 2007
New Revision: 700

URL: 

Log:
fix to work with different os versions

Modified:
trunk/experimental/10.3/main/finkinfo/devel/distcc-gtk.info
trunk/experimental/10.3/main/finkinfo/devel/distcc.info
trunk/experimental/10.4/main/finkinfo/devel/distcc-gtk.info
trunk/experimental/10.4/main/finkinfo/devel/distcc.info
trunk/experimental/common/main/finkinfo/devel/distcc-gtk.info
trunk/experimental/common/main/finkinfo/devel/distcc.info

Modified: trunk/experimental/10.3/main/finkinfo/devel/distcc-gtk.info
URL: 

==
--- trunk/experimental/10.3/main/finkinfo/devel/distcc-gtk.info (original)
+++ trunk/experimental/10.3/main/finkinfo/devel/distcc-gtk.info Thu Mar  8 
05:27:20 2007
@@ -1,6 +1,6 @@
 Package: distcc-gtk
 Version: 2.18.3
-Revision: 16
+Revision: 17
 Description: GUI monitor for distcc build hosts
 License: GPL
 Maintainer: Benjamin Reed <[EMAIL PROTECTED]>

Modified: trunk/experimental/10.3/main/finkinfo/devel/distcc.info
URL: 

==
--- trunk/experimental/10.3/main/finkinfo/devel/distcc.info (original)
+++ trunk/experimental/10.3/main/finkinfo/devel/distcc.info Thu Mar  8 05:27:20 
2007
@@ -1,6 +1,6 @@
 Package: distcc
 Version: 2.18.3
-Revision: 21
+Revision: 22
 Description: Distributed compilation tool
 License: GPL
 Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
@@ -66,15 +66,18 @@
chmod 755 %i/etc/profile.d/*
 
DARWINVER=`uname -r | cut -d. -f1`
+   DARWINVER="$DARWINVER 7 8"
install -d -m 755 %i/var/lib/distcc/translated
install -d -m 755 %i/var/lib/distcc/untranslated
install -c -m 755 gcc-translator.pl %i/var/lib/distcc/
pushd %i/var/lib/distcc
-   for arch in powerpc i386; do
-   for version in "" "-3.3" "-4.0"; do
-   for gcc in cc c++ gcc g++; do
-   ln -sf 
"%p/var/lib/distcc/gcc-translator.pl" 
"translated/${arch}-apple-darwin${DARWINVER}-${gcc}${version}"
-   ln -sf "/usr/bin/${gcc}${version}"  
 "untranslated/${arch}-apple-darwin${DARWINVER}-${gcc}${version}"
+   for osver in $DARWINVER; do
+   for arch in powerpc i386; do
+   for version in "" "-3.3" "-4.0"; do
+   for gcc in cc c++ gcc g++; do
+   ln -sf 
"%p/var/lib/distcc/gcc-translator.pl" 
"translated/${arch}-apple-darwin${osver}-${gcc}${version}"
+   ln -sf 
"/usr/bin/${gcc}${version}"   
"untranslated/${arch}-apple-darwin${osver}-${gcc}${version}"
+   done
done
done
done

Modified: trunk/experimental/10.4/main/finkinfo/devel/distcc-gtk.info
URL: 

==
--- trunk/experimental/10.4/main/finkinfo/devel/distcc-gtk.info (original)
+++ trunk/experimental/10.4/main/finkinfo/devel/distcc-gtk.info Thu Mar  8 
05:27:20 2007
@@ -1,6 +1,6 @@
 Package: distcc-gtk
 Version: 2.18.3
-Revision: 1026
+Revision: 1027
 Description: GUI monitor for distcc build hosts
 License: GPL
 Maintainer: Benjamin Reed <[EMAIL PROTECTED]>

Modified: trunk/experimental/10.4/main/finkinfo/devel/distcc.info
URL: 

==
--- trunk/experimental/10.4/main/finkinfo/devel/distcc.info (original)
+++ trunk/experimental/10.4/main/finkinfo/devel/distcc.info Thu Mar  8 05:27:20 
2007
@@ -1,6 +1,6 @@
 Package: distcc
 Version: 2.18.3
-Revision: 1031
+Revision: 1032
 Description: Distributed compilation tool
 License: GPL
 Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
@@ -66,15 +66,18 @@
chmod 755 %i/etc/profile.d/*
 
DARWINVER=`uname -r | cut -d. -f1`
+   DARWINVER="$DARWINVER 7 8"
install -d -m 755 %i/var/lib/distcc/translated
install -d -m 755 %i/var/lib/distcc/untranslated
install -c -m 755 gcc-translator.pl %i/var/lib/distcc/
pushd %i/var/lib/distcc
-   

[cvs] experimental/crhalpin colordiff.info, 1.1, NONE colordiff.patch, 1.1, NONE

2007-03-07 Thread Corey Halpin
Update of /cvsroot/fink/experimental/crhalpin
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv19211

Removed Files:
colordiff.info colordiff.patch 
Log Message:
Moved into unstable.


--- colordiff.patch DELETED ---

--- colordiff.info DELETED ---


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink/perlmod/Fink/SelfUpdate point.pm, 1.1.2.3, 1.1.2.4 rsync.pm, 1.1.2.4, 1.1.2.5

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink/SelfUpdate
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv31648/SelfUpdate

Modified Files:
  Tag: selfupdate_classes
point.pm rsync.pm 
Log Message:
Clean up importing


Index: point.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/SelfUpdate/Attic/point.pm,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -u -d -r1.1.2.3 -r1.1.2.4
--- point.pm7 Mar 2007 09:41:17 -   1.1.2.3
+++ point.pm8 Mar 2007 03:12:30 -   1.1.2.4
@@ -26,7 +26,11 @@
 
 use base qw(Fink::SelfUpdate::Base);
 
+use Fink::Services qw(&version_cmp);
+use Fink::CLI qw(&print_breaking);
 use Fink::Config qw($basepath $config $distribution);
+use Fink::NetAccess qw(&fetch_url);
+use Fink::FinkVersion qw(&pkginfo_version);
 use Fink::Command qw(cat);
 
 use strict;

Index: rsync.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/SelfUpdate/Attic/rsync.pm,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -u -d -r1.1.2.4 -r1.1.2.5
--- rsync.pm7 Mar 2007 09:41:17 -   1.1.2.4
+++ rsync.pm8 Mar 2007 03:12:30 -   1.1.2.5
@@ -26,7 +26,9 @@
 
 use base qw(Fink::SelfUpdate::Base);
 
+use Fink::CLI qw(&print_breaking);
 use Fink::Config qw($basepath $config $distribution);
+use Fink::Mirror;
 use Fink::Command qw(chowname rm_f mkdir_p touch);
 
 use strict;


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink/perlmod/Fink ChangeLog, 1.1439.2.5, 1.1439.2.6 SelfUpdate.pm, 1.117.2.4, 1.117.2.5

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv31648

Modified Files:
  Tag: selfupdate_classes
ChangeLog SelfUpdate.pm 
Log Message:
Clean up importing


Index: SelfUpdate.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/SelfUpdate.pm,v
retrieving revision 1.117.2.4
retrieving revision 1.117.2.5
diff -u -d -r1.117.2.4 -r1.117.2.5
--- SelfUpdate.pm   7 Mar 2007 09:41:17 -   1.117.2.4
+++ SelfUpdate.pm   8 Mar 2007 03:12:30 -   1.117.2.5
@@ -23,15 +23,12 @@
 
 package Fink::SelfUpdate;
 
-use Fink::Services qw(&execute &version_cmp &aptget_lockwait);
+use Fink::Services qw(&execute);
 use Fink::Bootstrap qw(&additional_packages);
 use Fink::CLI qw(&print_breaking &prompt &prompt_boolean &prompt_selection);
-use Fink::Config qw($config $basepath $dbpath $distribution);
-use Fink::NetAccess qw(&fetch_url);
+use Fink::Config qw($config $basepath $distribution);
 use Fink::Engine;  # &aptget_update &cmd_install, but they aren't EXPORT_OK
 use Fink::Package;
-use Fink::FinkVersion qw(&pkginfo_version);
-use Fink::Mirror;
 use Fink::Command qw(cat chowname mkdir_p mv rm_f rm_rf touch);
 
 use File::Find;
@@ -177,13 +174,11 @@
Fink::SelfUpdate::rsync->stamp_clear();
if (-d "$basepath/fink/dists/CVS") {
&do_direct_cvs();
-   &do_finish();
-   return;
} else {
&setup_direct_cvs();
-   &do_finish();
-   return;
}
+   &do_finish();
+   return;
}
elsif ($config->param("SelfUpdateMethod") eq 'rsync' and $method ne 
'cvs'){
&need_devtools('rsync');

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.1439.2.5
retrieving revision 1.1439.2.6
diff -u -d -r1.1439.2.5 -r1.1439.2.6
--- ChangeLog   7 Mar 2007 09:41:16 -   1.1439.2.5
+++ ChangeLog   8 Mar 2007 03:12:29 -   1.1439.2.6
@@ -1,5 +1,9 @@
 2007-03-07  Daniel Macks  <[EMAIL PROTECTED]>
 
+   * SelfUpdate.pm, SelfUpdate/*: clean up imports from other pkgs
+
+2007-03-07  Daniel Macks  <[EMAIL PROTECTED]>
+
* SelfUpdate/Base.pm: add do_direct to public API
* SelfUpdate.pm, SelfUpdate/rsync.pm: migrate &SU::do_direct_rsync
to SU::rsync->do_direct


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/gnome glib2-10.5.info, 1.5, 1.6 glib2.info, 1.23, 1.24

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv20785/10.4/unstable/main/finkinfo/gnome

Modified Files:
glib2-10.5.info glib2.info 
Log Message:
new version


Index: glib2-10.5.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/glib2-10.5.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- glib2-10.5.info 22 Jan 2007 23:43:05 -  1.5
+++ glib2-10.5.info 8 Mar 2007 02:46:12 -   1.6
@@ -1,5 +1,5 @@
 Package: glib2
-Version: 2.12.9
+Version: 2.12.10
 Revision: 11
 Distribution: 10.5
 Depends: %N-shlibs (>= %v-%r), fink-obsolete-packages
@@ -13,7 +13,7 @@
 Replaces: %N-common
 Conflicts: %N-common
 Source: mirror:gnome:sources/glib/2.12/glib-%v.tar.bz2
-Source-MD5: b3f6a2a318610af6398b3445f1a2d6c6
+Source-MD5: 82d44a53690b0eff8f7a5dc65e592f61
 Patch: %n.patch
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true

Index: glib2.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/glib2.info,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- glib2.info  22 Jan 2007 23:43:05 -  1.23
+++ glib2.info  8 Mar 2007 02:46:12 -   1.24
@@ -1,5 +1,5 @@
 Package: glib2
-Version: 2.12.9
+Version: 2.12.10
 Revision: 1
 Depends: %N-shlibs (>= %v-%r), fink-obsolete-packages
 BuildDepends: <<
@@ -12,7 +12,7 @@
 Replaces: %N-common
 Conflicts: %N-common
 Source: mirror:gnome:sources/glib/2.12/glib-%v.tar.bz2
-Source-MD5: b3f6a2a318610af6398b3445f1a2d6c6
+Source-MD5: 82d44a53690b0eff8f7a5dc65e592f61
 Patch: %n.patch
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/gnome glib2-10.5.info, 1.3.2.6, 1.3.2.7 glib2.info, 1.16.2.11, 1.16.2.12

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv20785/10.4-pangocairo/unstable/main/finkinfo/gnome

Modified Files:
  Tag: pangocairo-branch
glib2-10.5.info glib2.info 
Log Message:
new version


Index: glib2-10.5.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/glib2-10.5.info,v
retrieving revision 1.3.2.6
retrieving revision 1.3.2.7
diff -u -d -r1.3.2.6 -r1.3.2.7
--- glib2-10.5.info 23 Jan 2007 19:15:32 -  1.3.2.6
+++ glib2-10.5.info 8 Mar 2007 02:46:12 -   1.3.2.7
@@ -1,5 +1,5 @@
 Package: glib2
-Version: 2.12.9
+Version: 2.12.10
 Revision: 111
 Distribution: 10.5
 Depends: %N-shlibs (>= %v-%r), fink-obsolete-packages
@@ -13,7 +13,7 @@
 Replaces: %N-common
 Conflicts: %N-common
 Source: mirror:gnome:sources/glib/2.12/glib-%v.tar.bz2
-Source-MD5: b3f6a2a318610af6398b3445f1a2d6c6
+Source-MD5: 82d44a53690b0eff8f7a5dc65e592f61
 Patch: %n.patch
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true

Index: glib2.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/glib2.info,v
retrieving revision 1.16.2.11
retrieving revision 1.16.2.12
diff -u -d -r1.16.2.11 -r1.16.2.12
--- glib2.info  23 Jan 2007 19:15:32 -  1.16.2.11
+++ glib2.info  8 Mar 2007 02:46:12 -   1.16.2.12
@@ -1,5 +1,5 @@
 Package: glib2
-Version: 2.12.9
+Version: 2.12.10
 Revision: 101
 Depends: %N-shlibs (>= %v-%r), fink-obsolete-packages
 BuildDepends: <<
@@ -12,7 +12,7 @@
 Replaces: %N-common
 Conflicts: %N-common
 Source: mirror:gnome:sources/glib/2.12/glib-%v.tar.bz2
-Source-MD5: b3f6a2a318610af6398b3445f1a2d6c6
+Source-MD5: 82d44a53690b0eff8f7a5dc65e592f61
 Patch: %n.patch
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.3/unstable/main/finkinfo/gnome glib2.info,1.44,1.45

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv20785/10.3/unstable/main/finkinfo/gnome

Modified Files:
glib2.info 
Log Message:
new version


Index: glib2.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome/glib2.info,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- glib2.info  22 Jan 2007 23:43:04 -  1.44
+++ glib2.info  8 Mar 2007 02:46:12 -   1.45
@@ -1,5 +1,5 @@
 Package: glib2
-Version: 2.12.9
+Version: 2.12.10
 Revision: 1
 Depends: %N-shlibs (>= %v-%r), fink-obsolete-packages
 BuildDepends: <<
@@ -12,7 +12,7 @@
 Replaces: %N-common
 Conflicts: %N-common
 Source: mirror:gnome:sources/glib/2.12/glib-%v.tar.bz2
-Source-MD5: b3f6a2a318610af6398b3445f1a2d6c6
+Source-MD5: 82d44a53690b0eff8f7a5dc65e592f61
 Patch: %n.patch
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.3/unstable/main/finkinfo/graphics imlib.info,1.7,1.8

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/graphics
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv15073

Modified Files:
imlib.info 
Log Message:
update deps and -lXext

Index: imlib.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/graphics/imlib.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- imlib.info  13 Jul 2006 02:36:00 -  1.7
+++ imlib.info  8 Mar 2007 02:30:54 -   1.8
@@ -1,12 +1,26 @@
 Package: imlib
 Version: 1.9.15
-Revision: 15
+Revision: 16
 Description: Image handling library for X11 and Gtk
 License: GPL/LGPL
 Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
 
 Depends: %N-shlibs (>= %v-%r)
-BuildDepends: freetype219, libjpeg, libtiff, libpng3, netpbm, giflib, glib, 
gtk+ (>= 1.2.10-20), libgettext3-dev, gettext-bin, gettext-tools, libiconv-dev
+BuildDepends: <<
+   freetype219,
+   libjpeg,
+   libtiff,
+   libpng3,
+   netpbm,
+   giflib,
+   glib,
+   gtk+ (>= 1.2.10-20),
+   libgettext3-dev,
+   gettext-bin,
+   gettext-tools,
+   libiconv-dev,
+   x11-dev
+<<
 BuildDependsOnly: true
 
 Source: gnome
@@ -18,7 +32,7 @@
 
 SetCPPFLAGS: -w -I%p/lib/freetype219/include/freetype2 
-I%p/lib/freetype219/include -I%p/include
 SetLDFLAGS: -L%p/lib/freetype219/lib
-SetLIBS: -L%p/lib -L/usr/X11R6/lib -lX11
+SetLIBS: -L%p/lib -L/usr/X11R6/lib -lX11 -lXext
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true
 ConfigureParams: --disable-shm --mandir=%p/share/man --disable-mmx
@@ -30,7 +44,18 @@
 DocFiles: COPYING COPYING.LIB README AUTHORS
 SplitOff: <<
Package: %N-shlibs
-   Depends: freetype219-shlibs, gtk+-shlibs (>= 1.2.10-20), 
libgettext3-shlibs, libiconv, libjpeg-bin, libtiff-bin, giflib-bin | 
libungif-bin, libpng3-shlibs, netpbm-bin
+   Depends: <<
+   freetype219-shlibs,
+   gtk+-shlibs (>= 1.2.10-20),
+   libgettext3-shlibs,
+   libiconv,
+   libjpeg-bin,
+   libtiff-bin,
+   giflib-bin | libungif-bin,
+   libpng3-shlibs,
+   netpbm-bin,
+   x11-shlibs
+   <<
Replaces: %N (<= 1.9.14-2)
DocFiles: COPYING COPYING.LIB README AUTHORS
Files: <<


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/graphics imlib.info,1.5,1.6

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv14565

Modified Files:
imlib.info 
Log Message:
update deps and -lXext

Index: imlib.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/imlib.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- imlib.info  13 Jul 2006 02:36:03 -  1.5
+++ imlib.info  8 Mar 2007 02:29:12 -   1.6
@@ -1,12 +1,26 @@
 Package: imlib
 Version: 1.9.15
-Revision: 1025
+Revision: 1026
 Description: Image handling library for X11 and Gtk
 License: GPL/LGPL
 Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
 
 Depends: %N-shlibs (>= %v-%r)
-BuildDepends: freetype219, libjpeg, libtiff, libpng3, netpbm, giflib, glib, 
gtk+ (>= 1.2.10-20), libgettext3-dev, gettext-bin, gettext-tools, libiconv-dev
+BuildDepends: <<
+   freetype219,
+   libjpeg,
+   libtiff,
+   libpng3,
+   netpbm,
+   giflib,
+   glib,
+   gtk+ (>= 1.2.10-20),
+   libgettext3-dev,
+   gettext-bin,
+   gettext-tools,
+   libiconv-dev,
+   x11-dev
+<<
 BuildDependsOnly: true
 
 Source: gnome
@@ -18,7 +32,7 @@
 
 SetCPPFLAGS: -w -I%p/lib/freetype219/include/freetype2 
-I%p/lib/freetype219/include -I%p/include
 SetLDFLAGS: -L%p/lib/freetype219/lib
-SetLIBS: -L%p/lib -L/usr/X11R6/lib -lX11
+SetLIBS: -L%p/lib -L/usr/X11R6/lib -lX11 -lXext
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true
 ConfigureParams: --disable-shm --mandir=%p/share/man --disable-mmx
@@ -30,7 +44,18 @@
 DocFiles: COPYING COPYING.LIB README AUTHORS
 SplitOff: <<
Package: %N-shlibs
-   Depends: freetype219-shlibs, gtk+-shlibs (>= 1.2.10-20), 
libgettext3-shlibs, libiconv, libjpeg-bin, libtiff-bin, giflib-bin | 
libungif-bin, libpng3-shlibs, netpbm-bin
+   Depends: <<
+   freetype219-shlibs,
+   gtk+-shlibs (>= 1.2.10-20),
+   libgettext3-shlibs,
+   libiconv,
+   libjpeg-bin,
+   libtiff-bin,
+   giflib-bin | libungif-bin,
+   libpng3-shlibs,
+   netpbm-bin,
+   x11-shlibs
+   <<
Replaces: %N (<= 1.9.14-2)
DocFiles: COPYING COPYING.LIB README AUTHORS
Files: <<


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] web/xml/news news.de.xml, 1.27, 1.28 news.es.xml, 1.30, 1.31 news.fr.xml, 1.53, 1.54 news.zh.xml, 1.23, 1.24

2007-03-07 Thread BABA Yoshihiko
Update of /cvsroot/fink/web/xml/news
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv13713

Modified Files:
news.de.xml news.es.xml news.fr.xml news.zh.xml 
Log Message:
1.59

Index: news.zh.xml
===
RCS file: /cvsroot/fink/web/xml/news/news.zh.xml,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- news.zh.xml 7 Nov 2006 22:30:20 -   1.23
+++ news.zh.xml 8 Mar 2007 02:27:14 -   1.24
@@ -4,6 +4,26 @@
 $Id$
 
 
+   2007-03-04
+   Problems with tar
+   
+Some users of fink's unstable tree are having sporadic difficulties
+at the end of building large packages, getting reports like
+tar: File changed as we read it which causes the .deb file
+not to be built.
+
+The fink team is currently studying this problem to determine a permanent
+fix.  For the time being, users experiencing this problem can work around
+it by issuing the command fink install tar-1.15.1-14.  It
+may be necessary to issue that command after each fink update-all
+command, as well.
+Once the fink team has determined how to solve this problem 
+permanently, another announcement will be made here.
+
+   
+   
+
+
2006-08-19
Server down; workarounds available


Index: news.fr.xml
===
RCS file: /cvsroot/fink/web/xml/news/news.fr.xml,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -d -r1.53 -r1.54
--- news.fr.xml 7 Nov 2006 22:30:20 -   1.53
+++ news.fr.xml 8 Mar 2007 02:27:14 -   1.54
@@ -4,6 +4,26 @@
 $Id$
 
 
+   2007-03-04
+   Problems with tar
+   
+Some users of fink's unstable tree are having sporadic difficulties
+at the end of building large packages, getting reports like
+tar: File changed as we read it which causes the .deb file
+not to be built.
+
+The fink team is currently studying this problem to determine a permanent
+fix.  For the time being, users experiencing this problem can work around
+it by issuing the command fink install tar-1.15.1-14.  It
+may be necessary to issue that command after each fink update-all
+command, as well.
+Once the fink team has determined how to solve this problem 
+permanently, another announcement will be made here.
+
+   
+   
+
+
 19/08/2006
 Serveur inacessible - Solutions
 

Index: news.de.xml
===
RCS file: /cvsroot/fink/web/xml/news/news.de.xml,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- news.de.xml 7 Nov 2006 22:30:20 -   1.27
+++ news.de.xml 8 Mar 2007 02:27:14 -   1.28
@@ -4,6 +4,26 @@
 $Id$
 
 
+   2007-03-04
+   Problems with tar
+   
+Some users of fink's unstable tree are having sporadic difficulties
+at the end of building large packages, getting reports like
+tar: File changed as we read it which causes the .deb file
+not to be built.
+
+The fink team is currently studying this problem to determine a permanent
+fix.  For the time being, users experiencing this problem can work around
+it by issuing the command fink install tar-1.15.1-14.  It
+may be necessary to issue that command after each fink update-all
+command, as well.
+Once the fink team has determined how to solve this problem 
+permanently, another announcement will be made here.
+
+   
+   
+
+
2006-08-19
Server down; workarounds available


Index: news.es.xml
===
RCS file: /cvsroot/fink/web/xml/news/news.es.xml,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- news.es.xml 7 Nov 2006 22:30:20 -   1.30
+++ news.es.xml 8 Mar 2007 02:27:14 -   1.31
@@ -4,6 +4,26 @@
 $Id$
 
 
+   2007-03-04
+   Problems with tar
+   
+Some users of fink's unstable tree are having sporadic difficulties
+at the end of building large packages, getting reports like
+tar: File changed as we read it which causes the .deb file
+not to be built.
+
+The fink team is currently studying this problem to determine a permanent
+fix.  For the time being, users experiencing this problem can work around
+it by issuing the command fink install tar-1.15.1-14.  It
+may be necessary to issue that command after each fink update-all
+command, as well.
+Once the fink team has determined how to solve this problem 
+permanently, another announcement will be made here.
+
+   
+   
+
+
2006-08-19
Server down; workarounds available



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourcefor

[svn] commit: r699 - in /trunk/experimental: 10.3/main/finkinfo/kde/ 10.4/main/finkinfo/kde/ common/main/finkinfo/kde/

2007-03-07 Thread ranger
Author: ranger
Date: Thu Mar  8 03:01:24 2007
New Revision: 699

URL: 

Log:
koffice update

Added:
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-farsi.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-galician.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-khmer.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-farsi.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-galician.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-khmer.info
trunk/experimental/common/main/finkinfo/kde/koffice-i18n-farsi.info
trunk/experimental/common/main/finkinfo/kde/koffice-i18n-galician.info
trunk/experimental/common/main/finkinfo/kde/koffice-i18n-khmer.info
Modified:
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-basque.info

trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-brazilian-portugese.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-catalan.info

trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-chinese-simplified.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-chinese.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-czech.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-danish.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-dutch.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-estonian.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-finnish.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-french.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-german.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-greek.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-hungarian.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-irish-gaelic.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-italian.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-japanese.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-latvian.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-malay.info

trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-norwegian-bokmaal.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-polish.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-portugese.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-russian.info

trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-serbian-latin-script.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-serbian.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-slovak.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-slovenian.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-spanish.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-swedish.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-turkish.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-uk-english.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-ukranian.info
trunk/experimental/10.3/main/finkinfo/kde/koffice-i18n-welsh.info
trunk/experimental/10.3/main/finkinfo/kde/koffice.info
trunk/experimental/10.3/main/finkinfo/kde/koffice.patch
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-basque.info

trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-brazilian-portugese.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-catalan.info

trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-chinese-simplified.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-chinese.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-czech.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-danish.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-dutch.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-estonian.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-finnish.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-french.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-german.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-greek.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-hungarian.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-irish-gaelic.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-italian.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-japanese.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-latvian.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-malay.info

trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-norwegian-bokmaal.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-polish.info
trunk/experimental/10.4/main/finkinfo/kde/koffice-i18n-portugese.in

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

2007-03-07 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv30619/unstable/main/finkinfo/kde

Modified Files:
digikam.info 
Log Message:
new version

Index: digikam.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde/digikam.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- digikam.info11 Jan 2007 03:28:29 -  1.2
+++ digikam.info8 Mar 2007 01:48:24 -   1.3
@@ -1,16 +1,16 @@
 Package: digikam
-Version: 0.9.0
-Revision: 1004
+Version: 0.9.1
+Revision: 1002
 Source: mirror:sourceforge:digikam/%n-%v.tar.bz2
-Depends: %N-shlibs (= %v-%r), libgphoto2-shlibs, libexif12-shlibs, libiconv, 
libgettext3-shlibs, libtool14-shlibs, lcms-shlibs, sqlite3-shlibs, 
kdelibs3-unified (>= 3.5-1), libkipi-shlibs, libart2-shlibs, libidn-shlibs, 
qt3-shlibs, libjpeg-shlibs, libtiff-shlibs, libpng3-shlibs, freetype219-shlibs, 
libexiv2-0.12-shlibs
-BuildDepends: libgphoto2, gettext-tools, libexif12, libiconv-dev, 
libgettext3-dev, libtool14, kdelibs3-unified-dev, libkipi, libart2, libidn, 
qt3, libjpeg, libtiff, libpng3, freetype219, graphviz, doxygen, sqlite3-dev, 
libxml2-bin, lcms, pkgconfig, libexiv2-0.12
+Depends: %N-shlibs (= %v-%r), libgphoto2-shlibs, libexif12-shlibs, 
libkexiv2-shlibs, libiconv, libgettext3-shlibs, libtool14-shlibs, lcms-shlibs, 
sqlite3-shlibs, kdelibs3-unified (>= 3.5-1), libkipi-shlibs, libart2-shlibs, 
libidn-shlibs, qt3-shlibs, libjpeg-shlibs, libtiff-shlibs, libpng3-shlibs, 
freetype219-shlibs, libexiv2-0.12-shlibs
+BuildDepends: libgphoto2, gettext-tools, libexif12, libiconv-dev, 
libgettext3-dev, libtool14, kdelibs3-unified-dev, libkipi, libart2, libidn, 
qt3, libjpeg, libtiff, libpng3, freetype219, graphviz, doxygen, sqlite3-dev, 
libxml2-bin, lcms, pkgconfig, libexiv2-0.12, libkexiv2
 Recommends: kdebase3-unified (>= 3.5-1), dcraw, kipi-plugins, 
digikam-imageplugins (>= %v-%r)
 GCC: 4.0
 Maintainer: Jack Fink <[EMAIL PROTECTED]>
 Homepage: http://www.digikam.org
 License: GPL
 Description: KDE - Digital photo management
-Source-MD5: 5334d608218fe077a476722e2ce55323
+Source-MD5: 41e673dac4d0bb6203a6ec615d44b893
 PatchScript: perl -pi -e "s/-g -O/-O/g;s/-O2/-Os/g;s,doc/HTML,doc/kde,g," 
configure
 ConfigureParams: --mandir=%{i}/share/man --with-extra-libs=%{p}/lib 
--with-extra-includes=%{p}/include --disable-dependency-tracking
 SetLDFLAGS: -L%{p}/lib/freetype219/lib -L%{p}/lib/fontconfig2/lib
@@ -27,7 +27,7 @@
 share
   <<
   Shlibs: <<
-%p/lib/libdigikam.0.dylib 1.0.0 %n (>= 0.9.0-1003)
+%p/lib/libdigikam.0.dylib 1.0.0 %n (>= 0.9.1-1001)
   <<
   DocFiles: COPYING
 <<


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[svn] commit: r698 - in /trunk/experimental: ./ 10.3/main/finkinfo/database/ 10.3/main/finkinfo/kde/ 10.4/main/finkinfo/database/ 10.4/main/finkinfo/kde/ common/main/finkinfo/database/

2007-03-07 Thread ranger
Author: ranger
Date: Thu Mar  8 02:04:59 2007
New Revision: 698

URL: 

Log:
libpqxx2 reverted

Modified:
trunk/experimental/10.3/main/finkinfo/database/libpqxx2.info
trunk/experimental/10.3/main/finkinfo/kde/koffice.info
trunk/experimental/10.4/main/finkinfo/database/libpqxx2.info
trunk/experimental/10.4/main/finkinfo/kde/koffice.info
trunk/experimental/common/main/finkinfo/database/libpqxx2.info
trunk/experimental/generate-infofiles.pl

Modified: trunk/experimental/10.3/main/finkinfo/database/libpqxx2.info
URL: 

==
--- trunk/experimental/10.3/main/finkinfo/database/libpqxx2.info (original)
+++ trunk/experimental/10.3/main/finkinfo/database/libpqxx2.info Thu Mar  8 
02:04:59 2007
@@ -1,11 +1,12 @@
 Package: libpqxx2
-Version: 2.6.9
+Version: 2.6.8
 Revision: 11
+Epoch: 1
 Description: PostgreSQL C++ interface
 License: BSD
 Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
 
-Depends: %N-shlibs (= %v-%r)
+Depends: %N-shlibs (= %e:%v-%r)
 BuildDepends: <<
postgresql82-dev,
system-openssl-dev
@@ -28,7 +29,7 @@
 GCC: 3.3
 
 Source: http://thaiopensource.org/download/software/libpqxx/libpqxx-%v.tar.gz
-Source-MD5: 0b0c64af41dfdeea8556dc359994e1cb
+Source-MD5: cb818ca7698955bcea8b7ba1b7962811
 Patch: %n.patch
 PatchScript:   perl -pi -e 's,hardcode_direct=yes,hardcode_direct=no,g' 
configure
 

Modified: trunk/experimental/10.3/main/finkinfo/kde/koffice.info
URL: 

==
--- trunk/experimental/10.3/main/finkinfo/kde/koffice.info (original)
+++ trunk/experimental/10.3/main/finkinfo/kde/koffice.info Thu Mar  8 02:04:59 
2007
@@ -49,7 +49,7 @@
libogg,
libpaper1-dev,
libpng3 (>= 1.2.5-4),
-   libpqxx2 (>= 2.6.8-1),
+   libpqxx2 (>= 1:2.6.8-1),
libtiff,
libtool14,
libvorbis0,
@@ -950,7 +950,7 @@
%N-common (>= %v-%r),
mysql14-shlibs,
postgresql82-shlibs,
-   libpqxx2-shlibs (>= 2.6.8-1)
+   libpqxx2-shlibs (>= 1:2.6.8-1)
<<
Replaces: %N-common (<< %v-%r)
Files: <<

Modified: trunk/experimental/10.4/main/finkinfo/database/libpqxx2.info
URL: 

==
--- trunk/experimental/10.4/main/finkinfo/database/libpqxx2.info (original)
+++ trunk/experimental/10.4/main/finkinfo/database/libpqxx2.info Thu Mar  8 
02:04:59 2007
@@ -1,11 +1,12 @@
 Package: libpqxx2
-Version: 2.6.9
+Version: 2.6.8
 Revision: 1021
+Epoch: 1
 Description: PostgreSQL C++ interface
 License: BSD
 Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
 
-Depends: %N-shlibs (= %v-%r)
+Depends: %N-shlibs (= %e:%v-%r)
 BuildDepends: <<
postgresql82-dev,
system-openssl-dev
@@ -28,7 +29,7 @@
 GCC: 4.0
 
 Source: http://thaiopensource.org/download/software/libpqxx/libpqxx-%v.tar.gz
-Source-MD5: 0b0c64af41dfdeea8556dc359994e1cb
+Source-MD5: cb818ca7698955bcea8b7ba1b7962811
 Patch: %n.patch
 PatchScript:   perl -pi -e 's,hardcode_direct=yes,hardcode_direct=no,g' 
configure
 

Modified: trunk/experimental/10.4/main/finkinfo/kde/koffice.info
URL: 

==
--- trunk/experimental/10.4/main/finkinfo/kde/koffice.info (original)
+++ trunk/experimental/10.4/main/finkinfo/kde/koffice.info Thu Mar  8 02:04:59 
2007
@@ -49,7 +49,7 @@
libogg,
libpaper1-dev,
libpng3 (>= 1.2.5-4),
-   libpqxx2 (>= 2.6.8-1),
+   libpqxx2 (>= 1:2.6.8-1),
libtiff,
libtool14,
libvorbis0,
@@ -951,7 +951,7 @@
%N-common (>= %v-%r),
mysql14-shlibs,
postgresql82-shlibs,
-   libpqxx2-shlibs (>= 2.6.8-1)
+   libpqxx2-shlibs (>= 1:2.6.8-1)
<<
Replaces: %N-common (<< %v-%r)
Files: <<

Modified: trunk/experimental/common/main/finkinfo/database/libpqxx2.info
URL: 

==
--- trunk/experimental/common/main/finkinfo/database/libpqxx2.info (or

[cvs] dists/10.3/unstable/main/finkinfo/database libpqxx2.info, 1.3, 1.4

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/database
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv14552

Modified Files:
libpqxx2.info 
Log Message:
back out libpqxx2

Index: libpqxx2.info
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/database/libpqxx2.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libpqxx2.info   5 Feb 2007 18:12:44 -   1.3
+++ libpqxx2.info   8 Mar 2007 01:07:51 -   1.4
@@ -1,11 +1,12 @@
 Package: libpqxx2
-Version: 2.6.9
+Version: 2.6.8
 Revision: 11
+Epoch: 1
 Description: PostgreSQL C++ interface
 License: BSD
 Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
 
-Depends: %N-shlibs (= %v-%r)
+Depends: %N-shlibs (= %e:%v-%r)
 BuildDepends: <<
postgresql82-dev,
system-openssl-dev
@@ -28,7 +29,7 @@
 GCC: 3.3
 
 Source: http://thaiopensource.org/download/software/libpqxx/libpqxx-%v.tar.gz
-Source-MD5: 0b0c64af41dfdeea8556dc359994e1cb
+Source-MD5: cb818ca7698955bcea8b7ba1b7962811
 Patch: %n.patch
 PatchScript:   perl -pi -e 's,hardcode_direct=yes,hardcode_direct=no,g' 
configure
 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/database libpqxx2.info, 1.4, 1.5

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/database
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv14151

Modified Files:
libpqxx2.info 
Log Message:
commit *after* you copy the new version over, not *before* ;)

Index: libpqxx2.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/database/libpqxx2.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- libpqxx2.info   8 Mar 2007 01:03:28 -   1.4
+++ libpqxx2.info   8 Mar 2007 01:06:48 -   1.5
@@ -6,7 +6,7 @@
 License: BSD
 Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
 
-Depends: %N-shlibs (= %v-%r)
+Depends: %N-shlibs (= %e:%v-%r)
 BuildDepends: <<
postgresql82-dev,
system-openssl-dev


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/database libpqxx2.info, 1.3, 1.4

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/database
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv12975

Modified Files:
libpqxx2.info 
Log Message:
revert libpqxx2, they broke binary and api compat

Index: libpqxx2.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/database/libpqxx2.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libpqxx2.info   5 Feb 2007 18:16:12 -   1.3
+++ libpqxx2.info   8 Mar 2007 01:03:28 -   1.4
@@ -1,6 +1,7 @@
 Package: libpqxx2
-Version: 2.6.9
+Version: 2.6.8
 Revision: 1021
+Epoch: 1
 Description: PostgreSQL C++ interface
 License: BSD
 Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
@@ -28,7 +29,7 @@
 GCC: 4.0
 
 Source: http://thaiopensource.org/download/software/libpqxx/libpqxx-%v.tar.gz
-Source-MD5: 0b0c64af41dfdeea8556dc359994e1cb
+Source-MD5: cb818ca7698955bcea8b7ba1b7962811
 Patch: %n.patch
 PatchScript:   perl -pi -e 's,hardcode_direct=yes,hardcode_direct=no,g' 
configure
 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.3/unstable/main/finkinfo/text colordiff.info, NONE, 1.1 colordiff.patch, NONE, 1.1

2007-03-07 Thread Corey Halpin
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/text
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv10377/10.3/unstable/main/finkinfo/text

Added Files:
colordiff.info colordiff.patch 
Log Message:
Colordiff, initial revision.


--- NEW FILE: colordiff.patch ---
diff -ru colordiff-1.0.5/Makefile colordiff-1.0.5-patched/Makefile
--- colordiff-1.0.5/Makefile2005-03-28 15:07:03.0 -0600
+++ colordiff-1.0.5-patched/Makefile2005-10-30 13:51:52.0 -0600
@@ -1,8 +1,9 @@
 # $Id: Makefile,v 1.2.2.12 2005/03/28 21:07:03 daveewart Exp $
 
-INSTALL_DIR=/usr/local/bin
-MAN_DIR=/usr/local/man/man1
-ETC_DIR=/etc
+INSTALL_DIR=${PFX}/${SW}/bin
+MAN_DIR=${PFX}/${SW}/share/man/man1
+ETC_DIR=${SW}/etc
+ETC_DIR_INST=${PFX}/${ETC_DIR}
 VERSION=1.0.5
 DIST_FILES=COPYING INSTALL Makefile README \
colordiff.pl colordiffrc colordiffrc-lightbg cdiff.sh BUGS TODO CHANGES 
colordiff.1
@@ -24,17 +25,19 @@
sed -e "s%/etc%$(ETC_DIR)%g" colordiff.pl > colordiff.pl.for.install
 
 install: etc
+   mkdir -p ${INSTALL_DIR}
+   mkdir -p ${MAN_DIR}
+   mkdir -p ${ETC_DIR_INST}
install -D colordiff.pl.for.install ${INSTALL_DIR}/colordiff
if [ ! -f ${INSTALL_DIR}/cdiff ] ; then \
  install cdiff.sh ${INSTALL_DIR}/cdiff; \
fi
install -D colordiff.1 ${MAN_DIR}/colordiff.1
-   if [ -f ${ETC_DIR}/colordiffrc ]; then \
- mv -f ${ETC_DIR}/colordiffrc ${ETC_DIR}/colordiffrc.old; \
+   if [ -f ${ETC_DIR_INST}/colordiffrc ]; then \
+ mv -f ${ETC_DIR_INST}/colordiffrc ${ETC_DIR_INST}/colordiffrc.old; \
fi
-   cp colordiffrc ${ETC_DIR}/colordiffrc
-   chown root.root ${ETC_DIR}/colordiffrc
-   chmod 644 ${ETC_DIR}/colordiffrc
+   cp colordiffrc ${ETC_DIR_INST}/colordiffrc
+   chmod 644 ${ETC_DIR_INST}/colordiffrc
rm -f colordiff.pl.for.install
 
 dist:
Only in colordiff-1.0.5-patched/: Makefile~

--- NEW FILE: colordiff.info ---
Package: colordiff
Version: 1.0.6
Revision: 1
Depends: system-perl
Source: mirror:sourceforge:%n/%n-%v.tar.gz
Source-MD5: a27bfccc24cd9874eb1d1abe40dc2457
PatchScript: <<
 sed -e "s|/etc|%p/etc|g" colordiff.pl > colordiff
 sed -i.bak 's|\(color_patch\)es|\1|g' colordiffrc*
 rm *.bak
 mv cdiff.sh cdiff
<<

CompileScript: echo nothing to do
InstallScript: <<
 install -m 755 -d  %i/bin
 install -m 755 colordiff cdiff %i/bin
 install -m 755 -d  %i/share/man/man1
 install -m 644 colordiff.1 %i/share/man/man1
 install -m 755 -d  %i/etc
 install -m 644 colordiffrc*%i/etc 
<<
Description: Colorized diff wrapper
DescDetail: <<
  colordiff is a wrapper for diff and produces the same output as diff
but with coloured syntax highlighting at the command line to improve
readability. Theoutput is similar to how a diff-generated patch might
appear in Vim or Emacs with the appropriate syntax highlighting
options enabled. The colour schemes can be read from a central
configuration file or from a local user ~/.colordiffrc file.
  colordiff makes use of ANSI colours and as such will only work when
ANSI colours can be used - typical examples are xterms and Eterms, as
well as console sessions.
  colordiff has been tested on various flavours of Linux and under
OpenBSD, but should be broadly portable to other systems.
<<
DocFiles: BUGS CHANGES COPYING INSTALL README TODO
Maintainer: Corey Halpin <[EMAIL PROTECTED]>
Homepage: http://colordiff.sourceforge.net/
License: GPL/LGPL

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/text colordiff.info, NONE, 1.1 colordiff.patch, NONE, 1.1

2007-03-07 Thread Corey Halpin
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/text
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv10377/10.4/unstable/main/finkinfo/text

Added Files:
colordiff.info colordiff.patch 
Log Message:
Colordiff, initial revision.


--- NEW FILE: colordiff.patch ---
diff -ru colordiff-1.0.5/Makefile colordiff-1.0.5-patched/Makefile
--- colordiff-1.0.5/Makefile2005-03-28 15:07:03.0 -0600
+++ colordiff-1.0.5-patched/Makefile2005-10-30 13:51:52.0 -0600
@@ -1,8 +1,9 @@
 # $Id: Makefile,v 1.2.2.12 2005/03/28 21:07:03 daveewart Exp $
 
-INSTALL_DIR=/usr/local/bin
-MAN_DIR=/usr/local/man/man1
-ETC_DIR=/etc
+INSTALL_DIR=${PFX}/${SW}/bin
+MAN_DIR=${PFX}/${SW}/share/man/man1
+ETC_DIR=${SW}/etc
+ETC_DIR_INST=${PFX}/${ETC_DIR}
 VERSION=1.0.5
 DIST_FILES=COPYING INSTALL Makefile README \
colordiff.pl colordiffrc colordiffrc-lightbg cdiff.sh BUGS TODO CHANGES 
colordiff.1
@@ -24,17 +25,19 @@
sed -e "s%/etc%$(ETC_DIR)%g" colordiff.pl > colordiff.pl.for.install
 
 install: etc
+   mkdir -p ${INSTALL_DIR}
+   mkdir -p ${MAN_DIR}
+   mkdir -p ${ETC_DIR_INST}
install -D colordiff.pl.for.install ${INSTALL_DIR}/colordiff
if [ ! -f ${INSTALL_DIR}/cdiff ] ; then \
  install cdiff.sh ${INSTALL_DIR}/cdiff; \
fi
install -D colordiff.1 ${MAN_DIR}/colordiff.1
-   if [ -f ${ETC_DIR}/colordiffrc ]; then \
- mv -f ${ETC_DIR}/colordiffrc ${ETC_DIR}/colordiffrc.old; \
+   if [ -f ${ETC_DIR_INST}/colordiffrc ]; then \
+ mv -f ${ETC_DIR_INST}/colordiffrc ${ETC_DIR_INST}/colordiffrc.old; \
fi
-   cp colordiffrc ${ETC_DIR}/colordiffrc
-   chown root.root ${ETC_DIR}/colordiffrc
-   chmod 644 ${ETC_DIR}/colordiffrc
+   cp colordiffrc ${ETC_DIR_INST}/colordiffrc
+   chmod 644 ${ETC_DIR_INST}/colordiffrc
rm -f colordiff.pl.for.install
 
 dist:
Only in colordiff-1.0.5-patched/: Makefile~

--- NEW FILE: colordiff.info ---
Package: colordiff
Version: 1.0.6
Revision: 1
Depends: system-perl
Source: mirror:sourceforge:%n/%n-%v.tar.gz
Source-MD5: a27bfccc24cd9874eb1d1abe40dc2457
PatchScript: <<
 sed -e "s|/etc|%p/etc|g" colordiff.pl > colordiff
 sed -i.bak 's|\(color_patch\)es|\1|g' colordiffrc*
 rm *.bak
 mv cdiff.sh cdiff
<<

CompileScript: echo nothing to do
InstallScript: <<
 install -m 755 -d  %i/bin
 install -m 755 colordiff cdiff %i/bin
 install -m 755 -d  %i/share/man/man1
 install -m 644 colordiff.1 %i/share/man/man1
 install -m 755 -d  %i/etc
 install -m 644 colordiffrc*%i/etc 
<<
Description: Colorized diff wrapper
DescDetail: <<
  colordiff is a wrapper for diff and produces the same output as diff
but with coloured syntax highlighting at the command line to improve
readability. Theoutput is similar to how a diff-generated patch might
appear in Vim or Emacs with the appropriate syntax highlighting
options enabled. The colour schemes can be read from a central
configuration file or from a local user ~/.colordiffrc file.
  colordiff makes use of ANSI colours and as such will only work when
ANSI colours can be used - typical examples are xterms and Eterms, as
well as console sessions.
  colordiff has been tested on various flavours of Linux and under
OpenBSD, but should be broadly portable to other systems.
<<
DocFiles: BUGS CHANGES COPYING INSTALL README TODO
Maintainer: Corey Halpin <[EMAIL PROTECTED]>
Homepage: http://colordiff.sourceforge.net/
License: GPL/LGPL

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/text ec-fonts-mftraced.info, 1.2, 1.3

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/text
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv27717/main/finkinfo/text

Modified Files:
ec-fonts-mftraced.info 
Log Message:
more build fixes/distcc-friendly

Index: ec-fonts-mftraced.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/text/ec-fonts-mftraced.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ec-fonts-mftraced.info  1 Aug 2006 02:16:56 -   1.2
+++ ec-fonts-mftraced.info  7 Mar 2007 22:58:50 -   1.3
@@ -7,10 +7,10 @@
 Source-MD5: 4b355f668ca9cc01677e94c6eecdac40
 PatchScript: perl -pi -e 's,--potrace,--potrace=%p/bin/potrace,' GNUmakefile
 CompileScript: <<
-make prefix=%p TEXDIR=%i/etc/texmf.local TEXCONFDIR=%i/etc/texmf.local
+make -j1 prefix=%p TEXDIR=%i/etc/texmf.local TEXCONFDIR=%i/etc/texmf.local
 <<
 InstallScript: <<
-make install prefix=%i TEXDIR=%i/etc/texmf.local TEXCONFDIR=%i/etc/texmf.local
+make -j1 install prefix=%i TEXDIR=%i/etc/texmf.local 
TEXCONFDIR=%i/etc/texmf.local
 <<
 PostInstScript: <<
 if [ -f %p/bin/mktexlsr ]; then mktexlsr %p/etc/texmf.local; fi


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/utils gkrellstock2.info, 1.2, 1.3

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv27717/main/finkinfo/utils

Modified Files:
gkrellstock2.info 
Log Message:
more build fixes/distcc-friendly

Index: gkrellstock2.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils/gkrellstock2.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gkrellstock2.info   3 Feb 2006 16:41:51 -   1.2
+++ gkrellstock2.info   7 Mar 2007 22:58:50 -   1.3
@@ -1,13 +1,13 @@
 Package: gkrellstock2
 Version: 0.5.1
-Revision: 1014
+Revision: 1015
 Maintainer: James Gibbs <[EMAIL PROTECTED]>
 Source: mirror:sourceforge:gkrellstock/gkrellstock-%v.tar.gz
 Source-MD5: c405a86c2e6bfd6953177338720a505b
 SourceDirectory: gkrellStock-%v
-Depends: gkrellm2, gtk+2-shlibs, finance-quote-pm581, glib2-shlibs (>= 
2.6.6-), atk1-shlibs, pango1-xft2-shlibs, gettext, libiconv
+Depends: gkrellm2, gtk+2-shlibs, finance-quote-pm586, glib2-shlibs (>= 
2.6.6-), atk1-shlibs, pango1-xft2-shlibs, gettext, libiconv
 BuildDepends: gkrellm2-dev, gtk+2-dev, atk1, pkgconfig, glib2-dev (>= 
2.6.6-), pango1-xft2-dev, gettext-dev, gettext-bin, gettext-tools, 
libiconv-dev, x11-dev, fink (>= 0.20.1-1)
-CompileScript: make PREFIX=%p LFLAGS="-bundle -bundle_loader %p/bin/gkrellm 
`pkg-config gtk+-2.0 --libs`"
+CompileScript: make PREFIX=%p LFLAGS="-bundle -bundle_loader %p/bin/gkrellm 
`pkg-config gtk+-2.0 --libs`" PERL=/usr/bin/perl
 InstallScript: <<
 install -c -d -m 755 %i/lib/gkrellm2
 install -c -d -m 755 %i/lib/gkrellm2/plugins


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/sci genius.info, 1.1, 1.2 gretl.info, 1.6, 1.7 plplot.info, 1.18, 1.19

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv27717/main/finkinfo/sci

Modified Files:
genius.info gretl.info plplot.info 
Log Message:
more build fixes/distcc-friendly

Index: genius.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/genius.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- genius.info 22 Aug 2006 16:03:08 -  1.1
+++ genius.info 7 Mar 2007 22:58:50 -   1.2
@@ -15,6 +15,8 @@
   perl -pi -e 's/-scrollkeeper-update/#-scrollkeeper-update/' 
help/C/Makefile.in
   perl -pi -e 's/-update-mime-database/#-update-mime-database/' Makefile.in
 <<
+NoSetMAKEFLAGS: true
+SetMAKEFLAGS: -j1
 ConfigureParams: --libexecdir=%p/lib --disable-dependency-tracking
 InstallScript: make install DESTDIR=%d
 DocFiles: AUTHORS COPYING ChangeLog NEWS README TODO

Index: plplot.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/plplot.info,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- plplot.info 6 Jan 2007 23:30:32 -   1.18
+++ plplot.info 7 Mar 2007 22:58:50 -   1.19
@@ -12,6 +12,8 @@
 
 SetCFLAGS: -Wno-long-double
 SetLDFlags: -L%p/lib/python2.5/config
+NoSetMAKEFLAGS: true
+SetMAKEFLAGS: -j1
 
 PatchScript: <<
  perl -pi -e 's,head \-5,head -n5,' bindings/octave/Makefile*

Index: gretl.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/gretl.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- gretl.info  20 Jul 2006 02:49:27 -  1.6
+++ gretl.info  7 Mar 2007 22:58:50 -   1.7
@@ -44,7 +44,7 @@
 CompileScript: export CPATH=%p/include; ./configure %c; make; make check
 InstallScript: <<
 #!/bin/sh -ev
-  make install prefix=%i
+  make -j1 install prefix=%i
 # -L%p/lib not needed in .la files (all corresponding libs have absolute paths)
 # Being there, we may as well also remove homonyms of libSystem, which is 
always there, and must be searched last.  
   find %i/lib -name "*.la" | xargs perl -pi -e "s, \-L%p/lib([^/]),\$1,g; s, 
\-l([mzc]|dl|pthread)\b,,g"


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/languages mdk.info,1.1,1.2

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv27717/main/finkinfo/languages

Modified Files:
mdk.info 
Log Message:
more build fixes/distcc-friendly

Index: mdk.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/mdk.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- mdk.info3 Oct 2006 17:53:15 -   1.1
+++ mdk.info7 Mar 2007 22:58:50 -   1.2
@@ -41,6 +41,8 @@
 sed -e "s|[EMAIL PROTECTED]@|%p|" %a/mdk.patch | patch -p1
 <<
 
+NoSetMAKEFLAGS: true
+SetMAKEFLAGS: -j1
 CompileScript: <<
 #!/bin/sh -ev
 export LIBRARY_PATH=%p/lib


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/games teg.info,1.5,1.6

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/games
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv27717/main/finkinfo/games

Modified Files:
teg.info 
Log Message:
more build fixes/distcc-friendly

Index: teg.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/games/teg.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- teg.info20 Jul 2006 02:49:25 -  1.5
+++ teg.info7 Mar 2007 22:58:50 -   1.6
@@ -76,6 +76,8 @@
 Source-MD5: 85db29710452c3c4829e506481deaca0
 
 SetCPPFLAGS: -DMACOSX
+NoSetMAKEFLAGS: true
+SetMAKEFLAGS: -j1
 ConfigureParams: --with-readline --enable-ggz=yes --with-ggzdmod-dir=%p 
--with-ggzmod-dir=%p -with-ggzconfig=%p/bin --with-ggzd-confdir=%p/etc/ggzd
 
 # Patch includes


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/libs pilot-link10.info, 1.8.2.3, 1.8.2.4 pilot-link10.patch, 1.1.2.1, 1.1.2.2

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv26118

Modified Files:
  Tag: pangocairo-branch
pilot-link10.info pilot-link10.patch 
Log Message:
from head

Index: pilot-link10.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pilot-link10.info,v
retrieving revision 1.8.2.3
retrieving revision 1.8.2.4
diff -u -d -r1.8.2.3 -r1.8.2.4
--- pilot-link10.info   7 Mar 2007 22:19:10 -   1.8.2.3
+++ pilot-link10.info   7 Mar 2007 22:54:55 -   1.8.2.4
@@ -1,6 +1,6 @@
 Package: pilot-link10
 Version: 0.12.2
-Revision: 12
+Revision: 13
 ###
 # Make sure to keep %v for ./pilot-link-py.info and 
 # ./perlmods/pilot-link-pm.info in sync with this package
@@ -19,7 +19,7 @@
 Source: http://downloads.pilot-link.org/pilot-link-%v.tar.bz2
 Source-MD5: c1f4db8f32a2ee916fedb9a2dac8aa26
 ###
-#PatchScript: sed -e's,@FINKPREFIX@,%p,' < %a/%n.patch | patch -p1
+Patch: %n.patch
 ###
 ###
 DocFiles: AUTHORS COPYING* ChangeLog NEWS README doc/README*

Index: pilot-link10.patch
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pilot-link10.patch,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- pilot-link10.patch  7 Mar 2007 22:19:10 -   1.1.2.1
+++ pilot-link10.patch  7 Mar 2007 22:54:55 -   1.1.2.2
@@ -1,17 +1,5 @@
 pilot-link-0.12.0.orig/doc/Makefile.in 2006-08-29 07:56:53.0 
-0400
-+++ pilot-link-0.12.0/doc/Makefile.in  2006-08-29 12:12:57.0 -0400
-@@ -276,7 +276,7 @@
-   60-libpisock.rules  \
-   doxygen.cfg.in
- 
--udevdir = /etc/udev/rules.d
-+udevdir = @FINKPREFIX@/etc/pilot-link10/udev/rules.d
- udev_DATA = \
-   60-libpisock.rules
- 
-diff -uNr pilot-link-0.12.2/pilot-link.m4 pilot-link-0.12.2-new/pilot-link.m4
 pilot-link-0.12.2/pilot-link.m42007-02-09 17:09:46.0 -0500
-+++ pilot-link-0.12.2-new/pilot-link.m42007-03-07 17:18:27.0 
-0500
+--- pilot-link-0.12.2/pilot-link.m4.in 2007-02-02 05:54:32.0 -0500
 pilot-link-0.12.2-new/pilot-link.m4.in 2007-03-07 17:42:09.0 
-0500
 @@ -1,4 +1,5 @@
 -AC_DEFUN([IT_PROG_INTLTOOL], [AC_PREREQ([2.50])dnl
 +dnl WTF?


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/libs pilot-link10.info, 1.12, 1.13 pilot-link10.patch, 1.2, 1.3

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv26076/main/finkinfo/libs

Modified Files:
pilot-link10.info pilot-link10.patch 
Log Message:
fix it right this time

Index: pilot-link10.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pilot-link10.info,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- pilot-link10.info   7 Mar 2007 22:22:51 -   1.12
+++ pilot-link10.info   7 Mar 2007 22:54:19 -   1.13
@@ -1,6 +1,6 @@
 Package: pilot-link10
 Version: 0.12.2
-Revision: 12
+Revision: 13
 ###
 # Make sure to keep %v for ./pilot-link-py.info and 
 # ./perlmods/pilot-link-pm.info in sync with this package
@@ -19,7 +19,7 @@
 Source: http://downloads.pilot-link.org/pilot-link-%v.tar.bz2
 Source-MD5: c1f4db8f32a2ee916fedb9a2dac8aa26
 ###
-#PatchScript: sed -e's,@FINKPREFIX@,%p,' < %a/%n.patch | patch -p1
+Patch: %n.patch
 ###
 ###
 DocFiles: AUTHORS COPYING* ChangeLog NEWS README doc/README*

Index: pilot-link10.patch
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pilot-link10.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- pilot-link10.patch  7 Mar 2007 22:22:51 -   1.2
+++ pilot-link10.patch  7 Mar 2007 22:54:19 -   1.3
@@ -1,17 +1,5 @@
 pilot-link-0.12.0.orig/doc/Makefile.in 2006-08-29 07:56:53.0 
-0400
-+++ pilot-link-0.12.0/doc/Makefile.in  2006-08-29 12:12:57.0 -0400
-@@ -276,7 +276,7 @@
-   60-libpisock.rules  \
-   doxygen.cfg.in
- 
--udevdir = /etc/udev/rules.d
-+udevdir = @FINKPREFIX@/etc/pilot-link10/udev/rules.d
- udev_DATA = \
-   60-libpisock.rules
- 
-diff -uNr pilot-link-0.12.2/pilot-link.m4 pilot-link-0.12.2-new/pilot-link.m4
 pilot-link-0.12.2/pilot-link.m42007-02-09 17:09:46.0 -0500
-+++ pilot-link-0.12.2-new/pilot-link.m42007-03-07 17:18:27.0 
-0500
+--- pilot-link-0.12.2/pilot-link.m4.in 2007-02-02 05:54:32.0 -0500
 pilot-link-0.12.2-new/pilot-link.m4.in 2007-03-07 17:42:09.0 
-0500
 @@ -1,4 +1,5 @@
 -AC_DEFUN([IT_PROG_INTLTOOL], [AC_PREREQ([2.50])dnl
 +dnl WTF?


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink ChangeLog,1.461,1.462 setup.sh,1.27,1.28

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv23330

Modified Files:
ChangeLog setup.sh 
Log Message:
Avoid premature CVS keyword expansion in perl regexes *grumble*


Index: setup.sh
===
RCS file: /cvsroot/fink/fink/setup.sh,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- setup.sh7 Mar 2007 22:39:07 -   1.27
+++ setup.sh7 Mar 2007 22:48:31 -   1.28
@@ -46,10 +46,10 @@
 
 echo "Creating man pages..."
 sed "s|@VERSION@|$version|g ; s|@PREFIX@|$basepath|g" fink.8
 sed "s|@PREFIX@|$basepath|g" fink.conf.5
 
 echo "Creating shlibs default file..."

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.461
retrieving revision 1.462
diff -u -d -r1.461 -r1.462
--- ChangeLog   7 Mar 2007 22:39:07 -   1.461
+++ ChangeLog   7 Mar 2007 22:48:31 -   1.462
@@ -1,5 +1,9 @@
 2007-03-06  Daniel Macks  <[EMAIL PROTECTED]>
 
+   * setup.sh: Avoid premature CVS keyword expansion
+
+2007-03-06  Daniel Macks  <[EMAIL PROTECTED]>
+
* fink.8.in, fink.conf.5.in, setup.sh: set document-date according
to CVS timestamp token
 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink ChangeLog, 1.460, 1.461 fink.8.in, 1.64, 1.65 setup.sh, 1.26, 1.27

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv19668

Modified Files:
ChangeLog fink.8.in setup.sh 
Log Message:
automatically set .Dd field in manpages from CVS date keyword in .in templates


Index: fink.8.in
===
RCS file: /cvsroot/fink/fink/fink.8.in,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- fink.8.in   30 Nov 2006 04:00:43 -  1.64
+++ fink.8.in   7 Mar 2007 22:39:07 -   1.65
@@ -1,5 +1,5 @@
 .\" -*- nroff -*-
-.Dd January 26, 2002
+.Dd $Date$
 .Dt FINK 8
 .Sh NAME
 .Nm fink

Index: setup.sh
===
RCS file: /cvsroot/fink/fink/setup.sh,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- setup.sh11 Jan 2007 03:17:45 -  1.26
+++ setup.sh7 Mar 2007 22:39:07 -   1.27
@@ -45,8 +45,12 @@
 sed -e "s|@BASEPATH@|$basepath|g" perlmod/Fink.pm
 
 echo "Creating man pages..."
-sed "s|@VERSION@|$version|g ; s|@PREFIX@|$basepath|g" fink.8
-sed "s|@PREFIX@|$basepath|g" fink.conf.5
+sed "s|@VERSION@|$version|g ; s|@PREFIX@|$basepath|g" fink.8
+sed "s|@PREFIX@|$basepath|g" fink.conf.5
 
 echo "Creating shlibs default file..."
 sed "s|@PREFIX@|$basepath|g" shlibs.default

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.460
retrieving revision 1.461
diff -u -d -r1.460 -r1.461
--- ChangeLog   7 Mar 2007 22:01:01 -   1.460
+++ ChangeLog   7 Mar 2007 22:39:07 -   1.461
@@ -1,5 +1,10 @@
 2007-03-06  Daniel Macks  <[EMAIL PROTECTED]>
 
+   * fink.8.in, fink.conf.5.in, setup.sh: set document-date according
+   to CVS timestamp token
+
+2007-03-06  Daniel Macks  <[EMAIL PROTECTED]>
+
* fink.conf.5.in: fix valid values for Distribution field
 
 2007-02-27  Daniel Macks  <[EMAIL PROTECTED]>


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink ChangeLog,1.449.2.4,1.449.2.5 VERSION,1.90.2.1,1.90.2.2

2007-03-07 Thread David R. Morrison
Update of /cvsroot/fink/fink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv19099

Modified Files:
  Tag: branch_0_26
ChangeLog VERSION 
Log Message:
releasing 0.26.2


Index: VERSION
===
RCS file: /cvsroot/fink/fink/VERSION,v
retrieving revision 1.90.2.1
retrieving revision 1.90.2.2
diff -u -d -r1.90.2.1 -r1.90.2.2
--- VERSION 22 Jan 2007 19:13:30 -  1.90.2.1
+++ VERSION 7 Mar 2007 22:37:10 -   1.90.2.2
@@ -1 +1 @@
-0.26.1.cvs
+0.26.2.cvs

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.449.2.4
retrieving revision 1.449.2.5
diff -u -d -r1.449.2.4 -r1.449.2.5
--- ChangeLog   7 Mar 2007 22:03:29 -   1.449.2.4
+++ ChangeLog   7 Mar 2007 22:37:10 -   1.449.2.5
@@ -1,3 +1,8 @@
+2007-01-22  Dave Morrison  <[EMAIL PROTECTED]>
+
+   * VERSION: Bumped package manager version to 0.26.2, a bug-fix
+   release on branch 0.26
+
 2007-03-06  Daniel Macks  <[EMAIL PROTECTED]>
 
* fink.conf.5.in: fix valid values for Distribution field


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/gnome gedit.info,1.7,1.8

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv15543/main/finkinfo/gnome

Modified Files:
gedit.info 
Log Message:
distcc-friendly

Index: gedit.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/gedit.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- gedit.info  13 Jan 2007 22:46:19 -  1.7
+++ gedit.info  7 Mar 2007 22:26:25 -   1.8
@@ -14,7 +14,7 @@
   make
 <<
 InstallScript: <<
-  GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 make install DESTDIR=%d
+  GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 make -j1 install DESTDIR=%d
 <<
 PostInstScript: <<
   if [ configure = "$1" ]; then


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


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

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv15085/main/finkinfo/graphics

Modified Files:
pstoedit.info 
Log Message:
distcc-friendly

Index: pstoedit.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/pstoedit.info,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- pstoedit.info   13 Jan 2007 19:23:51 -  1.8
+++ pstoedit.info   7 Mar 2007 22:24:52 -   1.9
@@ -12,6 +12,8 @@
 SetCPPFLAGS: -I/usr/X11R6/include/ -I%p/include -D__unix__
 NoSetLDFLAGS: True
 SetLIBS: -L%p/lib
+NoSetMAKEFLAGS: true
+SetMAKEFLAGS: -j1
 PatchScript: <<
 cd src; grep -rl '{LIBEMF_LDFLAGS}' . | xargs perl -pi -e 
's|{LIBEMF_LDFLAGS}|\${LIBEMF_LDFLAGS}|g'
 perl -pi -e 's/-L\.//g' src/Makefile.in


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/libs pilot-link10.info, 1.11, 1.12 pilot-link10.patch, 1.1, 1.2

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv14654

Modified Files:
pilot-link10.info pilot-link10.patch 
Log Message:
malformed .m4 file

Index: pilot-link10.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pilot-link10.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- pilot-link10.info   23 Feb 2007 19:15:50 -  1.11
+++ pilot-link10.info   7 Mar 2007 22:22:51 -   1.12
@@ -1,6 +1,6 @@
 Package: pilot-link10
 Version: 0.12.2
-Revision: 11
+Revision: 12
 ###
 # Make sure to keep %v for ./pilot-link-py.info and 
 # ./perlmods/pilot-link-pm.info in sync with this package

Index: pilot-link10.patch
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pilot-link10.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- pilot-link10.patch  2 Sep 2006 14:53:38 -   1.1
+++ pilot-link10.patch  7 Mar 2007 22:22:51 -   1.2
@@ -9,3 +9,13 @@
  udev_DATA = \
60-libpisock.rules
  
+diff -uNr pilot-link-0.12.2/pilot-link.m4 pilot-link-0.12.2-new/pilot-link.m4
+--- pilot-link-0.12.2/pilot-link.m42007-02-09 17:09:46.0 -0500
 pilot-link-0.12.2-new/pilot-link.m42007-03-07 17:18:27.0 
-0500
+@@ -1,4 +1,5 @@
+-AC_DEFUN([IT_PROG_INTLTOOL], [AC_PREREQ([2.50])dnl
++dnl WTF?
++dnl AC_DEFUN([IT_PROG_INTLTOOL], [AC_PREREQ([2.50])dnl
+ 
+ AC_DEFUN([AC_PILOT_LINK_HOOK],
+ [


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/libs pilot-link10.info, 1.8.2.2, 1.8.2.3 pilot-link10.patch, 1.1, 1.1.2.1

2007-03-07 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv13571

Modified Files:
  Tag: pangocairo-branch
pilot-link10.info pilot-link10.patch 
Log Message:
malformed .m4 file

Index: pilot-link10.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pilot-link10.info,v
retrieving revision 1.8.2.2
retrieving revision 1.8.2.3
diff -u -d -r1.8.2.2 -r1.8.2.3
--- pilot-link10.info   27 Feb 2007 22:50:46 -  1.8.2.2
+++ pilot-link10.info   7 Mar 2007 22:19:10 -   1.8.2.3
@@ -1,6 +1,6 @@
 Package: pilot-link10
 Version: 0.12.2
-Revision: 11
+Revision: 12
 ###
 # Make sure to keep %v for ./pilot-link-py.info and 
 # ./perlmods/pilot-link-pm.info in sync with this package

Index: pilot-link10.patch
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pilot-link10.patch,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -d -r1.1 -r1.1.2.1
--- pilot-link10.patch  2 Sep 2006 14:53:38 -   1.1
+++ pilot-link10.patch  7 Mar 2007 22:19:10 -   1.1.2.1
@@ -9,3 +9,13 @@
  udev_DATA = \
60-libpisock.rules
  
+diff -uNr pilot-link-0.12.2/pilot-link.m4 pilot-link-0.12.2-new/pilot-link.m4
+--- pilot-link-0.12.2/pilot-link.m42007-02-09 17:09:46.0 -0500
 pilot-link-0.12.2-new/pilot-link.m42007-03-07 17:18:27.0 
-0500
+@@ -1,4 +1,5 @@
+-AC_DEFUN([IT_PROG_INTLTOOL], [AC_PREREQ([2.50])dnl
++dnl WTF?
++dnl AC_DEFUN([IT_PROG_INTLTOOL], [AC_PREREQ([2.50])dnl
+ 
+ AC_DEFUN([AC_PILOT_LINK_HOOK],
+ [


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink fink.conf.5.in,1.42,1.43

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv11872

Modified Files:
fink.conf.5.in 
Log Message:
switch to using CVS "Date" tag


Index: fink.conf.5.in
===
RCS file: /cvsroot/fink/fink/fink.conf.5.in,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -d -r1.42 -r1.43
--- fink.conf.5.in  7 Mar 2007 22:01:02 -   1.42
+++ fink.conf.5.in  7 Mar 2007 22:15:36 -   1.43
@@ -1,5 +1,5 @@
 .\" -*- nroff -*-
-.Dd March 6, 2007
+.Dd $Date$
 .Dt FINK.CONF 5
 .Sh NAME
 .Nm fink.conf


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink ChangeLog, 1.449.2.3, 1.449.2.4 fink.conf.5.in, 1.40, 1.40.2.1

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv7208

Modified Files:
  Tag: branch_0_26
ChangeLog fink.conf.5.in 
Log Message:
update Distribution values


Index: fink.conf.5.in
===
RCS file: /cvsroot/fink/fink/fink.conf.5.in,v
retrieving revision 1.40
retrieving revision 1.40.2.1
diff -u -d -r1.40 -r1.40.2.1
--- fink.conf.5.in  8 Dec 2006 12:35:14 -   1.40
+++ fink.conf.5.in  7 Mar 2007 22:03:29 -   1.40.2.1
@@ -1,5 +1,5 @@
 .\" -*- nroff -*-
-.Dd January 15, 2003
+.Dd March 6, 2007
 .Dt FINK.CONF 5
 .Sh NAME
 .Nm fink.conf
@@ -97,7 +97,7 @@
 .Pp
 The order of trees is meaningful, as packages from later trees may override
 packages from earlier ones.
-.It Cm Distribution: Ar 10.3 or 10.4-transitional
+.It Cm Distribution: Ar 10.3 or 10.4
 Fink needs to know which version of Mac OS X you are running. Mac OS X 10.0 
and earlier are not supported, and 10.1 and 10.2 are no longer supported by 
this version of fink. This field is set by running the
 .Cm @PREFIX@/lib/fink/postinstall.pl
 script. You should not need to alter this value manually. 

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.449.2.3
retrieving revision 1.449.2.4
diff -u -d -r1.449.2.3 -r1.449.2.4
--- ChangeLog   22 Jan 2007 19:13:30 -  1.449.2.3
+++ ChangeLog   7 Mar 2007 22:03:29 -   1.449.2.4
@@ -1,3 +1,7 @@
+2007-03-06  Daniel Macks  <[EMAIL PROTECTED]>
+
+   * fink.conf.5.in: fix valid values for Distribution field
+
 2007-01-22  Dave Morrison  <[EMAIL PROTECTED]>
 
* VERSION: Bumped package manager version to 0.26.1, a bug-fix


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink ChangeLog,1.459,1.460 fink.conf.5.in,1.41,1.42

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv5965

Modified Files:
ChangeLog fink.conf.5.in 
Log Message:
update Distribution values
update document date (looks like can't do a CVS tag here?)


Index: fink.conf.5.in
===
RCS file: /cvsroot/fink/fink/fink.conf.5.in,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- fink.conf.5.in  23 Jan 2007 18:57:03 -  1.41
+++ fink.conf.5.in  7 Mar 2007 22:01:02 -   1.42
@@ -1,5 +1,5 @@
 .\" -*- nroff -*-
-.Dd January 15, 2003
+.Dd March 6, 2007
 .Dt FINK.CONF 5
 .Sh NAME
 .Nm fink.conf
@@ -97,7 +97,7 @@
 .Pp
 The order of trees is meaningful, as packages from later trees may override
 packages from earlier ones.
-.It Cm Distribution: Ar 10.3 or 10.4-transitional
+.It Cm Distribution: Ar 10.3 or 10.4
 Fink needs to know which version of Mac OS X you are running. Mac OS X 10.0 
and earlier are not supported, and 10.1 and 10.2 are no longer supported by 
this version of fink. This field is set by running the
 .Cm @PREFIX@/lib/fink/postinstall.pl
 script. You should not need to alter this value manually. 

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.459
retrieving revision 1.460
diff -u -d -r1.459 -r1.460
--- ChangeLog   6 Mar 2007 20:15:41 -   1.459
+++ ChangeLog   7 Mar 2007 22:01:01 -   1.460
@@ -1,3 +1,7 @@
+2007-03-06  Daniel Macks  <[EMAIL PROTECTED]>
+
+   * fink.conf.5.in: fix valid values for Distribution field
+
 2007-02-27  Daniel Macks  <[EMAIL PROTECTED]>
 
* install.sh: manify Fink::SelfUpdate.pm


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


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

2007-03-07 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv23843/unstable/main/finkinfo/kde

Modified Files:
kmplayer.info 
Log Message:
new version

Index: kmplayer.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde/kmplayer.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- kmplayer.info   1 Jan 2007 14:47:22 -   1.2
+++ kmplayer.info   7 Mar 2007 18:50:54 -   1.3
@@ -1,9 +1,9 @@
 Package: kmplayer
-Version: 0.9.3a
-Revision: 1001
+Version: 0.9.4
+Revision: 1002
 Source: http://%n.kde.org/pkgs/%n-%v.tar.bz2
 Depends: kdelibs3-unified (>= 3.5-1), libxine1-shlibs, gstreamer-0.10-shlibs, 
libart2-shlibs (>= 2.3.17-1), fontconfig2-shlibs, x11, x11-shlibs, mplayer | 
mplayer-altivec, libiconv, freetype219-shlibs, glib2-shlibs, 
gst-plugins-base-0.10-shlibs, libgettext3-shlibs, libxml2-shlibs, qt3-shlibs
-BuildDepends: libxine1, gstreamer-0.10-dev, arts-dev (>= 1.4.3-1021), libart2 
(>= 2.3.17-1), fontconfig2-dev, freetype219, kdelibs3-unified-dev (>= 3.5-1), 
libidn, libpng3 (>= 1.2.5-4), qt3 (>= 3.3.5-1026), x11-dev, libiconv-dev, 
gettext-tools, libxml2-bin, libxml2, libgettext3-dev, pkgconfig, glib2-dev
+BuildDepends: libxine1, gstreamer-0.10-dev, arts-dev (>= 1.4.3-1021), libart2 
(>= 2.3.17-1), fontconfig2-dev, freetype219, kdelibs3-unified-dev (>= 3.5-1), 
libidn, libpng3 (>= 1.2.5-4), qt3 (>= 3.3.5-1026), x11-dev, libiconv-dev, 
gettext-tools, libxml2-bin, libxml2, libgettext3-dev, pkgconfig
 Recommends: kdebase3-unified (>= 3.5-1)
 GCC: 4.0
 SourceDirectory: %n-%v
@@ -11,7 +11,7 @@
 Homepage: http://kmplayer.kde.org
 License: GPL
 Description: KDE - Video player
-Source-MD5: d18749a254af3d54dd10ce651975527c
+Source-MD5: 0d2a199290f7d4c470ea89df42d527ec
 ConfigureParams: --mandir=%{p}/share/man --with-extra-libs=%{p}/lib 
--with-extra-includes=%{p}/include --disable-dependency-tracking
 PatchScript: perl -pi -e 's,doc/HTML,doc/kde,;s/-g -O/-O/g;s/-O2/-Os/g;' 
configure
 InstallScript: <<


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/kde libkexiv2.info,NONE,1.1

2007-03-07 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv29441/unstable/main/finkinfo/kde

Added Files:
libkexiv2.info 
Log Message:
new package

--- NEW FILE: libkexiv2.info ---
Package: libkexiv2
Version: 0.1.1
Revision: 1002
Source: mirror:sourceforge:kipi/%n-%v.tar.bz2
Depends: %N-shlibs (= %v-%r)
BuildDepends: arts-dev, libart2 (>= 2.3.17-1), freetype219, 
kdelibs3-unified-dev (>= 3.5-1), libgettext3-dev, libidn, libpng3 (>= 1.2.5-4), 
qt3 (>= 3.3.5-1026), x11-dev, libiconv-dev, libjpeg, libxml2-bin, 
gettext-tools, pkgconfig, libexiv2-0.12
Recommends: kdebase3-unified
GCC: 4.0
Maintainer: Jack Fink <[EMAIL PROTECTED]>
Homepage: http://extragear.kde.org/apps/kipi
License: GPL
Description: KDE - a KIPI wrapper for exiv2
Source-MD5: cd577926992dc1ea5359f9cb53c6a10d
BuildDependsOnly: True
ConfigureParams: --mandir=%{i}/share/man --with-extra-libs=%{p}/lib 
--with-extra-includes=%{p}/include --disable-dependency-tracking
PatchScript: perl -pi -e "s,doc/HTML,doc/kde,g;s,-g -O,-O,g;s,-O2,-Os,g" 
configure
DocFiles: AUTHORS COPYING ChangeLog NEWS README RELEASE.rev PACKAGING
Splitoff: <<
  Description: KDE - a KIPI wrapper for exiv2, shared libraries
  Package: %N-shlibs
  Depends: kdelibs3-unified-shlibs (>= 3.4), libart2-shlibs (>= 2.3.17-1), 
freetype219-shlibs, libgettext3-shlibs, libiconv, libidn-shlibs, 
libpng3-shlibs, qt3-shlibs, x11-shlibs, x11, libexiv2-0.12-shlibs
  Files: <<
lib/libkexiv2.0.dylib
lib/libkexiv2.0.0.2.dylib
  <<
  Shlibs: <<
%p/lib/libkexiv2.0.dylib 1.0.0 %n (>= 0.1.1-1001)
  <<
  DocFiles: COPYING
<<


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/kde kvpnc.info,1.1,1.2

2007-03-07 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv2546/unstable/main/finkinfo/kde

Modified Files:
kvpnc.info 
Log Message:
new version

Index: kvpnc.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde/kvpnc.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- kvpnc.info  28 Dec 2006 19:02:14 -  1.1
+++ kvpnc.info  7 Mar 2007 11:50:56 -   1.2
@@ -1,8 +1,8 @@
 Package: kvpnc
-Version: 0.8.7
+Version: 0.8.8
 Revision: 1002
 Source: http://download.gna.org/%n/%n-%v.tar.bz2
-Source-MD5: 6e7d4925aaf4083d0aa6f334e4ff56ea
+Source-MD5: 8deaf11dbb054d870c49dc6675b51edd
 Depends: kdelibs3-unified (>= 3.5-1), fontconfig2-shlibs, freetype219-shlibs, 
kdebase3-unified-shlibs, libart2-shlibs, libiconv, libidn-shlibs, 
libpng3-shlibs, qt3-shlibs, x11, x11-shlibs, libgettext3-shlibs, 
libgcrypt-shlibs, libgpg-error-shlibs, pth-shlibs
 BuildDepends: kdelibs3-unified-dev (>= 3.5-1), qt3 (>= 3.3.5-1026), x11-dev, 
libiconv-dev, fontconfig2-dev, freetype219, kdebase3-unified-dev, libart2, 
libidn, libpng3, libxml2-bin, arts-dev, libjpeg, libgettext3-dev, 
gettext-tools, pth, libgpg-error, libgcrypt
 Recommends: kdebase3-unified (>= 3.5-1)


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/kde kscope.info,1.4,1.5

2007-03-07 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv15580/unstable/main/finkinfo/kde

Modified Files:
kscope.info 
Log Message:
new version

Index: kscope.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde/kscope.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- kscope.info 17 Nov 2006 02:17:23 -  1.4
+++ kscope.info 7 Mar 2007 09:42:06 -   1.5
@@ -1,25 +1,16 @@
 Package: kscope
-Version: 1.4.2
-Revision: 1003
+Version: 1.5.1
+Revision: 1001
 Source: mirror:sourceforge:%n/%n-%v.tar.gz
-CustomMirror: <<
-nam-US: http://ranger.befunk.com/fink
-nam-US: http://astrange.ithinksw.net/~astrange/ranger-fink
-nam-CA: http://www.southofheaven.net/befunk
-<<
-Source2: mirror:custom:kde-admindir-full-3.5.3.tar.bz2
 Depends: cscope, kdelibs3-unified (>= 3.5-1), freetype219-shlibs, 
kdebase3-unified-shlibs (>= 3.5-1), libart2-shlibs, libgettext3-shlibs, 
libiconv, libidn-shlibs, libpng3-shlibs, qt3-shlibs, x11, x11-shlibs, 
fontconfig2-shlibs
 BuildDepends: kdelibs3-unified-dev (>= 3.5-1), x11-dev, libiconv-dev, 
freetype219, gettext-tools, qt3, libidn, libart2, libgettext3-dev, 
kdebase3-unified-dev, libpng3, libxml2-bin, fontconfig2-dev
-Recommends: kdebase3-unified, ctags-exuberant, graphviz
+Recommends: kdebase3-unified (>= 3.5-1), ctags-exuberant, graphviz
 GCC: 4.0
 Maintainer: Jack Fink <[EMAIL PROTECTED]>
 Homepage: http://kscope.sourceforge.net
 License: GPL
 Description: KDE - Source editing environment, based on cscope
-Source-MD5: 21749b587ce4167758e8173bde89670d
-Source2-MD5: 59748e0b77d08e88d5f785b4b2672cc0
-SourceDirectory: %n-%v
-Source2ExtractDir: %n-%v
+Source-MD5: a624fcb2375af617edf8bd292bf29342
 ConfigureParams: --mandir=%{i}/share/man --with-extra-libs=%{p}/lib 
--with-extra-includes=%{p}/include --disable-dependency-tracking
 PatchScript: perl -pi -e "s,doc/HTML,doc/kde,;s,-g -O,-O,g;s,-O2,-Os,g;" 
configure
 SetLDFLAGS: -L%{p}/lib/freetype219/lib -L%{p}/lib/fontconfig2/lib


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink/perlmod/Fink ChangeLog, 1.1439.2.4, 1.1439.2.5 SelfUpdate.pm, 1.117.2.3, 1.117.2.4

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv14468/perlmod/Fink

Modified Files:
  Tag: selfupdate_classes
ChangeLog SelfUpdate.pm 
Log Message:
Actual updating now implemented in SU::$method->do_direct; offloaded
from SU functions for $method==(rsync,point)


Index: SelfUpdate.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/SelfUpdate.pm,v
retrieving revision 1.117.2.3
retrieving revision 1.117.2.4
diff -u -d -r1.117.2.3 -r1.117.2.4
--- SelfUpdate.pm   6 Mar 2007 20:02:28 -   1.117.2.3
+++ SelfUpdate.pm   7 Mar 2007 09:41:17 -   1.117.2.4
@@ -133,10 +133,6 @@
$method = $methods{lc $method};
}
 
-   my ($srcdir, $finkdir, $latest_fink, $installed_version, $answer);
-
-   $srcdir = "$basepath/src";
-   $finkdir = "$basepath/fink";
if (defined $method) {
&print_breaking("\n Please note: the command 'fink selfupdate' "
. "should be used for routine updating; you 
only need to use " 
@@ -144,15 +140,8 @@
. "changing your update method. \n\n");
}
if (! defined $config->param("SelfUpdateMethod") and defined $method) {
-   if ($method eq 'cvs') {
-   $answer = "cvs";
-   }
-   elsif ($method eq 'rsync') {
-   $answer = "rsync";
-   }
-   else {
-   $answer = "point";
-   }
+   my $answer = $method;
+   $answer = 'point' if !defined $answer;
&need_devtools($answer);
&print_breaking("fink is setting your default update method to 
$answer \n");
$config->set_param("SelfUpdateMethod", $answer);
@@ -162,7 +151,7 @@
# The user has not chosen a selfupdatemethod yet, always ask
# if the fink.conf setting is not there.
if (! defined $config->param("SelfUpdateMethod") and ! defined $method) 
{
-   $answer = &prompt_selection("Choose an update method",
+   my $answer = &prompt_selection("Choose an update method",
intro   => "fink needs you to 
choose a SelfUpdateMethod.",
default => [ value => "rsync" ],
choices => [
@@ -186,7 +175,7 @@
if ($config->param("SelfUpdateMethod") eq 'cvs' and $method ne 'rsync') 
{
&need_devtools('cvs');
Fink::SelfUpdate::rsync->stamp_clear();
-   if (-d "$finkdir/dists/CVS") {
+   if (-d "$basepath/fink/dists/CVS") {
&do_direct_cvs();
&do_finish();
return;
@@ -198,12 +187,11 @@
}
elsif ($config->param("SelfUpdateMethod") eq 'rsync' and $method ne 
'cvs'){
&need_devtools('rsync');
-   &do_direct_rsync();
+   Fink::SelfUpdate::rsync->do_direct();
&do_finish();
return;
}
# Hm, we were called with a different option than the default :(
-   $installed_version = &pkginfo_version();
my $selfupdatemethod = $config->param("SelfUpdateMethod");
if ($selfupdatemethod ne 'rsync' and $method eq 'rsync') {
 
@@ -214,7 +202,7 @@
die "Sorry, fink doesn't support rsync updating in the 
10.5 distribution at present.\n\n";
}
 
-   $answer =
+   my $answer =
&prompt_boolean("The current selfupdate method is 
$selfupdatemethod. " 
. "Do you wish to change the default 
selfupdate method ".
"to rsync?", default => 1);
@@ -224,12 +212,12 @@
&need_devtools('rsync');
$config->set_param("SelfUpdateMethod", "rsync");
$config->save();
-   &do_direct_rsync();
+   Fink::SelfUpdate::rsync->do_direct();
&do_finish();
return; 
}
if ($selfupdatemethod ne 'cvs' and $method eq 'cvs') {
-   $answer =
+   my $answer =
&prompt_boolean("The current selfupdate method is 
$selfupdatemethod. " 
. "Do you wish to change the default 
selfupdate method ".
"to cvs?", default => 1);
@@ -244,38 +232,7 @@
return;
}
if (($config->param("SelfUpdateMethod") eq "point")) {
-   # get the file with the current release number
-   my $currentfink;
-   $currentfink = "CURRENT-FINK-$distribution";
-   ### if we are in 10.1, need to 

[cvs] fink/t/SelfUpdate ChangeLog, 1.1.2.2, 1.1.2.3 subclasses.t, 1.1.2.2, 1.1.2.3

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink/t/SelfUpdate
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv14468/t/SelfUpdate

Modified Files:
  Tag: selfupdate_classes
ChangeLog subclasses.t 
Log Message:
Actual updating now implemented in SU::$method->do_direct; offloaded
from SU functions for $method==(rsync,point)


Index: subclasses.t
===
RCS file: /cvsroot/fink/fink/t/SelfUpdate/Attic/subclasses.t,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -d -r1.1.2.2 -r1.1.2.3
--- subclasses.t7 Mar 2007 09:23:05 -   1.1.2.2
+++ subclasses.t7 Mar 2007 09:41:17 -   1.1.2.3
@@ -17,5 +17,5 @@
 
isa_ok( bless({}, $class), $baseclass );
 
-   can_ok($class, qw/ clear_metadata stamp_set stamp_clear stamp_check /);
+   can_ok($class, qw/ clear_metadata stamp_set stamp_clear stamp_check 
do_direct /);
 }

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/t/SelfUpdate/Attic/ChangeLog,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -d -r1.1.2.2 -r1.1.2.3
--- ChangeLog   7 Mar 2007 09:23:05 -   1.1.2.2
+++ ChangeLog   7 Mar 2007 09:41:17 -   1.1.2.3
@@ -1,5 +1,9 @@
 2007-03-07  Daniel Macks  <[EMAIL PROTECTED]>
 
+   * subclasses.t: ; add check for do_direct public API
+
+2007-03-07  Daniel Macks  <[EMAIL PROTECTED]>
+
* subclasses.t: Nuke redundant SU::tarball class
 
 2007-03-06  Daniel Macks  <[EMAIL PROTECTED]>


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink/perlmod/Fink/SelfUpdate Base.pm, 1.1.2.1, 1.1.2.2 point.pm, 1.1.2.2, 1.1.2.3 rsync.pm, 1.1.2.3, 1.1.2.4

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink/SelfUpdate
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv14468/perlmod/Fink/SelfUpdate

Modified Files:
  Tag: selfupdate_classes
Base.pm point.pm rsync.pm 
Log Message:
Actual updating now implemented in SU::$method->do_direct; offloaded
from SU functions for $method==(rsync,point)


Index: Base.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/SelfUpdate/Attic/Base.pm,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- Base.pm 6 Mar 2007 20:02:28 -   1.1.2.1
+++ Base.pm 7 Mar 2007 09:41:17 -   1.1.2.2
@@ -73,6 +73,16 @@
 
 sub stamp_check { return 0; }
 
+=item do_direct
+
+   Fink::SelfUpdate::$method->do_direct();
+
+This implements the actual selfupdate sync process.
+
+=cut
+
+sub do_direct { die "Not implemented\n" };
+
 =back
 
 =cut

Index: point.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/SelfUpdate/Attic/point.pm,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -d -r1.1.2.2 -r1.1.2.3
--- point.pm6 Mar 2007 20:02:28 -   1.1.2.2
+++ point.pm7 Mar 2007 09:41:17 -   1.1.2.3
@@ -26,6 +26,9 @@
 
 use base qw(Fink::SelfUpdate::Base);
 
+use Fink::Config qw($basepath $config $distribution);
+use Fink::Command qw(cat);
+
 use strict;
 use warnings;
 
@@ -41,6 +44,103 @@
 
 =cut
 
+sub do_direct {
+   my $class = shift;  # class method for now
+
+   # get the file with the current release number
+   my $currentfink;
+   $currentfink = "CURRENT-FINK-$distribution";
+   ### if we are in 10.1, need to use "LATEST-FINK" not "CURRENT-FINK"
+   if ($distribution eq "10.1") {
+   $currentfink = "LATEST-FINK";
+   }
+   my $website = "http://www.finkproject.org";;
+   if (-f "$basepath/lib/fink/URL/website") {
+   $website = cat "$basepath/lib/fink/URL/website";
+   chomp($website);
+   }
+   my $srcdir = "$basepath/src";
+   if (&fetch_url("$website/$currentfink", $srcdir)) {
+   die "Can't get latest version info\n";
+   }
+   my $latest_fink = cat "$srcdir/$currentfink";
+   chomp($latest_fink);
+   if ( ! Fink::SelfUpdate::CVS->stamp_check() and ! 
Fink::SelfUpdate::rsync->stamp_check() ) {
+   # no evidence of cvs or rsync selfupdates, so assume on-disk
+   # package descriptions are a point/tarball release, therefore
+   # can skip doing another point/tarball release if we already
+   # have the latest release version
+   my $installed_version = &pkginfo_version();
+   if (&version_cmp($latest_fink . '-1', '<=', $distribution . '-' 
. $installed_version . '-1')) {
+   print "\n";
+   &print_breaking("You already have the package 
descriptions from ".
+   "the latest Fink point 
release. ".
+   
"(installed:$installed_version available:$latest_fink)");
+   return;
+   }
+   }
+   Fink::SelfUpdate::CVS->stamp_clear();
+   Fink::SelfUpdate::rsync->stamp_clear();
+   Fink::SelfUpdate::CVS->clear_metadata();
+   
+   my $newversion = $latest_fink;
+   my ($downloaddir, $dir);
+   my ($pkgtarball, $url, $verbosity, $unpack_cmd);
+
+   print "\n";
+   &print_breaking("I will now download the package descriptions for ".
+   "Fink $newversion and update the core 
packages. ".
+   "After that, you should update the 
other packages ".
+   "using commands like 'fink 
update-all'.");
+   print "\n";
+
+   $downloaddir = "$basepath/src";
+   chdir $downloaddir or die "Can't cd to $downloaddir: $!\n";
+
+   # go ahead and upgrade
+   # first, download the packages tarball
+   $dir = "dists-$newversion";
+
+   ### if we are in 10.1, need to use "packages" not "dists"
+   if ($distribution eq "10.1") {
+   $dir = "packages-$newversion";
+   }
+   
+   $pkgtarball = "$dir.tar.gz";
+   $url = "mirror:sourceforge:fink/$pkgtarball";
+
+   if (not -f $pkgtarball) {
+   if (&fetch_url($url, $downloaddir)) {
+   die "Downloading the update tarball '$pkgtarball' from 
the URL '$url' failed.\n";
+   }
+   }
+
+   # unpack it
+   if (-e $dir) {
+   rm_rf $dir or
+   die "can't remove existing directory $dir\n";
+   }
+
+   $verbosity = "";
+   if ($config->verbosity_level() > 1) {
+   $verbosity = "v";
+   }
+   $unpack_cmd = "tar -xz${verbosity}f 

[cvs] fink/t/SelfUpdate ChangeLog, 1.1.2.1, 1.1.2.2 subclasses.t, 1.1.2.1, 1.1.2.2

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink/t/SelfUpdate
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv7749/t/SelfUpdate

Modified Files:
  Tag: selfupdate_classes
ChangeLog subclasses.t 
Log Message:
"tarball" and "point" are the same thing


Index: subclasses.t
===
RCS file: /cvsroot/fink/fink/t/SelfUpdate/Attic/subclasses.t,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- subclasses.t6 Mar 2007 21:14:12 -   1.1.2.1
+++ subclasses.t7 Mar 2007 09:23:05 -   1.1.2.2
@@ -1,19 +1,21 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
+# -*- mode: Perl; tab-width: 4; -*-
+# vim: ts=4 sw=4 noet
 
 use strict;
 use warnings;
-use Test::More tests => 13;
+use Test::More tests => 10;
 
 my $baseclass = 'Fink::SelfUpdate::Base';
 require_ok($baseclass);  # test #1
 
-# check that each can be loaded and has all expected methods (4x3 tests)
-foreach my $subclass (qw/ CVS point rsync tarball /) {
-my $class = "Fink::SelfUpdate::$subclass";
+# check that each can be loaded and has all expected methods (3x3 tests)
+foreach my $subclass (qw/ CVS point rsync /) {
+   my $class = "Fink::SelfUpdate::$subclass";
 
-require_ok($class);
+   require_ok($class);
 
-isa_ok( bless({}, $class), $baseclass );
+   isa_ok( bless({}, $class), $baseclass );
 
-can_ok($class, qw/ clear_metadata stamp_set stamp_clear stamp_check /);
+   can_ok($class, qw/ clear_metadata stamp_set stamp_clear stamp_check /);
 }

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/t/SelfUpdate/Attic/ChangeLog,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- ChangeLog   6 Mar 2007 21:14:12 -   1.1.2.1
+++ ChangeLog   7 Mar 2007 09:23:05 -   1.1.2.2
@@ -1,3 +1,7 @@
+2007-03-07  Daniel Macks  <[EMAIL PROTECTED]>
+
+   * subclasses.t: Nuke redundant SU::tarball class
+
 2007-03-06  Daniel Macks  <[EMAIL PROTECTED]>
 
* subclasses.t: Make sure all SU::* are proper subclasses with


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink/perlmod/Fink/SelfUpdate tarball.pm,1.1.2.2,NONE

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink/SelfUpdate
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv7749/perlmod/Fink/SelfUpdate

Removed Files:
  Tag: selfupdate_classes
tarball.pm 
Log Message:
"tarball" and "point" are the same thing


--- tarball.pm DELETED ---


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink/perlmod/Fink ChangeLog,1.1439.2.3,1.1439.2.4

2007-03-07 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv7749/perlmod/Fink

Modified Files:
  Tag: selfupdate_classes
ChangeLog 
Log Message:
"tarball" and "point" are the same thing


Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.1439.2.3
retrieving revision 1.1439.2.4
diff -u -d -r1.1439.2.3 -r1.1439.2.4
--- ChangeLog   6 Mar 2007 21:18:53 -   1.1439.2.3
+++ ChangeLog   7 Mar 2007 09:23:04 -   1.1439.2.4
@@ -1,3 +1,7 @@
+2007-03-07  Daniel Macks  <[EMAIL PROTECTED]>
+
+   * SelfUpdate/tarball.pm: delete (redundant vs "point" method)
+
 2007-03-06  Daniel Macks  <[EMAIL PROTECTED]>
 
* SelfUpdate/CVS.pm, SelfUpdate/rsync.pm: missing inclusion


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits