From walter at katipo.co.nz Thu Nov 8 18:24:24 2007 From: walter at katipo.co.nz (Walter McGinnis) Date: Fri, 9 Nov 2007 12:24:24 +1300 Subject: [Ruby-zoom-devel] heads up for installing 0.4 on Mac OS X 10.5 Leopard Message-ID: <61463492-5DAD-4F10-8840-B9A2FED4995D@katipo.co.nz> If you are testing out the 0.4.1 by installing on Leopard, there is a trick to getting it to build: env ARCHFLAGS="-arch i386" rake Same goes for the resulting gem: sudo env ARCHFLAGS="-arch i386" gem install pkg/zoom-0.4.1.gem Otherwise you will get something like this: ... "_ZOOM_connection_package", referenced from: _rbz_package_make in rbzoompackage.o ld: symbol(s) not found for architecture ppc collect2: ld returned 1 exit status ... I'm about to see if YAZ 3.0.14 has fixed any of our Extended Services problems. Cheers, Walter From walter at katipo.co.nz Thu Nov 8 20:59:19 2007 From: walter at katipo.co.nz (Walter McGinnis) Date: Fri, 9 Nov 2007 14:59:19 +1300 Subject: [Ruby-zoom-devel] Latest YAZ and Zebra Message-ID: <66778F1B-BD45-4158-8D4F-9C30CF883642@katipo.co.nz> Argh. Just tested whether zoom 0.4.1 works with YAZ 3.0.14 and Zebra 2.0.18 and still no dice. I didn't see anything meaningful to me in the log, but here it is: 14:09:07-09/11 zebrasrv(2) [session] Session - OK 2 tcp:::1 68933 14:09:07-09/11 zebrasrv(2) [request] Auth idPass kete - 14:09:07-09/11 zebrasrv(2) [request] Init OK - ID:81/81 Name:ZOOM-C/ YAZ Version:1.150/3.0.14 14:09:07-09/11 zebrasrv(2) [log] function: 1 14:09:07-09/11 zebrasrv(2) [log] Waitaction: 2 14:09:07-09/11 zebrasrv(2) [log] adm request database public 14:09:07-09/11 zebrasrv(2) [log] adm-commit 14:09:07-09/11 zebrasrv(2) [log] enabling shadow spec=./shadow:4G 14:09:07-09/11 zebrasrv(2) [log] cache_fname = ./shadow/cache I ended up reverting to YAZ 2.1.56 and Zebra 2.0.6. Here's a working Extended Service in the log: 14:48:56-09/11 zebrasrv(15) [session] Session - OK 15 tcp:::1 72996 14:48:56-09/11 zebrasrv(15) [request] Auth idPass kete - 14:48:56-09/11 zebrasrv(15) [request] Init OK - ID:81/81 Name:ZOOM-C/ YAZ Version:1.116.2.1/2.1.56 14:48:56-09/11 zebrasrv(15) [log] function: 1 14:48:56-09/11 zebrasrv(15) [log] Waitaction: 2 14:48:56-09/11 zebrasrv(15) [log] Received DB Update 14:48:56-09/11 zebrasrv(15) [log] action 14:48:56-09/11 zebrasrv(15) [log] specialUpdate 14:48:56-09/11 zebrasrv(15) [log] database: public 14:48:56-09/11 zebrasrv(15) [log] enabling shadow spec=./shadow:4G 14:48:56-09/11 zebrasrv(15) [log] cache_fname = ./shadow/cache 14:48:56-09/11 zebrasrv(15) [log] record 0 type XML 14:48:56-09/11 zebrasrv(15) [log] 1464 bytes: > References: <66778F1B-BD45-4158-8D4F-9C30CF883642@katipo.co.nz> <763570460711090613j5586b60fx694b709e2486a5b7@mail.gmail.com> Message-ID: <763570460711091346i70471c83q55238afd8f62d25d@mail.gmail.com> On Nov 9, 2007 4:18 PM, Walter McGinnis wrote: > I caught and worked through the changes in permission syntax ( new is > "passwd: file_name" vs old being "passw.file_name"). Are there other > subtle changes that I may have missed? The other one I remember has to do with how you denote an anonymous user, but there may be others. It'd really be best if you could confirm that you are using the latest yaz and zebra and then run the tests. If those do pass for you then you've narrowed things down, and if they don't well ... we at least know it's not just with your kete config. --Jason From walter at katipo.co.nz Fri Nov 9 16:46:41 2007 From: walter at katipo.co.nz (Walter McGinnis) Date: Sat, 10 Nov 2007 10:46:41 +1300 Subject: [Ruby-zoom-devel] heads up for installing 0.4 on Mac OS X 10.5 Leopard In-Reply-To: References: <61463492-5DAD-4F10-8840-B9A2FED4995D@katipo.co.nz> Message-ID: Perhaps. Or maybe src/extconf.rb. There is already manipulation of $LDFLAGS and $CFLAGS in there before it runs the create_makefile method. I should also note that setting ARCHFLAGS this way is only for 10.5 on Intel, I assume things should "just work" for powerpc platform. I tried this to figure out the architecture (to base logic around): $ ruby -e 'puts $LOAD_PATH' /Library/Ruby/Site/1.8 /Library/Ruby/Site/1.8/powerpc-darwin9.0 /Library/Ruby/Site/1.8/universal-darwin9.0 /Library/Ruby/Site /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8 /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/ 1.8/powerpc-darwin9.0 /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/ 1.8/universal-darwin9.0 Notice that it is either powerpc-darwin or universal-darwin (both powerpc and i386), so nothing that gives away that we are on an Intel box. Other ideas for how to derive that little nugget? Btw, both Ed and Jason responded to me off list for stuff that in my opinion should be public discussion (sorry Ed and Jason if that assumption is wrong). Could we keep things on list when it might be useful for other people to find later or others may offer help, please? Cheers, Walter On Nov 10, 2007, at 12:49 AM, Ed Summers wrote: > I wonder if this can be done programaticaly in the Rakefile? > > //Ed > > On Nov 8, 2007 6:24 PM, Walter McGinnis wrote: >> If you are testing out the 0.4.1 by installing on Leopard, there is a >> trick to getting it to build: >> >> env ARCHFLAGS="-arch i386" rake >> >> Same goes for the resulting gem: >> >> sudo env ARCHFLAGS="-arch i386" gem install pkg/zoom-0.4.1.gem >> >> Otherwise you will get something like this: >> >> ... >> "_ZOOM_connection_package", referenced from: >> _rbz_package_make in rbzoompackage.o >> ld: symbol(s) not found for architecture ppc >> collect2: ld returned 1 exit status >> ... >> >> I'm about to see if YAZ 3.0.14 has fixed any of our Extended Services >> problems. >> >> Cheers, >> Walter >> >> _______________________________________________ >> Ruby-zoom-devel mailing list >> Ruby-zoom-devel at rubyforge.org >> http://rubyforge.org/mailman/listinfo/ruby-zoom-devel >> From walter at katipo.co.nz Fri Nov 9 16:48:54 2007 From: walter at katipo.co.nz (Walter McGinnis) Date: Sat, 10 Nov 2007 10:48:54 +1300 Subject: [Ruby-zoom-devel] Latest YAZ and Zebra In-Reply-To: <763570460711091346i70471c83q55238afd8f62d25d@mail.gmail.com> References: <66778F1B-BD45-4158-8D4F-9C30CF883642@katipo.co.nz> <763570460711090613j5586b60fx694b709e2486a5b7@mail.gmail.com> <763570460711091346i70471c83q55238afd8f62d25d@mail.gmail.com> Message-ID: <4EA2B107-146F-4B22-8808-EE022C865F78@katipo.co.nz> Will do at some point when I have more time. Hopefully soon. Right now I need to run with a functioning Zebra to get other work done. Cheers, Walter On Nov 10, 2007, at 10:46 AM, Jason Ronallo wrote: > On Nov 9, 2007 4:18 PM, Walter McGinnis wrote: >> I caught and worked through the changes in permission syntax ( new is >> "passwd: file_name" vs old being "passw.file_name"). Are there other >> subtle changes that I may have missed? > > The other one I remember has to do with how you denote an anonymous > user, but there may be others. > > It'd really be best if you could confirm that you are using the latest > yaz and zebra and then run the tests. If those do pass for you then > you've narrowed things down, and if they don't well ... we at least > know it's not just with your kete config. > > --Jason From jronallo at gmail.com Fri Nov 9 16:57:35 2007 From: jronallo at gmail.com (Jason Ronallo) Date: Fri, 9 Nov 2007 16:57:35 -0500 Subject: [Ruby-zoom-devel] heads up for installing 0.4 on Mac OS X 10.5 Leopard In-Reply-To: References: <61463492-5DAD-4F10-8840-B9A2FED4995D@katipo.co.nz> Message-ID: <763570460711091357r44c273b4l7e93733b8d6f1bba@mail.gmail.com> On Nov 9, 2007 4:46 PM, Walter McGinnis wrote: > Btw, both Ed and Jason responded to me off list for stuff that in my > opinion should be public discussion (sorry Ed and Jason if that > assumption is wrong). Could we keep things on list when it might be > useful for other people to find later or others may offer help, please? Walter, I totally agree. I did respond to you and copied the list: http://rubyforge.org/pipermail/ruby-zoom-devel/2007-November/thread.html It seems just a reply goes to the individual while a reply all includes the list. I looked to see if there was a way to change the mailing list settings but I do not have permissions. --Jason From walter at katipo.co.nz Fri Nov 9 17:02:37 2007 From: walter at katipo.co.nz (Walter McGinnis) Date: Sat, 10 Nov 2007 11:02:37 +1300 Subject: [Ruby-zoom-devel] heads up for installing 0.4 on Mac OS X 10.5 Leopard In-Reply-To: <763570460711091357r44c273b4l7e93733b8d6f1bba@mail.gmail.com> References: <61463492-5DAD-4F10-8840-B9A2FED4995D@katipo.co.nz> <763570460711091357r44c273b4l7e93733b8d6f1bba@mail.gmail.com> Message-ID: <0FD9EC48-D84A-4703-B021-685F080FF9E6@katipo.co.nz> Yep, Jason, noticed that you did that after I shot off my email. Sorry for the hubbub. Cheers, Walter On Nov 10, 2007, at 10:57 AM, Jason Ronallo wrote: > On Nov 9, 2007 4:46 PM, Walter McGinnis wrote: >> Btw, both Ed and Jason responded to me off list for stuff that in my >> opinion should be public discussion (sorry Ed and Jason if that >> assumption is wrong). Could we keep things on list when it might be >> useful for other people to find later or others may offer help, >> please? > > Walter, I totally agree. I did respond to you and copied the list: > http://rubyforge.org/pipermail/ruby-zoom-devel/2007-November/thread.html > > It seems just a reply goes to the individual while a reply all > includes the list. I looked to see if there was a way to change the > mailing list settings but I do not have permissions. > > --Jason From terry.reese at oregonstate.edu Mon Nov 19 13:56:33 2007 From: terry.reese at oregonstate.edu (Reese, Terry) Date: Mon, 19 Nov 2007 10:56:33 -0800 Subject: [Ruby-zoom-devel] rzoom 0.4.1? In-Reply-To: References: <61463492-5DAD-4F10-8840-B9A2FED4995D@katipo.co.nz> Message-ID: <1454CCD2A8D4B74F9EEE8CB68C891CC902A0E2B7@NWS-EXCH3.nws.oregonstate.edu> I'm just curious -- what work needs to be done so we can tag and make available a 0.4.1 gem via rubyforge? I have some time -- and if its something I can help with, I'd certainly be willing. --TR From jronallo at gmail.com Mon Nov 19 19:35:59 2007 From: jronallo at gmail.com (Jason Ronallo) Date: Mon, 19 Nov 2007 19:35:59 -0500 Subject: [Ruby-zoom-devel] rzoom 0.4.1? In-Reply-To: <1454CCD2A8D4B74F9EEE8CB68C891CC902A0E2B7@NWS-EXCH3.nws.oregonstate.edu> References: <61463492-5DAD-4F10-8840-B9A2FED4995D@katipo.co.nz> <1454CCD2A8D4B74F9EEE8CB68C891CC902A0E2B7@NWS-EXCH3.nws.oregonstate.edu> Message-ID: <763570460711191635o50ec1f97uf23480f40f2a7d8b@mail.gmail.com> Yeah, I've been wanting to make a release for a very long time now, but unfortunately school has gotten in the way. >From what I can see all that really needs done is to update documentation and finalize the changelog. If it's agreeable I'd like to move the rdoc to be the homepage. Right now I'll work on adding some additional documentation and I'll let folks know when I've done. Sorry for letting this go so long. --Jason On Nov 19, 2007 1:56 PM, Reese, Terry wrote: > I'm just curious -- what work needs to be done so we can tag and make > available a 0.4.1 gem via rubyforge? I have some time -- and if its > something I can help with, I'd certainly be willing. > > --TR > _______________________________________________ > Ruby-zoom-devel mailing list > Ruby-zoom-devel at rubyforge.org > http://rubyforge.org/mailman/listinfo/ruby-zoom-devel > From jronallo at gmail.com Mon Nov 19 20:57:18 2007 From: jronallo at gmail.com (Jason Ronallo) Date: Mon, 19 Nov 2007 20:57:18 -0500 Subject: [Ruby-zoom-devel] rzoom 0.4.1? In-Reply-To: <1454CCD2A8D4B74F9EEE8CB68C891CC902A0E2B7@NWS-EXCH3.nws.oregonstate.edu> References: <61463492-5DAD-4F10-8840-B9A2FED4995D@katipo.co.nz> <1454CCD2A8D4B74F9EEE8CB68C891CC902A0E2B7@NWS-EXCH3.nws.oregonstate.edu> Message-ID: <763570460711191757l6f5dc48fw96e6be7dfe868091@mail.gmail.com> Terry, I updated the README of the Rdoc and made it the homepage. I added some short samples. http://ruby-zoom.rubyforge.org/ Besides looking over the Rdoc and updating the Changelog (date), I can't remember anything else that would need to be done. Anything you think needs added to the documentation? Let me know and I'll tag 0.4.1 and make a release. Sorry again this has taken so long. --Jason On Nov 19, 2007 1:56 PM, Reese, Terry wrote: > I'm just curious -- what work needs to be done so we can tag and make > available a 0.4.1 gem via rubyforge? I have some time -- and if its > something I can help with, I'd certainly be willing. > > --TR > _______________________________________________ > Ruby-zoom-devel mailing list > Ruby-zoom-devel at rubyforge.org > http://rubyforge.org/mailman/listinfo/ruby-zoom-devel > From terry.reese at oregonstate.edu Mon Nov 19 23:17:21 2007 From: terry.reese at oregonstate.edu (Reese, Terry) Date: Mon, 19 Nov 2007 20:17:21 -0800 Subject: [Ruby-zoom-devel] rzoom 0.4.1? References: <61463492-5DAD-4F10-8840-B9A2FED4995D@katipo.co.nz><1454CCD2A8D4B74F9EEE8CB68C891CC902A0E2B7@NWS-EXCH3.nws.oregonstate.edu> <763570460711191757l6f5dc48fw96e6be7dfe868091@mail.gmail.com> Message-ID: <1454CCD2A8D4B74F9EEE8CB68C891CC9015D5791@NWS-EXCH3.nws.oregonstate.edu> Jason, That sounds good. I didn't think that there was anything else that needed to be done. I mostly just wanted to make sure there wasn't any remaining issues holding back the update. Thanks, --TR ******************************************* Terry Reese Cataloger for Networked Resources Digital Production Unit Head Oregon State University Libraries Corvallis, OR 97331 tel: 541-737-6384 email: terry.reese at oregonstate.edu http: http://oregonstate.edu/~reeset ******************************************* ________________________________ From: Jason Ronallo [mailto:jronallo at gmail.com] Sent: Mon 11/19/2007 5:57 PM To: Reese, Terry Cc: ruby-zoom-devel at rubyforge.org Subject: Re: [Ruby-zoom-devel] rzoom 0.4.1? Terry, I updated the README of the Rdoc and made it the homepage. I added some short samples. http://ruby-zoom.rubyforge.org/ Besides looking over the Rdoc and updating the Changelog (date), I can't remember anything else that would need to be done. Anything you think needs added to the documentation? Let me know and I'll tag 0.4.1 and make a release. Sorry again this has taken so long. --Jason On Nov 19, 2007 1:56 PM, Reese, Terry wrote: > I'm just curious -- what work needs to be done so we can tag and make > available a 0.4.1 gem via rubyforge? I have some time -- and if its > something I can help with, I'd certainly be willing. > > --TR > _______________________________________________ > Ruby-zoom-devel mailing list > Ruby-zoom-devel at rubyforge.org > http://rubyforge.org/mailman/listinfo/ruby-zoom-devel > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/ruby-zoom-devel/attachments/20071119/bbbc46a4/attachment.html From jronallo at gmail.com Tue Nov 20 13:34:08 2007 From: jronallo at gmail.com (Jason Ronallo) Date: Tue, 20 Nov 2007 13:34:08 -0500 Subject: [Ruby-zoom-devel] 0.4.1 released & rubyforge problems Message-ID: <763570460711201034l5d8886b1m8cbaf6a4daf25735@mail.gmail.com> OK, 0.4.1 has been released. But I can't download the gem even though it seems to have propagated to the mirrors. I've put in a support request: http://rubyforge.org/tracker/index.php?func=detail&aid=15767&group_id=5&atid=102 Here's what happens: $ gem list -r | grep zoom zoom (0.4.1, 0.4.0, 0.3.0) $ sudo gem install zoom ERROR: While executing gem ... (OpenURI::HTTPError) 404 Not Found I haven't seen any straightforward answer anywhere as to why this sometimes happens with rubyforge. --Jason From jronallo at gmail.com Tue Nov 20 14:33:57 2007 From: jronallo at gmail.com (Jason Ronallo) Date: Tue, 20 Nov 2007 14:33:57 -0500 Subject: [Ruby-zoom-devel] 0.4.1 released & rubyforge problems In-Reply-To: <763570460711201034l5d8886b1m8cbaf6a4daf25735@mail.gmail.com> References: <763570460711201034l5d8886b1m8cbaf6a4daf25735@mail.gmail.com> Message-ID: <763570460711201133h21cee19vc8d8e643753f15aa@mail.gmail.com> The response from Tom Copeland was quick as usual and the issue with installing the gem should be fixed. --Jason On Nov 20, 2007 1:34 PM, Jason Ronallo wrote: > OK, 0.4.1 has been released. > But I can't download the gem even though it seems to have propagated > to the mirrors. I've put in a support request: > http://rubyforge.org/tracker/index.php?func=detail&aid=15767&group_id=5&atid=102 > > Here's what happens: > $ gem list -r | grep zoom > zoom (0.4.1, 0.4.0, 0.3.0) > $ sudo gem install zoom > ERROR: While executing gem ... (OpenURI::HTTPError) > 404 Not Found > > I haven't seen any straightforward answer anywhere as to why this > sometimes happens with rubyforge. > > --Jason >