[Fink-devel] Re: Maximum redirects followed
Trevor Harmon <[EMAIL PROTECTED]> said: > On Oct 3, 2005, at 9:12 PM, Daniel E. Macks wrote: > >> Last I checked (10.3) Apple's curl was configured without crypto >> support. That would mean https: URLs won't work if 'curl' is >> /usr/bin/curl and the redirects go to other https: URLs. Does >> installing fink's curl (package is "curl-unified" or "curl-ssl") solve >> the problem? OTOH, we don't use https Source URLs for precisely this >> reason. > > Well, 10.4's curl didn't give me any SSL errors, and I also tried > curl-ssl-7.14.1-2, which gave me exactly the same problem. > > So...anybody here have upload rights to post jogl-src.zip somewhere, > as Alexander suggested? Fink is now mirroring it as jogl-1.1.1-src.zip, so .info could be: Source: mirror:sourceforge:fink/jogl-1.1.1-src.zip Source-MD5: a5d6b630a17b41227ab41506c826277b (obviously changing Source to use %n and %v as appropriate:) It's already on SF's osdn mirror site, didn't check others. Please let me know ASAP if your copy of the file has a different MD5. dan -- Daniel Macks [EMAIL PROTECTED] http://www.netspace.org/~dmacks --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
Re: [Fink-devel] Re: Maximum redirects followed
On Oct 3, 2005, at 9:53 PM, Daniel Macks wrote: What license covers that file? It's BSD. Trevor --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
Re: [Fink-devel] Re: Maximum redirects followed
On Mon, Oct 03, 2005 at 09:25:36PM -0700, Trevor Harmon wrote: > On Oct 3, 2005, at 9:12 PM, Daniel E. Macks wrote: > > >Last I checked (10.3) Apple's curl was configured without crypto > >support. That would mean https: URLs won't work if 'curl' is > >/usr/bin/curl and the redirects go to other https: URLs. Does > >installing fink's curl (package is "curl-unified" or "curl-ssl") solve > >the problem? OTOH, we don't use https Source URLs for precisely this > >reason. > > Well, 10.4's curl didn't give me any SSL errors, and I also tried > curl-ssl-7.14.1-2, which gave me exactly the same problem. > > So...anybody here have upload rights to post jogl-src.zip somewhere, > as Alexander suggested? What license covers that file? dan -- Daniel Macks [EMAIL PROTECTED] http://www.netspace.org/~dmacks --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
Re: [Fink-devel] Re: Maximum redirects followed
On Oct 3, 2005, at 9:12 PM, Daniel E. Macks wrote: Last I checked (10.3) Apple's curl was configured without crypto support. That would mean https: URLs won't work if 'curl' is /usr/bin/curl and the redirects go to other https: URLs. Does installing fink's curl (package is "curl-unified" or "curl-ssl") solve the problem? OTOH, we don't use https Source URLs for precisely this reason. Well, 10.4's curl didn't give me any SSL errors, and I also tried curl-ssl-7.14.1-2, which gave me exactly the same problem. So...anybody here have upload rights to post jogl-src.zip somewhere, as Alexander suggested? Trevor --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
[Fink-devel] Re: Maximum redirects followed
Trevor Harmon <[EMAIL PROTECTED]> said: > I am developing a package description for JOGL: > https://jogl.dev.java.net/ > > The source is available here: > https://jogl.dev.java.net/files/documents/27/17108/jogl-src.zip > > When I try to download the above link using my web browser, it works > fine. However, when Fink tries to download it using curl, it goes > into an infinite loop. Eventually I get an error saying: > > curl: (47) Maximum (50) redirects followed > ### execution of curl failed, exit code 47 > > I've tried to debug this using the following command: > curl --verbose -f -L -O https://www.dev.java.net/files/documents/ > 27/17108/jogl-src.zip > > And it seems the problem is related to a redirection: "HTTP/1.1 302 > Moved Temporarily". The redirection is to this link: > https://jogl.dev.java.net/servlets/ProjectDocumentDownload? > documentID=17108 > > As before, downloading this link using my web browser works fine, but > using curl redirects back to the original link! Is this a bug in curl? Last I checked (10.3) Apple's curl was configured without crypto support. That would mean https: URLs won't work if 'curl' is /usr/bin/curl and the redirects go to other https: URLs. Does installing fink's curl (package is "curl-unified" or "curl-ssl") solve the problem? OTOH, we don't use https Source URLs for precisely this reason. dan -- Daniel Macks [EMAIL PROTECTED] http://www.netspace.org/~dmacks --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
Re: [Fink-devel] Re: ruby 1.8.2 <- Look here :)
On Mon, Oct 03, 2005 at 08:40:53PM -0700, Blair Zajac wrote: > > The only thing I found was that the new ruby.c expects that Unix-like > OSs have a char **environ that it can use to get the environment to link > $0 to the process name. My 10.3 box does not have environ, so I just > #ifdef'd this code out, so it matches the code in 1.8.2. The missing _environ symbol is a common problem when porting to OS X. Here's the standard patch used in several other fink packages: +#ifdef __APPLE__ +#include +#define environ (*_NSGetEnviron()) +#else extern char **environ; +#endif Guess we should add this to the doc/porting webpage. dan -- Daniel Macks [EMAIL PROTECTED] http://www.netspace.org/~dmacks --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
[Fink-devel] Re: ruby 1.8.2 <- Look here :)
Michal 'hramrach' Suchanek <[EMAIL PROTECTED]> wrote: Hello Can somebody, please, look at the ruby 1.8.2 package? Hello, I took a quick look. I haven't tried to compile it but here are some comments: How about updating to use the newer readline5 and gdbm3 packages instead of readline and gdbm? It would be good to get on the newer versions of these. When I compiled Ruby 1.8.3 against them, it didn't have any issues. It is sitting in package tracker for quite some time. There is a minor glitch: one can theoretically install ruby-dev 1.8.1 and ruby 1.8.2 at once. That gives "complete" installation but since mkmf.rb was moved to -dev it will not be installed. Because the package was split in more pieces it cannot be fixed with adding conflicts, at least in no way I know. There is ruby 1.8.3, reportedly it has some new portability misfeatures. What misfeatures? Do you have links to those reports? The only thing I found was that the new ruby.c expects that Unix-like OSs have a char **environ that it can use to get the environment to link $0 to the process name. My 10.3 box does not have environ, so I just #ifdef'd this code out, so it matches the code in 1.8.2. We do have some help from the Debian community and the growing Ruby on Rails community in finding and fixing bugs in 1.8.3. Debian updated their Ruby packages to 1.8.3 over a week ago and I keep track of those packages, so we can migrate any fixes from Debian over to Fink. BTW, Debian did backport a large number of patches from 1.8.3 into their 1.8.2 package, which you can see at http://ftp.us.debian.org/debian/pool/main/r/ruby1.8/ruby1.8_1.8.2-9.diff.gz Almost every one of these is 1.8.3, so that's why I suggest we move to 1.8.3. If you are committed do want to stick with 1.8.2, then I suggest migrating in most of Debian's patches into our 1.8.2 package. I probably will not be able to look into updating the package for some time, and there is no point if it is not going in anyway. I'm looking at building a set of Fink packages for Ruby 1.8.3 and Ruby on Rails, including the PostgreSQL bindings (and possibly the MySQL bindings) so I'd be glad to help. If you don't want to maintain the packages any more, I'd be glad to take over. Regads, Blair -- Blair Zajac, Ph.D. <[EMAIL PROTECTED]> Subversion and Orca training and consulting http://www.orcaware.com/svn/ --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
Re: [Fink-devel] Maximum redirects followed
On 10/3/05, Trevor Harmon <[EMAIL PROTECTED]> wrote: > On Oct 3, 2005, at 5:49 PM, Alexander K. Hansen wrote: > > > Curl has been known not to get along with some source URLs. In such a > > case I believe the recommendation is to have Fink host it at > > SourceForge--which requires somebody with appropriate access to upload > > it.. > > Sounds good. Is there a procedure for that? Or do I just contact one > of the core developers? > > Trevor > > The latter would be the procedure. :-) -- Alexander K. Hansen Fink Documenter [Day Job] Levitated Dipole Experiment http://psfcwww2.psfc.mit.edu/ldx/ --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
Re: [Fink-devel] Maximum redirects followed
On Oct 3, 2005, at 5:49 PM, Alexander K. Hansen wrote: Curl has been known not to get along with some source URLs. In such a case I believe the recommendation is to have Fink host it at SourceForge--which requires somebody with appropriate access to upload it.. Sounds good. Is there a procedure for that? Or do I just contact one of the core developers? Trevor --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
Re: [Fink-devel] xmame-0.69.1-1
On 9/30/05, Scott Wagner <[EMAIL PROTECTED]> wrote: > I got Xmame 0.100 to build on this version of os would love to help > with getting it added. > > -- > Package manager version: 0.24.10 > Distribution version: 0.8.0.rsync > Mac OS X version: 10.4.2 > Xcode version: 2.1 > gcc version: 4.0.0 (Apple Computer, Inc. build 5026) > make version: 3.80 > Feedback Courtesy of FinkCommander > > > You should make a formal submission to the tracker, so that folks can check out your files. -- Alexander K. Hansen Fink Documenter [Day Job] Levitated Dipole Experiment http://psfcwww2.psfc.mit.edu/ldx/ --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
Re: [Fink-devel] Maximum redirects followed
On 10/3/05, Trevor Harmon <[EMAIL PROTECTED]> wrote: > I am developing a package description for JOGL: > https://jogl.dev.java.net/ > > The source is available here: > https://jogl.dev.java.net/files/documents/27/17108/jogl-src.zip > > When I try to download the above link using my web browser, it works > fine. However, when Fink tries to download it using curl, it goes > into an infinite loop. Eventually I get an error saying: > > curl: (47) Maximum (50) redirects followed > ### execution of curl failed, exit code 47 > > I've tried to debug this using the following command: > curl --verbose -f -L -O https://www.dev.java.net/files/documents/ > 27/17108/jogl-src.zip > > And it seems the problem is related to a redirection: "HTTP/1.1 302 > Moved Temporarily". The redirection is to this link: > https://jogl.dev.java.net/servlets/ProjectDocumentDownload? > documentID=17108 > > As before, downloading this link using my web browser works fine, but > using curl redirects back to the original link! Is this a bug in curl? > > Thanks, > > Trevor > Curl has been known not to get along with some source URLs. In such a case I believe the recommendation is to have Fink host it at SourceForge--which requires somebody with appropriate access to upload it.. -- Alexander K. Hansen Fink Documenter [Day Job] Levitated Dipole Experiment http://psfcwww2.psfc.mit.edu/ldx/ --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
[Fink-devel] Maximum redirects followed
I'm writing a .info for JOGL: https://jogl.dev.java.net The source zip is here: https://www.dev.java.net/files/documents/27/17108/jogl-src.zip I can retrieve the above link just fine using my browser. However, when Fink tries to grab it using curl, I get an error: curl: (47) Maximum (50) redirects followed According to "curl --verbose", this is because the link returns "HTTP/1.1 302 Moved Temporarily" and redirects to here: https://jogl.dev.java.net/servlets/ProjectDocumentDownload?documentID=17108 But then it just goes into some kind of infinite loop. Does anybody know a way around this problem? Thanks, Trevor --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
[Fink-devel] xmame-0.69.1-1
I got Xmame 0.100 to build on this version of os would love to help with getting it added. -- Package manager version: 0.24.10 Distribution version: 0.8.0.rsync Mac OS X version: 10.4.2 Xcode version: 2.1 gcc version: 4.0.0 (Apple Computer, Inc. build 5026) make version: 3.80 Feedback Courtesy of FinkCommander --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
[Fink-devel] Maximum redirects followed
I am developing a package description for JOGL: https://jogl.dev.java.net/ The source is available here: https://jogl.dev.java.net/files/documents/27/17108/jogl-src.zip When I try to download the above link using my web browser, it works fine. However, when Fink tries to download it using curl, it goes into an infinite loop. Eventually I get an error saying: curl: (47) Maximum (50) redirects followed ### execution of curl failed, exit code 47 I've tried to debug this using the following command: curl --verbose -f -L -O https://www.dev.java.net/files/documents/ 27/17108/jogl-src.zip And it seems the problem is related to a redirection: "HTTP/1.1 302 Moved Temporarily". The redirection is to this link: https://jogl.dev.java.net/servlets/ProjectDocumentDownload? documentID=17108 As before, downloading this link using my web browser works fine, but using curl redirects back to the original link! Is this a bug in curl? Thanks, Trevor --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
[Fink-devel] Newer version of Storable.pm
I'm trying to package a Perl module that requires a newer version of Storable.pm than the one that comes with Tiger (v2.14 vs. v2.13). The missing feature I need is the ability to store weak references. Does anyone foresee problems with a new storable-pm.info? I believe Fink does not care strongly which version it uses, but since this is an implied Essential package, I thought I should ask. Chris -- Chris Dolan, Software Developer, Clotho Advanced Media Inc. 608-294-7900, fax 294-7025, 1435 E Main St, Madison WI 53703 Clotho Advanced Media, Inc. - Creators of MediaLandscape Software (http://www.media-landscape.com/) and partners in the revolutionary Croquet project (http://www.opencroquet.org/) --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel
Re: [Fink-devel] fort77/f2c BuildDepends problem
Daniel Macks wrote: fort77-1.18-17 lists Depends:f2c, but f2c (20030428-2) is BuildDependsOnly:true. The bin/fort77 script contains an explicit call to the f2c binary, so the Depends makes sense. Is the BDO flag wrong? Or are there other alternate packages of f2c's files, requiring that f2c remain "swappable"? dan Dan: I'm pretty sure the BDO flag in f2c is wrong. -Jeff -- Jeffrey S. Whitaker Phone : (303)497-6313 NOAA/OAR/CDC R/CDC1FAX : (303)497-6449 325 BroadwayWeb : http://www.cdc.noaa.gov/~jsw Boulder, CO, USA 80305-3328 Office: Skaggs Research Cntr 1D-124 --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl ___ Fink-devel mailing list Fink-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fink-devel