[cvs] dists/10.7/stable/main/finkinfo/devel automake1.11.info, 1.14, 1.15 automake1.11.patch, 1.1, 1.2

2013-08-27 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/devel
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv27747

Modified Files:
automake1.11.info automake1.11.patch 
Log Message:
fix selftest in when vala is installed


Index: automake1.11.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/devel/automake1.11.info,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- automake1.11.info   25 Aug 2013 14:20:09 -  1.14
+++ automake1.11.info   27 Aug 2013 09:32:48 -  1.15
@@ -11,7 +11,7 @@
 Provides: automaken
 
 PatchFile: %n.patch
-PatchFile-MD5: 22386c11a27201c9b4d05f13890a8898
+PatchFile-MD5: 1ef80d80490de9f80f83f74e94356fb2
 PatchScript: 
   #!/bin/sh -ev
   %{default_script}
@@ -26,6 +26,9 @@
   # fink's libtool2 has %p/bin/glibtool not %p/bin/libtool and Apple's
   # /usr/bin/libtool is different beast
   ln -s %p/bin/glibtool tests/libtool
+
+  # make sure pkg-config macros are available to the test harness
+  ln -s %p/share/aclocal/pkg.m4 m4
 
 
 # HACK: Set ac_cv_prog_TEX to disable any TeX or texinfo related tests,
@@ -63,7 +66,7 @@
 # TODO: Perhaps rename automake.info* to automake-X.Y.info* ?
 InfoTest: 
   TestScript: make check || exit 2
-  TestDepends: dejagnu, libtool2
+  TestDepends: dejagnu, libtool2, pkgconfig
 
 DocFiles: COPYING README AUTHORS NEWS THANKS
 InfoDocs: automake.info
@@ -85,7 +88,8 @@
 Previous versions by Christoph Pfisterer, Max Horn.
 Desc adapted from debian :-)
 
-  Import patches from automake1.12 changes to vala-vapi.test
+  Import patches from automake1.12 changes to vala-vapi.test (misc
+  fix), and other vala-*.test (propagate gobject compiler flags)
 
 License: GPL
 Maintainer: Chris Zubrzycki bere...@users.sourceforge.net

Index: automake1.11.patch
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/devel/automake1.11.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- automake1.11.patch  19 Sep 2012 07:07:45 -  1.1
+++ automake1.11.patch  27 Aug 2013 09:32:48 -  1.2
@@ -1,7 +1,93 @@
+diff -Nurd -x'*~' automake-1.11.6.orig/tests/vala-mix.test 
automake-1.11.6/tests/vala-mix.test
+--- automake-1.11.6.orig/tests/vala-mix.test   2012-07-09 11:39:58.0 
-0400
 automake-1.11.6/tests/vala-mix.test2013-08-27 04:35:17.0 
-0400
+@@ -16,7 +16,7 @@
+ 
+ # Vala sources and C sources in the same program.  Functional test.
+ 
+-required='valac cc GNUmake'
++required='valac cc pkg-config GNUmake'
+ . ./defs || Exit 1
+ 
+ set -e
+@@ -25,16 +25,18 @@
+ AC_PROG_CC
+ AM_PROG_CC_C_O
+ AM_PROG_VALAC([0.7.3])
++PKG_CHECK_MODULES([GOBJECT], [gobject-2.0 = 2.4])
+ AC_OUTPUT
+ END
+ 
+ cat  Makefile.am 'END'
+ bin_PROGRAMS = zardoz mu baz
+-AM_VALAFLAGS = --profile=posix
++AM_CFLAGS = $(GOBJECT_CFLAGS)
++LDADD = $(GOBJECT_LIBS)
+ zardoz_SOURCES = foo.vala bar.c
+ mu_SOURCES = 1.vala 2.c
+ mu_VALAFLAGS = $(AM_VALAFLAGS) --main=run
+-mu_CFLAGS = -DHAVE_MU
++mu_CFLAGS = -DHAVE_MU $(GOBJECT_CFLAGS)
+ baz_SOURCES = baz.c
+ END
+ 
+diff -Nurd -x'*~' automake-1.11.6.orig/tests/vala-mix2.test 
automake-1.11.6/tests/vala-mix2.test
+--- automake-1.11.6.orig/tests/vala-mix2.test  2012-07-09 11:39:58.0 
-0400
 automake-1.11.6/tests/vala-mix2.test   2013-08-26 23:31:08.0 
-0400
+@@ -17,7 +17,7 @@
+ # Vala sources, C and C++ sources and C and C++ headers in the same
+ # program.  Functional test.  See automake bug#10894.
+ 
+-required='valac cc c++ GNUmake'
++required='valac cc c++ pkg-config GNUmake'
+ . ./defs || Exit 1
+ 
+ set -e
+@@ -26,12 +26,14 @@
+ AC_PROG_CC
+ AC_PROG_CXX
+ AM_PROG_VALAC([0.7.3])
++PKG_CHECK_MODULES([GOBJECT], [gobject-2.0 = 2.4])
+ AC_OUTPUT
+ END
+ 
+ cat  Makefile.am 'END'
+ bin_PROGRAMS = zardoz
+-AM_VALAFLAGS = --profile=posix
++AM_CFLAGS = $(GOBJECT_CFLAGS)
++zardoz_LDADD = $(GOBJECT_LIBS)
+ zardoz_SOURCES = zardoz.vala foo.h bar.c baz.c zen.hh master.cxx
+ END
+ 
 diff -Nurd -x'*~' automake-1.11.6.orig/tests/vala-vapi.test 
automake-1.11.6/tests/vala-vapi.test
 --- automake-1.11.6.orig/tests/vala-vapi.test  2012-07-09 11:39:58.0 
-0400
-+++ automake-1.11.6/tests/vala-vapi.test   2012-09-19 02:15:05.0 
-0400
-@@ -42,7 +42,9 @@
 automake-1.11.6/tests/vala-vapi.test   2013-08-26 23:32:24.0 
-0400
+@@ -16,7 +16,7 @@
+ 
+ # Test and that vapi files are correctly handled by Vala support.
+ 
+-required='valac cc GNUmake'
++required='pkg-config valac cc GNUmake'
+ . ./defs || Exit 1
+ 
+ set -e
+@@ -25,12 +25,14 @@
+ AC_PROG_CC
+ AM_PROG_CC_C_O
+ AM_PROG_VALAC([0.7.3])
++PKG_CHECK_MODULES([GOBJECT], [gobject-2.0 = 2.4])
+ AC_OUTPUT
+ END
+ 
+ cat  Makefile.am 'END'
+ bin_PROGRAMS = zardoz
+-AM_VALAFLAGS = --profile=posix
++AM_CFLAGS = $(GOBJECT_CFLAGS)
++LDADD = $(GOBJECT_LIBS)
+ zardoz_SOURCES = zardoz.vala foo.vapi foo.h
+ END
+ 

[cvs] dists/10.7/stable/main/finkinfo/graphics libavcodec54-1.2-shlibs.info, 1.5, 1.6

2013-08-27 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7584

Modified Files:
libavcodec54-1.2-shlibs.info 
Log Message:
ffmpeg 1.2.3

Index: libavcodec54-1.2-shlibs.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/graphics/libavcodec54-1.2-shlibs.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- libavcodec54-1.2-shlibs.info29 Jul 2013 00:33:51 -  1.5
+++ libavcodec54-1.2-shlibs.info27 Aug 2013 14:03:17 -  1.6
@@ -1,6 +1,6 @@
 Package: libavcodec54-1.2-shlibs
-Version: 1.2.2
-Revision: 2
+Version: 1.2.3
+Revision: 1
 BuildDepends: 
bzip2,
fink (= 0.28),
@@ -72,8 +72,8 @@
 
 ###
 Source: http://ffmpeg.org/releases/ffmpeg-%v.tar.bz2
-Source-MD5: 4997660dfc077922e37d0583f9322f6b
-Source-Checksum: SHA1(5ccf4067f43853e5d63218aba13bc571b1108b5a)
+Source-MD5: 6b37f7315d0314bd587be2671c8a60e6
+Source-Checksum: SHA1(f083c92075fe010f17416bc880dfca101535276d)
 ###
 PatchScript: 
   #!/bin/sh -ev


--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2013-08-27 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv9346/libs/perlmods

Modified Files:
datetime-timezone-pm.info 
Log Message:
new version

Index: datetime-timezone-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/datetime-timezone-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- datetime-timezone-pm.info   2 Jun 2013 07:19:30 -   1.4
+++ datetime-timezone-pm.info   27 Aug 2013 14:43:17 -  1.5
@@ -1,38 +1,31 @@
 Info2: 
 Package: datetime-timezone-pm%type_pkg[perl]
-Version: 1.59
+Version: 1.60
 Revision: 1
 Description: Time zone object base class and factory
 Type: perl(5.12.3 5.12.4)
-License: Artistic
+License: Artistic/GPL
 Maintainer: Benjamin Reed datetime-timezone...@fink.raccoonfink.com
 
 Depends: 
class-load-pm%type_pkg[perl],
class-singleton-pm (= 1.03-1),
-   fink (= 0.29.7-1),
params-validate-pm%type_pkg[perl] (= 0.72-1),
perl%type_pkg[perl]-core
 
 BuildDepends: 
-   class-singleton-pm (= 1.03-1),
-   fink (= 0.30.2-1),
extutils-makemaker-pm%type_pkg[perl] (= 6.30-1),
params-validate-pm%type_pkg[perl] (= 0.72-1),
-   perl%type_pkg[perl]-core,
test-output-pm%type_pkg[perl],
test-simple-pm%type_pkg[perl] (= 0.88-1)
 
 
 Source: mirror:cpan:modules/by-module/DateTime/DateTime-TimeZone-%v.tar.gz
-Source-MD5: 9036b3f388b88a41c074f94b78ea3355
-
-UseMaxBuildJobs: true
+Source-MD5: da5ce9feffa8f44fa709f27ba3b92f66
 
 InstallScript: 
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]
-   find %d -name .packlist -exec rm -rf {} \;
 
 DocFiles: Changes LICENSE* README
 UpdatePOD: true


--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/sci cctbx.info,1.1,1.2

2013-08-27 Thread Jack Howarth
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv9284

Modified Files:
cctbx.info 
Log Message:
add 10.9 to Distribution

Index: cctbx.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/cctbx.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- cctbx.info  7 Aug 2013 01:12:34 -   1.1
+++ cctbx.info  27 Aug 2013 14:42:33 -  1.2
@@ -1,7 +1,7 @@
 Package: cctbx
 Version: 2013.07.05
 Revision: 1
-Distribution: 10.6, 10.7, 10.8
+Distribution: 10.6, 10.7, 10.8, 10.9
 GCC: 4.0
 BuildDependsOnly: false
 NoSourceDirectory: true


--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/sci coot.info, 1.26, 1.27 libccp4.info, 1.2, 1.3

2013-08-27 Thread William Scott
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv14511

Modified Files:
coot.info libccp4.info 
Log Message:
added missing srs files to libccp4 and changed coot dependency accordingly

Index: libccp4.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/libccp4.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libccp4.info15 Aug 2013 01:34:54 -  1.2
+++ libccp4.info27 Aug 2013 16:43:41 -  1.3
@@ -1,6 +1,6 @@
 Package: libccp4
 Version: 6.3.1
-Revision: 2
+Revision: 3
 Maintainer: W. G. Scott wgsc...@users.sourceforge.net 
 DescPackaging: 
  Based on package created by Morten Kjeldgaard m...@bioxray.dk with minor
@@ -13,6 +13,8 @@
 Source-MD5: 82d662032893329fd4ccf32186c649a1
 Source2: ftp://ftp.ccp4.ac.uk/ccp4/6.3.0/ccp4-6.3.0/src/Prodrg/prodrg.param
 Source2-MD5: 807f5df3c33e8dda9b49eab939c6fd69
+Source3: ftp://ftp.ccp4.ac.uk/opensource/ccp4srs-data-20120621.tar.gz
+Source3-MD5: f8b62642f313ae1342cd13ea8699eca7
 NoSourceDirectory: false
 Depends: %N-shlibs (= %v-%r), gcc48-shlibs 
 BuildDepends: mmdb-dev (= 1.25.3-1), ssm-dev (= 1.3-1), gcc48, pkgconfig
@@ -58,7 +60,10 @@
 InstallScript: 
   make install DESTDIR=%d
   mkdir -p %i/share/ccp4
-  cp ../prodrg.param %i/share/ccp4/.
+  cp ../prodrg.param%i/share/ccp4/.
+  cp ../ccp4srs-data-20120621/index.srs %i/share/ccp4/.
+  cp ../ccp4srs-data-20120621/graph.srs %i/share/ccp4/.
+  cp ../ccp4srs-data-20120621/struct.srs%i/share/ccp4/.
 
 SplitOff: 
   Package: %N-shlibs
@@ -98,6 +103,9 @@
share/ccp4/syminfo.lib
share/ccp4/symop.lib
share/ccp4/prodrg.param
+   share/ccp4/index.srs 
+   share/ccp4/graph.srs 
+   share/ccp4/struct.srs
  
 
  

Index: coot.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/coot.info,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- coot.info   15 Aug 2013 02:38:14 -  1.26
+++ coot.info   27 Aug 2013 16:43:41 -  1.27
@@ -1,6 +1,6 @@
 Package: coot
 Version: 0.7.1.0  
-Revision: 5
+Revision: 6
 SourceDirectory: %n-0.7.1
 Distribution: 10.6, 10.7, 10.8
 GCC: 4.0 
@@ -33,12 +33,14 @@
 stereo on OS X.
 
 ###
-Recommends:  povray, ccp4, raster3d
+Recommends:  povray, ccp4, raster3d  
+Conflicts: coot-pre
+Replaces: coot-pre  
 BuildDepends: 
  fink (= 0.24.12)   ,
  boost1.53.python27 (= 1.53.0-1),
  clipper-dev (= 1:2.1.20130601-1),
- libccp4-dev (= 6.3.1-2),
+ libccp4-dev (= 6.3.1-3),
  mmdb-dev (= 1.25.3-1)  ,
  ssm-dev (= 1.3-1)  ,
  atk1 (= 1.28.0-1)  ,
@@ -87,8 +89,8 @@
  coot-shlibs (= 0.7.1.0-%r)   ,
  boost1.53.python27-shlibs (= 1.53.0-1),
  clipper-shlibs (= 1:2.1.20130601-1),
- libccp4-shlibs (= 6.3.1-2)  ,
- libccp4-lib (= 6.3.1-2) ,
+ libccp4-shlibs (= 6.3.1-3)  ,
+ libccp4-lib (= 6.3.1-3) ,
  mmdb-shlibs (= 1.25.3-1),
  ssm-shlibs (= 1.3-1),
  atk1-shlibs (= 1.28.0-1),
@@ -241,7 +243,7 @@
 echo export LC_NUMERIC=C%i/bin/coot
 echo export COOT_REFMAC_LIB_DIR=%p/share/coot/lib   %i/bin/coot
 echo export COOT_PYTHON_DIR=%p/share/coot/python%i/bin/coot
-echo 'export COOT_SBASE_DIR=$CCP4/share/sbase'  %i/bin/coot
+echo 'export COOT_SBASE_DIR=%p/share/ccp4'  %i/bin/coot
 echo 'export CLIBD=%p/share/ccp4'   %i/bin/coot
  
 echo export 
PYTHONPATH=%p/lib/python2.7/site-packages:%p/lib/python2.7/site-packages/gtk-2.0:%p/share/coot/python
%i/bin/coot
 echo %p/bin/coot-real \\$@\   %i/bin/coot
@@ -253,11 +255,13 @@
 DocFiles: README AUTHORS NEWS COPYING ABOUT-NLS BUGS TODO
 License: GPL
 Maintainer: W. G. Scott wgsc...@users.sourceforge.net 
-Homepage: http://lmb.bioch.ox.ac.uk/coot
+Homepage: http://www2.mrc-lmb.cam.ac.uk/Personal/pemsley/coot/
 ###
 #
 SplitOff: 
 Package: %N-shlibs
+Conflicts: coot-pre-shlibs
+Replaces: coot-pre-shlibs
 Files: 
 lib/libccp4mg-*.0*.dylib  
 lib/libcoot-*.0*.dylib  
@@ -305,6 +309,8 @@
 Package: %N-dev
 Depends: %N (= 0.7.1.0-%r)
 BuildDependsOnly: True
+Conflicts: coot-pre-dev
+Replaces: coot-pre-dev
 Files:
 lib/*.a
 


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ 

[cvs] dists/10.7/stable/main/finkinfo/sci coot-pre.info, NONE, 1.1 coot-pre.patch, NONE, 1.1

2013-08-27 Thread William Scott
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv14733

Added Files:
coot-pre.info coot-pre.patch 
Log Message:
coot variant to placate those demanding access to the latest features

--- NEW FILE: coot-pre.patch ---
diff -ruN coot-0.6.2-pre-1-orig/scheme/group-settings.scm 
coot-0.6.2-pre-1/scheme/group-settings.scm
--- coot-0.6.2-pre-1-orig/scheme/group-settings.scm 2009-07-04 
05:57:36.0 -0700
+++ coot-0.6.2-pre-1/scheme/group-settings.scm  2010-03-31 09:52:42.0 
-0700
@@ -28,6 +28,7 @@
   (set-browser-interface firefox))
 
   (if (string=? os-type Darwin)
+ (set-display-lists-for-maps 0)
   (set-browser-interface open)))
 
 ;; York setting for molprobity. 
diff -ruN coot-0.6.2-pre-1-orig/scheme/povray.scm 
coot-0.6.2-pre-1/scheme/povray.scm
--- coot-0.6.2-pre-1-orig/scheme/povray.scm 2009-07-04 05:57:34.0 
-0700
+++ coot-0.6.2-pre-1/scheme/povray.scm  2010-03-31 09:54:43.0 -0700
@@ -14,7 +14,7 @@
   (lambda ()
 
 ; this is directory that contains colors.inc
-(list (string-append +L/sw/share/povray- povray-version /include)
+(list (string-append +L@PREFIX@/share/povray- povray-version /include)
  +FN16)))
 
 ;; Run provray using current displayed image and write .pov file to
diff -ruN coot-0.6.2-pre-1-orig/scheme/raster3d.scm 
coot-0.6.2-pre-1/scheme/raster3d.scm
--- coot-0.6.2-pre-1-orig/scheme/raster3d.scm   2009-07-04 05:57:34.0 
-0700
+++ coot-0.6.2-pre-1/scheme/raster3d.scm2010-03-31 09:55:54.0 
-0700
@@ -1,7 +1,7 @@
 
 (define coot-r3d-file-name coot.r3d)
 (define coot-png-file-name coot.png)
-(define coot-png-display-program display)
+(define coot-png-display-program open)
 
 ;; run raster3d
 (define render-image

--- NEW FILE: coot-pre.info ---
Package: coot-pre
Version: 0.8-pre
Revision: 4747
SourceDirectory: coot-%v
Distribution: 10.6, 10.7, 10.8
GCC: 4.0 
Source: 
http://www2.mrc-lmb.cam.ac.uk/Personal/pemsley/coot/source/pre-releases/coot-%v-revision-%r.tar.gz
Source-MD5: 049a0af2bbeda5d4a9761c682f74c8a0
Source2: 
http://www.ysbl.york.ac.uk/~emsley/software/extras/reference-structures.tar.gz
Source2-MD5: 257ab90d44f1c877ada96720dbb87c13
###
Description: Crystallographic molecular graphics
DescDetail: 
This version contains pre-release features and will be updated upon request.
.
Coot stands for Crystallograhic Object Oriented Toolkit. It is a toolkit and
interactive molecular graphical display and manipulation program designed for
macromolecular crystallography. Coot uses professional (and free) widgets (with
the gui builder glade), mmdb, clipper, and OpenGL, together with a new approach
to map contouring and importing/creation and other (modelling) operations. The
mmdb, clipper, ssm and mccp4 libraries are provided in individual fink packages
that replace the now obsolete ccp4-onlylibs-dev fink package. On-line
documentation is available from the coot website accessed via the help menu,
or manually, via the web-site, (see below) and is updated regularly.
.
To have an Aqua-like Coot gtk+2 environment, issue the following command:
 echo include \%p/share/themes/Glossy_P/gtk-2.0/gtkrc\~/.gtkrc-2.0
or simply create a file called ~/.gtkrc-2.0 and put this line in it:
 include \%p/share/themes/Glossy_P/gtk-2.0/gtkrc\
.
Install povray and raster3d fink packages to use the F8 key for producing 
ray-traced images. You may have to re-map the Spaces.app keybinding.
.
Coot now works with Zalman LCD hardware stereo and old-fashioned CRT hardware
stereo on OS X.

###
Recommends:  povray, ccp4, raster3d
Conflicts: coot
Replaces: coot
BuildDepends: 
 fink (= 0.24.12)   ,
 boost1.53.python27 (= 1.53.0-1),
 clipper-dev (= 1:2.1.20130601-1),
 libccp4-dev (= 6.3.1-3),
 mmdb-dev (= 1.25.3-1)  ,
 ssm-dev (= 1.3-1)  ,
 atk1 (= 1.28.0-1)  ,
 cairo (= 1.8.8-3)  ,
 expat1  ,
 fftw | fftw-mpi ,
 fontconfig2-dev (= 2.8.0-4),
 freetype219 (= 2.3.12-1)   ,
 freeglut,
 giflib  ,
 glib2-dev (= 2.22.0-1) ,
 glitz   ,
 goocanvas  (= 0.15-2)  ,
 gmp5,
 gsl ,
 gtk+2  (= 2.18.0-1),
 gtk+2-dev (= 2.18.0-1) ,
 gtkglext1   ,
 guile18 ,
 guile18-dev ,
 guile18-lib ,
 guile18-gtk-dev (= 2.0-10) ,
 libart2 (= 2.3.16-2)   ,
 libcurl4,
 libgettext8-dev ,
 libglade2 (= 2.6.2-1)  ,
 libgnomecanvas2-dev (= 2.20.0) ,
 libjpeg8,
 libpng15   

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

2013-08-27 Thread William Scott
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23783

Modified Files:
tinker.info 
Added Files:
tinker.patch 
Log Message:
tinker updates via Jack Howarth

--- NEW FILE: tinker.patch ---
--- tinker/source/initial.f.orig2013-06-07 09:19:19.0 -0400
+++ tinker/source/initial.f 2013-06-07 09:21:08.0 -0400
@@ -60,8 +60,8 @@
 c
 c Intel compiler extensions to OpenMP standard
 c
-!$call kmp_set_stacksize (2**28)
-!$call kmp_set_blocktime (0)
+c !$call kmp_set_stacksize (2**28)
+c !$call kmp_set_blocktime (0)
 c
 c default unit numbers for input and output
 c

Index: tinker.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/tinker.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- tinker.info 3 Jul 2013 21:13:06 -   1.4
+++ tinker.info 27 Aug 2013 19:31:09 -  1.5
@@ -1,15 +1,20 @@
 Package: tinker
-Version: 6.2.05
+Version: 6.2.06
 Revision: 1
 Source: http://dasher.wustl.edu/%n/downloads/%n-%v.tar.gz
 SourceRename: %n-%v.tar.gz 
 SourceDirectory: %n
-Source-MD5: 5a2be7b669e49636f9d602f76534c6e9
-BuildDepends: gcc48
-Depends: gcc48-shlibs
+Source-MD5: 5b26971634f65f13e16011d1cd781aac
+PatchFile: %n.patch
+PatchFile-MD5: 962d75c0f3eecdccde5c0b6b2e6e8839
+BuildDepends: gcc48-compiler, fftw3
+Depends: gcc48-shlibs, fftw3-shlibs
 PatchScript: 
 #!/bin/zsh -efv
-perl -pi -e 's|gfortran -c -O3|gfortran -c -O3 -fno-align-commons|g' 
macosx/**/*.make
+%{default_script}
+perl -pi -e 's|gfortran -c -O3|gfortran-fsf-4.8 -c -O3 -fno-align-commons 
-fopenmp|g' macosx/**/*.make
+perl -pi -e 's|gfortran |gfortran-fsf-4.8 -fopenmp |g' macosx/**/link*.make
+perl -pi -e 's|libtinker.a|libtinker.a -L%p/lib -lfftw3 -lfftw3_omp 
-L%p/lib/gcc4.8/lib -lgomp|g' macosx/**/link*.make
 
 CompileScript:  
 #!/bin/bash -ev


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/thesin/finkinfo dpkg.info,1.46,1.47

2013-08-27 Thread Justin F. Hallett
Update of /cvsroot/fink/experimental/thesin/finkinfo
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv26415

Modified Files:
dpkg.info 
Log Message:
BC no longer required

Index: dpkg.info
===
RCS file: /cvsroot/fink/experimental/thesin/finkinfo/dpkg.info,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- dpkg.info   24 Jun 2013 03:00:55 -  1.46
+++ dpkg.info   27 Aug 2013 20:22:20 -  1.47
@@ -12,12 +12,6 @@
   libncursesw5,
   bzip2-dev
 
-BuildConflicts: 
-  ( %m = powerpc ) gcc45, 
-  ( %m = powerpc ) gcc46, 
-  ( %m = powerpc ) gcc47,
-  ( %m = powerpc ) gcc48
-
 Depends: 
   bzip2-shlibs,
   libgettext8-shlibs,


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods module-release-pm.info, 1.7, 1.8

2013-08-27 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv27479/10.4-stable/main/finkinfo/libs/perlmods

Modified Files:
module-release-pm.info 
Log Message:
new version

Index: module-release-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/module-release-pm.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- module-release-pm.info  24 Jul 2012 11:07:59 -  1.7
+++ module-release-pm.info  27 Aug 2013 20:44:34 -  1.8
@@ -2,10 +2,9 @@
 Package: module-release-pm%type_pkg[perl]
 Version: 2.06
 Revision: 3
-Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
-Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
+Distribution: (%type_pkg[perl] = 586) 10.5
 Description: Automate software releases
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.6 5.8.8 5.10.0)
 License: Artistic
 Maintainer: Benjamin Reed module-release...@fink.raccoonfink.com
 


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs boost1.53-python3.patch, NONE, 1.1 boost1.53..info, NONE, 1.1 boost1.53.patch, NONE, 1.1 boost1.35..info, 1.6, 1.7 boost1.41.cmake.info, 1.4, 1.5 boost1.46.1

2013-08-27 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv27618

Modified Files:
boost1.35..info boost1.41.cmake.info boost1.46.1.cmake.info 
Added Files:
boost1.53-python3.patch boost1.53..info boost1.53.patch 
Log Message:
add boost1.53 to 10.6 tree

Index: boost1.35..info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/boost1.35..info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- boost1.35..info 9 May 2012 09:03:18 -   1.6
+++ boost1.35..info 27 Aug 2013 20:47:24 -  1.7
@@ -1,7 +1,7 @@
 Info2: 
 Package: boost1.35.%type_pkg[python]
 Version: 1.35.0
-Revision: 11
+Revision: 13
 Type: python (nopython systempython python2.5 python2.6 python2.7)
 Distribution: (%type_raw[python] = python2.5) 10.5, (%type_raw[python] = 
python2.5) 10.6
 
@@ -11,11 +11,13 @@
 BuildDepends: boost-jam, (%type_num[python]) %type_pkg[python], fink (= 
0.27.2)
 BuildDependsOnly: True
 #BuildConflicts: (%type_pkg[python] != nopython) python 
+### Conflicts gets ALL variants for OTHER boost versions
+### For same boost version, conditional all on  !nopython  BUT omit the 
nopython variant.
 Conflicts: 
   boost1.31, boost1.32-py23, boost1.32-py24, boost1.32.python, boost1.33, 
boost-foreach, 
-  boost1.34.systempython, 
-  boost1.34.python23,   
-  boost1.34.python24,   
+  boost1.34.systempython,
+  boost1.34.python23,
+  boost1.34.python24,
   boost1.34.python25,
   (%type_pkg[python] != nopython) boost1.35.systempython,
   (%type_pkg[python] != nopython) boost1.35.python23,
@@ -24,15 +26,25 @@
   (%type_pkg[python] != nopython) boost1.35.python26,
   (%type_pkg[python] != nopython) boost1.35.python27,
   boost1.41.cmake,
-  boost1.46.1.cmake
- 
+  boost1.46.1.cmake,
+  boost1.52.0.cmake,
+  boost1.53.systempython,
+  boost1.53.python25,
+  boost1.53.python26,
+  boost1.53.python27,
+  boost1.53.python31,
+  boost1.53.python32,
+  boost1.53.python33,
+  boost1.53.nopython  
+
+### Always include ALL boost variants in Replaces
 Replaces:  
   boost1.31, boost1.32-py23, boost1.32-py24, boost1.32.python, boost1.33, 
boost-foreach,
-  boost1.34.systempython,   
-  boost1.34.python23,
-  boost1.34.python24,
+  boost1.34.systempython,
+  boost1.34.python23,
+  boost1.34.python24,
   boost1.34.python25,
-  boost1.34.nopython, 
+  boost1.34.nopython,
   boost1.35.systempython,
   boost1.35.python23,
   boost1.35.python24,
@@ -41,7 +53,16 @@
   boost1.35.python27,
   boost1.35.nopython,
   boost1.41.cmake,
-  boost1.46.1.cmake
+  boost1.46.1.cmake,
+  boost1.52.0.cmake,
+  boost1.53.systempython,
+  boost1.53.python25,
+  boost1.53.python26,
+  boost1.53.python27,
+  boost1.53.python31,
+  boost1.53.python32,
+  boost1.53.python33,
+  boost1.53.nopython  
 
 
 Source:  mirror:sourceforge:boost/boost_1_35_0.tar.bz2
@@ -251,7 +272,7 @@
  they are compatible. 
 
  The nopython variant contains all others except the python libraries,
- so of you want a complete set of boost libraries, install
+ so if you want a complete set of boost libraries, install
  the nopython variant and one of the python variants.
 
  The systempython variant uses the system Python framework and installs the

Index: boost1.46.1.cmake.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/boost1.46.1.cmake.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- boost1.46.1.cmake.info  21 Oct 2012 00:23:01 -  1.3
+++ boost1.46.1.cmake.info  27 Aug 2013 20:47:24 -  1.4
@@ -1,6 +1,6 @@
 Package: boost1.46.1.cmake
 Version: 1.46.1
-Revision: 2
+Revision: 3
 Description: Boost C++ Libraries
 DescDetail: 
The Boost web site provides free peer-reviewed portable C++ source
@@ -30,6 +30,7 @@
 Depends: %n-shlibs (= %v-%r)
 BuildDepends: fink (= 0.24.12), cmake (= 2.6.4)
 BuildDependsOnly: true
+### Always include ALL boost variants in Conflicts
 Conflicts: 
boost-foreach,
boost1.31,
@@ -49,8 +50,19 @@
boost1.35.python26,
boost1.35.python27,
boost1.35.nopython,
-   boost1.41.cmake
+   boost1.41.cmake,
+   boost1.46.1.cmake,
+   boost1.52.0.cmake,
+   boost1.53.systempython,
+   boost1.53.python25,
+   boost1.53.python26,
+   boost1.53.python27,
+   boost1.53.python31,
+   boost1.53.python32,
+   boost1.53.python33,
+   boost1.53.nopython
 
+### Always include ALL boost variants in Replaces
 Replaces: 
boost-foreach,
boost1.31,
@@ -70,7 +82,17 @@
boost1.35.python26,
boost1.35.python27,
boost1.35.nopython,
-   boost1.41.cmake
+   boost1.41.cmake,
+   boost1.46.1.cmake,
+   boost1.52.0.cmake,
+   boost1.53.systempython,
+   boost1.53.python25,
+   

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

2013-08-27 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28982/libs/perlmods

Added Files:
test-weaken-pm.info 
Log Message:
new module

--- NEW FILE: test-weaken-pm.info ---
Package: test-weaken-pm
Version: 3.022000
Revision: 1
Type: perl
Source: mirror:cpan:authors/id/K/KR/KRYDE/Test-Weaken-%v.tar.gz
Source-MD5: 67aa37a1de788bf40abf7dd07c787f6a
DocFiles: Changes README
UpdatePOD: true
Description: Test that freed memory objects were freed
License: Artistic/GPL
Maintainer: Daniel Macks dma...@netspace.org
Homepage: http://search.cpan.org/dist/Test-Weaken


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2013-08-27 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv29603

Modified Files:
module-load-pm.info 
Added Files:
module-load-pm-10.7.info module-load-pm-10.8.info 
Log Message:
now part of perlcore (as of 5.9ish), so need to variant it; retaining 
unvarianted to assist in migration


Index: module-load-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/module-load-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- module-load-pm.info 30 May 2013 09:05:40 -  1.4
+++ module-load-pm.info 27 Aug 2013 21:17:56 -  1.5
@@ -1,9 +1,14 @@
-Package: module-load-pm
+Info2: 
+Package: module-load-pm%type_pkg[perl]
 Version: 0.24
 Revision: 1
 Source: mirror:cpan:authors/id/B/BI/BINGOS/Module-Load-%v.tar.gz
 Source-MD5: 3fb7b6ade15cfeb3379d1a0c06c32e2f
-Type: perl
+Type: perl (5.12.3 5.12.4)
+InstallScript: 
+   %{default_script}
+   mv %i/share/man %i/lib/perl5/%type_raw[perl]
+
 UpdatePOD: true
 DocFiles: README
 License: Artistic/GPL
@@ -16,3 +21,4 @@
 
Former maintainer: Chris Dolan chrisdo...@users.sourceforge.net
 
+

--- NEW FILE: module-load-pm-10.7.info ---
Info2: 
Package: module-load-pm
Version: 0.24
Revision: 102
Distribution: 10.7
Type: bundle, systemperl (5.12.3)
BuildDepends: fink (= 0.32)
RuntimeDepends: 
fink-obsolete-packages,
module-load-pm%type_pkg[systemperl],
system-perl%type_pkg[systemperl]

License: Artistic/GPL
Description: OBSOLETE: Use 'module-load-pm%type_pkg[systemperl]' instead
Maintainer: None fink-de...@lists.sourceforge.net
Homepage: http://search.cpan.org/dist/Module-Load
DescPackaging: 
Migration to varianted packaging (module is now in perlcore)



--- NEW FILE: module-load-pm-10.8.info ---
Info2: 
Package: module-load-pm
Version: 0.24
Revision: 202
Distribution: 10.8
Type: bundle, systemperl (5.12.4)
BuildDepends: fink (= 0.32)
RuntimeDepends: 
fink-obsolete-packages,
module-load-pm%type_pkg[systemperl],
system-perl%type_pkg[systemperl]

License: Artistic/GPL
Description: OBSOLETE: Use 'module-load-pm%type_pkg[systemperl]' instead
Maintainer: None fink-de...@lists.sourceforge.net
Homepage: http://search.cpan.org/dist/Module-Load
DescPackaging: 
Migration to varianted packaging (module is now in perlcore)




--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2013-08-27 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv29989

Modified Files:
module-build-pluggable-pm.info 
Log Message:
new version

Index: module-build-pluggable-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/module-build-pluggable-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- module-build-pluggable-pm.info  3 May 2013 02:14:04 -   1.1
+++ module-build-pluggable-pm.info  27 Aug 2013 21:24:50 -  1.2
@@ -1,11 +1,11 @@
 Info2: 
 Package: module-build-pluggable-pm%type_pkg[perl]
-Version: 0.09
+Version: 0.10
 Revision: 1
 Type: perl (5.12.3 5.12.4)
 BuildDepends: 
fink (= 0.30.2),
-   test-requires-pm,
+   cpan-meta-pm%type_pkg[perl],
test-simple-pm%type_pkg[perl] (= 0.98)
 
 Depends: 
@@ -13,19 +13,19 @@
class-method-modifiers-pm%type_pkg[perl],
data-optlist-pm%type_pkg[perl],
module-build-pm%type_pkg[perl] (= 0.38),
-   module-load-pm,
+   module-load-pm%type_pkg[perl],
parent-pm,
perl%type_pkg[perl]-core,
test-sharedfork-pm
 
 Source: mirror:cpan:authors/id/T/TO/TOKUHIROM/Module-Build-Pluggable-%v.tar.gz
-Source-MD5: 602b54ec37e211ebbf5d7977d4d2d681
+Source-MD5: 65e0a38ce48a3c40d06110125606fde0
 DefaultScript: modulebuild
 InstallScript: 
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]
 
-DocFiles: Changes LICENSE README
+DocFiles: Changes LICENSE README.md
 DescPackaging: 
Ingnoring self-test noise about missing MANIFEST. See:
https://rt.cpan.org/Ticket/Display.html?id=85009


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods module-load-conditional-pm.info, 1.4, 1.5

2013-08-27 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv30025

Modified Files:
module-load-conditional-pm.info 
Log Message:
migrate to varianted module-load-pmXXX


Index: module-load-conditional-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/module-load-conditional-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- module-load-conditional-pm.info 31 Dec 2012 16:04:07 -  1.4
+++ module-load-conditional-pm.info 27 Aug 2013 21:25:37 -  1.5
@@ -1,7 +1,7 @@
 Info2: 
 Package: module-load-conditional-pm%type_pkg[perl]
 Version: 0.54
-Revision: 1
+Revision: 2
 Source: mirror:cpan:authors/id/B/BI/BINGOS/Module-Load-Conditional-%v.tar.gz
 Source-MD5: 626d90b25bd461388e4706ff7a631d72
 Type: perl (5.12.3 5.12.4)
@@ -9,7 +9,7 @@
 Depends: 
locale-maketext-simple-pm,
module-corelist-pm%type_pkg[perl] (= 2.22-1),
-   module-load-pm,
+   module-load-pm%type_pkg[perl],
module-metadata-pm%type_pkg[perl],
params-check-pm,
perl%type_pkg[perl]-core,


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/thesin/finkinfo apt.info, 1.4, 1.5 apt.patch, 1.3, 1.4

2013-08-27 Thread Justin F. Hallett
Update of /cvsroot/fink/experimental/thesin/finkinfo
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv30259

Modified Files:
apt.info apt.patch 
Log Message:
  * pick up Translation-* even if only compressed available (Closes: 717665)
  * request absolute URIs from proxies again (0.9.9.3 regession)
(Closes: 717891)
  * fix missing changelog entry for 0.9.9.3 (git-dch issue)
  * debian/apt.auto-removal.sh:
- do not include debug symbol packages for the kernel in the 
  blacklist (closes: #717616)
  * debian/apt.postinst:
- run /etc/kernel/postinst.d/apt-auto-removal once on upgrade
  to ensure that the correct auto-removal list is generated
  (closes: #717615)
  * skip all Description fields in apt-cache, not just first (Closes: 717254)
  * fix 'apt-cache search' crash with missing description (Closes: 647590)
  * Do not send a connection: keep-alive, at all
  * Vietnamese updated by Tran Ngoc Quan. Closes: #717016
  * fix if-clause to generate hook-info for 'rc' packages (Closes: 717006)
  * apt-pkg/packagemanager.cc:
- increate APT::pkgPackageManager::MaxLoopCount to 5000
  * cherry pick debian/apt.auto-removal.sh feature from the
ubuntu/master branch
  * debian/apt.conf.autoremove: don't include linux-image*,
linux-restricted-modules*, and linux-ubuntu-modules* packages in the
list to never be autoremoved.
  * debian/apt.auto-removal.sh, debian/rules, debian/apt.dirs: install new
script to /etc/kernel/postinst.d/ which ensures we only automatically
keep the currently-running kernel, the being-installed kernel, and the
newest kernel, so we don't fill /boot up with an unlimited number of
kernels.  LP: #923876.
  * Fix up two things in debian/apt.auto-removal.sh:
- Use exact matches with $-terminated regexes, so we don't get
  confusion between similarly-named kernel flavours.
- Keep linux-backports-modules in sync with installed kernels.
  * Version 3 for DPkg::Pre-Install-Pkgs with MultiArch info (Closes: #712116)
  * implement arch+= and arch-= for sources.list
  * prevent MarkInstall of unsynced Multi-Arch:same siblings
  * improve debug output for the Debug::pkgProblemResolver and
Debug::pkgDepCache::AutoInstall
  * improve apt-cdrom output when no CD-ROM can be auto-detected
  * document --no-auto-detect in apt-cdrom
  * build the en manpages in subdirectory doc/en
  * remove -ldl from cdrom and -lutil from apt-get linkage
  * rewrite pkgOrderList::DepRemove to stop incorrect immediate setting
(Closes: 645713)
  * prefer Essentials over Removals in ordering score
  * fix priority sorting by prefering higher in MarkInstall
  * try all providers in order if uninstallable in MarkInstall
  * do unpacks before configures in SmartConfigure (Closes: #707578)
  * fix support for multiple patterns in apt-cache search (Closes: #691453)
  * set Fail flag in FileFd on all errors consistently
  * don't explicitly init ExtractTar InFd with invalid fd
  * OpenDescriptor should autoclose fd always on error (Closes: #704608)
  * fail in CopyFile if the FileFds have error flag set
  * ensure state-dir exists before coyping cdrom files
  * fix file location for configure-index.gz in apt.conf(5) (Closes: #711921)
  * handle missing Description in apt-cache show (Closes: #712435)
  * try defaults if auto-detection failed in apt-cdrom (Closes: #712433)
  * support \n and \r\n line endings in ReadMessages
  * do not redownload unchanged InRelease files
  * trigger NODATA error for invalid InRelease files (Closes: #712486)


Index: apt.patch
===
RCS file: /cvsroot/fink/experimental/thesin/finkinfo/apt.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- apt.patch   21 Jun 2013 04:13:59 -  1.3
+++ apt.patch   27 Aug 2013 21:33:02 -  1.4
@@ -1,10 +1,22 @@
-diff -ruN apt-0.9.8.2.orig/fink/patches/darwin-fixes.patch 
apt-0.9.8.2/fink/patches/darwin-fixes.patch
 apt-0.9.8.2.orig/fink/patches/darwin-fixes.patch   1969-12-31 
17:00:00.0 -0700
-+++ apt-0.9.8.2/fink/patches/darwin-fixes.patch2013-06-19 
20:00:38.0 -0600
-@@ -0,0 +1,537 @@
-+diff -ruN apt-0.9.8.2.orig/apt-pkg/contrib/macros.h 
apt-0.9.8.2/apt-pkg/contrib/macros.h
-+--- apt-0.9.8.2.orig/apt-pkg/contrib/macros.h 2013-06-06 11:25:59.0 
-0600
- apt-0.9.8.2/apt-pkg/contrib/macros.h  2013-06-18 11:55:07.0 
-0600
+diff -ruN apt-0.9.9.4.orig/fink/patches/darwin-fixes.patch 
apt-0.9.9.4/fink/patches/darwin-fixes.patch
+--- apt-0.9.9.4.orig/fink/patches/darwin-fixes.patch   1969-12-31 
17:00:00.0 -0700
 apt-0.9.9.4/fink/patches/darwin-fixes.patch2013-08-27 
15:23:36.0 -0600
+@@ -0,0 +1,558 @@
[...4399 lines suppressed...]
+++   SigWinch(0);
+++
+++   // Match the operation
+++   CmdL.DispatchArg(Cmds);
+++
+++   // Print any errors or warnings found during parsing
+++   bool const Errors = 

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods extutils-makemaker-pm.info, 1.15, 1.16

2013-08-27 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv32457

Modified Files:
extutils-makemaker-pm.info 
Log Message:
New upstream extutils-makemaker-pm 6.74.

Index: extutils-makemaker-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/extutils-makemaker-pm.info,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- extutils-makemaker-pm.info  25 Jul 2013 11:51:57 -  1.15
+++ extutils-makemaker-pm.info  27 Aug 2013 22:19:00 -  1.16
@@ -1,6 +1,6 @@
 Info2: 
 Package: extutils-makemaker-pm%type_pkg[perl]
-Version: 6.73.01
+Version: 6.74
 Revision: 1
 
 Type: perl (5.12.3 5.12.4)
@@ -13,9 +13,6 @@

Eliminated -bin splitoff and used update-alternatives to
allow binaries to coexist.
-   
-   Delete 'bundled' directory just to make sure bundled modules don't
-   get installed. All bundled modules are now external deps.
 
 DescPort: 
Patch makefile generator to remove -L/usr/local/lib from early
@@ -47,9 +44,8 @@
 Provides: %N-bin
 
 # Unpack Phase:
-Source: mirror:cpan:authors/id/B/BI/BINGOS/ExtUtils-MakeMaker-6.73_01.tar.gz
-#Source: mirror:cpan:modules/by-module/ExtUtils/ExtUtils-MakeMaker-%v.tar.gz
-Source-MD5: 89289ef8393f7e5be806d383134a6d3b
+Source: mirror:cpan:modules/by-module/ExtUtils/ExtUtils-MakeMaker-%v.tar.gz
+Source-MD5: aedab61a75bc8804672930d651dc3ff7
 
 PatchFile: %{ni}.patch
 PatchFile-MD5: 85f7c82e830f1d7b23e18ed32c078d3c


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods extutils-makemaker-pm.info, 1.14, 1.15

2013-08-27 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv32514

Modified Files:
extutils-makemaker-pm.info 
Log Message:
New upstream extutils-makemaker-pm 6.74.

Index: extutils-makemaker-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/extutils-makemaker-pm.info,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- extutils-makemaker-pm.info  25 Jul 2013 11:52:27 -  1.14
+++ extutils-makemaker-pm.info  27 Aug 2013 22:19:15 -  1.15
@@ -1,6 +1,6 @@
 Info2: 
 Package: extutils-makemaker-pm%type_pkg[perl]
-Version: 6.73.01
+Version: 6.74
 Revision: 1
 
 Type: perl (5.8.8 5.10.0)
@@ -13,9 +13,6 @@

Eliminated -bin splitoff and used update-alternatives to
allow binaries to coexist.
-   
-   Delete 'bundled' directory just to make sure bundled modules don't
-   get installed. All bundled modules are now external deps.
 
 DescPort: 
Patch makefile generator to remove -L/usr/local/lib from early
@@ -47,9 +44,8 @@
 Provides: %N-bin
 
 # Unpack Phase:
-Source: mirror:cpan:authors/id/B/BI/BINGOS/ExtUtils-MakeMaker-6.73_01.tar.gz
-#Source: mirror:cpan:modules/by-module/ExtUtils/ExtUtils-MakeMaker-%v.tar.gz
-Source-MD5: 89289ef8393f7e5be806d383134a6d3b
+Source: mirror:cpan:modules/by-module/ExtUtils/ExtUtils-MakeMaker-%v.tar.gz
+Source-MD5: aedab61a75bc8804672930d651dc3ff7
 
 PatchFile: %{ni}.patch
 PatchFile-MD5: 85f7c82e830f1d7b23e18ed32c078d3c


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/languages python31.info, 1.9, 1.10

2013-08-27 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/languages
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv6368

Modified Files:
python31.info 
Log Message:
Disable test_platform in python31 since it fails with 10.6/x86_64 on a 32 bit 
kernel.

Index: python31.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/languages/python31.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- python31.info   13 Aug 2013 01:11:59 -  1.9
+++ python31.info   28 Aug 2013 00:48:48 -  1.10
@@ -60,7 +60,7 @@
%{default_script}
 
 
-InfoTest: TestScript: LANG=en_US.UTF-8 make -k test EXTRATESTOPTS='-w -x 
test_distutils test_cmd_line test_argparse test_httpservers test_cmath' || exit 
2
+InfoTest: TestScript: LANG=en_US.UTF-8 make -k test EXTRATESTOPTS='-w -x 
test_distutils test_cmd_line test_argparse test_httpservers test_cmath 
test_platform' || exit 2
 
 InstallScript: 
 #!/bin/sh -ex


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs