David R. Morrison | 1 Jul 2006 05:18
Favicon

Re: [cvs] web/download sources_for_binaries.ja.php, NONE, 1.1 nav.ja.inc, 1.6, 1.7


On Jun 30, 2006, at 8:01 PM, BABA Yoshihiko wrote:

> Update of /cvsroot/fink/web/download
> In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv26882
>
>
> Log Message:
> adding Japaese to Sources for Binaries
>
> Index: nav.ja.inc
> ===================================================================
> RCS file: /cvsroot/fink/web/download/nav.ja.inc,v
> retrieving revision 1.6
> retrieving revision 1.7
> diff -u -d -r1.6 -r1.7
> --- nav.ja.inc	28 Jun 2006 16:00:04 -0000	1.6
> +++ nav.ja.inc	1 Jul 2006 03:01:07 -0000	1.7
>  <at>  <at>  -11,7 +11,7  <at>  <at> 
>    "download/10.1-upgrade.php?phpLang=ja", "10.1 アップグレー 
> ド",
>    "download/10.2-upgrade.php?phpLang=ja", "10.2 アップグレー 
> ド",
>    "download/10.3-upgrade.php?phpLang=ja", "10.3 アップグレー 
> ド",
> -  "download/sources_for_binaries.php?phpLang=en", "Sources for  
> Binaries",
> +  "download/sources_for_binaries.php?phpLang=en", "バイナリ用 
> ソース",
>    "http://bindist.finkmirrors.net/bindist/dists/", "Archive Browser"
(Continue reading)

AIDA Shinra | 1 Jul 2006 16:51
Picon
Favicon

cctools detecting at VirtPackage.pm

I found another bug:

Index: perlmod/Fink/VirtPackage.pm
===================================================================
RCS file: /cvsroot/fink/fink/perlmod/Fink/VirtPackage.pm,v
retrieving revision 1.105
diff -u -r1.105 VirtPackage.pm
--- perlmod/Fink/VirtPackage.pm	4 Apr 2006 22:45:44 -0000	1.105
+++ perlmod/Fink/VirtPackage.pm	1 Jul 2006 14:42:19 -0000
 <at>  <at>  -516,7 +516,7  <at>  <at> 
 	if (-x "/usr/bin/ld" and -x "/usr/bin/what") {
 		if (`/usr/bin/ld -v 2>/dev/null` =~ /^.*version cctools-(\d+).*?$/) {
 			$cctools_version = $1;
-		} elsif (`/usr/bin/what /usr/bin/ld` =~ /^.*PROJECT:\s*cctools-(\d+).*?$/) {
+		} elsif (`/usr/bin/what /usr/bin/ld` =~ /^\/usr\/bin\/ld\n.*PROJECT:\s*cctools-(\d+).*?$/) {
 			$cctools_version = $1;
 		}
 	} else {

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
Asko Kauppi | 3 Jul 2006 01:13
Gravatar

Why 'if' fails in fink script?


Trying to use a "simple" if-else in fink scripts; WHAT am I missing??

Sample scripts do have plenty of if's, what's so special with this:

if test `uname -r` \< "8.7.0"; then
sh: -c: line 2: syntax error: unexpected end of file
### execution of if failed, exit code 2

...
# Note: the 10.4 readline is from the OS level, not fink.
#
# TO-DO: Is there a way to make the package for both 10.3 (without  
readline, or with patch)
#        and 10.4 (with built-in readline) at once?
#
if test `uname -r` \< "8.7.0"; then
    echo "Testing... A"
else
    echo "Testing... B"
fi

if test `uname -r` \< "8.7.0"; then
    export MACOSX_DEPLOYMENT_TARGET="10.3"; \
    cd src; \
      make all MYCFLAGS="-fno-common -DLUA_USE_MACOSX"
else
    export MACOSX_DEPLOYMENT_TARGET="10.4"; \
    cd src; \
      make all MYCFLAGS="-fno-common -DLUA_USE_MACOSX - 
(Continue reading)

Asko Kauppi | 3 Jul 2006 02:08
Gravatar

Re: problem with package lua


Jean-Louis's email address is ganwell <at> fangorn.ch (two l's)

However, we are maintaining the package together, so I may pick up  
the call, too. :)

Lua 5.1.1 is being reviewed by the Lua authorities, and that version  
I can affect (not Lua 5.0, that is all Jean-Louis's).

New package splitting is like this (comments in lua51.info):

# Packages:
#   lua             The binary 'lua' (well, symbolic link); does not  
guarantee which Lua version one gets
#                   (mainly for playing with the interpreter, and for  
'package compatibility')
#   lua51-dev       Lua development headers; conflicts with any other  
development versions
#   lua51-bin       The binary 'lua51' (Lua 5.1.x) interpreter, can  
co-exist with other Lua versions
#   lua51-shlibs    Lua 5.1 shared libraries, can co-exist
#   lua51-sdl-bin   Same as 'lua51' but with Cocoa initialization,  
allowing SDL Module to be used

I don't remember the Lua 5.0 split, but there's definately more  
packages here, now. To me, this way does make sense.

"lua" (lua51-bin) is linking to the Lua sources statically, and is  
still not dragging lua51-shlibs with it (and, it shouldn't...)

(Continue reading)

Martin Costabel | 3 Jul 2006 14:57
Picon

Re: Why 'if' fails in fink script?

Asko Kauppi wrote:
> Trying to use a "simple" if-else in fink scripts; WHAT am I missing??
> 
> Sample scripts do have plenty of if's, what's so special with this:
> 
> if test `uname -r` \< "8.7.0"; then
> sh: -c: line 2: syntax error: unexpected end of file
> ### execution of if failed, exit code 2

You didn't forget to place a #!/bin/sh -ex at the beginning of your 
script, perhaps?

--

-- 
Martin

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
Chris Zubrzycki | 3 Jul 2006 16:21
Picon

Re: problem with package lua


On Jul 2, 2006, at 8:08 PM, Asko Kauppi wrote:

>
> Jean-Louis's email address is ganwell <at> fangorn.ch (two l's)
>
> However, we are maintaining the package together, so I may pick up
> the call, too. :)
>
> Lua 5.1.1 is being reviewed by the Lua authorities, and that version
> I can affect (not Lua 5.0, that is all Jean-Louis's).
>
> New package splitting is like this (comments in lua51.info):
>
> # Packages:
> #   lua             The binary 'lua' (well, symbolic link); does not
> guarantee which Lua version one gets
> #                   (mainly for playing with the interpreter, and for
> 'package compatibility')

I would get rid of this package. Have the lua5 package provide lua,  
and if you make an unversioned symlink with update-alternatives, it  
is possible to have multiple versions installed, and the user can  
choose to override the default lua symlink.

-chris zubrzycki
--
PGP public key: http://homepage.mac.com/beren/publickey.txt
ID: 0xA2ABC070
Fingerprint: 26B0 BA6B A409 FA83 42B3  1688 FBF9 8232 A2AB C070
(Continue reading)

Tim Wilson-Brown | 4 Jul 2006 10:39
Picon

Emacs22.app symlink

Hi,

When the symlink to Emacs22.app exists, the package emacs22-carbon  
fails to install.

ln: /Applications/Fink//Emacs22.app: File exists
/sw/bin/dpkg: error processing emacs22-carbon (--install):
subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
emacs22-carbon
### execution of /sw/bin/dpkg-lockwait failed, exit code 1
Failed: can't install package emacs22-carbon-22.0.50.cvs20060316-1001
MacMini:~ twilsonb$ sudo rm /Applications/Fink/Emacs22.app

I don't think this should happen - I'd rather have the symlink  
overwritten.

Tim

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
Alexander K. Hansen | 4 Jul 2006 19:09
Picon
Gravatar

Re: Emacs22.app symlink

On 7/4/06, Tim Wilson-Brown <twilsonb <at> mac.com> wrote:
> Hi,
>
> When the symlink to Emacs22.app exists, the package emacs22-carbon
> fails to install.
>
>
> ln: /Applications/Fink//Emacs22.app: File exists
> /sw/bin/dpkg: error processing emacs22-carbon (--install):
> subprocess post-installation script returned error exit status 1
> Errors were encountered while processing:
> emacs22-carbon
> ### execution of /sw/bin/dpkg-lockwait failed, exit code 1
> Failed: can't install package emacs22-carbon-22.0.50.cvs20060316-1001
> MacMini:~ twilsonb$ sudo rm /Applications/Fink/Emacs22.app
>
>
> I don't think this should happen - I'd rather have the symlink
> overwritten.
>
> Tim

(It probably would have been good to send this to -users and to the
listed package maintainer [cced] )

Agreed.  It may just be as simple as using 'ln -sf'

--

-- 
Alexander K. Hansen
Fink Documenter (still)
(Continue reading)

Martin Costabel | 4 Jul 2006 19:52
Picon

Re: Emacs22.app symlink

Alexander K. Hansen wrote:
[]
> (It probably would have been good to send this to -users and to the
> listed package maintainer [cced] )
> 
> 
> Agreed.  It may just be as simple as using 'ln -sf'

Except that this happens inside the AppBundles code from 
Fink::PkgVersion; so the report would even be appropriate for fink-core, 
or perhaps for an item on the bug tracker so that it doesn't get lost.

--

-- 
Martin

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
Jack Howarth | 4 Jul 2006 21:10
Picon

Re: lammpi could use a maintainer

Daniel,
   I have been proposing packaging revisions for lammpi for some time
now but have been consistently ignored...

http://sourceforge.net/tracker/index.php?func=detail&aid=1361695&group_id=17203&atid=414256

I have also just posted proposed packaging for openmpi and a revision of my gromacs-mpi
packaging to use openmpi. For now I am just adding a conflicts between lam and openmpi.
Theoretically we could rearrange the files in both to create a lammpi and openmpi which
could co-exist. However, if lam is being mothballed upstream I'm not sure if it worth the
effort. I would suggest we leave lammpi in fink with a conflict on openmpi and just
encourage everyone to build against openmpi rather than lammpi.
         Jack

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

Gmane