[cvs] dists/10.7/stable/main/finkinfo/libs/pythonmods macholib-py.info, 1.2, 1.3

2012-01-22 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv5432

Modified Files:
macholib-py.info 
Log Message:
macholib-py: new upstream; fix unversioned macho_dump script

Index: macholib-py.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/pythonmods/macholib-py.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- macholib-py.info1 Dec 2011 13:11:50 -   1.2
+++ macholib-py.info22 Jan 2012 23:12:30 -  1.3
@@ -1,11 +1,11 @@
 Info2: 
 Package: macholib-py%type_pkg[python]
-Version: 1.4.2
+Version: 1.4.3
 Revision: 1
 Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
 Type: python (2.6 2.7)
 Source: 
http://cheeseshop.python.org/packages/source/m/macholib/macholib-%v.tar.gz
-Source-MD5: 2bd35d87ba6782f00633836105aeb798
+Source-MD5: 308d478df389d525ce1a9113883a4f1c
 Depends: 
   python%type_pkg[python], distribute-py%type_pkg[python],
   altgraph-py%type_pkg[python]
@@ -13,16 +13,19 @@
 CompileScript: python%type_raw[python] setup.py build
 InstallScript: 
 python%type_raw[python] setup.py install --prefix %p --root %d
+mv %i/bin/macho_dump %i/bin/macho_dump-py%type_pkg[python]
 mv %i/bin/macho_find %i/bin/macho_find-py%type_pkg[python]
 mv %i/bin/macho_standalone %i/bin/macho_standalone-py%type_pkg[python]
 
 PostInstScript: 
+  update-alternatives --install %p/bin/macho_dump macho_dump 
%p/bin/macho_dump-py%type_pkg[python] %type_pkg[python]
   update-alternatives --install %p/bin/macho_find macho_find 
%p/bin/macho_find-py%type_pkg[python] %type_pkg[python]
   update-alternatives --install %p/bin/macho_standalone macho_standalone 
%p/bin/macho_standalone-py%type_pkg[python] %type_pkg[python]
 
 PreRmScript: 
   if [ $1 != upgrade ]
   then
+update-alternatives --remove macho_dump 
%p/bin/macho_dump-py%type_pkg[python]
 update-alternatives --remove macho_find 
%p/bin/macho_find-py%type_pkg[python]
 update-alternatives --remove macho_standalone 
%p/bin/macho_standalone-py%type_pkg[python]
   fi


--
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/utils
In directory vz-cvs-3.sog:/tmp/cvs-serv3694

Added Files:
lbdb.info lbdb.patch 
Log Message:
lbdb: welcome to lion

--- NEW FILE: lbdb.patch ---
diff -r 7c7812a37eff ABQuery.m
--- /dev/null   Thu Jan 01 00:00:00 1970 +
+++ b/ABQuery.m Sun Sep 26 22:16:18 2010 -0700
@@ -0,0 +1,73 @@
+/* ABQuery
+ *
+ *Copyright 2003 Brendan Cully bren...@kublai.com
+ *
+ *This program is free software; you can redistribute it and/or modify
+ *it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,, USA.
+ *
+ *
+ * $Id: ABQuery.m,v 1.3 2005-10-29 14:48:16 roland Exp $
+ */
+
+#import Foundation/Foundation.h
+#import AddressBook/AddressBook.h
+
+int main (int argc, const char *argv[]) {
+NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
+ABAddressBook *book = [ABAddressBook sharedAddressBook];
+ABSearchElement *firstNameSearch, *lastNameSearch, *emailSearch, *search;
+NSArray *searchTerms;
+NSArray *results;
+NSEnumerator *addressEnum;
+ABPerson *person;
+NSString *key = [NSString stringWithCString:argv[1]];
+
+firstNameSearch = [ABPerson searchElementForProperty:kABFirstNameProperty
+ label:nil
+ key:nil
+ value:key
+  
comparison:kABContainsSubStringCaseInsensitive];
+lastNameSearch = [ABPerson searchElementForProperty:kABLastNameProperty
+ label:nil
+ key:nil
+ value:key
+  
comparison:kABContainsSubStringCaseInsensitive];
+emailSearch = [ABPerson searchElementForProperty:kABEmailProperty
+  label:nil
+ key:nil
+ value:key
+ comparison:kABContainsSubStringCaseInsensitive];
+searchTerms = [NSArray arrayWithObjects:firstNameSearch, lastNameSearch, 
emailSearch, nil];
+search = [ABSearchElement searchElementForConjunction:kABSearchOr
+children:searchTerms];
+results = [book recordsMatchingSearchElement:search];
+
+addressEnum = [results objectEnumerator];
+
+while (person = (ABPerson*)[addressEnum nextObject]) {
+NSString *fullName = [NSString stringWithFormat:@%@ %@, [[person 
valueForProperty:kABFirstNameProperty] description], [[person 
valueForProperty:kABLastNameProperty] description]];
+  
+ABMultiValue *emails = [person valueForProperty:kABEmailProperty];
+int count = [emails count];
+int i;
+for (i = 0; i  count; i++) {
+NSString *email = [emails valueAtIndex:i];
+printf(%s\t%s\t(AddressBook)\n, [email cString], [fullName 
UTF8String]);
+  }
+}
+
+[pool release];
+
+return 0;
+}
diff -r 7c7812a37eff ABQuery/ABQuery.m
--- a/ABQuery/ABQuery.m Sun Sep 26 21:48:56 2010 -0700
+++ /dev/null   Thu Jan 01 00:00:00 1970 +
@@ -1,73 +0,0 @@
-/* ABQuery
- *
- *Copyright 2003 Brendan Cully bren...@kublai.com
- *
- *This program is free software; you can redistribute it and/or modify
- *it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,, USA.
- *
- *
- * $Id: ABQuery.m,v 1.3 2005-10-29 14:48:16 roland Exp $
- */
-
-#import Foundation/Foundation.h
-#import AddressBook/AddressBook.h
-
-int main (int argc, const char *argv[]) {
-NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-ABAddressBook *book = [ABAddressBook sharedAddressBook];
-ABSearchElement *firstNameSearch, *lastNameSearch, *emailSearch, *search;
-NSArray

[cvs] dists/10.7/stable/main/finkinfo/languages ocaml-findlib.info, NONE, 1.1 ocaml-findlib.patch, NONE, 1.1

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv4029

Added Files:
ocaml-findlib.info ocaml-findlib.patch 
Log Message:
ocaml-findlib: welcome to lion

--- NEW FILE: ocaml-findlib.patch ---
diff -Nurd findlib-1.1.2pl1.orig/Makefile findlib-1.1.2pl1/Makefile
--- findlib-1.1.2pl1.orig/Makefile  2006-01-17 08:04:50.0 +0900
+++ findlib-1.1.2pl1/Makefile   2007-06-28 18:34:50.0 +0900
@@ -22,7 +22,7 @@
$(MAKE) install-meta
cd src/findlib; $(MAKE) install-num-top
$(MAKE) install-config
-   cp tools/safe_camlp4 $(OCAMLFIND_BIN)
+   cp tools/safe_camlp4 $(prefix)$(OCAMLFIND_BIN)
 
 uninstall:
$(MAKE) uninstall-doc

--- NEW FILE: ocaml-findlib.info ---
Package: ocaml-findlib
Version: 1.2.3
Revision: 1
Description: Ocaml library management system
BuildDepends: fink (= 0.24.12-1), ocaml (= 3.00)
Depends: ocaml (= 3.00)
DescPort: Uses custom configure script.
SetMAKEFLAGS: -j1
NoSetMAKEFLAGS: true
Source: http://download.camlcity.org/download/findlib-%v.tar.gz
Source-MD5: e1c9dc3115f97deb128b50eb7db94017
Maintainer: Heejong Lee heej...@gmail.com
Homepage: http://projects.camlcity.org/projects/findlib.html
License: OSI-Approved
CompileScript: 
 ./configure -mandir %p/share/man
 make all opt

InstallScript: 
 make install prefix=%d

DocFiles: LICENSE doc/README


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


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

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv17610

Added Files:
ocaml-extlib.info 
Log Message:
ocaml-extlib (née ocaml-lib): move to lion, bump version

--- NEW FILE: ocaml-extlib.info ---
Package: ocaml-extlib
Version: 1.5.2
Revision: 1

Source: http://ocaml-extlib.googlecode.com/files/extlib-%v.tar.gz
SourceDirectory: extlib-%v
Source-MD5: 839f9bf5a971fa07935c96ba7e209f86

Depends: ocaml, ocaml-findlib

Description: Standard library for OCaml
DescDetail: 
 ExtLib is released under the same license as the OCaml Standard Library

CompileScript: 
 mkdir out
 ocaml install.ml -b -n -doc -d out

InstallScript: 
  mkdir -p %i/share/doc
  mv out/extlib-doc %i/share/doc/ocaml-lib
  mkdir -p %i/lib/ocaml/site-lib
  cp META out
  mv out %i/lib/ocaml/site-lib/extlib

DocFiles: LICENSE README.txt

Homepage: http://code.google.com/p/ocaml-extlib/
License: LGPL
Maintainer: Brendan Cully bren...@finkproject.org


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

[cvs] dists/10.7/stable/main/finkinfo/libs ocaml-pcre.info,NONE,1.1

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv19747

Added Files:
ocaml-pcre.info 
Log Message:
ocaml-pcre: new relase, move to lion

--- NEW FILE: ocaml-pcre.info ---
Package: ocaml-pcre
Version: 6.2.3
Revision: 1

Source: http://hg.ocaml.info/release/pcre-ocaml/archive/release-%v.tar.bz2
Source-MD5: 58ecbee6f03af545ceb5fa7548c051d3
SourceRename: pcre-ocaml-release-%v.tar.bz2

Depends: ocaml, ocaml-findlib, pcre-shlibs
BuildDepends: pcre

CompileScript: 
  sed -i.bak -e 's/6\.2\.1/%v/' lib/META
  make


InstallScript: 
  mkdir -p %i/lib/ocaml/site-lib
  make install OCAMLFIND_INSTFLAGS=-ldconf ignore -destdir 
%i/lib/ocaml/site-lib

DocFiles: LICENSE README.txt

Description: Perl-style regular expressions for OCaml
License: LGPL
Homepage: http://www.ocaml.info/home/ocaml_sources.html#pcre-ocaml
Maintainer: Brendan Cully bren...@finkproject.org


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


[cvs] dists/10.7/stable/main/finkinfo/libs ocaml-pcre.info,1.1,1.2

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv22303

Modified Files:
ocaml-pcre.info 
Log Message:
ocaml-pcre: restore ld.conf update hooks

Index: ocaml-pcre.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/ocaml-pcre.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ocaml-pcre.info 27 Nov 2011 19:43:13 -  1.1
+++ ocaml-pcre.info 27 Nov 2011 20:11:03 -  1.2
@@ -1,6 +1,6 @@
 Package: ocaml-pcre
 Version: 6.2.3
-Revision: 1
+Revision: 2
 
 Source: http://hg.ocaml.info/release/pcre-ocaml/archive/release-%v.tar.bz2
 Source-MD5: 58ecbee6f03af545ceb5fa7548c051d3
@@ -20,6 +20,16 @@
 
 DocFiles: LICENSE README.txt
 
+PostInstScript: 
+  if ! grep -q %p/lib/ocaml/site-lib/pcre %p/lib/ocaml/ld.conf; then
+echo %p/lib/ocaml/site-lib/pcre  %p/lib/ocaml/ld.conf
+  fi
+
+PreRmScript: 
+  grep -v %p/lib/ocaml/site-lib/pcre %p/lib/ocaml/ld.conf  
%p/lib/ocaml/ld.conf.tmp
+  mv %p/lib/ocaml/ld.conf.tmp %p/lib/ocaml/ld.conf
+
+
 Description: Perl-style regular expressions for OCaml
 License: LGPL
 Homepage: http://www.ocaml.info/home/ocaml_sources.html#pcre-ocaml


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


[cvs] dists/10.7/stable/main/finkinfo/libs ocaml-bitstring.info, NONE, 1.1 ocaml-bitstring.patch, NONE, 1.1

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv22394

Added Files:
ocaml-bitstring.info ocaml-bitstring.patch 
Log Message:
ocaml-bitstring: welcome to lion

--- NEW FILE: ocaml-bitstring.patch ---
diff --git a/Makefile.in b/Makefile.in
--- a/Makefile.in
+++ b/Makefile.in
@@ -32,6 +32,7 @@
 
 OCAMLLIB   = @OCAMLLIB@
 top_srcdir = @top_srcdir@
+srcdir = @srcdir@
 
 pkg_cil= @OCAML_PKG_cil@
 pkg_extlib = @OCAML_PKG_extlib@
@@ -268,7 +269,8 @@
 # Install.
 
 install:
-   ocamlfind install bitstring META *.mli *.cmx *.cma *.cmxa *.a *.so \
+   ocamlfind install -ldconf ignore -destdir $(prefix)/lib/ocaml/site-lib \
+   bitstring META *.mli *.cmx *.cma *.cmxa *.a *.so \
bitstring.cmi \
bitstring_persistent.cmi \
pa_bitstring.cmo

--- NEW FILE: ocaml-bitstring.info ---
Package: ocaml-bitstring
Version: 2.0.2
Revision: 1

Depends: ocaml, ocaml-findlib

Source: http://bitstring.googlecode.com/files/%n-%v.tar.gz
Source-MD5: 0c9fa24a0e5201e8bb61f355b9058fe9
PatchFile: %n.patch
PatchFile-MD5: 8436814986e3cd0729003996ea3460f1

InstallScript: 
  mkdir -p %i/lib/ocaml/site-lib
  make install prefix=%i

DocFiles: examples/* COPYING.LIB README

PostInstScript: 
#!/bin/sh -ev
  if ! grep -q %p/lib/ocaml/site-lib/bitstring %p/lib/ocaml/ld.conf; then
echo %p/lib/ocaml/site-lib/bitstring  %p/lib/ocaml/ld.conf
  fi

PreRmScript: 
  grep -v %p/lib/ocaml/site-lib/bitstring %p/lib/ocaml/ld.conf  
%p/lib/ocaml/ld.conf.tmp
  mv %p/lib/ocaml/ld.conf.tmp %p/lib/ocaml/ld.conf


Description: bitstrings and bitstring matching for OCaml
License: LGPL
Homepage: http://code.google.com/p/bitstring/
Maintainer: Brendan Cully bren...@finkproject.org


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


[cvs] dists/10.7/stable/main/finkinfo/crypto m2crypto-py.info, NONE, 1.1

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv23834

Added Files:
m2crypto-py.info 
Log Message:
m2crypto-py: welcome to lion

--- NEW FILE: m2crypto-py.info ---
Info2: 
Package: m2crypto-py%type_pkg[python]
Version: 0.21.1
Revision: 1
Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
Type: python (2.4 2.5 2.6 2.7)
Source: http://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-%v.tar.gz
Source-MD5: f93d8462ff7646397a9f77a2fe602d17

BuildDepends: swig, distribute-py%type_pkg[python], system-openssl-dev
Depends: python%type_pkg[python]

NoSetCPPFlags: True
CompileScript: 
  python%type_raw[python] setup.py build build_ext 
--openssl=%p/lib/system-openssl

InstallScript: 
  python%type_raw[python] setup.py install --prefix %p --root %d

DocFiles: LICENCE README doc/
Description: Python interface to openssl
DescDetail: 
M2Crypto is the most complete Python wrapper for OpenSSL featuring
RSA, DSA, DH, HMACs, message digests, symmetric ciphers (including
AES); SSL functionality to implement clients and servers; HTTPS
extensions to Python's httplib, urllib, and xmlrpclib; unforgeable
HMAC'ing AuthCookies for web session management; FTP/TLS client and
server; S/MIME; ZServerSSL: A HTTPS server for Zope and ZSmime: An
S/MIME messenger for Zope. M2Crypto can also be used to provide SSL
for Twisted.

License: BSD
Homepage: http://chandlerproject.org/bin/view/Projects/MeTooCrypto
Maintainer: Brendan Cully bren...@finkproject.org



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


[cvs] dists/10.7/stable/main/finkinfo/crypto m2crypto-py.info, 1.1, 1.2

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv24458

Modified Files:
m2crypto-py.info 
Log Message:
m2crypto-py: needs help finding AvailabilityMacros

I suspect system-openssl-dev is broken on Lion.

Index: m2crypto-py.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/crypto/m2crypto-py.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- m2crypto-py.info27 Nov 2011 20:25:01 -  1.1
+++ m2crypto-py.info27 Nov 2011 20:38:33 -  1.2
@@ -1,7 +1,7 @@
 Info2: 
 Package: m2crypto-py%type_pkg[python]
 Version: 0.21.1
-Revision: 1
+Revision: 2
 Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
 Type: python (2.4 2.5 2.6 2.7)
 Source: http://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-%v.tar.gz
@@ -12,7 +12,7 @@
 
 NoSetCPPFlags: True
 CompileScript: 
-  python%type_raw[python] setup.py build build_ext 
--openssl=%p/lib/system-openssl
+  python%type_raw[python] setup.py build build_ext 
--openssl=%p/lib/system-openssl -I/usr/include
 
 InstallScript: 
   python%type_raw[python] setup.py install --prefix %p --root %d


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


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

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv24532

Modified Files:
ghc.info 
Log Message:
ghc: new upstream release 7.2.2

Index: ghc.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages/ghc.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- ghc.info4 Oct 2011 22:53:44 -   1.3
+++ ghc.info27 Nov 2011 20:40:13 -  1.4
@@ -1,15 +1,11 @@
 Package: ghc
-Version: 7.0.4
+Version: 7.2.2
 Revision: 1
-BuildDepends: fink (= 0.24.12)
-Architecture: x86_64
 Source: http://www.haskell.org/ghc/dist/%v/%n-%v-%m-apple-darwin.tar.bz2
-Source-MD5: af89d3d2ca6e9b23384baacb7d8161dd
+Source-MD5: 97c9dc221fcf9eb8635f05ba08eca0c9
 SourceDirectory: %n-%v
 
-# configure script doesn't like clang
-
-CompileScript: ./configure CC=/usr/bin/gcc %c
+CompileScript: ./configure %c
 InstallScript: make DESTDIR=%d install
 
 SplitOff: 


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


[cvs] dists/10.7/stable/main/finkinfo/libs/pythonmods xdelta3-py.info, NONE, 1.1

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv25651

Added Files:
xdelta3-py.info 
Log Message:
xdelta3-py: welcome to lion

--- NEW FILE: xdelta3-py.info ---
Info2: 
Package: xdelta3-py%type_pkg[python]
Version: 3.0.0
Revision: 1
Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
Type: python (2.4 2.5 2.6 2.7)
Source: http://xdelta.googlecode.com/files/xdelta%v.tar.gz
Source-MD5: 5fe038be3a266d2a7913e10d1cec6d88

BuildDepends: swig
Depends: python%type_pkg[python], distribute-py%type_pkg[python]

PatchScript: sed -i .bak -e '/cp xdelta3/d' -e 's/gcc-4.2/gcc/' -e 's/-arch 
x86_64//' Makefile

CompileScript: 
  python%type_raw[python] setup.py build
  make xdelta3module.so
  python -c 'import py_compile; py_compile.compile(xdelta3.py)'

InstallScript: 
  python%type_raw[python] setup.py install --prefix %p --root %d
  cp xdelta3module.so xdelta3.py xdelta3.pyc 
%i/lib/python%type_raw[python]/site-packages

DocFiles: COPYING README xdelta3-test.py
Description: VCDIFF delta compression (python module)
DescDetail: 
Xdelta3 is a binary diff/patch tool.
This is the python extension.

License: GPL
Homepage: http://xdelta.org/
Maintainer: Brendan Cully bren...@finkproject.org



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


[cvs] dists/10.7/stable/main/finkinfo/net urlview.info, NONE, 1.1 urlview.patch, NONE, 1.1

2011-11-27 Thread Brendan Cully
, scratch);
  printf (Executing: %s...\n, buf);
  fflush (stdout);
  system (buf);
diff --git a/urlview.html b/urlview.html
new file mode 100644
--- /dev/null
+++ b/urlview.html
@@ -0,0 +1,90 @@
+HTML
+HEADTITLEurlview - URL extractor/launcher/TITLE/HEAD
+BODY
+H2A NAME=ss0.10.1 NAME/A
+/H2
+
+Purlview - URL extractor/launcher/P
+
+H2A NAME=ss0.20.2 SYNOPSIS/A
+/H2
+
+Purlview lt;filenamegt; [ lt;filenamegt; ... ]/P
+
+H2A NAME=ss0.30.3 DESCRIPTION/A
+/H2
+
+PEMurlview/EM is a screen oriented program for extracting URLs from text
+files and displaying a menu from which you may launch a command to view a
+specific item./P
+
+H2A NAME=ss0.40.4 CONFIGURATION/A
+/H2
+
+PEMurlview/EM attempts to read EM~/.urlview/EM upon startup.
+If this file doesn't exist, it will try to read a system wide file 
+in EM/etc/urlview/system.urlview/EM. There are
+two configuration commands (order does not matter):/P
+PREGEXP lt;regular expression to use for URL matchinggt;/P
+
+PEMurlview/EM uses a regular expression to extract URLs from the 
specified
+text files.  \r, \t, \n and \f are all converted to
+their normal printf(2) meanings.  The default REGEXP is/P
+P
+PRE
+(((https?|ftp|gopher)://|(mailto|file|news):)[^' 
\tlt;]+|(www|web|w3)\.[-a-z0-9.]+)[^' \t.,;lt;\):]
+/PRE
+/P
+
+PCOMMAND lt;command to launch with URLgt;/P
+PIf the specified command contains a ``%s'', it will be subsituted
+with the URL that was requested, otherwise the URL is appended to the
+COMMAND string.  The default COMMAND is
+PRE
+url_handler.sh '%s'
+/PRE
+
+another possibility would be
+PRE
+Netscape -remote 'openURL(%s)'
+/PRE
+
+BNOTE:/B you should always put single quotes ('') around usage of
+``%s'' and never let the REGEXP to match any string containing
+a single quote (note CODE[caret;apos;...]/CODE in the default REGEXP)
+to avoid characters in the selected URL from being interpreted
+by your shell.  For example, I could put the following URL in my email
+messages:
+PRE
+X-Nasty-Url: http://www.`program_to_execute_as_you`.com
+/PRE
+
+If you pass this URL to your shell, it could have nasty consequences./P
+
+H2A NAME=ss0.50.5 FILES/A
+/H2
+
+P
+DL
+DTB/etc/urlview/system.urlview/BDDPsystem-wide urlview configuration 
file/P
+DTB~/.urlview/BDDPurlview configuration file/P
+/DL
+/P
+
+H2A NAME=ss0.60.6 SEE ALSO/A
+/H2
+
+Pregcomp(3)/P
+
+H2A NAME=ss0.70.7 AUTHOR/A
+/H2
+
+PMichael Elkins lt;m...@cs.hmc.edugt;.
+Modified for Debian by Luis Francisco Gonzalez lt;lui...@debian.orggt;.
+Modified for SuSE by Dr. Werner Fink lt;wer...@suse.degt; and Stepan Kasal 
lt;ka...@suse.czgt;./P
+HR
+Next
+Previous
+Contents
+/BODY
+/HTML
diff --git a/urlview.man b/urlview.man
--- a/urlview.man
+++ b/urlview.man
@@ -34,7 +34,7 @@
 upon startup.  If this file
 doesn't exist, it will try to read a system wide file 
 in 
-.IR /etc/urlview.conf .
+.IR @PREFIX@/etc/urlview.conf .
 There are two configuration commands (order does not matter):
 .TP
 REGEXP \fIregexp\fP
@@ -76,7 +76,7 @@
 explicitly excludes single quotes.)
 .SH FILES
 .PP
-.IP /etc/urlview.conf
+.IP @PREFIX@/etc/urlview.conf
 system-wide urlview configuration file
 .IP ~/.urlview
 urlview configuration file
diff --git a/urlview.sgml b/urlview.sgml
--- a/urlview.sgml
+++ b/urlview.sgml
@@ -20,7 +20,7 @@
 p
 em/urlview/ attempts to read emtilde;/.urlview/em upon startup.
 If this file doesn't exist, it will try to read a system wide file 
-in em/etc/urlview.conf/em. There are
+in em/@PREFIX@etc/urlview.conf/em. There are
 two configuration commands (order does not matter):
 p
 REGEXP lt;regular expression to use for URL matchinggt;
@@ -62,7 +62,7 @@
 p
 descrip
 tag
-/etc/urlview.conf
+@PREFIX@/etc/urlview.conf
 p
 system-wide urlview configuration file
 tag

--- NEW FILE: urlview.info ---
Package: urlview
Version: 0.9
Revision: 1015
Description: Extracts URLs from text
License: GPL
Maintainer: Brendan Cully bren...@finkproject.org
BuildDepends: libncurses5 (= 5.4-20041023-1006), fink (= 0.24.12)
Depends: ncurses (= 5.4-20041023-1006), libncurses5-shlibs (= 
5.4-20041023-1006)
Suggests: mutt
Source: ftp://ftp.mutt.org/mutt/contrib/urlview-%v.tar.gz
Source-MD5: 67731f73e69297ffd106b65c8aebb2ab
PatchFile: %n.patch
PatchFile-MD5: ba3970ef9115703506c2a2c59ff3432a
PatchScript: sed 's|@PREFIX@|%p|g' %{PatchFile} | patch -p1
ConfigureParams: --sysconfdir=%p/etc/urlview --mandir=%i/share/man
ConfFiles: %p/etc/%n/system.urlview %p/etc/%n/url_handler.sh
InstallScript: 
 # the install-man target is a busted hand-rolled one.
 mkdir -p %i/share/man/man1
 make install DESTDIR=%d
 mkdir -p %i/share/doc/%n/examples
 install -m 644 sample.urlview %i/share/doc/%n/examples
 install -m 644 text %i/share/doc/%n/examples
 mkdir -p %i/share/doc/%n/html
 install -m 644 %n.html %i/share/doc/%n/html
 mkdir -p %i/etc/%n
 install -m 644 system.urlview %i/etc/%n
 install -m 644 url_handler.sh.fink %i/etc/%n/url_handler.sh

DocFiles: AUTHORS README COPYING ChangeLog urlview.sgml
DescDetail

[cvs] dists/10.7/stable/main/finkinfo/libs/pythonmods bdist-mpkg-py.info, NONE, 1.1

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv26072

Added Files:
bdist-mpkg-py.info 
Log Message:
bdist-mpkg: py27, lion

--- NEW FILE: bdist-mpkg-py.info ---
Info2: 
Package: bdist-mpkg-py%type_pkg[python]
Version: 0.4.4
Revision: 1
Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
Type: python (2.4 2.5 2.6 2.7)
Source: 
http://cheeseshop.python.org/packages/source/b/bdist_mpkg/bdist_mpkg-%v.tar.gz
Source-MD5: 848dfd00fda59092dea4e97f4a711797
Depends: python%type_pkg[python], distribute-py%type_pkg[python]

CompileScript: python%type_raw[python] setup.py build
InstallScript: 
python%type_raw[python] setup.py install --prefix %p --root %d
mv %i/bin/bdist_mpkg %i/bin/bdist_mpkg-py%type_pkg[python]

PostInstScript: 
  update-alternatives --install %p/bin/bdist_mpkg bdist_mpkg 
%p/bin/bdist_mpkg-py%type_pkg[python] %type_pkg[python]

PreRmScript: 
  if [ $1 != upgrade ]
  then
update-alternatives --remove bdist_mpkg 
%p/bin/bdist_mpkg-py%type_pkg[python]
  fi

Description: Build OS X installer packages from distutils
DescDetail: 
This is a distutils plugin that implements the bdist_mpkg command,
which builds a Mac OS X metapackage for use by Installer.app for easy
GUI installation of Python modules, much like bdist_wininst.

It also comes with a bdist_mpkg script, which is a setup.py front-end
that will allow you to easy build an installer metapackage from nearly
any existing package that uses distutils.

License: BSD
Homepage: http://undefined.org/python/#bdist_mpkg
Maintainer: Brendan Cully bren...@finkproject.org



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


[cvs] dists/10.7/stable/main/finkinfo/libs/pythonmods macholib-py.info, NONE, 1.1

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv26186

Added Files:
macholib-py.info 
Log Message:
macholib-py: new upstream release, py27, lion

--- NEW FILE: macholib-py.info ---
Info2: 
Package: macholib-py%type_pkg[python]
Version: 1.4.2
Revision: 1
Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
Type: python (2.3 2.4 2.5 2.6 2.7)
Source: 
http://cheeseshop.python.org/packages/source/m/macholib/macholib-%v.tar.gz
Source-MD5: 2bd35d87ba6782f00633836105aeb798
Depends: 
  python%type_pkg[python], distribute-py%type_pkg[python],
  altgraph-py%type_pkg[python]

CompileScript: python%type_raw[python] setup.py build
InstallScript: 
python%type_raw[python] setup.py install --prefix %p --root %d
mv %i/bin/macho_find %i/bin/macho_find-py%type_pkg[python]
mv %i/bin/macho_standalone %i/bin/macho_standalone-py%type_pkg[python]

PostInstScript: 
  update-alternatives --install %p/bin/macho_find macho_find 
%p/bin/macho_find-py%type_pkg[python] %type_pkg[python]
  update-alternatives --install %p/bin/macho_standalone macho_standalone 
%p/bin/macho_standalone-py%type_pkg[python] %type_pkg[python]

PreRmScript: 
  if [ $1 != upgrade ]
  then
update-alternatives --remove macho_find 
%p/bin/macho_find-py%type_pkg[python]
update-alternatives --remove macho_standalone 
%p/bin/macho_standalone-py%type_pkg[python]
  fi

Description: Mach-O header analysis and editing
DescDetail: 
macholib can be used to analyze and edit Mach-O headers, the
executable format used by Mac OS X.

It's typically used as a dependency analysis tool, and also to rewrite
dylib references in Mach-O headers to be @executable_path relative.

Though this tool targets a platform specific file format, it is pure
python code that is platform and endian independent.

License: BSD
Homepage: http://undefined.org/python/#macholib
Maintainer: Brendan Cully bren...@finkproject.org



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


[cvs] dists/10.7/stable/main/finkinfo/devel py2app-py.info, NONE, 1.1 py2app-py.patch, NONE, 1.1

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv11671

Added Files:
py2app-py.info py2app-py.patch 
Log Message:
py2app-py: new upstream release, py27, lion

--- NEW FILE: py2app-py.info ---
Info2: 
Package: py2app-py%type_pkg[python]
Version: 0.6.3
Revision: 1
Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
Type: python (2.4 2.5 2.6 2.7)
BuildDepends: sphinx-py%type_pkg[python]
Depends: 
  python%type_pkg[python], distribute-py%type_pkg[python],
  bdist-mpkg-py%type_pkg[python], macholib-py%type_pkg[python],
  modulegraph-py%type_pkg[python], altgraph-py%type_pkg[python]


Source: http://cheeseshop.python.org/packages/source/p/py2app/py2app-%v.tar.gz
Source-MD5: 49a9101ff25fb59d1ba733e329bf502e
PatchFile: py2app-py.patch
PatchFile-MD5: 77fcd3762a43ec97254f937fe708bb47

CompileScript: python%type_raw[python] setup.py build
InstallScript: 
  python%type_raw[python] setup.py install --prefix %p --root %d
  mv %i/bin/py2applet %i/bin/py2applet-py%type_pkg[python]
  mkdir -p %i/share/doc/%n
  cp doc/_build/html/*.html doc/_build/html/*.js %i/share/doc/%n
  cp -r examples %i/share/doc/%n

PostInstScript: 
  update-alternatives --install %p/bin/py2applet py2applet 
%p/bin/py2applet-py%type_pkg[python] %type_pkg[python]

PreRmScript: 
  if [ $1 != upgrade ]
  then
update-alternatives --remove py2applet %p/bin/py2applet-py%type_pkg[python]
  fi

DocFiles: README.txt LICENSE.txt

Description: Creates standalone python OS X applications
DescDetail: 
py2app is a Python setuptools command which will allow
you to make standalone Mac OS X application bundles
and plugins from Python scripts.

py2app is similar in purpose and design to py2exe for
Windows.

License: BSD
Homepage: http://undefined.org/python/#py2app
Maintainer: Brendan Cully bren...@finkproject.org


--- NEW FILE: py2app-py.patch ---
Find python library with distutils.sysconfig

diff -r 313a2911ca6e py2app/build_app.py
--- a/py2app/build_app.py   Fri Jan 19 00:14:30 2007 -0800
+++ b/py2app/build_app.py   Fri Jan 19 00:24:43 2007 -0800
@@ -15,7 +15,7 @@ from cStringIO import StringIO
 
 from setuptools import Command
 from distutils.util import convert_path
-from distutils import log
+from distutils import log, sysconfig
 from distutils.errors import *
 
 from altgraph.compat import *
@@ -350,7 +350,7 @@ class py2app(Command):
 # XXX - this is a bit of a hack!
 #   ideally we'd use dylib functions to figure this out
 if prefix is None:
-prefix = sys.prefix
+prefix = sysconfig.get_config_var('LIBPL')
 if version is None:
 version = sys.version
 version = version[:3]
@@ -366,7 +366,7 @@ class py2app(Command):
 runtime = os.path.join(info['location'], info['name'])
 else:
 dylib = 'libpython%s.dylib' % (sys.version[:3],)
-runtime = os.path.join(prefix, 'lib', dylib)
+runtime = os.path.join(prefix, dylib)
 return dylib, runtime
 
 def symlink(self, src, dst):


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


[cvs] dists/10.7/stable/main/finkinfo/devel py2app-py.info,1.1,1.2

2011-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv14057

Modified Files:
py2app-py.info 
Log Message:
py2app: doc build fixes; remove obsolete dependency

Index: py2app-py.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel/py2app-py.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- py2app-py.info  27 Nov 2011 23:32:40 -  1.1
+++ py2app-py.info  27 Nov 2011 23:48:39 -  1.2
@@ -1,13 +1,13 @@
 Info2: 
 Package: py2app-py%type_pkg[python]
 Version: 0.6.3
-Revision: 1
+Revision: 2
 Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
 Type: python (2.4 2.5 2.6 2.7)
 BuildDepends: sphinx-py%type_pkg[python]
 Depends: 
   python%type_pkg[python], distribute-py%type_pkg[python],
-  bdist-mpkg-py%type_pkg[python], macholib-py%type_pkg[python],
+  macholib-py%type_pkg[python],
   modulegraph-py%type_pkg[python], altgraph-py%type_pkg[python]
 
 
@@ -21,7 +21,7 @@
   python%type_raw[python] setup.py install --prefix %p --root %d
   mv %i/bin/py2applet %i/bin/py2applet-py%type_pkg[python]
   mkdir -p %i/share/doc/%n
-  cp doc/_build/html/*.html doc/_build/html/*.js %i/share/doc/%n
+  cp -r doc/_build/html/ %i/share/doc/%n
   cp -r examples %i/share/doc/%n
 
 PostInstScript: 


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


[cvs] dists/10.7/stable/main/finkinfo/libs/pythonmods iniparse-py.info, NONE, 1.1

2011-11-24 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv9394

Added Files:
iniparse-py.info 
Log Message:
Bring iniparse-py to 10.7

--- NEW FILE: iniparse-py.info ---
Info2: 
Package: iniparse-py%type_pkg[python]
Version: 0.4
Revision: 1
Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
Type: python (2.4 2.5 2.6 2.7)
Source: http://iniparse.googlecode.com/files/iniparse-%v.tar.gz
Source-MD5: 5e573e9e9733d97623881ce9bbe5eca6
Depends: python%type_pkg[python], distribute-py%type_pkg[python]

CompileScript: python%type_raw[python] setup.py build
InstallScript: python%type_raw[python] setup.py install --prefix %p --root %d
DocFiles: LICENSE LICENSE-PSF README html/

Description: INI parser for Python
DescDetail: 
Backward compatible implementations of ConfigParser, RawConfigParser,
and SafeConfigParser are included that are API-compatible with the
Python standard library. They pass all the unit tests included with
Python.

Order of sections  options, indentation, comments, and blank lines
are preserved as far as possible when data is updated.

Values can be accessed using dotted notation (cfg.user.name), or using
container syntax (cfg['user']['name']).

It is very useful for config files that are updated both by users and
by programs, since it is very disorienting for a user to have her
config file completely rearranged whenever a program changes
it. iniparse also allows making the order of entries in a config file
significant, which is desirable in applications like image galleries.

License: BSD
Homepage: http://code.google.com/p/iniparse/
Maintainer: Brendan Cully bren...@finkproject.org



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


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

2011-11-24 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv9623

Added Files:
tortoisehg-py.info 
Log Message:
Bring tortoisehg-py to 10.7

--- NEW FILE: tortoisehg-py.info ---
Info2: 
Package: tortoisehg-py%type_pkg[python]
Version: 2.2
Revision: 1
Type: python (2.5 2.6 2.7)
Source: http://bitbucket.org/tortoisehg/targz/downloads/tortoisehg-%v.tar.gz
Source-MD5: 6f25086aa31238db25bc065ef7c25442
Depends: 
  python%type_pkg[python],
  mercurial-py%type_pkg[python],
  pyqt4-mac-py%type_pkg[python],
  sip-py%type_pkg[python],
  qscintilla2-qt4-mac-py%type_pkg[python],
  iniparse-py%type_pkg[python], pygments-py%type_pkg[python]

BuildDepends: sphinx-py%type_pkg[python]

PatchScript: 
#!/bin/sh -ev
  sed -i.bak -e '/import sys/a\
  sys.path.append(%p/lib/qt4-mac/lib/python%type_raw[python]/site-packages)' 
thg
  sed -i.bak -e 's,pixmaps/tortoisehg,pixmaps/tortoisehg-py%type_pkg[python],' 
-e 's,/usr,%p,' -e 's/hg.mo/hg-py%type_pkg[python].mo/' setup.py
  sed -i.bak -e s,'tortoisehg','tortoisehg-py%type_pkg[python]', 
tortoisehg/util/i18n.py

CompileScript: 
#!/bin/sh -ev
  PYTHONPATH=%p/lib/qt4-mac/lib/python%type_raw[python]/site-packages 
PATH=%p/lib/qt4-mac/lib/python%type_raw[python]/bin:$PATH 
python%type_raw[python] setup.py build
  make -C doc html

InstallScript: 
  PYTHONPATH=%p/lib/qt4-mac/lib/python%type_raw[python]/site-packages 
PATH=%p/lib/qt4-mac/lib/python%type_raw[python]/bin:$PATH 
python%type_raw[python] setup.py install --prefix %p --root %d

  rm -r %i/lib/nautilus
  mv %i/bin/thg %i/bin/thg-py%type_pkg[python]

PostInstScript: 
  update-alternatives --install %p/bin/thg thg %p/bin/thg-py%type_pkg[python] 
%type_pkg[python]

PreRmScript: 
  if [ $1 != upgrade ]
  then
update-alternatives --remove thg %p/bin/thg-py%type_pkg[python]
  fi

DocFiles: COPYING.txt doc/build/html
Description: Graphical interface to Mercurial
DescDetail: 
TortoiseHg is a set of graphical tools and a shell extension for the
Mercurial distributed revision control system.

License: GPL
Homepage: http://tortoisehg.org/
Maintainer: Brendan Cully bren...@finkproject.org



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


[cvs] dists/10.7/stable/main/finkinfo/libs fuse4x-dev.info, 1.1, 1.2 fuse4x-kext.info, 1.2, 1.3

2011-11-23 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv11947

Modified Files:
fuse4x-dev.info fuse4x-kext.info 
Log Message:
fuse4x: make load_fuse4x setuid

Otherwise it is unable to load extensions outside of /System/Library/Extensions

Index: fuse4x-kext.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/fuse4x-kext.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- fuse4x-kext.info22 Nov 2011 08:13:20 -  1.2
+++ fuse4x-kext.info23 Nov 2011 17:41:27 -  1.3
@@ -1,6 +1,6 @@
 Package: fuse4x-kext
 Version: 0.8.13
-Revision: 1
+Revision: 2
 Source: https://github.com/fuse4x/kext/tarball/fuse4x_0_8_13
 Source-MD5: 2ec1196afbb34ffb2d621a8706598cf2
 SourceRename: %n-%v.tar.gz
@@ -19,7 +19,6 @@
 
 InstallScript: 
 #!/bin/sh -ev
-# TODO: figure out how to install this in /System/Library/Filesystems
 
 mkdir -p %i/lib/fuse4x/
 cp -R build/Distribution/fuse4x.kext %i/lib/fuse4x/
@@ -29,6 +28,8 @@
 PreRmScript: /sbin/kextunload -q -b org.fuse4x.kext.fuse4x || true
 PostInstScript: 
 chown -R root:wheel %p/lib/fuse4x/fuse4x.kext
+# Non-root users can't load extensions outside of /System/Library/Extensions
+chmod u+s %p/lib/fuse4x/fuse4x.kext/Support/load_fuse4x
 
 DocFiles: API.txt
 

Index: fuse4x-dev.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/fuse4x-dev.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- fuse4x-dev.info 19 Nov 2011 23:24:10 -  1.1
+++ fuse4x-dev.info 23 Nov 2011 17:41:27 -  1.2
@@ -1,6 +1,6 @@
 Package: fuse4x-dev
 Version: 0.8.13
-Revision: 1
+Revision: 2
 BuildDependsOnly: true
 Depends: pkgconfig
 Source: https://github.com/fuse4x/fuse/tarball/fuse4x_0_8_13
@@ -26,7 +26,7 @@
 
 SplitOff: 
   Package: fuse4x-shlibs
-  Depends: fuse4x-kext (= %v-%r)
+  Depends: fuse4x-kext (= 0.8.13-1)
   DocFiles: 
   
   Files: 


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


[cvs] dists/10.7/stable/main/finkinfo/libs fuse4x-kext.info,1.1,1.2

2011-11-22 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv8093

Modified Files:
fuse4x-kext.info 
Log Message:
fuse4x: fix source URL; build extension for i386 as well as x86_64.

This does not affect the userspace architecture, it merely allows an i386 kernel
to load the extension.

Index: fuse4x-kext.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/fuse4x-kext.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- fuse4x-kext.info19 Nov 2011 23:24:10 -  1.1
+++ fuse4x-kext.info22 Nov 2011 08:13:20 -  1.2
@@ -1,7 +1,7 @@
 Package: fuse4x-kext
 Version: 0.8.13
 Revision: 1
-Source: https://github.com/fuse4x/kext/tarball/%n_0_8_13
+Source: https://github.com/fuse4x/kext/tarball/fuse4x_0_8_13
 Source-MD5: 2ec1196afbb34ffb2d621a8706598cf2
 SourceRename: %n-%v.tar.gz
 SourceDirectory: %n-c53f9f9
@@ -13,7 +13,7 @@
 #!/bin/sh -ev
 
 cd ../fuse4x-kext-c53f9f9
-xcodebuild ARCHS=x86_64 SYMROOT=build SHARED_PRECOMPS_DIR=build \
+xcodebuild SYMROOT=build SHARED_PRECOMPS_DIR=build \
   MACOSX_DEPLOYMENT_TARGET=10.7 SDKROOT=macosx10.7 \
   -PBXBuildsContinueAfterErrors=0 -parallelizeTargets -alltargets 
-configuration Distribution
 


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


[cvs] dists/10.7/stable/main/finkinfo/libs fuse4x-dev.info, NONE, 1.1 fuse4x-kext.info, NONE, 1.1

2011-11-19 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv19923

Added Files:
fuse4x-dev.info fuse4x-kext.info 
Log Message:
fuse4x is a replacement for the dead macfuse project.

I tried osxfuse first but sshfs crashed after mount when using it.

--- NEW FILE: fuse4x-kext.info ---
Package: fuse4x-kext
Version: 0.8.13
Revision: 1
Source: https://github.com/fuse4x/kext/tarball/%n_0_8_13
Source-MD5: 2ec1196afbb34ffb2d621a8706598cf2
SourceRename: %n-%v.tar.gz
SourceDirectory: %n-c53f9f9

PatchScript: 
sed -i.bak -e 's,/System/Library/Extensions,%p/lib/fuse4x,' common/fuse_param.h

CompileScript: 
#!/bin/sh -ev

cd ../fuse4x-kext-c53f9f9
xcodebuild ARCHS=x86_64 SYMROOT=build SHARED_PRECOMPS_DIR=build \
  MACOSX_DEPLOYMENT_TARGET=10.7 SDKROOT=macosx10.7 \
  -PBXBuildsContinueAfterErrors=0 -parallelizeTargets -alltargets 
-configuration Distribution

InstallScript: 
#!/bin/sh -ev
# TODO: figure out how to install this in /System/Library/Filesystems

mkdir -p %i/lib/fuse4x/
cp -R build/Distribution/fuse4x.kext %i/lib/fuse4x/
mkdir %i/lib/fuse4x/fuse4x.kext/Support
cp build/Distribution/load_fuse4x %i/lib/fuse4x/fuse4x.kext/Support/

PreRmScript: /sbin/kextunload -q -b org.fuse4x.kext.fuse4x || true
PostInstScript: 
chown -R root:wheel %p/lib/fuse4x/fuse4x.kext

DocFiles: API.txt

Description: Fuse4x kernel extension
DescDetail: 
Fuse4x allows you to extend Mac OS X's native file handling
capabilities via third-party file systems. Fuse4x is a successor to
MacFUSE, which has been used as a software building block by dozens of
products, but is no longer being maintained.

This is the kernel extension component of fuse4x.

License: BSD
Homepage: http://fuse4x.org/
Maintainer: Brendan Cully bren...@finkproject.org

--- NEW FILE: fuse4x-dev.info ---
Package: fuse4x-dev
Version: 0.8.13
Revision: 1
BuildDependsOnly: true
Depends: pkgconfig
Source: https://github.com/fuse4x/fuse/tarball/fuse4x_0_8_13
Source-MD5: 275f9088322e18d0d7a49354254613b7
SourceRename: fuse4x-fuse-%v.tar.gz
SourceDirectory: fuse4x-fuse-794e796

PatchScript: 
sed -i.bak -e 's,/System/Library/Extensions,%p/lib/fuse4x,' include/fuse_param.h

CompileScript: 
#!/bin/sh -ev

autoreconf -f -i -Wall,no-obsolete
./configure CFLAGS='-arch x86_64 -mmacosx-version-min=10.7' LDFLAGS='-arch 
x86_64' --disable-dependency-tracking --prefix=%p
make

InstallScript: 
#!/bin/sh -ev
make install DESTDIR=%d

DocFiles: AUTHORS COPYING COPYING.LIB FAQ NEWS README README.NFS 
doc/how-fuse-works

SplitOff: 
  Package: fuse4x-shlibs
  Depends: fuse4x-kext (= %v-%r)
  DocFiles: 
  
  Files: 
lib/libfuse4x.2.dylib
  
  Shlibs: 
%p/lib/libfuse4x.2.dylib 11.0.0 fuse4x-shlibs (= 0.8.13-1)
  
  Description: fuse4x shared libraries
  DescDetail: 
These are the shared libraries required by fuse applications.
  


Description: File System in User Space (fuse4x)
DescDetail: 
Fuse4x allows you to extend Mac OS X's native file handling
capabilities via third-party file systems. Fuse4x is a successor to
MacFUSE, which has been used as a software building block by dozens of
products, but is no longer being maintained.

These are the fuse header and library files required for building FUSE
filesystems.

License: BSD
Homepage: http://fuse4x.org/
Maintainer: Brendan Cully bren...@finkproject.org


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


[cvs] dists/10.7/stable/main/finkinfo/net sshfs.info, NONE, 1.1 sshfs.patch, NONE, 1.1

2011-11-19 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv20055

Added Files:
sshfs.info sshfs.patch 
Log Message:
sshfs: update to 2.3 using fuse4x patch

--- NEW FILE: sshfs.info ---
Package: sshfs
Version: 2.3
Revision: 1
Source: mirror:sourceforge:fuse/%n-fuse-%v.tar.gz
Source-MD5: f72f12fda186dbd92382f70d25662ed3
PatchFile: %n.patch
PatchFile-MD5: b183be0432ed9e71b6c4ae282b81ea77
BuildDepends: fuse4x-dev, glib2-dev, pkgconfig, libgettext8-dev
Depends: fuse4x-shlibs, glib2-shlibs, libgettext8-shlibs

ConfigureParams: --disable-dependency-tracking
# pick up fuse_opt_parse
#NoSetLDFLAGS: True
#SetLDFLAGS: -L%p/lib -lfuse
#CompileScript: CFLAGS=-g -O2 -DDARWIN_SEMAPHORE_COMPAT=1 ./configure 
--prefix=%p --libdir=%p/lib --disable-dependency-tracking
InstallScript: make DESTDIR=%d install
DocFiles: README COPYING NEWS FAQ.txt

Description: FUSE ssh filesystem
DescDetail: 
This is a filesystem client based on the SSH File Transfer
Protocol. Since most SSH servers already support this protocol it is
very easy to set up: i.e. on the server side there's nothing to do.
On the client side mounting the filesystem is as easy as logging into
the server with ssh: sshfs host: mountpoint

DescUsage: 
Invoking sshfs with the options
-oreconnect,kill_on_unmount,volname=finder volume name
will probably improve its interaction with the Finder.

License: GPL
Homepage: http://fuse.sourceforge.net/sshfs.html
Maintainer: Brendan Cully bren...@finkproject.org

--- NEW FILE: sshfs.patch ---
# from the macports port

diff --git a/Makefile.am b/Makefile.am
index a80788b..99e1dc8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,14 +2,14 @@
 
 bin_PROGRAMS = sshfs
 
-sshfs_SOURCES = sshfs.c cache.c cache.h
+sshfs_SOURCES = sshfs.c cache.c cache.h compat/darwin_semaphore.h 
compat/darwin_semaphore.c
 if FUSE_OPT_COMPAT
 sshfs_SOURCES += compat/fuse_opt.c compat/fuse_opt.h
 endif
 
 sshfs_LDADD = $(SSHFS_LIBS)
 sshfs_CFLAGS = $(SSHFS_CFLAGS)
-sshfs_CPPFLAGS = -D_REENTRANT -DFUSE_USE_VERSION=26 -DLIBDIR=\$(libdir)\
+sshfs_CPPFLAGS = -D_REENTRANT -DFUSE_USE_VERSION=26 -DLIBDIR=\$(libdir)\ 
-Icompat
 
 EXTRA_DIST = sshnodelay.c FAQ.txt
 CLEANFILES = sshnodelay.so
diff --git a/cache.c b/cache.c
index bb23f8f..5b635f2 100644
--- a/cache.c
+++ b/cache.c
@@ -559,6 +559,9 @@ struct fuse_operations *cache_init(struct 
fuse_cache_operations *oper)
cache.next_oper = oper;
 
cache_unity_fill(oper, cache_oper);
+#ifdef __APPLE__
+   cache_enabled = cache.on;
+#endif
if (cache.on) {
cache_fill(oper, cache_oper);
pthread_mutex_init(cache.lock, NULL);
@@ -593,3 +596,7 @@ int cache_parse_options(struct fuse_args *args)
 
return fuse_opt_parse(args, cache, cache_opts, NULL);
 }
+
+#ifdef __APPLE__
+int cache_enabled;
+#endif
diff --git a/cache.h b/cache.h
index cec9ca4..8ca0989 100644
--- a/cache.h
+++ b/cache.h
@@ -27,3 +27,7 @@ int cache_parse_options(struct fuse_args *args);
 void cache_add_attr(const char *path, const struct stat *stbuf, uint64_t 
wrctr);
 void cache_invalidate(const char *path);
 uint64_t cache_get_write_ctr(void);
+
+#ifdef __APPLE__
+extern int cache_enabled;
+#endif
diff --git a/compat/darwin_semaphore.c b/compat/darwin_semaphore.c
new file mode 100644
index 000..e45fd9a
--- /dev/null
+++ b/compat/darwin_semaphore.c
@@ -0,0 +1,229 @@
+/*
+ * Copyright (C) 2000,02 Free Software Foundation, Inc.
+ * This file is part of the GNU C Library.
+ * Written by GaEBl Le Mignot address@hidden
+ *
+ * The GNU C Library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * The GNU C Library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with the GNU C Library; see the file COPYING.LIB.  If not,
+ * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#include darwin_semaphore.h
+
+#include assert.h
+#include errno.h
+#include sys/types.h
+
+#define __SEM_ID_NONE  0x0
+#define __SEM_ID_LOCAL 0xcafef00d
+
+/* http://www.opengroup.org/onlinepubs/007908799/xsh/sem_init.html */
+int
+compat_sem_init(compat_sem_t *sem, int pshared, unsigned int value)
+{
+if (pshared) {
+errno = ENOSYS;
+return -1;
+}
+
+sem-id = __SEM_ID_NONE;
+
+if (pthread_cond_init(sem-__data.local.count_cond, NULL)) {
+goto cond_init_fail;
+}
+
+if (pthread_mutex_init(sem-__data.local.count_lock, NULL)) {
+goto mutex_init_fail;
+}
+
+sem

[cvs] dists/10.7/stable/main/finkinfo/net iperf.info,NONE,1.1

2011-11-15 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv22186

Added Files:
iperf.info 
Log Message:
iperf: add to 10.7, bump to 2.0.5

--- NEW FILE: iperf.info ---
Package: iperf
Version: 2.0.5
Revision: 1
Source: mirror:sourceforge:iperf/%n-%v.tar.gz
Source-MD5: 44b5536b67719f4250faed632a3cd016
SourceDirectory: %n-%v

DocFiles: AUTHORS README doc/dast.gif doc/index.html doc/ui_license.html
Description: Measure TCP and UDP throughput
DescDetail: 
Iperf is a tool to measure maximum TCP bandwidth, allowing the tuning of
various parameters and UDP characteristics. Iperf reports bandwidth, delay
jitter, datagram loss. 

While tools to measure network performance, such as ttcp, exist, most are very
old and have confusing options. Iperf was developed as a modern alternative
for measuring TCP and UDP bandwidth performance.

DescPackaging: 
The jperf GUI client for iperf is not installed.  This is intentional --
it's old and crufty, so I opted not to install it.  jperf is being split off
of Iperf in future versions and will be it's own package.

License: BSD
Homepage: http://iperf.sourceforge.net/
Maintainer: Jon Dugan jdu...@ncsa.uiuc.edu


--
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2011-10-11 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv9659

Added Files:
gnupg2.info 
Log Message:
gnupg2: add to 10.7, update, force to llvm-gcc-4.2 (stdint.h workaround)

--- NEW FILE: gnupg2.info ---
Package: gnupg2
Version: 2.0.18
Revision: 1
Description: Gnu privacy guard - A Free PGP replacement
License: GPL
BuildDepends: 
  texinfo (= 4.1-3), libgettext8-dev, libiconv-dev, bzip2-dev, libusb,
  openldap24-dev, readline5, libgpg-error (= 1.8-1), libgcrypt (= 1.2.0-1),
  libassuan2, libksba8 (= 1.2.0-1), pth2-dev, libcurl4, libssh2.1,
  system-openssl-dev, fink (= 0.24.12-1)

Depends: 
  bzip2-shlibs, libgettext8-shlibs, libiconv, libusb-shlibs,
  openldap24-shlibs, readline5-shlibs, libgpg-error-shlibs,
  libgcrypt-shlibs (= 1.2.0-1), libksba8-shlibs (= 1.2.0-1),
  libassuan2-shlibs, pth2-shlibs, libcurl4-shlibs

Conflicts: gpg-agent (= 1.9.20-1)
Replaces: gpg-agent (= 1.9.20-1)
Source: ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-%v.tar.bz2
Source-MD5: 2f37e0722666a0fedbe4d9f9227ac4d7
Source2: mirror:sourceforge:fink/gnupg-docs-20021001.tar.gz
Source2-MD5: 5e34b5be84adc6a898e164b99fce45d8
Source2ExtractDir: gnupg-%v
# stdint.h strangeness with clang
SetCC: llvm-gcc-4.2
ConfigureParams: CPPFLAGS=-I%p/lib/system-openssl/include $CPPFLAGS 
LDFLAGS=-L%p/lib/system-openssl/lib $LDFLAGS --libexecdir='${prefix}/lib' 
--with-libiconv-prefix=%p --disable-dependency-tracking
InstallScript: 
make install DESTDIR=%d

mkdir -p %i/share/doc/%n/documentation
mv gnupg-docs/* %i/share/doc/%n/documentation
mv %i/share/doc/gnupg/* %i/share/doc/gnupg2
rmdir %i/share/doc/gnupg

DocFiles: AUTHORS COPYING ChangeLog README TODO THANKS
InfoDocs: gnupg.info
DescDetail: 
GnuPG is GNU's tool for secure communication and data
storage. It can be used to encrypt data and to create digital
signatures. It includes an advanced key management facility and is
compliant with the proposed OpenPGP Internet standard as described in
RFC2440.
GnuPG does not use use any patented algorithms so it cannot be
compatible with PGP2 because it uses IDEA (which is patented
worldwide) and RSA. RSA's patent expired on the 20th September 2000,
and it is now included in GnuPG. 

DescUsage: 
To create an initial key pair run 'gpg2 --gen-key'
Consult the manual for a good intro: 
%p/share/doc/%n/documentation/handbook/

DescPackaging: 
Specifically looks for pth (%p/bin/pth-config)

Homepage: http://www.gnupg.org
Maintainer: Brendan Cully bren...@finkproject.org


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


[cvs] dists/10.7/stable/main/finkinfo/net mutt.info,NONE,1.1

2011-08-08 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv3604

Added Files:
mutt.info 
Log Message:
mutt: add to 10.7

--- NEW FILE: mutt.info ---
Package: mutt
Version: 1.5.21
Revision: 2
Description: Sophisticated text-based mail user agent
License: GPL
Replaces: mutt-ssl ( %v-%r)
BuildDepends: 
  libgettext8-dev, libiconv-dev, libncurses5, libncursesw5, cyrus-sasl2-dev,
  libidn, tokyocabinet9, system-openssl-dev

Depends: 
  ncurses, libncurses5-shlibs, libncursesw5-shlibs, cyrus-sasl2-shlibs,
  tokyocabinet9-shlibs, libidn-shlibs

Source: ftp://ftp.mutt.org/%n/devel/%n-%v.tar.gz
Source-MD5: a29db8f1d51e2f10c070bf88e8a553fd
ConfFiles: %p/etc/Muttrc
DocFiles: GPL NEWS README README.SSL README.SECURITY TODO

PatchScript: 
  perl -pi -e 's/(^[^=]*)\@DOTLOCK_GROUP\@/\1\$(DOTLOCK_GROUP)/g' Makefile.in

ConfigureParams: CPPFLAGS=-I%p/lib/system-openssl/include $CPPFLAGS 
LDFLAGS=-L%p/lib/system-openssl/lib $LDFLAGS --disable-dependency-tracking 
--with-mailpath=/var/mail --with-mixmaster --enable-imap --enable-pop 
--enable-smtp --enable-hcache --with-ssl --with-sasl --with-idn 
--mandir=%p/share/man --with-docdir=%p/share/doc/%n
InstallScript: 
  make install DESTDIR=%d DOTLOCK_GROUP=
  mv %i/etc/mime.types %i/etc/mime.types.mutt
  mkdir -p %i/share/doc/%n/man
  mv %i/share/man/man5/mbox.5 %i/share/doc/%n/man/mbox.5.mutt
  echo This package should be removed  %i/share/doc/%n/mutt-ssl

SplitOff: 
  Package: mutt-ssl
  Depends: %N (= %v-%r)
  Description: Dummy upgrade package for mutt with system-openssl
  Files: share/doc/%N/%n
  DescDetail: 
This package only exists to migrate users to the new unified mutt package.
You can safely remove it.
  
  
PostInstScript: 
  update-alternatives --install %p/etc/mime.types mime.types 
%p/etc/mime.types.mutt 40
  update-alternatives --install %p/share/man/man5/mbox.5 mbox.5 
%p/share/doc/%n/man/mbox.5.mutt 30
  chgrp mail %p/bin/mutt_dotlock
  chmod 2755 %p/bin/mutt_dotlock

PreRmScript: 
if [ $1 != upgrade ]; then
  update-alternatives --remove mime.types %p/etc/mime.types.mutt
  update-alternatives --remove mbox.5 %p/share/doc/%n/man/mbox.5.mutt
fi

DescDetail: 
Mutt is a sophisticated text-based Mail User Agent. Some highlights:

 o MIME support (including RFC1522 encoding/decoding of 8-bit message
   headers).
 o PGP/MIME support (RFC 2015).
 o IMAP support.
 o POP3 support.
 o Mailbox threading (both strict and non-strict).
 o Default keybindings are much like ELM.
 o Keybindings are configurable; Mush and PINE-like ones are provided as
   examples.
 o Handles MMDF, MH and Maildir in addition to regular mbox format.
 o Messages may be (indefinitely) postponed.
 o Colour support.
 o Highly configurable through easy but powerful rc file.

DescPort: By default, mutt searches for a user's mbox file in /var/mail.
DescUsage: 
You need to create a .muttrc before Mutt will do anything useful for you.
See /sw/share/doc/mutt/samples/ for example configs, and consult the muttrc(5)
man page for reference.

Homepage: http://www.mutt.org
Maintainer: Brendan Cully bren...@finkproject.org


--
uberSVN's rich system and user administration capabilities and model 
configuration take the hassle out of deploying and managing Subversion and 
the tools developers use with it. Learn more about uberSVN and get a free 
download at:  http://p.sf.net/sfu/wandisco-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2011-08-02 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv11685

Modified Files:
ocaml.info 
Log Message:
Hey fink, no -j means no!

Index: ocaml.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages/ocaml.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ocaml.info  24 Jul 2011 19:15:22 -  1.2
+++ ocaml.info  2 Aug 2011 23:34:45 -   1.3
@@ -6,6 +6,7 @@
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (= 5.4-20041023-1006), fink (= 
0.24.12)
 Depends: tcltk, x11, libncurses5-shlibs (= 5.4-20041023-1006)
 DescPort: Uses custom configure script.
+UseMaxBuildJobs: false
 SetMAKEFLAGS: -j1
 NoSetMAKEFLAGS: true
 Source: http://caml.inria.fr/pub/distrib/%n-3.12/%n-%v.tar.bz2


--
BlackBerryreg; DevCon Americas, Oct. 18-20, San Francisco, CA
The must-attend event for mobile developers. Connect with experts. 
Get tools for creating Super Apps. See the latest technologies.
Sessions, hands-on labs, demos  much more. Register early  save!
http://p.sf.net/sfu/rim-blackberry-1
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/languages ocaml.info, 1.22, 1.23

2011-07-24 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv11510

Modified Files:
ocaml.info 
Log Message:
ocaml: new upstream release 3.12.1

Index: ocaml.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml.info,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- ocaml.info  19 Jul 2011 13:27:59 -  1.22
+++ ocaml.info  24 Jul 2011 19:13:13 -  1.23
@@ -1,6 +1,6 @@
 Package: ocaml
-Version: 3.12.0
-Revision: 2
+Version: 3.12.1
+Revision: 1
 Distribution: 10.6, 10.7
 Description: Latest implementation of Caml dialect of ML
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (= 5.4-20041023-1006), fink (= 
0.24.12)
@@ -12,7 +12,7 @@
 Source2: http://caml.inria.fr/pub/distrib/%n-3.12/%n-3.12-refman.pdf
 Source3: http://caml.inria.fr/pub/distrib/%n-3.12/%n-3.12-refman.html.tar.gz
 Source4: http://caml.inria.fr/pub/distrib/%n-3.12/%n-3.12-refman.info.tar.gz
-Source-MD5: bd92c8970767f412bc1e9a6c625b5ccf
+Source-MD5: 227a3daaedb150bf5037a3db01f5bf42
 Source2-MD5: 79fe5b86e0d6462e3e944fd8c47603ac
 Source3-MD5: 93cd91f525441eb7e94cc49b9b64bab0
 Source4-MD5: 8cf24c4f69c6f9c9f9cc1edb9b18f6cb


--
Magic Quadrant for Content-Aware Data Loss Prevention
Research study explores the data loss prevention market. Includes in-depth
analysis on the changes within the DLP market, and the criteria used to
evaluate the strengths and weaknesses of these DLP solutions.
http://www.accelacomm.com/jaw/sfnl/114/51385063/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/languages ocaml.info,1.1,1.2

2011-07-24 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv11771

Modified Files:
ocaml.info 
Log Message:
ocaml: new upstream release 3.12.1

Index: ocaml.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages/ocaml.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ocaml.info  24 Jul 2011 01:15:12 -  1.1
+++ ocaml.info  24 Jul 2011 19:15:22 -  1.2
@@ -1,6 +1,6 @@
 Package: ocaml
-Version: 3.12.0
-Revision: 2
+Version: 3.12.1
+Revision: 1
 Distribution: 10.6, 10.7
 Description: Latest implementation of Caml dialect of ML
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (= 5.4-20041023-1006), fink (= 
0.24.12)
@@ -12,7 +12,7 @@
 Source2: http://caml.inria.fr/pub/distrib/%n-3.12/%n-3.12-refman.pdf
 Source3: http://caml.inria.fr/pub/distrib/%n-3.12/%n-3.12-refman.html.tar.gz
 Source4: http://caml.inria.fr/pub/distrib/%n-3.12/%n-3.12-refman.info.tar.gz
-Source-MD5: bd92c8970767f412bc1e9a6c625b5ccf
+Source-MD5: 227a3daaedb150bf5037a3db01f5bf42
 Source2-MD5: 79fe5b86e0d6462e3e944fd8c47603ac
 Source3-MD5: 93cd91f525441eb7e94cc49b9b64bab0
 Source4-MD5: 8cf24c4f69c6f9c9f9cc1edb9b18f6cb


--
Magic Quadrant for Content-Aware Data Loss Prevention
Research study explores the data loss prevention market. Includes in-depth
analysis on the changes within the DLP market, and the criteria used to
evaluate the strengths and weaknesses of these DLP solutions.
http://www.accelacomm.com/jaw/sfnl/114/51385063/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2011-07-24 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv16327

Added Files:
ghc.info 
Log Message:
ghc: add to 10.7

--- NEW FILE: ghc.info ---
Package: ghc
Version: 7.0.4
Revision: 1
BuildDepends: fink (= 0.24.12)
Source: http://www.haskell.org/ghc/dist/%v/%n-%v-%m-apple-darwin.tar.bz2
Source-MD5: af89d3d2ca6e9b23384baacb7d8161dd
SourceDirectory: %n-%v

# configure script doesn't like clang

CompileScript: ./configure CC=/usr/bin/gcc %c
InstallScript: make DESTDIR=%d install

SplitOff: 
  Package: %N-prof
  Depends: %N (= %v-%r)
  Files: 
lib/%N-%v/*_p.a
  
  Description: Glasgow Haskell Compiler (Profiling Libraries)
  DescDetail: 
  This package contains additional profiling libraries. They are not
  needed for normal use.
  
  DocFiles: LICENSE

DocFiles: LICENSE README
Description: Glasgow Haskell Compiler
DescDetail: 
The Glasgow Haskell Compiler is a robust, fully-featured,  optimising
compiler and interactive environment for Haskell 98. GHC compiles
Haskell to either native code or C. It implements numerous experimental
language extensions to Haskell 98, for example: concurrency, a foreign
language interface, multi-parameter type classes, scoped type variables,
existential and universal quantification, unboxed types, exceptions,
weak pointers, and so on. GHC comes with a generational garbage collector,
and a space and time profiler.

Homepage: http://www.haskell.org/ghc/
License: BSD
Maintainer: Brendan Cully bren...@finkproject.org


--
Magic Quadrant for Content-Aware Data Loss Prevention
Research study explores the data loss prevention market. Includes in-depth
analysis on the changes within the DLP market, and the criteria used to
evaluate the strengths and weaknesses of these DLP solutions.
http://www.accelacomm.com/jaw/sfnl/114/51385063/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs tokyocabinet9.info, NONE, 1.1 tokyocabinet9.patch, NONE, 1.1

2011-07-24 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv13678

Added Files:
tokyocabinet9.info tokyocabinet9.patch 
Log Message:
Add to 10.7

--- NEW FILE: tokyocabinet9.info ---
Package: tokyocabinet9
Version: 1.4.47
Revision: 1
Source: http://fallabs.com/tokyocabinet/tokyocabinet-%v.tar.gz
Source-MD5: 3d94fe2aebf5d9ff0478ed895bc46fc9
BuildDependsOnly: True
BuildDepends: bzip2-dev
Depends: %n-shlibs (= %v-%r)
Conflicts: tokyocabinet
Replaces: tokyocabinet

PatchFile: tokyocabinet9.patch
PatchFile-MD5: 4db6d1458c829fb5fa502ca33a51d40e
ConfigureParams: --mandir=%p/share/man --datadir=%p/share/doc/%n
InstallScript: make DESTDIR=%d install
DocFiles: README

SplitOff: 
  Package: %N-shlibs
  Shlibs: %p/lib/libtokyocabinet.9.dylib 9.0.0 %n (= 1.4.39-1)
  Depends: bzip2-shlibs
  Files: lib/libtokyocabinet.9.*
  DocFiles: COPYING

SplitOff2: 
  Package: %N-bin
  Depends: %N-shlibs
  Files: bin share/man/man1
  DocFiles: COPYING
  Conflicts: tokyocabinet-bin
  Replaces: tokyocabinet-bin


Description: Tokyo Cabinet database manager
DescDetail: 
Tokyo Cabinet is the successor to qdbm, a fast and compact implementation
of b+ trees, hashes, and fixed-length arrays, similar in spirit to GDBM
or Berkeley DB

Homepage: http://fallabs.com/tokyocabinet/
License: LGPL
Maintainer: Brendan Cully bren...@finkproject.org

--- NEW FILE: tokyocabinet9.patch ---
diff --git a/Makefile.in b/Makefile.in
index 408b58e..842e268 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -37,8 +37,8 @@ datarootdir = @datarootdir@
 INCLUDEDIR = @includedir@
 LIBDIR = @libdir@
 BINDIR = @bindir@
-LIBEXECDIR = @libexecdir@
-DATADIR = @datadir@/$(PACKAGE)
+LIBEXECDIR = @libdir@/$(PACKAGE)
+DATADIR = @datadir@
 MAN1DIR = @mandir@/man1
 MAN3DIR = @mandir@/man3
 PCDIR = @libdir@/pkgconfig
@@ -54,8 +54,8 @@ CFLAGS = @MYCFLAGS@
 LDFLAGS = @MYLDFLAGS@
 CMDLDFLAGS = @MYCMDLDFLAGS@
 LIBS = @LIBS@
-LDENV = 
LD_RUN_PATH=/lib:/usr/lib:$(LIBDIR):$(HOME)/lib:/usr/local/lib:@MYRUNPATH@:.
-RUNENV = 
@MYLDLIBPATHENV@=.:/lib:/usr/lib:$(LIBDIR):$(HOME)/lib:/usr/local/lib:@MYRUNPATH@
+LDENV = LD_RUN_PATH=/lib:/usr/lib:$(LIBDIR):@MYRUNPATH@:.
+RUNENV = @MYLDLIBPATHENV@=.:/lib:/usr/lib:$(LIBDIR):@MYRUNPATH@
 POSTCMD = @MYPOSTCMD@
 
 
diff --git a/configure b/configure
index bb0e147..9aa8512 100755
--- a/configure
+++ b/configure
@@ -1856,9 +1856,9 @@ MYPCFILES=tokyocabinet.pc
 
 # Building flags
 MYCFLAGS=-std=c99 -Wall -fPIC -fsigned-char -O2
-MYCPPFLAGS=-I. -I\$(INCLUDEDIR) -I$HOME/include -I/usr/local/include
+MYCPPFLAGS=-I. -I\$(INCLUDEDIR)
 MYCPPFLAGS=$MYCPPFLAGS -DNDEBUG -D_GNU_SOURCE=1 -D_REENTRANT -D__EXTENSIONS__
-MYLDFLAGS=-L. -L\$(LIBDIR) -L$HOME/lib -L/usr/local/lib
+MYLDFLAGS=-L. -L\$(LIBDIR)
 MYCMDLDFLAGS=
 MYRUNPATH=\$(LIBDIR)
 MYLDLIBPATHENV=LD_LIBRARY_PATH


--
Storage Efficiency Calculator
This modeling tool is based on patent-pending intellectual property that
has been used successfully in hundreds of IBM storage optimization engage-
ments, worldwide.  Store less, Store more with what you own, Move data to 
the right place. Try It Now! http://www.accelacomm.com/jaw/sfnl/114/51427378/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/languages ghc-i386.info, 1.6, 1.7 ghc-x86_64.info, 1.4, 1.5 ghc.info, 1.10, NONE

2011-06-28 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv25859

Added Files:
ghc-i386.info ghc-x86_64.info 
Removed Files:
ghc.info 
Log Message:
ghc: new upstream release, fix i386

--- ghc.info DELETED ---

--- NEW FILE: ghc-i386.info ---
Package: ghc
Version: 7.0.4
Revision: 1
BuildDepends: fink (= 0.24.12)
Architecture: i386
Source: http://www.haskell.org/ghc/dist/%v/%n-%v-%m-apple-darwin.tar.bz2
Source-MD5: ce297e783d113cf1547386703d1b1061
SourceDirectory: %n-%v

CompileScript: ./configure %c
InstallScript: make DESTDIR=%d install

SplitOff: 
  Package: %N-prof
  Depends: %N (= %v-%r)
  Files: 
lib/%N-%v/*_p.a
  
  Description: Glasgow Haskell Compiler (Profiling Libraries)
  DescDetail: 
  This package contains additional profiling libraries. They are not
  needed for normal use.
  
  DocFiles: LICENSE

DocFiles: LICENSE README
Description: Glasgow Haskell Compiler
DescDetail: 
The Glasgow Haskell Compiler is a robust, fully-featured,  optimising
compiler and interactive environment for Haskell 98. GHC compiles
Haskell to either native code or C. It implements numerous experimental
language extensions to Haskell 98, for example: concurrency, a foreign
language interface, multi-parameter type classes, scoped type variables,
existential and universal quantification, unboxed types, exceptions,
weak pointers, and so on. GHC comes with a generational garbage collector,
and a space and time profiler.

Homepage: http://www.haskell.org/ghc/
License: BSD
Maintainer: Brendan Cully bren...@finkproject.org

--- NEW FILE: ghc-x86_64.info ---
Package: ghc
Version: 7.0.4
Revision: 1
BuildDepends: fink (= 0.24.12)
Architecture: x86_64
Source: http://www.haskell.org/ghc/dist/%v/%n-%v-%m-apple-darwin.tar.bz2
Source-MD5: af89d3d2ca6e9b23384baacb7d8161dd
SourceDirectory: %n-%v

CompileScript: ./configure %c
InstallScript: make DESTDIR=%d install

SplitOff: 
  Package: %N-prof
  Depends: %N (= %v-%r)
  Files: 
lib/%N-%v/*_p.a
  
  Description: Glasgow Haskell Compiler (Profiling Libraries)
  DescDetail: 
  This package contains additional profiling libraries. They are not
  needed for normal use.
  
  DocFiles: LICENSE

DocFiles: LICENSE README
Description: Glasgow Haskell Compiler
DescDetail: 
The Glasgow Haskell Compiler is a robust, fully-featured,  optimising
compiler and interactive environment for Haskell 98. GHC compiles
Haskell to either native code or C. It implements numerous experimental
language extensions to Haskell 98, for example: concurrency, a foreign
language interface, multi-parameter type classes, scoped type variables,
existential and universal quantification, unboxed types, exceptions,
weak pointers, and so on. GHC comes with a generational garbage collector,
and a space and time profiler.

Homepage: http://www.haskell.org/ghc/
License: BSD
Maintainer: Brendan Cully bren...@finkproject.org


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


[cvs] dists/10.4/unstable/main/finkinfo/devel tortoisehg-py.info, NONE, 1.1

2011-06-24 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv21653

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

--- NEW FILE: tortoisehg-py.info ---
Info2: 
Package: tortoisehg-py%type_pkg[python]
Version: 2.0.5
Revision: 1
Type: python (2.5 2.6 2.7)
Source: http://bitbucket.org/tortoisehg/targz/downloads/tortoisehg-%v.tar.gz
Source-MD5: 89f745f481dc12346f229f6a9b8c4f70
Depends: 
  python%type_pkg[python],
  mercurial-py%type_pkg[python],
  pyqt4-mac-py%type_pkg[python],
  sip-py%type_pkg[python],
  qscintilla2-qt4-mac-py%type_pkg[python],
  iniparse-py%type_pkg[python], pygments-py%type_pkg[python]

BuildDepends: sphinx-py%type_pkg[python]

PatchScript: 
#!/bin/sh -ev
  sed -i.bak -e '/import sys/a\
  sys.path.append(%p/lib/qt4-mac/lib/python%type_raw[python]/site-packages)' 
thg
  sed -i.bak -e 's,pixmaps/tortoisehg,pixmaps/tortoisehg-py%type_pkg[python],' 
-e 's,/usr,%p,' -e 's/hg.mo/hg-py%type_pkg[python].mo/' setup.py
  sed -i.bak -e s,'tortoisehg','tortoisehg-py%type_pkg[python]', 
tortoisehg/util/i18n.py

CompileScript: 
#!/bin/sh -ev
  PYTHONPATH=%p/lib/qt4-mac/lib/python%type_raw[python]/site-packages 
PATH=%p/lib/qt4-mac/lib/python%type_raw[python]/bin:$PATH 
python%type_raw[python] setup.py build
  make -C doc html

InstallScript: 
  PYTHONPATH=%p/lib/qt4-mac/lib/python%type_raw[python]/site-packages 
PATH=%p/lib/qt4-mac/lib/python%type_raw[python]/bin:$PATH 
python%type_raw[python] setup.py install --prefix %p --root %d

  rm -r %i/lib/nautilus
  mv %i/bin/thg %i/bin/thg-py%type_pkg[python]

PostInstScript: 
  update-alternatives --install %p/bin/thg thg %p/bin/thg-py%type_pkg[python] 
%type_pkg[python]

PreRmScript: 
  if [ $1 != upgrade ]
  then
update-alternatives --remove thg %p/bin/thg-py%type_pkg[python]
  fi

DocFiles: COPYING.txt doc/build/html
Description: Graphical interface to Mercurial
DescDetail: 
TortoiseHg is a set of graphical tools and a shell extension for the
Mercurial distributed revision control system.

License: GPL
Homepage: http://tortoisehg.org/
Maintainer: Brendan Cully bren...@finkproject.org



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


[cvs] dists/10.4/unstable/main/finkinfo/languages ghc.info, 1.9, 1.10 ghc-6.10.patch, 1.2, NONE ghc-i386.info, 1.5, NONE ghc-x86_64.info, 1.3, NONE

2011-06-12 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv26528

Added Files:
ghc.info 
Removed Files:
ghc-6.10.patch ghc-i386.info ghc-x86_64.info 
Log Message:
Update ghc to 7.0.3, unify i386 and x86_64, use upstream bindist

--- ghc-6.10.patch DELETED ---

--- NEW FILE: ghc.info ---
Package: ghc
Version: 7.0.3
Revision: 1
BuildDepends: fink (= 0.24.12)
Architecture: x86_64
Source: http://www.haskell.org/ghc/dist/%v/%n-%v-%m-apple-darwin.tar.bz2
Source-MD5: 8a514a022ce21b8672f00054244faf26
SourceDirectory: %n-%v

CompileScript: ./configure %c
InstallScript: make DESTDIR=%d install

SplitOff: 
  Package: %N-prof
  Depends: %N (= %v-%r)
  Files: 
lib/%N-%v/*_p.a
  
  Description: Glasgow Haskell Compiler (Profiling Libraries)
  DescDetail: 
  This package contains additional profiling libraries. They are not
  needed for normal use.
  
  DocFiles: LICENSE

DocFiles: LICENSE README
Description: Glasgow Haskell Compiler
DescDetail: 
The Glasgow Haskell Compiler is a robust, fully-featured,  optimising
compiler and interactive environment for Haskell 98. GHC compiles
Haskell to either native code or C. It implements numerous experimental
language extensions to Haskell 98, for example: concurrency, a foreign
language interface, multi-parameter type classes, scoped type variables,
existential and universal quantification, unboxed types, exceptions,
weak pointers, and so on. GHC comes with a generational garbage collector,
and a space and time profiler.

DescPort: 
This port borrows heavily from Gregory Wright's DarwinPorts package.
X86_64 version by Barney Stratford.

Homepage: http://www.haskell.org/ghc/
License: BSD
Maintainer: Brendan Cully bren...@finkproject.org

--- ghc-i386.info DELETED ---

--- ghc-x86_64.info DELETED ---


--
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods mechanize-py.info, NONE, 1.1

2011-05-24 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv17588

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

--- NEW FILE: mechanize-py.info ---
Info2: 
Package: mechanize-py%type_pkg[python]
Version: 0.2.5
Revision: 1
Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
Type: python (2.3 2.4 2.5 2.6 2.7)
Source: http://pypi.python.org/packages/source/m/mechanize/mechanize-%v.tar.gz
Source-MD5: 32657f139fc2fb75bcf193b63b8c60b2
Depends: python%type_pkg[python], distribute-py%type_pkg[python]

CompileScript: 
python%type_raw[python] setup.py build

InstallScript: 
  python%type_raw[python] setup.py install --prefix %p --root %d

DocFiles: COPYING.txt README.txt

Description: Python counterpart to WWW::Mechanize
License: BSD
Homepage: http://wwwsearch.sourceforge.net/mechanize/
Maintainer: Brendan Cully bren...@finkproject.org



--
vRanger cuts backup time in half-while increasing security.
With the market-leading solution for virtual backup and recovery, 
you get blazing-fast, flexible, and affordable data protection.
Download your free trial now. 
http://p.sf.net/sfu/quest-d2dcopy1
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/crypto libgmail-py.info, 1.1, 1.2

2011-05-24 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv17856

Modified Files:
libgmail-py.info 
Log Message:
New upstream release; python 2.6, 2.7 variants

Index: libgmail-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto/libgmail-py.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libgmail-py.info1 Jul 2010 01:37:10 -   1.1
+++ libgmail-py.info24 May 2011 22:23:01 -  1.2
@@ -1,12 +1,18 @@
 Info2: 
 Package: libgmail-py%type_pkg[python]
-Version: 0.1.5.1
-Revision: 2
+Version: 0.1.11
+Revision: 1
 Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
-Type: python (2.3 2.4 2.5)
+Type: python (2.3 2.4 2.5 2.6 2.7)
 Source: mirror:sourceforge:libgmail/libgmail-%v.tar.gz
-Source-MD5: 97b6fdd56b715068fddc38edb21b91cf
-Depends: python%type_pkg[python], python%type_pkg[python]-socket-ssl
+Source-MD5: 247477ac98b39658fdcdee8d65639e51
+Depends: 
+  python%type_pkg[python],
+  mechanize-py%type_pkg[python],
+  (%type_pkg[python] = 23) python%type_pkg[python]-socket-ssl,
+  (%type_pkg[python] = 24) python%type_pkg[python]-socket-ssl,
+  (%type_pkg[python] = 25) python%type_pkg[python]-socket-ssl
+
 
 CompileScript: 
 python%type_raw[python] setup.py build
@@ -19,5 +25,5 @@
 Description: Python bindings to access Gmail
 License: GPL
 Homepage: http://libgmail.sourceforge.net/
-Maintainer: Brendan Cully bcu...@users.sourceforge.net
+Maintainer: Brendan Cully bren...@finkproject.org
 


--
vRanger cuts backup time in half-while increasing security.
With the market-leading solution for virtual backup and recovery, 
you get blazing-fast, flexible, and affordable data protection.
Download your free trial now. 
http://p.sf.net/sfu/quest-d2dcopy1
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/languages ocaml-10.6.info, 1.5, 1.6

2011-05-17 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv30289

Modified Files:
ocaml-10.6.info 
Log Message:
Restore manual word-size config for ocaml configure.

May fix 32-bit builds on Xcode 3, does not help with Xcode 4.

Index: ocaml-10.6.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml-10.6.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- ocaml-10.6.info 17 May 2011 04:42:11 -  1.5
+++ ocaml-10.6.info 17 May 2011 18:18:02 -  1.6
@@ -1,6 +1,6 @@
 Package: ocaml
 Version: 3.12.0
-Revision: 1
+Revision: 2
 Distribution: 10.6
 Description: Latest implementation of Caml dialect of ML
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (= 5.4-20041023-1006), fink (= 
0.24.12)
@@ -25,7 +25,12 @@
  cd ..  patch -p1  %{PatchFile}
 
 CompileScript: 
+#!/bin/sh -ex
+if [ %m = i386 ]; then
+  ./configure -tkdefs -I%p/include -tklibs -L%p/lib -prefix %p -mandir 
%p/share/man -cc gcc -m32 -as as -arch i386 -aspp gcc -m32 -c
+else
   ./configure -tkdefs -I%p/include -tklibs -L%p/lib -prefix %p -mandir 
%p/share/man
+fi
make world opt opt.opt
 
 InstallScript: 


--
Achieve unprecedented app performance and reliability
What every C/C++ and Fortran developer should know.
Learn how Intel has extended the reach of its next-generation tools
to help boost performance applications - inlcuding clusters.
http://p.sf.net/sfu/intel-dev2devmay
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/languages ocaml-10.6.info, 1.4, 1.5

2011-05-16 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory vz-cvs-3.sog:/tmp/cvs-serv32353

Modified Files:
ocaml-10.6.info 
Log Message:
jhowarth's simplified update to ocaml 3.12.

Only tested on 10.6, 64-bit, Xcode 4.0.2

Index: ocaml-10.6.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml-10.6.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- ocaml-10.6.info 25 Apr 2010 00:05:37 -  1.4
+++ ocaml-10.6.info 17 May 2011 04:42:11 -  1.5
@@ -1,5 +1,5 @@
 Package: ocaml
-Version: 3.11.2
+Version: 3.12.0
 Revision: 1
 Distribution: 10.6
 Description: Latest implementation of Caml dialect of ML
@@ -8,15 +8,14 @@
 DescPort: Uses custom configure script.
 SetMAKEFLAGS: -j1
 NoSetMAKEFLAGS: true
-SetMACOSX_DEPLOYMENT_TARGET: 10.4
-Source: http://caml.inria.fr/pub/distrib/%n-3.11/%n-%v.tar.bz2
-Source2: http://caml.inria.fr/pub/distrib/%n-3.11/%n-3.11-refman.pdf
-Source3: http://caml.inria.fr/pub/distrib/%n-3.11/%n-3.11-refman.html.tar.gz
-Source4: http://caml.inria.fr/pub/distrib/%n-3.11/%n-3.11-refman.info.tar.gz
-Source-MD5: 4601a7aea66444d61704de8de46c52c6
-Source2-MD5: 798c2702f20bd3199726441771538a07
-Source3-MD5: bfb4ed960974159f4224014a979baf6d
-Source4-MD5: 50fc2a3e3a38db78bd03d169379155de
+Source: http://caml.inria.fr/pub/distrib/%n-3.12/%n-%v.tar.bz2
+Source2: http://caml.inria.fr/pub/distrib/%n-3.12/%n-3.12-refman.pdf
+Source3: http://caml.inria.fr/pub/distrib/%n-3.12/%n-3.12-refman.html.tar.gz
+Source4: http://caml.inria.fr/pub/distrib/%n-3.12/%n-3.12-refman.info.tar.gz
+Source-MD5: bd92c8970767f412bc1e9a6c625b5ccf
+Source2-MD5: 79fe5b86e0d6462e3e944fd8c47603ac
+Source3-MD5: 93cd91f525441eb7e94cc49b9b64bab0
+Source4-MD5: 8cf24c4f69c6f9c9f9cc1edb9b18f6cb
 PatchFile: %n.patch
 PatchFile-MD5: 37ed1a21a282337c629c84a6f08f2160
 PatchScript: 
@@ -26,13 +25,8 @@
  cd ..  patch -p1  %{PatchFile}
 
 CompileScript: 
-#! /bin/sh -ex
- if [ %m = x86_64 ]; then
- ./configure -tkdefs -I%p/include -tklibs -L%p/lib -prefix %p -mandir 
%p/share/man -cc gcc -m64 -isysroot /Developer/SDKs/MacOSX10.5.sdk 
-mmacosx-version-min=10.5
-  else
-./configure -tkdefs -I%p/include -tklibs -L%p/lib -prefix %p -mandir 
%p/share/man -cc gcc -m32 -as as -arch i386 -aspp gcc -m32 -c
- fi
- make world opt opt.opt
+  ./configure -tkdefs -I%p/include -tklibs -L%p/lib -prefix %p -mandir 
%p/share/man
+   make world opt opt.opt
 
 InstallScript: 
  make install BINDIR=%i/bin LIBDIR=%i/lib/ocaml MANDIR=%i/share/man
@@ -41,9 +35,6 @@
  sed -e s|%d|| %i/lib/ocaml/ld.conf.orig  %i/lib/ocaml/ld.conf
  rm -f %i/lib/ocaml/ld.conf.orig
 
- # Needed for camlp4lib.a or camlp4fulllib.a?
- # ranlib %i/lib/ocaml/camlp4/gramlib.a
-
  (cd emacs; make install-el BINDIR=%i/bin EMACSDIR=%i/share/emacs/site-lisp)
 
  mkdir -p %i/share/info
@@ -53,7 +44,7 @@
  cp -R ../htmlman %i/share/doc/%n
 
 InfoDocs: ocaml.info
-DocFiles: Changes README LICENSE INSTALL ../%n-3.11-refman.pdf
+DocFiles: Changes README LICENSE INSTALL ../%n-3.12-refman.pdf
 DescDetail: 
 The main novelties compared with its ancestor, Caml Light, are: 
 1) Full support for objects and classes -- 


--
Achieve unprecedented app performance and reliability
What every C/C++ and Fortran developer should know.
Learn how Intel has extended the reach of its next-generation tools
to help boost performance applications - inlcuding clusters.
http://p.sf.net/sfu/intel-dev2devmay
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel bzr-py.info,1.30,1.31

2011-05-05 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv7197

Modified Files:
bzr-py.info 
Log Message:
Latest upstream stable version

Index: bzr-py.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/bzr-py.info,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- bzr-py.info 16 Jan 2010 02:20:46 -  1.30
+++ bzr-py.info 5 May 2011 22:57:50 -   1.31
@@ -1,18 +1,19 @@
 Info2: 
 Package: bzr-py%type_pkg[python]
-Version: 1.18
+Version: 2.3.1
 Revision: 1
 Conflicts: bzr, bzr-py24-bin
 Replaces: bzr, bzr-py24-bin
-Type: python (2.4 2.5 2.6)
 Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
-Source: http://launchpadlibrarian.net/30544432/bzr-%v.tar.gz
-Source-MD5: efc91bada508089fbeb2d92973ecfe0a
+Type: python (2.4 2.5 2.6 2.7)
+Source: http://launchpadlibrarian.net/66057429/bzr-%v.tar.gz
+Source-MD5: 1a4367ce59a2880f321ecb882e195856
 Depends: 
   python%type_pkg[python],
-  (%type_pkg[python] = 24) celementtree-py24 | (%type_pkg[python] = 24) 
elementtree-py24
+  (%type_pkg[python] = 24) celementtree-py24 | (%type_pkg[python] = 24) 
elementtree-py24,
+  bash-completion
 
-BuildDepends: docutils-py%type_pkg[python], graphviz
+BuildDepends: docutils-py%type_pkg[python], graphviz | graphviz-nox
 Recommends: paramiko-py%type_pkg[python]
 
 PatchScript: 
@@ -31,9 +32,12 @@
 
   mv %i/bin/bzr %i/bin/bzr-py%type_pkg[python]
   mv %i/share/man/man1/bzr.1 %i/share/man/man1/bzr-py%type_pkg[python].1
+
+  mkdir -p %i/lib/bzr-py%type_raw[python]
+  mv contrib/bash/bzr %i/lib/bzr-py%type_raw[python]/bash-completion
 
 PostInstScript: 
-  update-alternatives --install %p/bin/bzr bzr %p/bin/bzr-py%type_pkg[python] 
%type_pkg[python] --slave %p/share/man/man1/bzr.1 bzr.1 
%p/share/man/man1/bzr-py%type_pkg[python].1
+  update-alternatives --install %p/bin/bzr bzr %p/bin/bzr-py%type_pkg[python] 
%type_pkg[python] --slave %p/share/man/man1/bzr.1 bzr.1 
%p/share/man/man1/bzr-py%type_pkg[python].1 --slave 
%p/etc/bash_completion.d/bzr bzr-bash-completion 
%p/lib/bzr-py%type_pkg[python]/bash-completion
 
 PreRmScript: 
   if [ $1 != upgrade ]


--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel bzr-py.info,1.31,1.32

2011-05-05 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv24219

Modified Files:
bzr-py.info 
Log Message:
Pass maintainership of bzr to danielj before he gets cold feet

Index: bzr-py.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/bzr-py.info,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- bzr-py.info 5 May 2011 22:57:50 -   1.31
+++ bzr-py.info 6 May 2011 00:05:34 -   1.32
@@ -58,5 +58,5 @@
 
 License: GPL
 Homepage: http://www.bazaar-vcs.org/
-Maintainer: Brendan Cully bren...@finkproject.org
+Maintainer: Daniel Johnson dan...@daniel-johnson.org
 


--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/crypto libassuan2.info, 1.1, 1.2

2011-04-29 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv6103

Modified Files:
libassuan2.info 
Log Message:
Set BDO for libassuan2

Index: libassuan2.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto/libassuan2.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libassuan2.info 29 Apr 2011 03:46:27 -  1.1
+++ libassuan2.info 29 Apr 2011 18:04:36 -  1.2
@@ -1,7 +1,8 @@
 Package: libassuan2
 Version: 2.0.1
-Revision: 1
+Revision: 2
 BuildDepends: libgpg-error (= 1.8-1)
+BuildDependsOnly: True
 Conflicts: libassuan
 Source: ftp://ftp.gnupg.org/gcrypt/libassuan/libassuan-%v.tar.bz2
 Source-MD5: 53a7d4c22af909d7236d17d454ef935b


--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/crypto libassuan.info, 1.1, 1.2

2011-04-28 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv19765

Modified Files:
libassuan.info 
Log Message:
NMU (new version for newer gpg2) with maintainer's blessing

Index: libassuan.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto/libassuan.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libassuan.info  1 Jul 2010 01:37:10 -   1.1
+++ libassuan.info  28 Apr 2011 19:47:41 -  1.2
@@ -1,11 +1,11 @@
 Package: libassuan 
-Version: 1.0.4
+Version: 2.0.1
 Revision: 1
 Maintainer: Darian Lanx dmal...@users.sourceforge.net
 BuildDependsOnly: true
 BuildDepends: pth2-dev
 Source: ftp://ftp.gnupg.org/gcrypt/%n/%n-%v.tar.bz2
-Source-MD5: ffb95bf2bac23e173f5a83a270f7524a
+Source-MD5: 53a7d4c22af909d7236d17d454ef935b
 ConfigureParams: --mandir=%p/share/man --infodir=%p/share/info 
--disable-dependency-tracking
 
 PatchScript: 


--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/crypto libgpg-error.info, 1.1, 1.2

2011-04-28 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv19936

Modified Files:
libgpg-error.info 
Log Message:
NMU (new version for newer gpg2) with maintainer's blessing

Index: libgpg-error.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto/libgpg-error.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libgpg-error.info   1 Jul 2010 01:37:10 -   1.1
+++ libgpg-error.info   28 Apr 2011 19:48:42 -  1.2
@@ -1,13 +1,12 @@
-#$Id$
 Package: libgpg-error
-Version: 1.6
-Revision: 2
+Version: 1.8
+Revision: 1
 Source: ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-%v.tar.bz2
-Source-MD5: f3e9870e213518b407a959f8d29cd554
+Source-MD5: 1d2005268a2f096db28cf9cf77b3229a
 Depends: %N-shlibs (= %v-%r)
 Replaces: %N-dev
 Conflicts: %N-dev
-BuildDepends: libgettext3-dev, libiconv-dev
+BuildDepends: libgettext8-dev, libiconv-dev
 BuildDependsOnly: True
 CompileScript: 
 perl -pi.bak -e s;allow_undefined_flag='-flat_namespace -undefined 
suppress';allow_undefined_flag='-twolevel_namespace -undefined 
dynamic_lookup'; configure
@@ -21,7 +20,7 @@
   Files: lib/libgpg-error.0*.dylib
   DocFiles: COPYING README
   Shlibs: 
-%p/lib/libgpg-error.0.dylib 5.0.0 %n (= 1.6-1)
+%p/lib/libgpg-error.0.dylib 7.0.0 %n (= 1.8-1)
   
 
 DocFiles: AUTHORS COPYING COPYING.LIB ChangeLog NEWS README 


--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/crypto gnupg2.info, 1.1, 1.2 libksba8.info, 1.1, 1.2

2011-04-28 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv20232

Modified Files:
gnupg2.info libksba8.info 
Log Message:
New version of gnupg2, along with ksba8 dependency

Index: gnupg2.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto/gnupg2.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gnupg2.info 1 Jul 2010 01:37:10 -   1.1
+++ gnupg2.info 28 Apr 2011 19:50:52 -  1.2
@@ -1,24 +1,24 @@
 Package: gnupg2
-Version: 2.0.9
+Version: 2.0.17
 Revision: 1
 Description: Gnu privacy guard - A Free PGP replacement
 License: GPL
 BuildDepends: 
-  texinfo (= 4.1-3), libgettext3-dev, libiconv-dev, bzip2-dev, libusb,
-  openldap23-dev, readline5, libgpg-error (= 1.4-1), libgcrypt (= 1.2.0-1),
-  libassuan (= 1.0.4-1), libksba8 (= 1.0.2-1), pth2-dev, libcurl4, libssh2.1,
+  texinfo (= 4.1-3), libgettext8-dev, libiconv-dev, bzip2-dev, libusb,
+  openldap24-dev, readline5, libgpg-error (= 1.8-1), libgcrypt (= 1.2.0-1),
+  libassuan (= 2.0.1-1), libksba8 (= 1.2.0-1), pth2-dev, libcurl4, libssh2.1,
   system-openssl-dev, fink (= 0.24.12-1)
 
 Depends: 
-  bzip2-shlibs, libgettext3-shlibs, libiconv, libusb-shlibs,
-  openldap23-shlibs, readline5-shlibs, libgpg-error-shlibs,
-  libgcrypt-shlibs (= 1.2.0-1), libksba8-shlibs (= 1.0.2-1),
+  bzip2-shlibs, libgettext8-shlibs, libiconv, libusb-shlibs,
+  openldap24-shlibs, readline5-shlibs, libgpg-error-shlibs,
+  libgcrypt-shlibs (= 1.2.0-1), libksba8-shlibs (= 1.2.0-1),
   pth2-shlibs, libcurl4-shlibs
 
 Conflicts: gpg-agent (= 1.9.20-1)
 Replaces: gpg-agent (= 1.9.20-1)
 Source: ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-%v.tar.bz2
-Source-MD5: b41f3f6716a74c46a609a71853e85c7b
+Source-MD5: 123af099740fd159c73a0352a274ec81
 Source2: mirror:sourceforge:fink/gnupg-docs-20021001.tar.gz
 Source2-MD5: 5e34b5be84adc6a898e164b99fce45d8
 Source2ExtractDir: gnupg-%v
@@ -28,12 +28,11 @@
 
mkdir -p %i/share/doc/%n/documentation
mv gnupg-docs/* %i/share/doc/%n/documentation
-   install -m 644 %i/share/gnupg/FAQ %i/share/doc/%n
-   install -m 644 %i/share/gnupg/faq.html %i/share/doc/%n
-mv %i/share/gnupg %i/share/gnupg2
+   mv %i/share/doc/gnupg/* %i/share/doc/gnupg2
+rmdir %i/share/doc/gnupg
 
 DocFiles: AUTHORS COPYING ChangeLog README TODO THANKS
-InfoDocs: gnupg.info gnupg.info-1
+InfoDocs: gnupg.info
 DescDetail: 
 GnuPG is GNU's tool for secure communication and data
 storage. It can be used to encrypt data and to create digital

Index: libksba8.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto/libksba8.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libksba8.info   1 Jul 2010 01:37:10 -   1.1
+++ libksba8.info   28 Apr 2011 19:50:52 -  1.2
@@ -1,18 +1,18 @@
 Package: libksba8
-Version: 1.0.2
-Revision: 2
-Source: http://ftp.gnupg.org/gcrypt/libksba/libksba-%v.tar.bz2
-Source-MD5: 3cccb3ef697e1e69eeceeea0715ff220
+Version: 1.2.0
+Revision: 1
+Source: ftp://ftp.gnupg.org/gcrypt/libksba/libksba-%v.tar.bz2
+Source-MD5: e797f370b69b4dc776499d6a071ae137
 BuildDependsOnly: True
 Depends: %n-shlibs (= %v-%r)
 Replaces: %N-shlibs ( 0.9.12-1)
-BuildDepends: libgpg-error (= 1.2), libgettext3-dev, libiconv-dev
+BuildDepends: libgpg-error (= 1.8), libgettext8-dev, libiconv-dev
 
 # Work around libtool wonkiness with empty archive
 PatchScript: 
-touch gl/dummy.c
-sed -i.orig -e 's/^libgnu_la_SOURCES =/libgnu_la_SOURCES = dummy.c/' \
--e 's/^am_libgnu_la_OBJECTS =/am_libgnu_la_OBJECTS = dummy.lo/' 
gl/Makefile.in
+#touch gl/dummy.c
+#sed -i.orig -e 's/^libgnu_la_SOURCES =/libgnu_la_SOURCES = dummy.c/' \
+#-e 's/^am_libgnu_la_OBJECTS =/am_libgnu_la_OBJECTS = dummy.lo/' 
gl/Makefile.in
 
 ConfigureParams: --infodir=%p/share/info --disable-dependency-tracking
 InstallScript: make DESTDIR=%d install
@@ -21,9 +21,9 @@
 
 SplitOff: 
   Package: %N-shlibs
-  Depends: libgpg-error-shlibs (= 1.2), libgettext3-shlibs, libiconv
-  Shlibs: %p/lib/libksba.8.dylib 18.0.0 %n (= 1.0.2-2)
-  Files: lib/libksba.8.9.2.dylib lib/libksba.8.dylib
+  Depends: libgpg-error-shlibs (= 1.2), libgettext8-shlibs, libiconv
+  Shlibs: %p/lib/libksba.8.dylib 20.0.0 %n (= 1.2.0-1)
+  Files: lib/libksba.8.dylib
   DocFiles: COPYING
 
 
@@ -43,4 +43,4 @@
 
 Homepage: http://www.gnupg.org/(en)/related_software/libksba/index.html
 License: GPL
-Maintainer: Brendan Cully bcu...@users.sourceforge.net
+Maintainer: Brendan Cully bren...@finkproject.org


--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall

[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods altgraph-py.info, 1.5, 1.6

2011-04-28 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv30140

Modified Files:
altgraph-py.info 
Log Message:
Update altgraph, add 2.7 variant

Index: altgraph-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods/altgraph-py.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- altgraph-py.info14 Dec 2009 05:16:28 -  1.5
+++ altgraph-py.info28 Apr 2011 20:36:20 -  1.6
@@ -1,12 +1,12 @@
 Info2: 
 Package: altgraph-py%type_pkg[python]
-Version: 0.6.7
-Revision: 2
+Version: 0.9
+Revision: 1
 Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
-Type: python (2.4 2.5 2.6)
+Type: python (2.4 2.5 2.6 2.7)
 Source: 
http://cheeseshop.python.org/packages/source/a/altgraph/altgraph-%v.tar.gz
-Source-MD5: ad162ff5fbe586e08541139a202e0474
-Depends: python%type_pkg[python], setuptools-py%type_pkg[python] (= 0.6c1)
+Source-MD5: 367015bf871815b632975a26d1750133
+Depends: python%type_pkg[python], distribute-py%type_pkg[python]
 
 CompileScript: python%type_raw[python] setup.py build
 InstallScript: python%type_raw[python] setup.py install --prefix %p --root %d


--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods modulegraph-py.info, 1.8, 1.9

2011-04-28 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv1398

Modified Files:
modulegraph-py.info 
Log Message:
New upstream modulegraph; 2.7 variant

Index: modulegraph-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods/modulegraph-py.info,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- modulegraph-py.info 5 Jul 2010 09:43:36 -   1.8
+++ modulegraph-py.info 28 Apr 2011 20:51:13 -  1.9
@@ -1,18 +1,30 @@
 Info2: 
 Package: modulegraph-py%type_pkg[python]
-Version: 0.7.3
+Version: 0.9
 Revision: 1
-Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
-Type: python (2.4 2.5 2.6)
+Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
+Type: python (2.3 2.4 2.5 2.6 2.7)
 Source: 
http://cheeseshop.python.org/packages/source/m/modulegraph/modulegraph-%v.tar.gz
-Source-MD5: ba3bf16397001f4f6997a7f5c102542f
+Source-MD5: 95d8bad1bb4c6186a75536da44787a17
 Depends: 
-  python%type_pkg[python], setuptools-py%type_pkg[python] (= 0.6c1),
+  python%type_pkg[python], distribute-py%type_pkg[python],
   altgraph-py%type_pkg[python]
 
 
 CompileScript: python%type_raw[python] setup.py build
-InstallScript: python%type_raw[python] setup.py install --prefix %p --root %d
+InstallScript: 
+python%type_raw[python] setup.py install --prefix %p --root %d
+mv %i/bin/modulegraph %i/bin/modulegraph-py%type_pkg[python]
+
+PostInstScript: 
+  update-alternatives --install %p/bin/modulegraph modulegraph 
%p/bin/modulegraph-py%type_pkg[python] %type_pkg[python]
+
+PreRmScript: 
+  if [ $1 != upgrade ]
+  then
+update-alternatives --remove modulegraph 
%p/bin/modulegraph-py%type_pkg[python]
+  fi
+
 Description: Python module dependency analysis tool
 DescDetail: 
 modulegraph determines a dependency graph between Python modules


--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/crypto libassuan.info, 1.2, 1.3

2011-04-28 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv9606

Modified Files:
libassuan.info 
Log Message:
I botched the libassuan upgrade -- rolling back, epoching

Index: libassuan.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto/libassuan.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libassuan.info  28 Apr 2011 19:47:41 -  1.2
+++ libassuan.info  29 Apr 2011 03:14:16 -  1.3
@@ -1,11 +1,12 @@
 Package: libassuan 
-Version: 2.0.1
-Revision: 1
+Version: 1.0.4
+Revision: 2
+Epoch: 1
 Maintainer: Darian Lanx dmal...@users.sourceforge.net
 BuildDependsOnly: true
 BuildDepends: pth2-dev
 Source: ftp://ftp.gnupg.org/gcrypt/%n/%n-%v.tar.bz2
-Source-MD5: 53a7d4c22af909d7236d17d454ef935b
+Source-MD5: ffb95bf2bac23e173f5a83a270f7524a
 ConfigureParams: --mandir=%p/share/man --infodir=%p/share/info 
--disable-dependency-tracking
 
 PatchScript: 


--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/crypto libassuan2.info, NONE, 1.1 gnupg2.info, 1.2, 1.3

2011-04-28 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto
In directory vz-cvs-3.sog:/tmp/cvs-serv17439

Modified Files:
gnupg2.info 
Added Files:
libassuan2.info 
Log Message:
Add libassuan2 package, update gnupg2 to depend on it

Index: gnupg2.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto/gnupg2.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gnupg2.info 28 Apr 2011 19:50:52 -  1.2
+++ gnupg2.info 29 Apr 2011 03:46:27 -  1.3
@@ -1,19 +1,19 @@
 Package: gnupg2
 Version: 2.0.17
-Revision: 1
+Revision: 2
 Description: Gnu privacy guard - A Free PGP replacement
 License: GPL
 BuildDepends: 
   texinfo (= 4.1-3), libgettext8-dev, libiconv-dev, bzip2-dev, libusb,
   openldap24-dev, readline5, libgpg-error (= 1.8-1), libgcrypt (= 1.2.0-1),
-  libassuan (= 2.0.1-1), libksba8 (= 1.2.0-1), pth2-dev, libcurl4, libssh2.1,
+  libassuan2, libksba8 (= 1.2.0-1), pth2-dev, libcurl4, libssh2.1,
   system-openssl-dev, fink (= 0.24.12-1)
 
 Depends: 
   bzip2-shlibs, libgettext8-shlibs, libiconv, libusb-shlibs,
   openldap24-shlibs, readline5-shlibs, libgpg-error-shlibs,
   libgcrypt-shlibs (= 1.2.0-1), libksba8-shlibs (= 1.2.0-1),
-  pth2-shlibs, libcurl4-shlibs
+  libassuan2-shlibs, pth2-shlibs, libcurl4-shlibs
 
 Conflicts: gpg-agent (= 1.9.20-1)
 Replaces: gpg-agent (= 1.9.20-1)

--- NEW FILE: libassuan2.info ---
Package: libassuan2
Version: 2.0.1
Revision: 1
BuildDepends: libgpg-error (= 1.8-1)
Conflicts: libassuan
Source: ftp://ftp.gnupg.org/gcrypt/libassuan/libassuan-%v.tar.bz2
Source-MD5: 53a7d4c22af909d7236d17d454ef935b
ConfigureParams: --mandir=%p/share/man --infodir=%p/share/info 
--disable-dependency-tracking

PatchScript: 
mv INSTALL INSTALL.txt


CompileScript: 
 ./configure %c
 make


InstallScript: make install DESTDIR=%d

DocFiles: AUTHORS COPYING ChangeLog INSTALL.txt NEWS README* THANKS TODO
InfoDocs: assuan.info

SplitOff: 
  Package: %N-shlibs
  Depends: libgpg-error-shlibs (= 1.8-1)
  Shlibs: %p/lib/libassuan.0.dylib 2.0.0 %n (= 2.0.1-1)
  Files: lib/libassuan.0.dylib
  DocFiles: COPYING


Description: Safer IPC library
DescDetail: 
Libassuan is a small library implementing the so-called Assuan
protocol. This protocol is used for IPC between most newer GnuPG
components. Both, server and client side functions are provided.

Assuan was developed for use by the GNU Privacy Guard, GnuPG, to
prevent potentially buggy clients from unwittingly corrupting
sensitive transactions or compromising data such as a secret key.
Assuan permits the servers, which do the actual work, e.g. encryption
and decryption of data using a secret key, to be developed
independently of the user interfaces, e.g. mail clients and other
encryption front ends. Like a shared library, the interface is well
defined and any number of front ends can use it; however, unlike a
shared library, the client cannot see or touch the server's data. As
with any modular system, Assuan helps keep the servers small and
understandable help to make code more understandable and less error
prone.


Homepage: http://www.gnupg.org/(en)/related_software/libassuan/index.html
License: GPL
Maintainer: Brendan Cully bren...@finkproject.org


--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods iniparse-py.info, NONE, 1.1

2011-04-26 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv16276

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

--- NEW FILE: iniparse-py.info ---
Info2: 
Package: iniparse-py%type_pkg[python]
Version: 0.4
Revision: 1
Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
Type: python (2.4 2.5 2.6 2.7)
Source: http://iniparse.googlecode.com/files/iniparse-%v.tar.gz
Source-MD5: 5e573e9e9733d97623881ce9bbe5eca6
Depends: python%type_pkg[python], distribute-py%type_pkg[python]

CompileScript: python%type_raw[python] setup.py build
InstallScript: python%type_raw[python] setup.py install --prefix %p --root %d
DocFiles: LICENSE LICENSE-PSF README html/

Description: INI parser for Python
DescDetail: 
Backward compatible implementations of ConfigParser, RawConfigParser,
and SafeConfigParser are included that are API-compatible with the
Python standard library. They pass all the unit tests included with
Python.

Order of sections  options, indentation, comments, and blank lines
are preserved as far as possible when data is updated.

Values can be accessed using dotted notation (cfg.user.name), or using
container syntax (cfg['user']['name']).

It is very useful for config files that are updated both by users and
by programs, since it is very disorienting for a user to have her
config file completely rearranged whenever a program changes
it. iniparse also allows making the order of entries in a config file
significant, which is desirable in applications like image galleries.

License: BSD
Homepage: http://code.google.com/p/iniparse/
Maintainer: Brendan Cully bren...@finkproject.org



--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/utils lbdb.patch, 1.2, 1.3 lbdb.info, 1.4, 1.5

2010-09-26 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv17886

Modified Files:
lbdb.info 
Added Files:
lbdb.patch 
Log Message:
lbdb: fix build with XCode 3.2

--- NEW FILE: lbdb.patch ---
diff -r 7c7812a37eff ABQuery.m
--- /dev/null   Thu Jan 01 00:00:00 1970 +
+++ b/ABQuery.m Sun Sep 26 22:16:18 2010 -0700
@@ -0,0 +1,73 @@
+/* ABQuery
+ *
+ *Copyright 2003 Brendan Cully bren...@kublai.com
+ *
+ *This program is free software; you can redistribute it and/or modify
+ *it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,, USA.
+ *
+ *
+ * $Id: ABQuery.m,v 1.3 2005-10-29 14:48:16 roland Exp $
+ */
+
+#import Foundation/Foundation.h
+#import AddressBook/AddressBook.h
+
+int main (int argc, const char *argv[]) {
+NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
+ABAddressBook *book = [ABAddressBook sharedAddressBook];
+ABSearchElement *firstNameSearch, *lastNameSearch, *emailSearch, *search;
+NSArray *searchTerms;
+NSArray *results;
+NSEnumerator *addressEnum;
+ABPerson *person;
+NSString *key = [NSString stringWithCString:argv[1]];
+
+firstNameSearch = [ABPerson searchElementForProperty:kABFirstNameProperty
+ label:nil
+ key:nil
+ value:key
+  
comparison:kABContainsSubStringCaseInsensitive];
+lastNameSearch = [ABPerson searchElementForProperty:kABLastNameProperty
+ label:nil
+ key:nil
+ value:key
+  
comparison:kABContainsSubStringCaseInsensitive];
+emailSearch = [ABPerson searchElementForProperty:kABEmailProperty
+  label:nil
+ key:nil
+ value:key
+ comparison:kABContainsSubStringCaseInsensitive];
+searchTerms = [NSArray arrayWithObjects:firstNameSearch, lastNameSearch, 
emailSearch, nil];
+search = [ABSearchElement searchElementForConjunction:kABSearchOr
+children:searchTerms];
+results = [book recordsMatchingSearchElement:search];
+
+addressEnum = [results objectEnumerator];
+
+while (person = (ABPerson*)[addressEnum nextObject]) {
+NSString *fullName = [NSString stringWithFormat:@%@ %@, [[person 
valueForProperty:kABFirstNameProperty] description], [[person 
valueForProperty:kABLastNameProperty] description]];
+  
+ABMultiValue *emails = [person valueForProperty:kABEmailProperty];
+int count = [emails count];
+int i;
+for (i = 0; i  count; i++) {
+NSString *email = [emails valueAtIndex:i];
+printf(%s\t%s\t(AddressBook)\n, [email cString], [fullName 
UTF8String]);
+  }
+}
+
+[pool release];
+
+return 0;
+}
diff -r 7c7812a37eff ABQuery/ABQuery.m
--- a/ABQuery/ABQuery.m Sun Sep 26 21:48:56 2010 -0700
+++ /dev/null   Thu Jan 01 00:00:00 1970 +
@@ -1,73 +0,0 @@
-/* ABQuery
- *
- *Copyright 2003 Brendan Cully bren...@kublai.com
- *
- *This program is free software; you can redistribute it and/or modify
- *it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,, USA.
- *
- *
- * $Id: ABQuery.m,v 1.3 2005-10-29 14:48:16 roland Exp $
- */
-
-#import Foundation/Foundation.h
-#import AddressBook/AddressBook.h
-
-int main (int argc, const char *argv[]) {
-NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-ABAddressBook *book = [ABAddressBook sharedAddressBook];
-ABSearchElement *firstNameSearch

[cvs] dists/10.4/unstable/main/finkinfo/net mutt.info,1.12,1.13

2010-09-17 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv2592

Modified Files:
mutt.info 
Log Message:
New upstream release mutt 1.5.21

Index: mutt.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/mutt.info,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- mutt.info   25 Nov 2009 22:25:05 -  1.12
+++ mutt.info   17 Sep 2010 20:58:59 -  1.13
@@ -1,11 +1,11 @@
 Package: mutt
-Version: 1.5.20
-Revision: 2
+Version: 1.5.21
+Revision: 1
 Description: Sophisticated text-based mail user agent
 License: GPL
 Replaces: mutt-ssl ( %v-%r)
 BuildDepends: 
-  libgettext3-dev, libiconv-dev, libncurses5, libncursesw5, cyrus-sasl2-dev,
+  libgettext8-dev, libiconv-dev, libncurses5, libncursesw5, cyrus-sasl2-dev,
   libidn, tokyocabinet9, system-openssl-dev
 
 Depends: 
@@ -13,7 +13,7 @@
   tokyocabinet9-shlibs, libidn-shlibs
 
 Source: ftp://ftp.mutt.org/%n/devel/%n-%v.tar.gz
-Source-MD5: 027cdd9959203de0c3c64149a7ee351c
+Source-MD5: a29db8f1d51e2f10c070bf88e8a553fd
 ConfFiles: %p/etc/Muttrc
 DocFiles: GPL NEWS README README.SSL README.SECURITY TODO
 


--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs tokyocabinet.patch, 1.2, 1.3 tokyocabinet9.info, 1.3, 1.4

2010-09-03 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv6620

Modified Files:
tokyocabinet.patch tokyocabinet9.info 
Log Message:
tokyocabinet 1.4.46, with fix for powerpc build

Index: tokyocabinet.patch
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/tokyocabinet.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- tokyocabinet.patch  6 Jan 2009 08:10:01 -   1.2
+++ tokyocabinet.patch  3 Sep 2010 22:57:48 -   1.3
@@ -1,9 +1,8 @@
-Fix doc installation target.
-
 diff --git a/Makefile.in b/Makefile.in
+index 408b58e..842e268 100644
 --- a/Makefile.in
 +++ b/Makefile.in
-@@ -37,8 +37,8 @@
+@@ -37,8 +37,8 @@ datarootdir = @datarootdir@
  INCLUDEDIR = @includedir@
  LIBDIR = @libdir@
  BINDIR = @bindir@
@@ -14,18 +13,8 @@
  MAN1DIR = @mandir@/man1
  MAN3DIR = @mandir@/man3
  PCDIR = @libdir@/pkgconfig
-@@ -46,16 +46,16 @@
- 
- # Building configuration
- CC = @CC@
--CPPFLAGS = @MYCPPFLAGS@ \
-+CPPFLAGS = -I. -I$(INCLUDEDIR) -DNDEBUG -D_GNU_SOURCE=1 \
-   -D_TC_PREFIX=\$(prefix)\ -D_TC_INCLUDEDIR=\$(INCLUDEDIR)\ \
-   -D_TC_LIBDIR=\$(LIBDIR)\ -D_TC_BINDIR=\$(BINDIR)\ 
-D_TC_LIBEXECDIR=\$(LIBEXECDIR)\ \
-   -D_TC_APPINC=\-I$(INCLUDEDIR)\ -D_TC_APPLIBS=\-L$(LIBDIR) 
-ltokyocabinet @l...@\
- CFLAGS = @MYCFLAGS@
--LDFLAGS = @MYLDFLAGS@
-+LDFLAGS = -L. -L$(LIBDIR)
+@@ -54,8 +54,8 @@ CFLAGS = @MYCFLAGS@
+ LDFLAGS = @MYLDFLAGS@
  CMDLDFLAGS = @MYCMDLDFLAGS@
  LIBS = @LIBS@
 -LDENV = 
LD_RUN_PATH=/lib:/usr/lib:$(LIBDIR):$(HOME)/lib:/usr/local/lib:@MYRUNPATH@:.
@@ -35,3 +24,19 @@
  POSTCMD = @MYPOSTCMD@
  
  
+diff --git a/configure b/configure
+index bb0e147..9aa8512 100755
+--- a/configure
 b/configure
+@@ -1856,9 +1856,9 @@ MYPCFILES=tokyocabinet.pc
+ 
+ # Building flags
+ MYCFLAGS=-std=c99 -Wall -fPIC -fsigned-char -O2
+-MYCPPFLAGS=-I. -I\$(INCLUDEDIR) -I$HOME/include -I/usr/local/include
++MYCPPFLAGS=-I. -I\$(INCLUDEDIR)
+ MYCPPFLAGS=$MYCPPFLAGS -DNDEBUG -D_GNU_SOURCE=1 -D_REENTRANT 
-D__EXTENSIONS__
+-MYLDFLAGS=-L. -L\$(LIBDIR) -L$HOME/lib -L/usr/local/lib
++MYLDFLAGS=-L. -L\$(LIBDIR)
+ MYCMDLDFLAGS=
+ MYRUNPATH=\$(LIBDIR)
+ MYLDLIBPATHENV=LD_LIBRARY_PATH

Index: tokyocabinet9.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/tokyocabinet9.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- tokyocabinet9.info  4 Jul 2010 18:27:41 -   1.3
+++ tokyocabinet9.info  3 Sep 2010 22:57:48 -   1.4
@@ -1,8 +1,8 @@
 Package: tokyocabinet9
-Version: 1.4.39
+Version: 1.4.46
 Revision: 1
-Source: http://1978th.net/tokyocabinet/tokyocabinet-%v.tar.gz
-Source-MD5: 0cc77e1eeea1e767d6ffbfd9a640602a
+Source: http://fallabs.com/tokyocabinet/tokyocabinet-%v.tar.gz
+Source-MD5: 341dadd1f3d68760e350f7e73786
 BuildDependsOnly: True
 BuildDepends: bzip2-dev, fink (= 0.24.12)
 Depends: %n-shlibs (= %v-%r)
@@ -10,7 +10,7 @@
 Replaces: tokyocabinet
 
 PatchFile: tokyocabinet.patch
-PatchFile-MD5: 78e328976e81c2c24a76e2541772fa8b
+PatchFile-MD5: 4db6d1458c829fb5fa502ca33a51d40e
 ConfigureParams: --mandir=%p/share/man --datadir=%p/share/doc/%n
 InstallScript: make DESTDIR=%d install
 DocFiles: README


--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel cogito.info, 1.10, NONE cogito.patch, 1.2, NONE

2010-07-22 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv21977

Removed Files:
cogito.info cogito.patch 
Log Message:
Obsolete package, reported not to build (asciidoc problem)

--- cogito.patch DELETED ---

--- cogito.info DELETED ---


--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs



[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods shout2-pm.info, 1.6, 1.7

2010-07-22 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv24237

Modified Files:
shout2-pm.info 
Log Message:
Add new perl variants for shout2-pm

Index: shout2-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/shout2-pm.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- shout2-pm.info  23 Aug 2009 04:23:29 -  1.6
+++ shout2-pm.info  22 Jul 2010 20:21:47 -  1.7
@@ -13,7 +13,7 @@
 Source: http://downloads.us.xiph.org/releases/libshout/Shout-%v.tar.gz
 Source-MD5: 7171eb8f9e60d6c5cc6c469ba0f32dc9
 ###
-Type: perl (5.8.1 5.8.6)
+Type: perl (5.8.1 5.8.6 5.8.8 5.10.0)
 UpdatePOD: true
 ###
 InstallScript: 
@@ -28,6 +28,6 @@
 Description: Libshout2 perl module extension
 ###
 License: GPL
-Maintainer: Brendan Cully bcu...@users.sourceforge.net
+Maintainer: Brendan Cully bren...@finkproject.org
 Homepage: http://www.icecast.org/
 


--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods dulwich-py.info, 1.1, 1.2

2010-04-25 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28770

Modified Files:
dulwich-py.info 
Log Message:
New upstream release dulwich 0.5.0

Index: dulwich-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods/dulwich-py.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- dulwich-py.info 21 Feb 2010 02:06:58 -  1.1
+++ dulwich-py.info 25 Apr 2010 06:55:56 -  1.2
@@ -1,11 +1,11 @@
 Info2: 
 Package: dulwich-py%type_pkg[python]
-Version: 0.4.1
+Version: 0.5.0
 Revision: 1
 Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
 Type: python (2.4 2.5 2.6)
 Source: http://samba.org/~jelmer/dulwich/dulwich-%v.tar.gz
-Source-MD5: ffa4b48682f43f47dcf70968cfc45133
+Source-MD5: 811e77a8f1deb6f4bcaca6597b7367a5
 Depends: python%type_pkg[python], setuptools-py%type_pkg[python] (= 0.6c1)
 
 CompileScript: 


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


[cvs] dists/10.4/unstable/main/finkinfo/languages ocaml-10.6.info, 1.3, 1.4

2010-04-24 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv20222

Modified Files:
ocaml-10.6.info 
Log Message:
New upstream release ocaml 3.11.2

Index: ocaml-10.6.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml-10.6.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- ocaml-10.6.info 25 Nov 2009 22:26:31 -  1.3
+++ ocaml-10.6.info 25 Apr 2010 00:05:37 -  1.4
@@ -1,6 +1,6 @@
 Package: ocaml
-Version: 3.11.1
-Revision: 3
+Version: 3.11.2
+Revision: 1
 Distribution: 10.6
 Description: Latest implementation of Caml dialect of ML
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (= 5.4-20041023-1006), fink (= 
0.24.12)
@@ -13,7 +13,7 @@
 Source2: http://caml.inria.fr/pub/distrib/%n-3.11/%n-3.11-refman.pdf
 Source3: http://caml.inria.fr/pub/distrib/%n-3.11/%n-3.11-refman.html.tar.gz
 Source4: http://caml.inria.fr/pub/distrib/%n-3.11/%n-3.11-refman.info.tar.gz
-Source-MD5: fe011781f37f6b41fe08e0706969a89e
+Source-MD5: 4601a7aea66444d61704de8de46c52c6
 Source2-MD5: 798c2702f20bd3199726441771538a07
 Source3-MD5: bfb4ed960974159f4224014a979baf6d
 Source4-MD5: 50fc2a3e3a38db78bd03d169379155de
@@ -22,8 +22,6 @@
 PatchScript: 
  # fink's sed (at least 4.2-1) chokes on accented characters here
  /usr/bin/sed -i .bak -e 's,sed,/usr/bin/sed,' ocamldoc/remove_DEBUG
- # from monipol, supposedly fixes unison until ocaml 3.11.2 is out
- perl -pi -e 's/if macosx  is_generic_function fundecl.fun_name/if macosx  
not !Clflags.output_c_object  is_generic_function fundecl.fun_name/' 
asmcomp/i386/emit.mlp asmcomp/amd64/emit.mlp
  gzip -d ../infoman/ocaml*.gz
  cd ..  patch -p1  %{PatchFile}
 


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


[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods dulwich-py.info, NONE, 1.1

2010-02-20 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv26918

Added Files:
dulwich-py.info 
Log Message:
Package dulwich 0.4.1

--- NEW FILE: dulwich-py.info ---
Info2: 
Package: dulwich-py%type_pkg[python]
Version: 0.4.1
Revision: 1
Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
Type: python (2.4 2.5 2.6)
Source: http://samba.org/~jelmer/dulwich/dulwich-%v.tar.gz
Source-MD5: ffa4b48682f43f47dcf70968cfc45133
Depends: python%type_pkg[python], setuptools-py%type_pkg[python] (= 0.6c1)

CompileScript: 
  python%type_raw[python] setup.py build
  python%type_raw[python] setup.py build_ext -i
  # Needs pydoctor
  # make doc

InstallScript: 
  python%type_raw[python] setup.py install --prefix %p --root %d
  mkdir -p %i/share/doc
  cp -r docs %i/share/doc/%n

DocFiles: AUTHORS COPYING NEWS README

Description: Python implementation of Git
DescDetail: 
Dulwich is a pure-Python implementation of the Git file formats
and protocols.

The project is named after the village in which Mr. and Mrs. Git live
in the Monty Python sketch.

License: GPL
Homepage: http://samba.org/~jelmer/dulwich/
Maintainer: Brendan Cully bren...@finkproject.org



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel git.info,1.43,1.44

2010-01-18 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv14420

Modified Files:
git.info 
Log Message:
New upstream release git 1.6.6

Index: git.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/git.info,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- git.info25 Nov 2009 12:36:11 -  1.43
+++ git.info18 Jan 2010 20:58:39 -  1.44
@@ -1,21 +1,20 @@
 Package: git
-Version: 1.6.5.2
-Revision: 102
-Distribution: 10.5, 10.6
+Version: 1.6.6
+Revision: 1
 # git-svn requires error-pm and term-readkey-pm
 Depends: 
-  libcurl4-shlibs (= 7.18.2-1), expat1-shlibs, libiconv, perl5100-core,
+  libcurl4-shlibs (= 7.16.1), expat1-shlibs, libiconv, perl5100-core,
   error-pm, term-readkey-pm5100
 
-BuildDepends: system-openssl-dev, libcurl4 (= 7.18.2-1), libssh2.1, expat1, 
libiconv-dev, fink (= 0.24.12)
+BuildDepends: system-openssl-dev, libcurl4 (= 7.16.1), libssh2.1, expat1, 
libiconv-dev, fink (= 0.24.12)
 Replaces: git-core
 Source: mirror:custom:/software/scm/%n/%n-%v.tar.bz2
-Source-MD5: 99708c449b23433136dbdfa38bd16d80
+Source-MD5: 25e4bcdc528b3ffadc6e59908a513881
 Source2: mirror:custom:/software/scm/%n/%n-htmldocs-%v.tar.bz2
-Source2-MD5: 0cfc601419036ee99e632fe320c139cb
+Source2-MD5: 17c70de7318db9d8fdf4c2bee7a18d4e
 Source2ExtractDir: doc
 Source3: mirror:custom:/software/scm/%n/%n-manpages-%v.tar.bz2
-Source3-MD5: e4c20bd92b7ec187a421c045ae99978a
+Source3-MD5: 2f31c767576fa693b5b45244a022fdd3
 
 PatchFile: %n.patch
 PatchFile-MD5: b727c628ff90e9119e896871cdccb704


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel git.info,1.44,1.45

2010-01-18 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv16718

Modified Files:
git.info 
Log Message:
Restore distribution fields added underneath me

Index: git.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/git.info,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- git.info18 Jan 2010 20:58:39 -  1.44
+++ git.info18 Jan 2010 23:47:46 -  1.45
@@ -1,12 +1,13 @@
 Package: git
 Version: 1.6.6
-Revision: 1
+Revision: 2
+Distribution: 10.5, 10.6
 # git-svn requires error-pm and term-readkey-pm
 Depends: 
-  libcurl4-shlibs (= 7.16.1), expat1-shlibs, libiconv, perl5100-core,
+  libcurl4-shlibs (= 7.18.2-1), expat1-shlibs, libiconv, perl5100-core,
   error-pm, term-readkey-pm5100
 
-BuildDepends: system-openssl-dev, libcurl4 (= 7.16.1), libssh2.1, expat1, 
libiconv-dev, fink (= 0.24.12)
+BuildDepends: system-openssl-dev, libcurl4 (= 7.18.2-1), libssh2.1, expat1, 
libiconv-dev, fink (= 0.24.12)
 Replaces: git-core
 Source: mirror:custom:/software/scm/%n/%n-%v.tar.bz2
 Source-MD5: 25e4bcdc528b3ffadc6e59908a513881
@@ -24,7 +25,7 @@
 
 CompileScript: NO_FINK=1 NO_DARWIN_PORTS=1 make TCLTK_PATH=/usr/bin/wish 
prefix=%p
 InstallScript: 
-  sed -i.bak -e '1s,.*,#!/usr/bin/env perl5.8.8,' git-svn
+  sed -i.bak -e '1s,.*,#!/usr/bin/env perl5.10.0,' git-svn
   NO_FINK=1 NO_DARWIN_PORTS=1 make DESTDIR=%d prefix=%p install
   mkdir -p %i/share/man %i/share/doc
   cp -R ../man* %i/share/man


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods altgraph-py.info, 1.4, 1.5

2009-12-13 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28728

Modified Files:
altgraph-py.info 
Log Message:
Add altgraph-py 2.6 variant

Index: altgraph-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods/altgraph-py.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- altgraph-py.info23 Aug 2009 04:25:36 -  1.4
+++ altgraph-py.info14 Dec 2009 05:16:28 -  1.5
@@ -3,7 +3,7 @@
 Version: 0.6.7
 Revision: 2
 Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
-Type: python (2.4 2.5)
+Type: python (2.4 2.5 2.6)
 Source: 
http://cheeseshop.python.org/packages/source/a/altgraph/altgraph-%v.tar.gz
 Source-MD5: ad162ff5fbe586e08541139a202e0474
 Depends: python%type_pkg[python], setuptools-py%type_pkg[python] (= 0.6c1)
@@ -21,5 +21,5 @@
 
 License: BSD
 Homepage: http://undefined.org/python/#altgraph
-Maintainer: Brendan Cully bcu...@users.sourceforge.net
+Maintainer: Brendan Cully bren...@finkproject.org
 


--
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/crypto/finkinfo paramiko-py.info,1.11,1.12

2009-12-13 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv30453

Modified Files:
paramiko-py.info 
Log Message:
New upstream release; py26 variant added

Index: paramiko-py.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo/paramiko-py.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- paramiko-py.info23 Aug 2009 04:25:35 -  1.11
+++ paramiko-py.info14 Dec 2009 05:21:17 -  1.12
@@ -1,11 +1,11 @@
 Info2: 
 Package: paramiko-py%type_pkg[python]
-Version: 1.7.4
+Version: 1.7.6
 Revision: 1
-Type: python (2.3 2.4 2.5)
+Type: python (2.3 2.4 2.5 2.6)
 Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
 Source: http://www.lag.net/paramiko/download/paramiko-%v.zip
-Source-MD5: cea5c1d8c2aa9f4fb298a89fa3468807
+Source-MD5: 66c7328ddd72932f445a69e3d7ad5a1d
 PatchScript: 
 #!/bin/sh -ev
 for file in demos/*.py


--
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel codeville-py.info, 1.7, 1.8

2009-12-13 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv32042

Modified Files:
codeville-py.info 
Log Message:
Add 2.6 variant

Index: codeville-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/codeville-py.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- codeville-py.info   23 Aug 2009 04:25:35 -  1.7
+++ codeville-py.info   14 Dec 2009 05:26:28 -  1.8
@@ -3,7 +3,7 @@
 Version: 0.1.16
 Revision: 2
 Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
-Type: python (2.3 2.4 2.5)
+Type: python (2.3 2.4 2.5 2.6)
 # Previous versions installed unversioned scripts
 Conflicts: codeville-py23 ( 0.1.16-2), codeville-py24 ( 0.1.16-2)
 Replaces: codeville-py23 ( 0.1.16-2), codeville-py24 ( 0.1.16-2)


--
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods bdist-mpkg-py.info, 1.9, 1.10

2009-12-13 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv1812

Modified Files:
bdist-mpkg-py.info 
Log Message:
New upstream release; add py26 variant

Index: bdist-mpkg-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods/bdist-mpkg-py.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- bdist-mpkg-py.info  23 Aug 2009 04:25:36 -  1.9
+++ bdist-mpkg-py.info  14 Dec 2009 05:33:17 -  1.10
@@ -1,11 +1,11 @@
 Info2: 
 Package: bdist-mpkg-py%type_pkg[python]
-Version: 0.4.3
+Version: 0.4.4
 Revision: 1
 Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
-Type: python (2.4 2.5)
+Type: python (2.4 2.5 2.6)
 Source: 
http://cheeseshop.python.org/packages/source/b/bdist_mpkg/bdist_mpkg-%v.tar.gz
-Source-MD5: 295fca4ad156e65d74521be3c80d2ed0
+Source-MD5: 848dfd00fda59092dea4e97f4a711797
 Depends: python%type_pkg[python], setuptools-py%type_pkg[python] (= 0.6c1)
 
 CompileScript: python%type_raw[python] setup.py build
@@ -34,5 +34,5 @@
 
 License: BSD
 Homepage: http://undefined.org/python/#bdist_mpkg
-Maintainer: Brendan Cully bcu...@users.sourceforge.net
+Maintainer: Brendan Cully bren...@finkproject.org
 


--
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/net shout-py.info,1.7,1.8

2009-12-13 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv13869

Modified Files:
shout-py.info 
Log Message:
New upstream release; added py26 variant

Index: shout-py.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/shout-py.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- shout-py.info   23 Aug 2009 04:25:36 -  1.7
+++ shout-py.info   14 Dec 2009 06:18:13 -  1.8
@@ -1,11 +1,11 @@
 Info2: 
 Package: shout-py%type_pkg[python]
-Version: 0.2
-Revision: 2
+Version: 0.2.1
+Revision: 1
 Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
-Type: python (2.3 2.4 2.5)
+Type: python (2.3 2.4 2.5 2.6)
 Source: http://downloads.xiph.org/releases/libshout/shout-python-%v.tar.gz
-Source-MD5: 80bec97a1462c2d2a9282ba8a7c18336
+Source-MD5: 864cfecc2474590470fcce750416b7d3
 Depends: 
   libshout4-shlibs,
   python%type_pkg[python] | python%type_pkg[python]-nox
@@ -29,5 +29,5 @@
 Description: Python bindings for libshout 2
 Homepage: http://icecast.org/
 License: LGPL
-Maintainer: Brendan Cully bcu...@users.sourceforge.net
+Maintainer: Brendan Cully bren...@finkproject.org
 


--
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel tailor-py.info, 1.11, 1.12

2009-12-13 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv14862

Modified Files:
tailor-py.info 
Log Message:
New upstream release; added py26 variant

Index: tailor-py.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/tailor-py.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- tailor-py.info  23 Aug 2009 04:25:35 -  1.11
+++ tailor-py.info  14 Dec 2009 06:24:04 -  1.12
@@ -1,13 +1,13 @@
 Info2: 
 Package: tailor-py%type_pkg[python]
-Version: 0.9.27
+Version: 0.9.35
 Revision: 1
 Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
-Type: python (2.3 2.4 2.5)
+Type: python (2.3 2.4 2.5 2.6)
 Conflicts: tailor, tailor-py23 ( 0.9.26-1), tailor-py24 ( 0.9.26-1)
 Replaces: tailor, tailor-py23 ( 0.9.26-1), tailor-py24 ( 0.9.26-1)
 Source: http://darcs.arstecnica.it/tailor-%v.tar.gz
-Source-MD5: bca61f2c779b49a9f074653f8b1fa2c6
+Source-MD5: 58a6bc1c1d922b0b1e4579c6440448d1
 BuildDepends: python%type_pkg[python]
 CompileScript: 
   chmod +x tailor
@@ -28,7 +28,7 @@
 update-alternatives --remove tailor %p/bin/tailor-py%type_pkg[python]
   fi
 
-DocFiles: README README.html
+DocFiles: README.rst README.html
 Description: Multiformat source repository synchronizer
 Suggests: 
   cvs, darcs, monotone, svn, svn-client, mercurial-py%type_pkg[python],
@@ -45,6 +45,6 @@
 repositories you intend to synchronise.
 
 License: GPL
-Homepage: http://www.darcs.net/DarcsWiki/Tailor
-Maintainer: Brendan Cully bcu...@users.sourceforge.net
+Homepage: http://progetti.arstecnica.it/tailor/wiki
+Maintainer: Brendan Cully bren...@finkproject.org
 


--
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods modulegraph-py.info, 1.6, 1.7

2009-12-13 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv15529

Modified Files:
modulegraph-py.info 
Log Message:
New upstream release; added py26 variant

Index: modulegraph-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods/modulegraph-py.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- modulegraph-py.info 23 Aug 2009 04:25:36 -  1.6
+++ modulegraph-py.info 14 Dec 2009 06:28:44 -  1.7
@@ -1,11 +1,11 @@
 Info2: 
 Package: modulegraph-py%type_pkg[python]
-Version: 0.7
-Revision: 2
+Version: 0.7.3
+Revision: 1
 Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
-Type: python (2.3 2.4 2.5)
+Type: python (2.3 2.4 2.5 2.6)
 Source: 
http://cheeseshop.python.org/packages/source/m/modulegraph/modulegraph-%v.tar.gz
-Source-MD5: b544de29dd4ac357b6a06ab6a87ffbd9
+Source-MD5: ba3bf16397001f4f6997a7f5c102542f
 Depends: 
   python%type_pkg[python], setuptools-py%type_pkg[python] (= 0.6c1),
   altgraph-py%type_pkg[python]
@@ -24,5 +24,5 @@
 
 License: BSD
 Homepage: http://undefined.org/python/#modulegraph
-Maintainer: Brendan Cully bcu...@users.sourceforge.net
+Maintainer: Brendan Cully bren...@finkproject.org
 


--
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods macholib-py.info, 1.6, 1.7

2009-12-13 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv15895

Modified Files:
macholib-py.info 
Log Message:
New upstream release; added py26 variant

Index: macholib-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods/macholib-py.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- macholib-py.info23 Aug 2009 04:25:36 -  1.6
+++ macholib-py.info14 Dec 2009 06:30:50 -  1.7
@@ -1,11 +1,11 @@
 Info2: 
 Package: macholib-py%type_pkg[python]
-Version: 1.1
-Revision: 2
+Version: 1.2.1
+Revision: 1
 Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
-Type: python (2.3 2.4 2.5)
+Type: python (2.3 2.4 2.5 2.6)
 Source: 
http://cheeseshop.python.org/packages/source/m/macholib/macholib-%v.tar.gz
-Source-MD5: 5e9f46b045a94070347902375edb0074
+Source-MD5: 7f7f44e62a057d19b92e813fb2f3d05b
 Depends: 
   python%type_pkg[python], setuptools-py%type_pkg[python] (= 0.6c1),
   altgraph-py%type_pkg[python]
@@ -40,5 +40,5 @@
 
 License: BSD
 Homepage: http://undefined.org/python/#macholib
-Maintainer: Brendan Cully bcu...@users.sourceforge.net
+Maintainer: Brendan Cully bren...@finkproject.org
 


--
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods py2app-py.info, 1.9, 1.10

2009-12-13 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv16887

Modified Files:
py2app-py.info 
Log Message:
New upstream release; added py26 variant

Index: py2app-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods/py2app-py.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- py2app-py.info  23 Aug 2009 04:25:36 -  1.9
+++ py2app-py.info  14 Dec 2009 06:37:07 -  1.10
@@ -1,11 +1,11 @@
 Info2: 
 Package: py2app-py%type_pkg[python]
-Version: 0.3.5
-Revision: 2
+Version: 0.4.3
+Revision: 1
 Distribution: (%type_pkg[python] = 23) 10.4, (%type_pkg[python] = 24) 10.4, 
(%type_pkg[python] = 24) 10.5
-Type: python (2.3 2.4 2.5)
+Type: python (2.3 2.4 2.5 2.6)
 Source: http://cheeseshop.python.org/packages/source/p/py2app/py2app-%v.tar.gz
-Source-MD5: 2ca0f65355b7e7ba3eddf5814b2ecd73
+Source-MD5: 45cc8ebc170a41b03a2a4c5feac75b1f
 BuildDepends: fink (= 0.24.12-1)
 Depends: 
   python%type_pkg[python], setuptools-py%type_pkg[python] (= 0.6c1),
@@ -43,6 +43,6 @@
 Windows.
 
 License: BSD
-Homepage: http://undefined.org/python/py2app.html
-Maintainer: Brendan Cully bcu...@users.sourceforge.net
+Homepage: http://undefined.org/python/#py2app
+Maintainer: Brendan Cully bren...@finkproject.org
 


--
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/languages ghc-6.10.patch, 1.1, 1.2 ghc-x86_64.info, 1.1, 1.2

2009-12-10 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv4302

Modified Files:
ghc-6.10.patch ghc-x86_64.info 
Log Message:
Updated ghc patch from Barney Stratford

Index: ghc-6.10.patch
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ghc-6.10.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ghc-6.10.patch  15 Nov 2009 06:24:15 -  1.1
+++ ghc-6.10.patch  10 Dec 2009 08:18:15 -  1.2
@@ -1,3 +1,4 @@
+ghc/ghc-bin.cabal.in: We need to use page zero.
 compiler/main/DynFlags.hs: Don't redefine __PIC__
 libraries/Makefile: Tell Cabal to use @FINKPREFIX@/include and 
@FINKPREFIX@/lib.
 rts/Linker.c: Use mmap, and add missing relocation types
@@ -5,10 +6,30 @@
 configure: Replace hardcoded /sw with @FINKPREFIX@
 ghc.1, hp2ps.1: man pages borrowed from the Debian package
 
+diff -Naur a/ghc/ghc-bin.cabal.in b/ghc/ghc-bin.cabal.in 
+--- a/ghc/ghc-bin.cabal.in
 b/ghc/ghc-bin.cabal.in
+@@ -59,4 +59,4 @@
+ FlexibleInstances
+ 
+ Extensions: CPP, PatternGuards, MagicHash
+-
++ld-options: -pagezero_size 0x1000
 diff -Naur a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs 
 --- a/compiler/main/DynFlags.hs
 +++ b/compiler/main/DynFlags.hs
-@@ -2172,7 +2172,7 @@
+@@ -577,9 +577,7 @@
+ hpcDir  = .hpc,
+ 
+ opt_L   = [],
+-opt_P   = (if opt_PIC
+-   then [-D__PIC__]
+-   else []),
++opt_P   = [],
+ opt_F   = [],
+ opt_c   = [],
+ opt_a   = [],
+@@ -2172,7 +2170,7 @@
-- in dynamic libraries.
  
  | opt_PIC
@@ -64,69 +85,7 @@
  #define USE_MMAP
  #include fcntl.h
  #include sys/mman.h
-@@ -1303,16 +1303,9 @@
-pagesize = getpagesize();
-size = ROUND_UP(bytes, pagesize);
- 
--#if defined(x86_64_HOST_ARCH)
--mmap_again:
--
--   if (mmap_32bit_base != 0) {
--   map_addr = mmap_32bit_base;
--   }
--#endif
- 
-result = mmap(map_addr, size, PROT_EXEC|PROT_READ|PROT_WRITE,
--  MAP_PRIVATE|TRY_MAP_32BIT|fixed|flags, fd, 0);
-+  MAP_PRIVATE|fixed|flags, fd, 0);
- 
-if (result == MAP_FAILED) {
-sysErrorBelch(mmap %lu bytes at %p,(lnat)size,map_addr);
-@@ -1320,43 +1313,6 @@
-stg_exit(EXIT_FAILURE);
-}
-
--#if defined(x86_64_HOST_ARCH)
--   if (mmap_32bit_base != 0) {
--   if (result == map_addr) {
--   mmap_32bit_base = map_addr + size;
--   } else {
--   if ((W_)result  0x8000) {
--   // oops, we were given memory over 2Gb
--#if defined(freebsd_HOST_OS)
--   // Some platforms require MAP_FIXED.  This is normally
--   // a bad idea, because MAP_FIXED will overwrite
--   // existing mappings.
--   munmap(result,size);
--   fixed = MAP_FIXED;
--   goto mmap_again;
--#else
--   barf(loadObj: failed to mmap() memory below 2Gb; asked for 
%lu bytes at %p.  Try specifying an address with +RTS -xmaddr -RTS, size, 
map_addr, result);
--#endif
--   } else {
--   // hmm, we were given memory somewhere else, but it's
--   // still under 2Gb so we can use it.  Next time, ask
--   // for memory right after the place we just got some
--   mmap_32bit_base = (void*)result + size;
--   }
--   }
--   } else {
--   if ((W_)result  0x8000) {
--   // oops, we were given memory over 2Gb
--   // ... try allocating memory somewhere else?;
--   debugTrace(DEBUG_linker,MAP_32BIT didn't work; gave us %lu bytes 
at 0x%p, bytes, result);
--   munmap(result, size);
--   
--   // Set a base address and try again... (guess: 1Gb)
--   mmap_32bit_base = (void*)0x4000;
--   goto mmap_again;
--   }
--   }
--#endif
- 
-return result;
- }
-@@ -4159,6 +4115,9 @@
+@@ -4159,6 +4159,9 @@
  thing += value;
  break;
  case X86_64_RELOC_SIGNED:
@@ -136,6 +95,26 @@
  ASSERT(reloc-r_pcrel);
  thing += value - baseValue;
  break;
+@@ -4224,7 +4227,8 @@
+   || scat-r_type == PPC_RELOC_HI16_SECTDIFF
+   || scat-r_type == PPC_RELOC_HA16_SECTDIFF)
+ #else
+-else if(scat-r_type == GENERIC_RELOC_SECTDIFF)
++else if(scat-r_type == GENERIC_RELOC_SECTDIFF
++|| scat-r_type == GENERIC_RELOC_LOCAL_SECTDIFF)
+ #endif
+   {
+   struct scattered_relocation_info *pair =
+@@ -4287,7 +4291,8 @@
+ || 

[cvs] dists/10.4/unstable/main/finkinfo/libs fuse.info,1.29,1.30

2009-11-28 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv12721

Modified Files:
fuse.info 
Log Message:
New upstream release

Index: fuse.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/fuse.info,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- fuse.info   1 Oct 2009 16:10:25 -   1.29
+++ fuse.info   29 Nov 2009 06:06:42 -  1.30
@@ -1,8 +1,8 @@
 Package: fuse
-Version: 2.0
-Revision: 3
+Version: 2.0.3.2
+Revision: 1
 Source: http://dev.kublai.com/macfuse-%v.tar.bz2
-Source-MD5: 6a77248264d345a46f88ffe8465ce0f3
+Source-MD5: 16ade07b11ac60d5f86fa2faf71d1322
 
 # Broken with xcode 2.2, reported working with 2.4.0
 BuildDepends: gcc4.0 (= 4.0.1-5363)
@@ -31,6 +31,7 @@
   MACOSVER=10.5
 fi
 FUSEVER=2.7.3
+# even on 64-bit, build kext as 32-bit. 64-bit kext is not yet ready
 if test %m = powerpc; then ARCHS=ppc; else ARCHS=i386; fi
 cd core/$MACOSVER/fusefs
 for target in fusefs mount_fusefs load_fusefs fusefs.fs


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/languages ocaml.info, 1.20, 1.21

2009-11-27 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv21926

Modified Files:
ocaml.info 
Log Message:
Add monipol's ocaml fix for powerpc

Index: ocaml.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml.info,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- ocaml.info  25 Nov 2009 22:36:38 -  1.20
+++ ocaml.info  27 Nov 2009 21:03:24 -  1.21
@@ -1,6 +1,6 @@
 Package: ocaml
 Version: 3.11.1
-Revision: 2
+Revision: 3
 Distribution: 10.4, 10.5
 Description: Latest implementation of Caml dialect of ML
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (= 5.4-20041023-1006), fink (= 
0.24.12)
@@ -24,6 +24,7 @@
  /usr/bin/sed -i .bak -e 's,sed,/usr/bin/sed,' ocamldoc/remove_DEBUG
  # from monipol, supposedly fixes unison until ocaml 3.11.2 is out
  perl -pi -e 's/if macosx  is_generic_function fundecl.fun_name/if macosx  
not !Clflags.output_c_object  is_generic_function fundecl.fun_name/' 
asmcomp/i386/emit.mlp asmcomp/amd64/emit.mlp
+ perl -pi -e 's/if Config.system = rhapsody  is_generic_function 
fundecl.fun_name/if Config.system = rhapsody  not !Clflags.output_c_object 
 is_generic_function fundecl.fun_name/' asmcomp/power/emit.mlp
  gzip -d ../infoman/ocaml*.gz
  cd ..  patch -p1  %{PatchFile}
 


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs tokyocabinet9.info, NONE, 1.1 tokyocabinet.info, 1.3, 1.4

2009-11-25 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv12547

Modified Files:
tokyocabinet.info 
Added Files:
tokyocabinet9.info 
Log Message:
New upstream release tokyocabinet 1.4.39

--- NEW FILE: tokyocabinet9.info ---
Package: tokyocabinet9
Version: 1.4.39
Revision: 1
Source: http://1978th.net/tokyocabinet/tokyocabinet-%v.tar.gz
Source-MD5: 0cc77e1eeea1e767d6ffbfd9a640602a
BuildDependsOnly: True
BuildDepends: bzip2-dev
Depends: %n-shlibs (= %v-%r)
Conflicts: tokyocabinet
Replaces: tokyocabinet

Patch: tokyocabinet.patch
ConfigureParams: --mandir=%p/share/man --datadir=%p/share/doc/%n
InstallScript: make DESTDIR=%d install
DocFiles: README

SplitOff: 
  Package: %N-shlibs
  Shlibs: %p/lib/libtokyocabinet.9.dylib 9.0.0 %n (= 1.4.39-1)
  Depends: bzip2-shlibs
  Files: lib/libtokyocabinet.9.*
  DocFiles: COPYING

SplitOff2: 
  Package: %N-bin
  Depends: %N-shlibs
  Files: bin share/man/man1
  DocFiles: COPYING
  Conflicts: tokyocabinet-bin
  Replaces: tokyocabinet-bin


Description: Tokyo Cabinet database manager
DescDetail: 
Tokyo Cabinet is the successor to qdbm, a fast and compact implementation
of b+ trees, hashes, and fixed-length arrays, similar in spirit to GDBM
or Berkeley DB

Homepage: http://1978th.net/tokyocabinet/
License: LGPL
Maintainer: Brendan Cully bren...@finkproject.org

Index: tokyocabinet.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/tokyocabinet.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- tokyocabinet.info   12 Jan 2009 06:02:40 -  1.3
+++ tokyocabinet.info   25 Nov 2009 19:54:04 -  1.4
@@ -4,11 +4,12 @@
 Source: http://tokyocabinet.sourceforge.net/%n-%v.tar.gz
 Source-MD5: 1bf61d4ccd5124cf868ccbcbe0b89d58
 BuildDependsOnly: True
-BuildDepends: libiconv-dev, bzip2-dev, fink (= 0.24.12-1)
+BuildDepends: libiconv-dev, bzip2-dev
 Depends: %n-shlibs (= %v-%r)
+Conflicts: tokyocabinet9
+Replaces: tokyocabinet9
 
-PatchFile: %n.patch
-PatchFile-MD5: 78e328976e81c2c24a76e2541772fa8b
+Patch: %n.patch
 ConfigureParams: --mandir=%p/share/man --datadir=%p/share/doc/%n --enable-zlib 
--enable-iconv
 InstallScript: make DESTDIR=%d install
 DocFiles: README


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/net mutt.info,1.11,1.12

2009-11-25 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv15666

Modified Files:
mutt.info 
Log Message:
Depend on tokyocabinet9

Index: mutt.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/mutt.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- mutt.info   14 Jun 2009 23:06:00 -  1.11
+++ mutt.info   25 Nov 2009 22:25:05 -  1.12
@@ -1,16 +1,16 @@
 Package: mutt
 Version: 1.5.20
-Revision: 1
+Revision: 2
 Description: Sophisticated text-based mail user agent
 License: GPL
 Replaces: mutt-ssl ( %v-%r)
 BuildDepends: 
   libgettext3-dev, libiconv-dev, libncurses5, libncursesw5, cyrus-sasl2-dev,
-  libidn, tokyocabinet, system-openssl-dev
+  libidn, tokyocabinet9, system-openssl-dev
 
 Depends: 
   ncurses, libncurses5-shlibs, libncursesw5-shlibs, cyrus-sasl2-shlibs,
-  tokyocabinet-shlibs, libidn-shlibs
+  tokyocabinet9-shlibs, libidn-shlibs
 
 Source: ftp://ftp.mutt.org/%n/devel/%n-%v.tar.gz
 Source-MD5: 027cdd9959203de0c3c64149a7ee351c


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/languages ocaml-10.6.info, 1.2, 1.3

2009-11-25 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv15966

Modified Files:
ocaml-10.6.info 
Log Message:
From monipol, a patch that may fix unison build

Index: ocaml-10.6.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml-10.6.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ocaml-10.6.info 29 Sep 2009 17:47:56 -  1.2
+++ ocaml-10.6.info 25 Nov 2009 22:26:31 -  1.3
@@ -1,6 +1,6 @@
 Package: ocaml
 Version: 3.11.1
-Revision: 2
+Revision: 3
 Distribution: 10.6
 Description: Latest implementation of Caml dialect of ML
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (= 5.4-20041023-1006), fink (= 
0.24.12)
@@ -22,6 +22,8 @@
 PatchScript: 
  # fink's sed (at least 4.2-1) chokes on accented characters here
  /usr/bin/sed -i .bak -e 's,sed,/usr/bin/sed,' ocamldoc/remove_DEBUG
+ # from monipol, supposedly fixes unison until ocaml 3.11.2 is out
+ perl -pi -e 's/if macosx  is_generic_function fundecl.fun_name/if macosx  
not !Clflags.output_c_object  is_generic_function fundecl.fun_name/' 
asmcomp/i386/emit.mlp asmcomp/amd64/emit.mlp
  gzip -d ../infoman/ocaml*.gz
  cd ..  patch -p1  %{PatchFile}
 


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/languages ocaml.info, 1.18, 1.19

2009-11-25 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv17879

Modified Files:
ocaml.info 
Log Message:
From monipol, a patch that may fix unison build

Index: ocaml.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml.info,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- ocaml.info  6 Sep 2009 16:45:21 -   1.18
+++ ocaml.info  25 Nov 2009 22:32:24 -  1.19
@@ -1,7 +1,6 @@
 Package: ocaml
 Version: 3.11.1
-Revision: 1
-Distribution: 10.4, 10.5
+Revision: 2
 Description: Latest implementation of Caml dialect of ML
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (= 5.4-20041023-1006), fink (= 
0.24.12)
 Depends: tcltk, x11, libncurses5-shlibs (= 5.4-20041023-1006)
@@ -22,6 +21,8 @@
 PatchScript: 
  # fink's sed (at least 4.2-1) chokes on accented characters here
  /usr/bin/sed -i .bak -e 's,sed,/usr/bin/sed,' ocamldoc/remove_DEBUG
+ # from monipol, supposedly fixes unison until ocaml 3.11.2 is out
+ perl -pi -e 's/if macosx  is_generic_function fundecl.fun_name/if macosx  
not !Clflags.output_c_object  is_generic_function fundecl.fun_name/' 
asmcomp/i386/emit.mlp asmcomp/amd64/emit.mlp
  gzip -d ../infoman/ocaml*.gz
  cd ..  patch -p1  %{PatchFile}
 


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/languages ocaml.info, 1.19, 1.20

2009-11-25 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv19035

Modified Files:
ocaml.info 
Log Message:
Re-add clobbered distribution field

Index: ocaml.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml.info,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- ocaml.info  25 Nov 2009 22:32:24 -  1.19
+++ ocaml.info  25 Nov 2009 22:36:38 -  1.20
@@ -1,6 +1,7 @@
 Package: ocaml
 Version: 3.11.1
 Revision: 2
+Distribution: 10.4, 10.5
 Description: Latest implementation of Caml dialect of ML
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (= 5.4-20041023-1006), fink (= 
0.24.12)
 Depends: tcltk, x11, libncurses5-shlibs (= 5.4-20041023-1006)


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel git-10.4.info,NONE,1.1

2009-11-24 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv30625

Added Files:
git-10.4.info 
Log Message:
Add 10.4-specific git that depends on perl 588

--- NEW FILE: git-10.4.info ---
Package: git
Version: 1.6.5.2
Revision: 1
Distribution: 10.4
# git-svn requires error-pm and term-readkey-pm
Depends: 
  libcurl4-shlibs (= 7.16.1), expat1-shlibs, libiconv, perl588-core,
  error-pm, term-readkey-pm588

BuildDepends: system-openssl-dev, libcurl4 (= 7.16.1), libssh2.1, expat1, 
libiconv-dev, fink (= 0.24.12)
Replaces: git-core
Source: mirror:custom:/software/scm/%n/%n-%v.tar.bz2
Source-MD5: 99708c449b23433136dbdfa38bd16d80
Source2: mirror:custom:/software/scm/%n/%n-htmldocs-%v.tar.bz2
Source2-MD5: 0cfc601419036ee99e632fe320c139cb
Source2ExtractDir: doc
Source3: mirror:custom:/software/scm/%n/%n-manpages-%v.tar.bz2
Source3-MD5: e4c20bd92b7ec187a421c045ae99978a

PatchFile: %n.patch
PatchFile-MD5: b727c628ff90e9119e896871cdccb704
PatchScript: 
  %{default_script}
  sed -i.bak -e 's|%%p|%p|g' Makefile perl/Makefile

CompileScript: NO_FINK=1 NO_DARWIN_PORTS=1 make TCLTK_PATH=/usr/bin/wish 
prefix=%p
InstallScript: 
  sed -i.bak -e '1s,.*,#!/usr/bin/env perl5.8.8,' git-svn
  NO_FINK=1 NO_DARWIN_PORTS=1 make DESTDIR=%d prefix=%p install
  mkdir -p %i/share/man %i/share/doc
  cp -R ../man* %i/share/man
  cp -R ../doc %i/share/doc/%n
  mkdir -p %i/share/emacs/site-lisp
  cp contrib/emacs/*.el %i/share/emacs/site-lisp

UpdatePOD: true
DocFiles: COPYING README

SplitOff: 
  Package: git-cvsimport
  Description: Tool to import a CVS repository into git
  Depends: %N (=%v-%r), cvsps
  Files: 
lib/git/%n
share/doc/%N/%n.html
share/man/man1/%n.1
  
  DocFiles: COPYING


SplitOff2: 
  Package: git-archimport
  Description: Tool to import an arch repository into git
  # Should probably depend on arch when that gets packaged
  Depends: %N (=%v-%r), string-shellquote-pm
  Files: 
lib/git/%n
share/doc/%N/%n.html
share/man/man1/%n.1
  
  DocFiles: COPYING


SplitOff3: 
  Package: git-svn
  Description: Tool to let git use subversion repositories
  Depends: %N (=%v-%r), svn-swig-pm588, libwww-pm588
  Files: 
lib/git/%n
share/doc/%N/%n.html
share/man/man1/%n.1
  
  DocFiles: COPYING


Description: Distributed version control system
DescDetail: 
Git is an open source, distributed version control system designed to
handle everything from small to very large projects with speed and
efficiency.

Every Git clone is a full-fledged repository with complete history and
full revision tracking capabilities, not dependent on network access or
a central server. Branching and merging are fast and easy to do.

License: GPL
Homepage: http://git-scm.com/
Maintainer: Brendan Cully bren...@finkproject.org
CustomMirror: 
Primary: http://www.kernel.org/pub
asi-CN: http://www.cn.kernel.org/pub
asi-IN: http://www.in.kernel.org/pub
asi-JP: http://www.jp.kernel.org/pub
asi-KR: http://www.kr.kernel.org/pub
asi-MY: http://www.my.kernel.org/pub
asi-SG: http://www.sg.kernel.org/pub
asi-TW: http://www.tw.kernel.org/pub
aus-AU: http://www.au.kernel.org/pub
aus-NZ: http://www.nz.kernel.org/pub
eur-BA: http://www.ba.kernel.org/pub
eur-BE: http://www.be.kernel.org/pub
eur-BG: http://www.bg.kernel.org/pub
eur-CH: http://www.ch.kernel.org/pub
eur-CZ: http://www.cz.kernel.org/pub
eur-DE: http://www.de.kernel.org/pub
eur-DK: http://www.dk.kernel.org/pub
eur-EE: http://www.ee.kernel.org/pub
eur-ES: http://www.es.kernel.org/pub
eur-FI: http://www.fi.kernel.org/pub
eur-FR: http://www.fr.kernel.org/pub
eur-GR: http://www.gr.kernel.org/pub
eur-HR: http://www.hr.kernel.org/pub
eur-HU: http://www.hu.kernel.org/pub
eur-IE: http://www.ie.kernel.org/pub
eur-IL: http://www.il.kernel.org/pub
eur-IS: http://www.is.kernel.org/pub
eur-IT: http://www.it.kernel.org/pub
eur-LI: http://www.li.kernel.org/pub
eur-LT: http://www.lt.kernel.org/pub
eur-LU: http://www.lu.kernel.org/pub
eur-LV: http://www.lv.kernel.org/pub
eur-MD: http://www.md.kernel.org/pub
eur-MK: http://www.mk.kernel.org/pub
eur-NL: http://www.nl.kernel.org/pub
eur-NO: http://www.no.kernel.org/pub
eur-PL: http://www.pl.kernel.org/pub
eur-PT: http://www.pt.kernel.org/pub
eur-RO: http://www.ro.kernel.org/pub
eur-RU: http://www.ru.kernel.org/pub
eur-SE: http://www.se.kernel.org/pub
eur-SI: http://www.si.kernel.org/pub
eur-SK: http://www.sk.kernel.org/pub
eur-TR: ftp://ftp.tr.kernel.org/pub
eur-UA: http://www.ua.kernel.org/pub
eur-UK: http://www.uk.kernel.org/pub
nam-CA: http://www.ca.kernel.org/pub
nam-MX: http://www.mx.kernel.org/pub

[cvs] dists/10.4/unstable/main/finkinfo/languages ghc-6.10.patch, NONE, 1.1 ghc-x86_64.info, NONE, 1.1

2009-11-14 Thread Brendan Cully
 -p %i/share/man/man1
cp ghc.1 hp2ps.1 %i/share/man/man1

SplitOff: 
  Package: %N-prof
  Depends: %N (= %v-%r)
  Files: 
lib/%N-%v/*_p.a
  
  Description: Glasgow Haskell Compiler (Profiling Libraries)
  DescDetail: 
  This package contains additional profiling libraries. They are not
  needed for normal use.
  
  DocFiles: LICENSE

SplitOff2: 
  Package: %N-cabal
  Depends: %N (= %v-%r)
  Files: 
bin/cabal
etc
  
  Description: Glasgow Haskell Compiler (Cabal)
  DescDetail: 
  This package contains Cabal's command-line tool for installing packages
  into GHC.
  
  DocFiles: LICENSE

DocFiles: ANNOUNCE LICENSE README
Description: Glasgow Haskell Compiler
DescDetail: 
The Glasgow Haskell Compiler is a robust, fully-featured,  optimising
compiler and interactive environment for Haskell 98. GHC compiles
Haskell to either native code or C. It implements numerous experimental
language extensions to Haskell 98, for example: concurrency, a foreign
language interface, multi-parameter type classes, scoped type variables,
existential and universal quantification, unboxed types, exceptions,
weak pointers, and so on. GHC comes with a generational garbage collector,
and a space and time profiler.

DescPort: 
This port borrows heavily from Gregory Wright's DarwinPorts package.
X86_64 version by Barney Stratford.

Homepage: http://www.haskell.org/ghc/
License: BSD
Maintainer: Brendan Cully bren...@finkproject.org


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel git.info,1.41,1.42

2009-11-14 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13676

Modified Files:
git.info 
Log Message:
New upstream release git 1.6.5.2

Index: git.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/git.info,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- git.info27 Jun 2009 02:32:02 -  1.41
+++ git.info15 Nov 2009 07:10:31 -  1.42
@@ -1,20 +1,20 @@
 Package: git
-Version: 1.6.3.3
+Version: 1.6.5.2
 Revision: 1
 # git-svn requires error-pm and term-readkey-pm
 Depends: 
-  libcurl4-shlibs (= 7.16.1), expat1-shlibs, libiconv, perl588-core,
-  error-pm, term-readkey-pm588
+  libcurl4-shlibs (= 7.16.1), expat1-shlibs, libiconv, perl5100-core,
+  error-pm, term-readkey-pm5100
 
 BuildDepends: system-openssl-dev, libcurl4 (= 7.16.1), libssh2.1, expat1, 
libiconv-dev, fink (= 0.24.12)
 Replaces: git-core
 Source: mirror:custom:/software/scm/%n/%n-%v.tar.bz2
-Source-MD5: 91ae46ac01dadab1962beb064abd5b60
+Source-MD5: 99708c449b23433136dbdfa38bd16d80
 Source2: mirror:custom:/software/scm/%n/%n-htmldocs-%v.tar.bz2
-Source2-MD5: c43c1d0c7497e7a6eac843d5dc1ac876
+Source2-MD5: 0cfc601419036ee99e632fe320c139cb
 Source2ExtractDir: doc
 Source3: mirror:custom:/software/scm/%n/%n-manpages-%v.tar.bz2
-Source3-MD5: 36be16310d1e24f23c966c8e17a499d7
+Source3-MD5: e4c20bd92b7ec187a421c045ae99978a
 
 PatchFile: %n.patch
 PatchFile-MD5: b727c628ff90e9119e896871cdccb704
@@ -63,7 +63,7 @@
 SplitOff3: 
   Package: git-svn
   Description: Tool to let git use subversion repositories
-  Depends: %N (=%v-%r), svn-swig-pm588, libwww-pm588
+  Depends: %N (=%v-%r), svn-swig-pm5100, libwww-pm5100
   Files: 
 lib/git/%n
 share/doc/%N/%n.html


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs fuse.info,1.28,1.29

2009-10-01 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27781

Modified Files:
fuse.info 
Log Message:
Fix fuse build on 10.6

Index: fuse.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/fuse.info,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- fuse.info   10 Jan 2009 23:18:29 -  1.28
+++ fuse.info   1 Oct 2009 16:10:25 -   1.29
@@ -1,6 +1,6 @@
 Package: fuse
 Version: 2.0
-Revision: 2
+Revision: 3
 Source: http://dev.kublai.com/macfuse-%v.tar.bz2
 Source-MD5: 6a77248264d345a46f88ffe8465ce0f3
 
@@ -10,10 +10,13 @@
 PatchScript: 
 #!/bin/sh -ev
 MACOSVER=`/usr/bin/sw_vers | grep ProductVersion: | cut -f 2 | cut -d. -f1,2`
+if test $MACOSVER != 10.4; then
+  MACOSVER=10.5
+fi
 FUSEVER=2.7.3
 if test $MACOSVER = 10.4
 then
-   FSPFX=/System/Library/Filesystems/
+  FSPFX=/System/Library/Filesystems/
 else
   FSPFX=/Library/Filesystems/
 fi
@@ -24,6 +27,9 @@
 CompileScript: 
 #!/bin/sh -ev
 MACOSVER=`/usr/bin/sw_vers | grep ProductVersion: | cut -f 2 | cut -d. -f1,2`
+if test $MACOSVER != 10.4; then
+  MACOSVER=10.5
+fi
 FUSEVER=2.7.3
 if test %m = powerpc; then ARCHS=ppc; else ARCHS=i386; fi
 cd core/$MACOSVER/fusefs
@@ -39,6 +45,9 @@
 #!/bin/sh -ev
 # TODO: figure out how to install this in /System/Library/Filesystems
 MACOSVER=`/usr/bin/sw_vers | grep ProductVersion: | cut -f 2 | cut -d. -f1,2`
+if test $MACOSVER != 10.4; then
+  MACOSVER=10.5
+fi
 FUSEVER=2.7.3
 mkdir -p %i/lib/%n
 cp -R core/$MACOSVER/fusefs/build/Release/fusefs.fs %i/lib/%n


--
Come build with us! The BlackBerryreg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9#45;12, 2009. Register now#33;
http://p.sf.net/sfu/devconf
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/net urlview.info, 1.4, 1.5 urlview.patch, 1.2, 1.3

2009-09-29 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13282

Modified Files:
urlview.info urlview.patch 
Log Message:
Voodoo fix for 10.6/64 urlview segfault

Index: urlview.patch
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/urlview.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- urlview.patch   16 Dec 2006 23:36:03 -  1.2
+++ urlview.patch   29 Sep 2009 16:57:15 -  1.3
@@ -1,6 +1,9 @@
-diff -u -Naur urlview-0.9.orig/system.urlview urlview-0.9.fink/system.urlview
 urlview-0.9.orig/system.urlviewWed Dec 31 19:00:00 1969
-+++ urlview-0.9.fink/system.urlviewTue Jan 21 21:16:22 2003
+urlview patches
+
+diff --git a/system.urlview b/system.urlview
+new file mode 100644
+--- /dev/null
 b/system.urlview
 @@ -0,0 +1,10 @@
 +#
 +# Sample urlview(1) configuration file
@@ -12,9 +15,10 @@
 +# command to invoke for selected URL
 +COMMAND /etc/urlview/url_handler.sh
 +
-diff -u -Naur urlview-0.9.orig/url_handler.sh.fink 
urlview-0.9.fink/url_handler.sh.fink
 urlview-0.9.orig/url_handler.sh.fink   Wed Dec 31 19:00:00 1969
-+++ urlview-0.9.fink/url_handler.sh.fink   Tue Jan 21 21:11:28 2003
+diff --git a/url_handler.sh.fink b/url_handler.sh.fink
+new file mode 100644
+--- /dev/null
 b/url_handler.sh.fink
 @@ -0,0 +1,120 @@
 +#! /bin/bash
 +
@@ -136,9 +140,9 @@
 +
 +
 +
-diff -u -Naur urlview-0.9.orig/urlview.c urlview-0.9.fink/urlview.c
 urlview-0.9.orig/urlview.c Tue Jul  4 06:14:30 2000
-+++ urlview-0.9.fink/urlview.c Tue Jan 21 21:09:10 2003
+diff --git a/urlview.c b/urlview.c
+--- a/urlview.c
 b/urlview.c
 @@ -48,7 +48,7 @@
  
  #define DEFAULT_REGEXP (((https?|ftp|gopher)://|(mailto|file|news):)[^' 
\t\]+|(www|web|w3)\\.[-a-z0-9.]+)[^' \t.,;\\\):]
@@ -148,9 +152,24 @@
  
  #define OFFSET 2
  #define PAGELEN (LINES - 1 - OFFSET)
-diff -u -Naur urlview-0.9.orig/urlview.html urlview-0.9.fink/urlview.html
 urlview-0.9.orig/urlview.html  Wed Dec 31 19:00:00 1969
-+++ urlview-0.9.fink/urlview.html  Tue Jan 21 22:00:58 2003
+@@ -506,10 +506,11 @@
+ free (url[current]);
+ url[current] = strdup (buf);
+ endwin ();
++quote (scratch, sizeof (scratch), url[current]);
+ if (strstr (command, %s))
+-  snprintf (buf, sizeof (buf), command, quote (scratch, sizeof 
(scratch), url[current]));
++  snprintf (buf, sizeof (buf), command, scratch);
+ else
+-  snprintf (buf, sizeof (buf), %s %s, command, quote (scratch, 
sizeof (scratch), url[current]));
++  snprintf (buf, sizeof (buf), %s %s, command, scratch);
+ printf (Executing: %s...\n, buf);
+ fflush (stdout);
+ system (buf);
+diff --git a/urlview.html b/urlview.html
+new file mode 100644
+--- /dev/null
 b/urlview.html
 @@ -0,0 +1,90 @@
 +HTML
 +HEADTITLEurlview - URL extractor/launcher/TITLE/HEAD
@@ -242,9 +261,9 @@
 +Contents
 +/BODY
 +/HTML
-diff -u -Naur urlview-0.9.orig/urlview.man urlview-0.9.fink/urlview.man
 urlview-0.9.orig/urlview.man   Tue Jul  4 06:14:30 2000
-+++ urlview-0.9.fink/urlview.man   Tue Jan 21 21:09:34 2003
+diff --git a/urlview.man b/urlview.man
+--- a/urlview.man
 b/urlview.man
 @@ -34,7 +34,7 @@
  upon startup.  If this file
  doesn't exist, it will try to read a system wide file 
@@ -263,9 +282,9 @@
  system-wide urlview configuration file
  .IP ~/.urlview
  urlview configuration file
-diff -u -Naur urlview-0.9.orig/urlview.sgml urlview-0.9.fink/urlview.sgml
 urlview-0.9.orig/urlview.sgml  Tue Jul  4 06:14:30 2000
-+++ urlview-0.9.fink/urlview.sgml  Tue Jan 21 21:09:49 2003
+diff --git a/urlview.sgml b/urlview.sgml
+--- a/urlview.sgml
 b/urlview.sgml
 @@ -20,7 +20,7 @@
  p
  em/urlview/ attempts to read emtilde;/.urlview/em upon startup.

Index: urlview.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/urlview.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- urlview.info13 Jan 2007 21:19:04 -  1.4
+++ urlview.info29 Sep 2009 16:57:15 -  1.5
@@ -1,16 +1,16 @@
 Package: urlview
 Version: 0.9
-Revision: 1014
+Revision: 1015
 Description: Extracts URLs from text
 License: GPL
-Maintainer: Brendan Cully bcu...@users.sourceforge.net
+Maintainer: Brendan Cully bren...@finkproject.org
 BuildDepends: libncurses5 (= 5.4-20041023-1006), fink (= 0.24.12)
 Depends: ncurses (= 5.4-20041023-1006), libncurses5-shlibs (= 
5.4-20041023-1006)
 Suggests: mutt
 Source: ftp://ftp.mutt.org/mutt/contrib/urlview-%v.tar.gz
 Source-MD5: 67731f73e69297ffd106b65c8aebb2ab
 PatchFile: %n.patch
-PatchFile-MD5: d0be2d45b1e3805a59acb265b5999b1b
+PatchFile-MD5: ba3970ef9115703506c2a2c59ff3432a
 PatchScript: sed 's|@PREFIX@|%p|g' %{PatchFile

[cvs] dists/10.4/unstable/main/finkinfo/languages ocaml-10.6.info, 1.1, 1.2

2009-09-29 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18760

Modified Files:
ocaml-10.6.info 
Log Message:
ocaml: fix native compilation on 10.6/32

Index: ocaml-10.6.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml-10.6.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ocaml-10.6.info 6 Sep 2009 16:45:21 -   1.1
+++ ocaml-10.6.info 29 Sep 2009 17:47:56 -  1.2
@@ -1,6 +1,6 @@
 Package: ocaml
 Version: 3.11.1
-Revision: 1
+Revision: 2
 Distribution: 10.6
 Description: Latest implementation of Caml dialect of ML
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (= 5.4-20041023-1006), fink (= 
0.24.12)
@@ -29,8 +29,8 @@
 #! /bin/sh -ex
  if [ %m = x86_64 ]; then
  ./configure -tkdefs -I%p/include -tklibs -L%p/lib -prefix %p -mandir 
%p/share/man -cc gcc -m64 -isysroot /Developer/SDKs/MacOSX10.5.sdk 
-mmacosx-version-min=10.5
- else
- ./configure -tkdefs -I%p/include -tklibs -L%p/lib -prefix %p -mandir 
%p/share/man -as as -arch i386
+  else
+./configure -tkdefs -I%p/include -tklibs -L%p/lib -prefix %p -mandir 
%p/share/man -cc gcc -m32 -as as -arch i386 -aspp gcc -m32 -c
  fi
  make world opt opt.opt
 


--
Come build with us! The BlackBerryreg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9#45;12, 2009. Register now#33;
http://p.sf.net/sfu/devconf
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel bzr-py.info,1.28,1.29

2009-09-10 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9483

Modified Files:
bzr-py.info 
Log Message:
New upstream release 1.18

Index: bzr-py.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/bzr-py.info,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- bzr-py.info 22 Aug 2009 23:02:31 -  1.28
+++ bzr-py.info 11 Sep 2009 04:32:44 -  1.29
@@ -1,13 +1,12 @@
 Info2: 
 Package: bzr-py%type_pkg[python]
-Version: 1.15
+Version: 1.18
 Revision: 1
 Conflicts: bzr, bzr-py24-bin
 Replaces: bzr, bzr-py24-bin
-Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
 Type: python (2.4 2.5 2.6)
-Source: http://launchpadlibrarian.net/27074733/bzr-%v.tar.gz
-Source-MD5: 3309f74f1655d7971ca8cc3d4c9e9dfb
+Source: http://launchpadlibrarian.net/30544432/bzr-%v.tar.gz
+Source-MD5: efc91bada508089fbeb2d92973ecfe0a
 Depends: 
   python%type_pkg[python],
   (%type_pkg[python] = 24) celementtree-py24 | (%type_pkg[python] = 24) 
elementtree-py24


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel ocamlgraph.info, NONE, 1.1

2009-06-26 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3629

Added Files:
ocamlgraph.info 
Log Message:
New package: ocamlgraph 1.1

--- NEW FILE: ocamlgraph.info ---
Package: ocamlgraph
Version: 1.1
Revision: 1

Source: http://ocamlgraph.lri.fr/download/%n-%v.tar.gz
Source-MD5: 62cf4b0c273db2af1dbf4f8fac957bfc

Depends: ocaml, ocaml-findlib

InstallScript: 
  mkdir -p %i/lib/ocaml/site-lib
  OCAMLFIND_LDCONF=ignore OCAMLFIND_DESTDIR=%i/lib/ocaml/site-lib make 
install-findlib
  mkdir -p %i/share/doc/%n
  mv examples %i/share/doc/%n

DocFiles: LICENSE README FAQ CHANGES CREDITS

Description: Graph library for OCaml
License: LGPL
Homepage: http://ocamlgraph.lri.fr/
Maintainer: Brendan Cully bren...@finkproject.org


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


[cvs] dists/10.4/unstable/main/finkinfo/languages ocaml.info, 1.16, 1.17

2009-06-25 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv31530

Modified Files:
ocaml.info 
Log Message:
ocaml 3.11.1

Index: ocaml.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml.info,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- ocaml.info  10 Jun 2009 18:40:38 -  1.16
+++ ocaml.info  26 Jun 2009 03:39:06 -  1.17
@@ -1,6 +1,6 @@
 Package: ocaml
-Version: 3.11.0
-Revision: 2
+Version: 3.11.1
+Revision: 1
 Description: Latest implementation of Caml dialect of ML
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (= 5.4-20041023-1006), fink (= 
0.24.12)
 Depends: tcltk, x11, libncurses5-shlibs (= 5.4-20041023-1006)
@@ -12,7 +12,7 @@
 Source2: http://caml.inria.fr/pub/distrib/%n-3.11/%n-3.11-refman.pdf
 Source3: http://caml.inria.fr/pub/distrib/%n-3.11/%n-3.11-refman.html.tar.gz
 Source4: http://caml.inria.fr/pub/distrib/%n-3.11/%n-3.11-refman.info.tar.gz
-Source-MD5: 6ed1c3ed660a15408362242fa8fa4668
+Source-MD5: fe011781f37f6b41fe08e0706969a89e
 Source2-MD5: 798c2702f20bd3199726441771538a07
 Source3-MD5: bfb4ed960974159f4224014a979baf6d
 Source4-MD5: 50fc2a3e3a38db78bd03d169379155de


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


[cvs] dists/10.4/unstable/main/finkinfo/devel ocaml-pcre.info, NONE, 1.1

2009-06-25 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2411

Added Files:
ocaml-pcre.info 
Log Message:
New package: ocaml-pcre 6.0.1

--- NEW FILE: ocaml-pcre.info ---
Package: ocaml-pcre
Version: 6.0.1
Revision: 1

Source: http://hg.ocaml.info/release/pcre-ocaml/archive/release-%v.tar.bz2
Source-MD5: 9a52fe104be01af086a9ef68a9817e58
SourceRename: pcre-ocaml-release-%v.tar.bz2

Depends: ocaml, ocaml-findlib, pcre-shlibs
BuildDepends: pcre

CompileScript: 
  make


InstallScript: 
  mkdir -p %i/lib/ocaml/site-lib
  make install OCAMLFIND_INSTFLAGS=-ldconf ignore -destdir 
%i/lib/ocaml/site-lib

DocFiles: LICENSE README.txt

PostInstScript: 
  if ! grep -q %p/lib/ocaml/site-lib/pcre %p/lib/ocaml/ld.conf; then
echo %p/lib/ocaml/site-lib/pcre  %p/lib/ocaml/ld.conf
  fi

PreRmScript: 
  grep -v %p/lib/ocaml/site-lib/pcre %p/lib/ocaml/ld.conf  
%p/lib/ocaml/ld.conf.tmp
  mv %p/lib/ocaml/ld.conf.tmp %p/lib/ocaml/ld.conf


Description: Perl-style regular expressions for OCaml
License: LGPL
Homepage: http://www.ocaml.info/home/ocaml_sources.html#pcre-ocaml
Maintainer: Brendan Cully bren...@finkproject.org


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


[cvs] dists/10.4/unstable/main/finkinfo/devel ocaml-lib.info,1.3,1.4

2009-06-25 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4486

Modified Files:
ocaml-lib.info 
Log Message:
Adopt ocaml-lib, and make it work with ocamlfind

Index: ocaml-lib.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/ocaml-lib.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- ocaml-lib.info  20 Jan 2009 06:11:13 -  1.3
+++ ocaml-lib.info  26 Jun 2009 04:27:53 -  1.4
@@ -1,13 +1,13 @@
 Package: ocaml-lib
 Version: 1.5.1
-Revision: 1
+Revision: 2
+
 Source: http://ocaml-extlib.googlecode.com/files/extlib-%v.tar.gz
 SourceDirectory: extlib-%v
 Source-MD5: 8dc2944cbf63141347956bd353893d75
-License: OSI-Approved
-Maintainer: None fink-de...@lists.sourceforge.net
-Homepage: http://code.google.com/p/ocaml-extlib/
-Depends: ocaml
+
+Depends: ocaml, ocaml-findlib
+
 Description: Standard library for OCaml
 DescDetail: 
  ExtLib is released under the same license as the OCaml Standard Library
@@ -17,9 +17,15 @@
  ocaml install.ml -b -n -doc -d out
 
 InstallScript: 
- mkdir -p %i/lib/ocaml
- cp out/*.{a,cma,cmi,cmx,cmxa} %i/lib/ocaml
- cp *.{ml,mli} %i/lib/ocaml
- rm %i/lib/ocaml/install.ml
+  mkdir -p %i/share/doc
+  mv out/extlib-doc %i/share/doc/ocaml-lib
+  mkdir -p %i/lib/ocaml/site-lib
+  mv out %i/lib/ocaml/site-lib/extlib
+
+  /usr/bin/sed -e's,1.5,1.5.1,' META.txt  %i/lib/ocaml/site-lib/extlib/META
 
-DocFiles: out/extlib-doc/* LICENSE README.txt
+DocFiles: LICENSE README.txt
+
+Homepage: http://code.google.com/p/ocaml-extlib/
+License: LGPL
+Maintainer: Brendan Cully bren...@finkproject.org


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


[cvs] dists/10.4/unstable/main/finkinfo/devel ocaml-bitstring.info, NONE, 1.1 ocaml-bitstring.patch, NONE, 1.1

2009-06-22 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv31731

Added Files:
ocaml-bitstring.info ocaml-bitstring.patch 
Log Message:
New package: ocaml-bitstring 2.0.0

--- NEW FILE: ocaml-bitstring.patch ---
Fix srcdir declaration.
Add dynlink to linker for ocaml 3.11.
Use $prefix for installer.

diff --git a/Makefile.in b/Makefile.in
--- a/Makefile.in
+++ b/Makefile.in
@@ -32,6 +32,7 @@
 
 OCAMLLIB   = @OCAMLLIB@
 top_srcdir = @top_srcdir@
+srcdir = @srcdir@
 
 pkg_cil= @pkg_cil@
 pkg_extlib = @pkg_extlib@
@@ -109,11 +110,11 @@
  -I +camlp4 -pp camlp4of -c $
 
 pa_bitstring.cmo: pa_bitstring.ml bitstring.cma bitstring_persistent.cma
-   $(OCAMLFIND) ocamlc bitstring.cma -I +camlp4 camlp4lib.cma \
+   $(OCAMLFIND) ocamlc bitstring.cma -I +camlp4 dynlink.cma camlp4lib.cma \
  -pp camlp4of -c $ -o $@
 
 bitstring-objinfo: bitstring_objinfo.cmo bitstring.cma bitstring_persistent.cma
-   $(OCAMLFIND) ocamlc -I +camlp4 unix.cma camlp4lib.cma \
+   $(OCAMLFIND) ocamlc -I +camlp4 unix.cma dynlink.cma camlp4lib.cma \
  $(OCAMLCLIBS) \
  bitstring.cma bitstring_persistent.cma \
  $ -o $@
@@ -155,7 +156,7 @@
 
 create_test_pattern: create_test_pattern.cmo
$(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -pp camlp4of \
- unix.cma -I +camlp4 camlp4lib.cma \
+ unix.cma -I +camlp4 dynlink.cma camlp4lib.cma \
  $(OCAMLCLIBS) \
  -I . bitstring.cma bitstring_persistent.cma $ -o $@
 
@@ -268,7 +269,7 @@
 # Install.
 
 install:
-   ocamlfind install bitstring META *.mli *.cmx *.cma *.cmxa *.a *.so \
+   ocamlfind install -ldconf ignore -destdir $(prefix)/lib/ocaml/site-lib 
bitstring META *.mli *.cmx *.cma *.cmxa *.a *.so \
bitstring.cmi \
bitstring_persistent.cmi \
pa_bitstring.cmo

--- NEW FILE: ocaml-bitstring.info ---
Package: ocaml-bitstring
Version: 2.0.0
Revision: 1

Source: http://bitstring.googlecode.com/files/%n-%v.tar.gz
Source-MD5: 9f597c267318a88f2754ca10450e478f
Patch: %N.patch

Depends: ocaml, ocaml-findlib

InstallScript: 
  mkdir -p %i/lib/ocaml/site-lib
  make install prefix=%i

DocFiles: examples/* COPYING.LIB README

PostInstScript: 
#!/bin/sh -ev
  if ! grep -q %p/lib/ocaml/site-lib/bitstring %p/lib/ocaml/ld.conf; then
echo %p/lib/ocaml/site-lib/bitstring  %p/lib/ocaml/ld.conf
  fi

PreRmScript: 
  grep -v %p/lib/ocaml/site-lib/bitstring %p/lib/ocaml/ld.conf  
%p/lib/ocaml/ld.conf.tmp
  mv %p/lib/ocaml/ld.conf.tmp %p/lib/ocaml/ld.conf


Description: bitstrings and bitstring matching for OCaml
License: LGPL
Homepage: http://code.google.com/p/bitstring/
Maintainer: Brendan Cully bren...@finkproject.org


--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/net mutt.info,1.10,1.11

2009-06-14 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv28495

Modified Files:
mutt.info 
Log Message:
Welcome to mutt 1.5.20.

Index: mutt.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/mutt.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- mutt.info   6 Jan 2009 05:51:44 -   1.10
+++ mutt.info   14 Jun 2009 23:06:00 -  1.11
@@ -1,5 +1,5 @@
 Package: mutt
-Version: 1.5.19
+Version: 1.5.20
 Revision: 1
 Description: Sophisticated text-based mail user agent
 License: GPL
@@ -13,7 +13,7 @@
   tokyocabinet-shlibs, libidn-shlibs
 
 Source: ftp://ftp.mutt.org/%n/devel/%n-%v.tar.gz
-Source-MD5: 73b3747bc7f7c805921e8d24ebac693f
+Source-MD5: 027cdd9959203de0c3c64149a7ee351c
 ConfFiles: %p/etc/Muttrc
 DocFiles: GPL NEWS README README.SSL README.SECURITY TODO
 


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/languages ocaml.info, 1.15, 1.16

2009-06-10 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv15663

Modified Files:
ocaml.info 
Log Message:
Allow ocaml to build in the malign presence of fink sed

Index: ocaml.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml.info,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- ocaml.info  11 Apr 2009 21:36:42 -  1.15
+++ ocaml.info  10 Jun 2009 18:40:38 -  1.16
@@ -1,6 +1,6 @@
 Package: ocaml
 Version: 3.11.0
-Revision: 1
+Revision: 2
 Description: Latest implementation of Caml dialect of ML
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (= 5.4-20041023-1006), fink (= 
0.24.12)
 Depends: tcltk, x11, libncurses5-shlibs (= 5.4-20041023-1006)
@@ -19,6 +19,8 @@
 PatchFile: %n.patch
 PatchFile-MD5: 37ed1a21a282337c629c84a6f08f2160
 PatchScript: 
+ # fink's sed (at least 4.2-1) chokes on accented characters here
+ /usr/bin/sed -i .bak -e 's,sed,/usr/bin/sed,' ocamldoc/remove_DEBUG
  gzip -d ../infoman/ocaml*.gz
  cd ..  patch -p1  %{PatchFile}
 


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs libusb.info, 1.9, 1.10 libusb.patch, 1.2, 1.3

2009-06-09 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv30680

Modified Files:
libusb.info libusb.patch 
Log Message:
NMU: Fix 64-bit build.
Acked by maintainer.

Index: libusb.patch
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/libusb.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libusb.patch4 Jan 2008 14:19:25 -   1.2
+++ libusb.patch9 Jun 2009 06:22:17 -   1.3
@@ -1,5 +1,6 @@
 a/darwin.c 2006/02/25 18:40:17 1.61
-+++ b/darwin.c 2007/05/02 20:03:49 1.62
+diff --git a/darwin.c b/darwin.c
+--- a/darwin.c
 b/darwin.c
 @@ -1,8 +1,10 @@
  /*
   * Darwin/MacOS X Support
@@ -12,7 +13,15 @@
   * (04/17/2005):
   *   - Lots of minor fixes.
   *   - Endpoint table now made by claim_interface to fix a bug.
-@@ -146,7 +148,6 @@
+@@ -51,6 +53,7 @@
+ #include config.h
+ #endif
+ 
++#include inttypes.h
+ #include stdlib.h
+ #include stdio.h
+ #include unistd.h
+@@ -146,7 +149,6 @@
  #define IO_OBJECT_NULL ((io_object_t)0)
  #endif
  
@@ -20,7 +29,7 @@
  struct darwin_dev_handle {
usb_device_t **device;
usb_interface_t **interface;
-@@ -157,7 +158,6 @@
+@@ -157,7 +159,6 @@
unsigned char *endpoint_addrs;
  };
  
@@ -28,7 +37,7 @@
  static IONotificationPortRef gNotifyPort;
  static mach_port_t masterPort = MACH_PORT_NULL;
  
-@@ -223,6 +223,7 @@
+@@ -223,6 +224,7 @@
  static int usb_setup_iterator (io_iterator_t *deviceIterator)
  {
int result;
@@ -36,7 +45,26 @@
  
/* set up the matching dictionary for class IOUSBDevice and its subclasses.
   It will be consumed by the IOServiceGetMatchingServices call */
-@@ -756,6 +757,70 @@
+@@ -247,7 +249,8 @@
+   io_cf_plugin_ref_t *plugInInterface = NULL;
+   usb_device_t **device;
+   io_service_t usbDevice;
+-  long result, score;
++  long result;
++  SInt32 score;
+ 
+   if (!IOIteratorIsValid (deviceIterator) || !(usbDevice = 
IOIteratorNext(deviceIterator)))
+ return NULL;
+@@ -447,7 +450,7 @@
+   IOUSBFindInterfaceRequest request;
+ 
+   struct darwin_dev_handle *device;
+-  long score;
++  SInt32 score;
+   int current_interface;
+ 
+   device = dev-impl_info;
+@@ -756,6 +759,70 @@
return -1;
  }
  
@@ -107,7 +135,7 @@
  /* argument to handle multiple parameters to rw_completed */
  struct rw_complete_arg {
UInt32io_size;
-@@ -777,7 +842,7 @@
+@@ -777,7 +844,7 @@
CFRunLoopStop(rw_arg-cf_loop);
  }
  
@@ -116,7 +144,7 @@
  rw_async_func_t rw_async, rw_async_to_func_t 
rw_async_to)
  {
struct darwin_dev_handle *device;
-@@ -813,11 +878,12 @@
+@@ -813,11 +880,12 @@
(*(device-interface))-GetPipeProperties (device-interface, pipeRef, 
direction, number,
 transferType, maxPacketSize, 
interval);
  
@@ -132,7 +160,7 @@
/* Transfer set up complete */
  
if (usb_debug  0)
-@@ -842,11 +908,12 @@
+@@ -842,11 +910,12 @@
(*(device-interface))-AbortPipe(device-interface, pipeRef);
CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, true); /* Pick up aborted 
callback */
if (usb_debug)
@@ -147,7 +175,7 @@

/* Check the return code of both the write and completion functions. */
if (result != kIOReturnSuccess || (rw_arg.result != kIOReturnSuccess  
-@@ -870,24 +937,16 @@
+@@ -870,24 +939,16 @@
  
return rw_arg.io_size;
  }
@@ -174,7 +202,7 @@
  USB_ERROR_STR (result, usb_bulk_write: An error occured during write 
(see messages above));

return result;
-@@ -896,28 +955,19 @@
+@@ -896,28 +957,19 @@
  int usb_bulk_read(usb_dev_handle *dev, int ep, char *bytes, int size, int 
timeout)
  {
int result;
@@ -205,7 +233,25 @@
  int usb_interrupt_write(usb_dev_handle *dev, int ep, char *bytes, int size,
int timeout)
  {
-@@ -1177,7 +1227,12 @@
+@@ -1064,7 +1116,7 @@
+ result = (*(device))-GetDeviceAddress(device, (USBDeviceAddress 
*)address);
+ 
+ if (usb_debug = 2)
+-  fprintf(stderr, usb_os_find_devices: Found USB device at location 
0x%08lx\n, location);
++  fprintf(stderr, usb_os_find_devices: Found USB device at location 
0x%08 PRIx32 \n, location);
+ 
+ /* first byte of location appears to be associated with the device's bus 
*/
+ if (location  24 == bus_loc  24) {
+@@ -1091,7 +1143,7 @@
+   LIST_ADD(fdev, dev);
+ 
+   if (usb_debug = 2)
+-  fprintf(stderr, usb_os_find_devices: Found %s on %s at location 
0x%08lx\n,
++  fprintf(stderr, usb_os_find_devices: Found %s on %s at location 0x%08 
PRIx32 \n,
+   dev-filename, bus-dirname, location);
+ }
+ 
+@@ -1177,7 +1229,12 @@
if ((pipeRef = ep_to_pipeRef(device, ep)) == -1)
  USB_ERROR(-EINVAL);
  

Index: libusb.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/libusb.info,v

[cvs] dists/10.4/unstable/main/finkinfo/libs libusb.info, 1.10, 1.11 libusb.patch, 1.3, 1.4

2009-06-09 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20269

Modified Files:
libusb.info libusb.patch 
Log Message:
Fix 32-bit breakage. Tested both ways this time.

Index: libusb.patch
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/libusb.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libusb.patch9 Jun 2009 06:22:17 -   1.3
+++ libusb.patch9 Jun 2009 17:17:57 -   1.4
@@ -233,25 +233,28 @@
  int usb_interrupt_write(usb_dev_handle *dev, int ep, char *bytes, int size,
int timeout)
  {
-@@ -1064,7 +1116,7 @@
+@@ -1064,7 +1116,8 @@
  result = (*(device))-GetDeviceAddress(device, (USBDeviceAddress 
*)address);
  
  if (usb_debug = 2)
 -  fprintf(stderr, usb_os_find_devices: Found USB device at location 
0x%08lx\n, location);
-+  fprintf(stderr, usb_os_find_devices: Found USB device at location 
0x%08 PRIx32 \n, location);
++  fprintf(stderr, usb_os_find_devices: Found USB device at location 
0x%08 PRIx32 \n,
++(uint32_t) location);
  
  /* first byte of location appears to be associated with the device's bus 
*/
  if (location  24 == bus_loc  24) {
-@@ -1091,7 +1143,7 @@
+@@ -1091,8 +1144,8 @@
LIST_ADD(fdev, dev);
  
if (usb_debug = 2)
 -  fprintf(stderr, usb_os_find_devices: Found %s on %s at location 
0x%08lx\n,
+-  dev-filename, bus-dirname, location);
 +  fprintf(stderr, usb_os_find_devices: Found %s on %s at location 0x%08 
PRIx32 \n,
-   dev-filename, bus-dirname, location);
++  dev-filename, bus-dirname, (uint32_t) location);
  }
  
-@@ -1177,7 +1229,12 @@
+ /* release the device now */
+@@ -1177,7 +1230,12 @@
if ((pipeRef = ep_to_pipeRef(device, ep)) == -1)
  USB_ERROR(-EINVAL);
  

Index: libusb.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/libusb.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- libusb.info 9 Jun 2009 06:22:17 -   1.10
+++ libusb.info 9 Jun 2009 17:17:57 -   1.11
@@ -1,6 +1,6 @@
 Package: libusb
 Version: 0.1.12
-Revision: 1014
+Revision: 1015
 Maintainer: Ben Hines bhi...@alumni.ucsd.edu
 Source: http://download.sourceforge.net/%n/%n-%v.tar.gz
 Source-MD5: caf182cbc7565dac0fd72155919672e6
@@ -23,7 +23,7 @@
make
 
 PatchFile: %n.patch
-PatchFile-MD5: 8c202a96e6c90027f9a93533d24d3d07
+PatchFile-MD5: 834282b7beb069f89c2ec300cf5469e4
 InstallScript: 
  make install DESTDIR=%d 
  # for some reason, libusb's build strips out the -Wl's?


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel git.info,1.38,1.39

2009-06-09 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8605

Modified Files:
git.info 
Log Message:
New upstream release (from Max Horn)

Index: git.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/git.info,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- git.info13 Mar 2009 04:02:16 -  1.38
+++ git.info10 Jun 2009 00:11:33 -  1.39
@@ -1,5 +1,5 @@
 Package: git
-Version: 1.6.2
+Version: 1.6.3.2
 Revision: 1
 # git-svn requires error-pm and term-readkey-pm
 Depends: 
@@ -9,12 +9,12 @@
 BuildDepends: system-openssl-dev, libcurl4 (= 7.16.1), libssh2.1, expat1, 
libiconv-dev, fink (= 0.24.12)
 Replaces: git-core
 Source: http://www.kernel.org/pub/software/scm/%n/%n-%v.tar.bz2
-Source-MD5: 12c7d874e17c6e111697b1714b5f4319
+Source-MD5: 149948ff33fb7d8cf9eef925e6c08157
 Source2: http://www.kernel.org/pub/software/scm/%n/%n-htmldocs-%v.tar.bz2
-Source2-MD5: f378a725df652efaa582e43ac437c38f
+Source2-MD5: e83e19735ebc187b870b00a05b93f514
 Source2ExtractDir: doc
 Source3: http://www.kernel.org/pub/software/scm/%n/%n-manpages-%v.tar.bz2
-Source3-MD5: 163809f883e693a3a675a487d96b5a11
+Source3-MD5: 2fb5ba5cabe0057470d577d2d4ff4816
 
 PatchFile: %n.patch
 PatchFile-MD5: 880da377a7a4a1cfb2ec53294077012c


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel psyco-py.info,1.3,1.4

2009-06-03 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9862

Modified Files:
psyco-py.info 
Log Message:
Add python2.6 to variant list.
NMU oked by maintainer.

Index: psyco-py.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/psyco-py.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- psyco-py.info   25 Apr 2009 04:07:50 -  1.3
+++ psyco-py.info   3 Jun 2009 16:40:12 -   1.4
@@ -2,7 +2,7 @@
 Package: psyco-py%type_pkg[python]
 Version: 1.6
 Revision: 1
-Type: python (2.3 2.4 2.5)
+Type: python (2.3 2.4 2.5 2.6)
 Distribution: (%type_pkg[python] = 23) 10.4
 Architecture: i386
 Source: mirror:sourceforge:psyco/psyco-%v-src.tar.gz


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel bzr-py.info,1.26,1.27

2009-05-26 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv960

Modified Files:
bzr-py.info 
Log Message:
New upstream release

Index: bzr-py.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/bzr-py.info,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- bzr-py.info 18 Nov 2008 06:05:20 -  1.26
+++ bzr-py.info 27 May 2009 03:36:04 -  1.27
@@ -1,12 +1,12 @@
 Info2: 
 Package: bzr-py%type_pkg[python]
-Version: 1.9
+Version: 1.15
 Revision: 1
 Conflicts: bzr, bzr-py24-bin
 Replaces: bzr, bzr-py24-bin
-Type: python (2.4 2.5)
-Source: http://launchpadlibrarian.net/19449579/bzr-%v.tar.gz
-Source-MD5: 9b6b0a5143cd078ec664a584f0cc40cc
+Type: python (2.4 2.5 2.6)
+Source: http://launchpadlibrarian.net/27074733/bzr-%v.tar.gz
+Source-MD5: 3309f74f1655d7971ca8cc3d4c9e9dfb
 Depends: 
   python%type_pkg[python],
   (%type_pkg[python] = 24) celementtree-py24 | (%type_pkg[python] = 24) 
elementtree-py24


--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT 
is a gathering of tech-side developers  brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing,  
iPhoneDevCamp as they present alongside digital heavyweights like Barbarian 
Group, R/GA,  Big Spaceship. http://p.sf.net/sfu/creativitycat-com 
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel git.info, 1.37, 1.38 git.patch, 1.13, 1.14

2009-03-12 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv17340

Modified Files:
git.info git.patch 
Log Message:
NMU from Max Horn. Welcome to git 1.6.2.

Index: git.patch
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/git.patch,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- git.patch   8 Jan 2009 06:08:32 -   1.13
+++ git.patch   13 Mar 2009 04:02:16 -  1.14
@@ -2,19 +2,19 @@
 Use /usr/bin/wish in gitk.
 Fix perl install locations.
 
-diff --git a/Makefile b/Makefile
 a/Makefile
-+++ b/Makefile
-@@ -190,7 +190,7 @@
- bindir = $(prefix)/bin
- mandir = $(prefix)/share/man
- infodir = $(prefix)/share/info
--gitexecdir = $(prefix)/libexec/git-core
-+gitexecdir = $(prefix)/lib/git
+diff -ru git-1.6.2/Makefile git-1.6.2-patched/Makefile
+--- git-1.6.2/Makefile 2009-03-04 03:18:50.0 -0500
 git-1.6.2-patched/Makefile 2009-03-08 22:06:32.0 -0400
+@@ -196,7 +196,7 @@
+ bindir = $(prefix)/$(bindir_relative)
+ mandir = share/man
+ infodir = share/info
+-gitexecdir = libexec/git-core
++gitexecdir = lib/git
  sharedir = $(prefix)/share
- template_dir = $(sharedir)/git-core/templates
- htmldir=$(sharedir)/doc/git-doc
-@@ -205,7 +205,7 @@
+ template_dir = share/git-core/templates
+ htmldir = share/doc/git-doc
+@@ -212,7 +212,7 @@
  
  # default configuration for gitweb
  GITWEB_CONFIG = gitweb_config.perl
@@ -23,7 +23,7 @@
  GITWEB_HOME_LINK_STR = projects
  GITWEB_SITENAME =
  GITWEB_PROJECTROOT = /pub/git
-@@ -805,6 +805,8 @@
+@@ -814,6 +814,8 @@
  -include config.mak
  
  ifeq ($(uname_S),Darwin)
@@ -32,9 +32,9 @@
ifndef NO_FINK
ifeq ($(shell test -d /sw/lib  echo y),y)
BASIC_CFLAGS += -I/sw/include
-diff --git a/perl/Makefile b/perl/Makefile
 a/perl/Makefile
-+++ b/perl/Makefile
+diff -ru git-1.6.2/perl/Makefile git-1.6.2-patched/perl/Makefile
+--- git-1.6.2/perl/Makefile2009-03-04 03:18:50.0 -0500
 git-1.6.2-patched/perl/Makefile2009-03-08 22:06:45.0 -0400
 @@ -38,7 +38,7 @@
echo '  echo $(instdir_SQ)'  $@
  else

Index: git.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/git.info,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- git.info27 Jan 2009 07:41:10 -  1.37
+++ git.info13 Mar 2009 04:02:16 -  1.38
@@ -1,5 +1,5 @@
 Package: git
-Version: 1.6.1
+Version: 1.6.2
 Revision: 1
 # git-svn requires error-pm and term-readkey-pm
 Depends: 
@@ -9,15 +9,15 @@
 BuildDepends: system-openssl-dev, libcurl4 (= 7.16.1), libssh2.1, expat1, 
libiconv-dev, fink (= 0.24.12)
 Replaces: git-core
 Source: http://www.kernel.org/pub/software/scm/%n/%n-%v.tar.bz2
-Source-MD5: 66265d85593473b23290232b9dccef77
+Source-MD5: 12c7d874e17c6e111697b1714b5f4319
 Source2: http://www.kernel.org/pub/software/scm/%n/%n-htmldocs-%v.tar.bz2
-Source2-MD5: 16d1b8cece35df94e1767373d358df87
+Source2-MD5: f378a725df652efaa582e43ac437c38f
 Source2ExtractDir: doc
 Source3: http://www.kernel.org/pub/software/scm/%n/%n-manpages-%v.tar.bz2
-Source3-MD5: f53f454c397f691ad50ca6657b56d35c
+Source3-MD5: 163809f883e693a3a675a487d96b5a11
 
 PatchFile: %n.patch
-PatchFile-MD5: 4fe9113fa0099d88db50a7c9cc326350
+PatchFile-MD5: 880da377a7a4a1cfb2ec53294077012c
 PatchScript: 
%{default_script}
sed -i.bak -e 's|%%p|%p|g' Makefile perl/Makefile
@@ -72,15 +72,16 @@
   DocFiles: COPYING
 
 
-Description: Stupid content tracker
+Description: Distributed version control system
 DescDetail: 
-This is a stupid (but extremely fast) directory content manager.  It
-doesn't do a whole lot, but what it _does_ do is track directory
-contents efficiently. It is intended to be the base of an efficient,
-distributed source code management system. This package includes
-rudimentary tools that can be used as a SCM, but you should look
-elsewhere for tools for ordinary humans layered on top of this.
+Git is an open source, distributed version control system designed to
+handle everything from small to very large projects with speed and
+efficiency.
+
+Every Git clone is a full-fledged repository with complete history and
+full revision tracking capabilities, not dependent on network access or
+a central server. Branching and merging are fast and easy to do.
 
 License: GPL
-Homepage: http://www.kernel.org/pub/software/scm/git/
+Homepage: http://git-scm.com/
 Maintainer: Brendan Cully bren...@finkproject.org


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software

[cvs] dists/10.4/unstable/main/finkinfo/languages ocaml-findlib.info, 1.2, 1.3

2009-01-26 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv29321

Modified Files:
ocaml-findlib.info 
Log Message:
New upstream release from tracker 2525375

Index: ocaml-findlib.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml-findlib.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ocaml-findlib.info  12 Jan 2009 04:51:21 -  1.2
+++ ocaml-findlib.info  27 Jan 2009 06:05:54 -  1.3
@@ -1,5 +1,5 @@
 Package: ocaml-findlib
-Version: 1.1.2
+Version: 1.2.3
 Revision: 1
 Description: Ocaml library management system
 BuildDepends: fink (= 0.24.12-1), ocaml (= 3.00)
@@ -7,12 +7,10 @@
 DescPort: Uses custom configure script.
 SetMAKEFLAGS: -j1
 NoSetMAKEFLAGS: true
-PatchFile: %n.patch
-PatchFile-MD5: da2c44892323402e9673a472817ae243
-Source: http://www.ocaml-programming.de/packages/findlib-1.1.2pl1.tar.gz
-Source-MD5: df4c9176e9d5b8a6d37668d108fae923
-Maintainer: Heejong Lee i...@ropas.snu.ac.kr
-Homepage: http://www.ocaml-programming.de/programming/findlib.html
+Source: http://download.camlcity.org/download/findlib-%v.tar.gz
+Source-MD5: e1c9dc3115f97deb128b50eb7db94017
+Maintainer: Heejong Lee heej...@gmail.com
+Homepage: http://projects.camlcity.org/projects/findlib.html
 License: OSI-Approved
 CompileScript: 
  ./configure -mandir %p/share/man


--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel ocaml-lib.info,1.1,1.2

2009-01-19 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14056

Modified Files:
ocaml-lib.info 
Log Message:
Latest ocaml extlib release (NMU with blessing of maintainer)

Index: ocaml-lib.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/ocaml-lib.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ocaml-lib.info  20 Jan 2006 20:23:12 -  1.1
+++ ocaml-lib.info  20 Jan 2009 04:33:47 -  1.2
@@ -1,12 +1,12 @@
 Package: ocaml-lib
-Version: 1.4
+Version: 1.5.1
 Revision: 1
-Source: mirror:sourceforge:%n/extlib-%v.tgz
+Source: http://ocaml-extlib.googlecode.com/files/extlib-%v.tar.gz
 SourceDirectory: extlib-%v
-Source-MD5: d53cf08e13e5b9487035bcc8af1165f2
+Source-MD5: 8dc2944cbf63141347956bd353893d75
 License: OSI-Approved
 Maintainer: Chris Dolan chrisdo...@users.sourceforge.net
-Homepage: http://ocaml-lib.sourceforge.net/
+Homepage: http://code.google.com/p/ocaml-extlib/
 Depends: ocaml
 Description: Standard library for OCaml
 DescDetail: 
@@ -18,7 +18,7 @@
 
 InstallScript: 
  mkdir -p %i/lib/ocaml
- cp out/*.{a,cma,cmi,cmx} %i/lib/ocaml
+ cp out/*.{a,cma,cmi,cmx,cmxa} %i/lib/ocaml
  cp *.{ml,mli} %i/lib/ocaml
  rm %i/lib/ocaml/install.ml
 


--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel ocaml-lib.info,1.2,1.3

2009-01-19 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19438

Modified Files:
ocaml-lib.info 
Log Message:
Chris asked me to orphan this package for him

Index: ocaml-lib.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/ocaml-lib.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ocaml-lib.info  20 Jan 2009 04:33:47 -  1.2
+++ ocaml-lib.info  20 Jan 2009 06:11:13 -  1.3
@@ -5,7 +5,7 @@
 SourceDirectory: extlib-%v
 Source-MD5: 8dc2944cbf63141347956bd353893d75
 License: OSI-Approved
-Maintainer: Chris Dolan chrisdo...@users.sourceforge.net
+Maintainer: None fink-de...@lists.sourceforge.net
 Homepage: http://code.google.com/p/ocaml-extlib/
 Depends: ocaml
 Description: Standard library for OCaml


--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/languages ocaml.info, 1.12, 1.13 ocaml.patch, 1.4, 1.5

2009-01-16 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13171

Modified Files:
ocaml.info ocaml.patch 
Log Message:
Welcome to ocaml 3.11.0

Index: ocaml.patch
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml.patch,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- ocaml.patch 3 Jun 2008 14:09:46 -   1.4
+++ ocaml.patch 16 Jan 2009 09:05:19 -  1.5
@@ -1,15 +1,3 @@
-diff -u configure
 a/ocaml-3.10.2/configure
-+++ b/ocaml-3.10.2/configure
-@@ -306,6 +306,8 @@
- 
- # Configure compiler to use in further tests
- 
-+bytecccompopts=$CPPFLAGS $bytecclinkopts
-+bytecclinkopts=$LDFLAGS $bytecclinkopts
- cc=$bytecc -O $bytecclinkopts
- export cc cclibs verbose
- 
 diff -u infoman/ocaml.info
 --- a/infoman/ocaml.info
 +++ b/infoman/ocaml.info

Index: ocaml.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/languages/ocaml.info,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- ocaml.info  3 Jun 2008 14:09:46 -   1.12
+++ ocaml.info  16 Jan 2009 09:05:19 -  1.13
@@ -1,6 +1,6 @@
 Package: ocaml
-Version: 3.10.2
-Revision: 2
+Version: 3.11.0
+Revision: 1
 Description: Latest implementation of Caml dialect of ML
 BuildDepends: tcltk-dev, x11-dev, libncurses5 (= 5.4-20041023-1006)
 Depends: tcltk, x11, libncurses5-shlibs (= 5.4-20041023-1006)
@@ -8,14 +8,14 @@
 SetMAKEFLAGS: -j1
 NoSetMAKEFLAGS: true
 SetMACOSX_DEPLOYMENT_TARGET: 10.4
-Source: http://caml.inria.fr/pub/distrib/%n-3.10/%n-%v.tar.bz2
-Source2: http://caml.inria.fr/pub/distrib/%n-3.10/%n-3.10-refman.pdf
-Source3: http://caml.inria.fr/pub/distrib/%n-3.10/%n-3.10-refman.html.tar.gz
-Source4: http://caml.inria.fr/pub/distrib/%n-3.10/%n-3.10-refman.info.tar.gz
-Source-MD5: d86f8f8aa4574fa60dd6f89044580307
-Source2-MD5: c3e00bc2c4aad3f538b4bcefade98908
-Source3-MD5: 663b31c8ea364a531aa325a5b06a2763
-Source4-MD5: f80b52b8bc4b10ed557808fc899acf3a
+Source: http://caml.inria.fr/pub/distrib/%n-3.11/%n-%v.tar.bz2
+Source2: http://caml.inria.fr/pub/distrib/%n-3.11/%n-3.11-refman.pdf
+Source3: http://caml.inria.fr/pub/distrib/%n-3.11/%n-3.11-refman.html.tar.gz
+Source4: http://caml.inria.fr/pub/distrib/%n-3.11/%n-3.11-refman.info.tar.gz
+Source-MD5: 6ed1c3ed660a15408362242fa8fa4668
+Source2-MD5: 798c2702f20bd3199726441771538a07
+Source3-MD5: bfb4ed960974159f4224014a979baf6d
+Source4-MD5: 50fc2a3e3a38db78bd03d169379155de
 PatchScript: 
  gzip -d ../infoman/ocaml*.gz
  cd ..  patch -p1  %a/%n.patch
@@ -43,7 +43,7 @@
  cp -R ../htmlman %i/share/doc/%n
 
 InfoDocs: ocaml.info
-DocFiles: Changes README LICENSE INSTALL ../%n-3.10-refman.pdf
+DocFiles: Changes README LICENSE INSTALL ../%n-3.11-refman.pdf
 DescDetail: 
 The main novelties compared with its ancestor, Caml Light, are: 
 1) Full support for objects and classes -- 


--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs fuse.info,1.27,1.28

2009-01-10 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv12082

Modified Files:
fuse.info 
Log Message:
Add shlibs compat symlinks

Index: fuse.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/fuse.info,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- fuse.info   18 Dec 2008 01:46:43 -  1.27
+++ fuse.info   10 Jan 2009 23:18:29 -  1.28
@@ -1,6 +1,6 @@
 Package: fuse
 Version: 2.0
-Revision: 1
+Revision: 2
 Source: http://dev.kublai.com/macfuse-%v.tar.bz2
 Source-MD5: 6a77248264d345a46f88ffe8465ce0f3
 
@@ -46,6 +46,9 @@
 cp -R core/$MACOSVER/fusefs/build/Release/fusefs.kext 
%i/lib/%n/fusefs.fs/Support
 cp core/$MACOSVER/fusefs/build/Release/*_fusefs %i/lib/%n/fusefs.fs/Support
 cd %b/fuse-$FUSEVER  make install DESTDIR=%d
+# backward compatibility symlinks (requested by Daniel Johnson)
+ln -s libfuse.2.dylib %i/lib/libfuse.0.dylib
+ln -s libulockmgr.1.dylib %i/lib/libulockmgr.0.dylib
 
 PreRmScript: /sbin/kextunload -q %p/lib/fuse/fusefs.fs/Support/fusefs.kext || 
true
 PostInstScript: 
@@ -77,13 +80,18 @@
   Depends: fuse (= %v-%r)
   DocFiles: COPYING.txt
   Files: 
+lib/libfuse.0.dylib
 lib/libfuse.2.dylib
+lib/libulockmgr.0.dylib
 lib/libulockmgr.1.dylib
   
   Shlibs: 
 %p/lib/libfuse.2.dylib 10.0.0 fuse (= 2.0-1)
 %p/lib/libulockmgr.1.dylib 10.0.0 fuse (= 2.0-1)
   
+  DescDetail: 
+These are the shared libraries required by fuse applications.
+  
 
 
 Description: File System in User Space (MacFUSE)


--
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


<    1   2   3   4   5   6   7   >