Similar to the YamlInRuby petition which has now closed.
If you’d like to see raa-install included in 1.8 please sign up here:
http://www.rubygarden.org/ruby?RaaInstallInRuby
Phil
Similar to the YamlInRuby petition which has now closed.
If you’d like to see raa-install included in 1.8 please sign up here:
http://www.rubygarden.org/ruby?RaaInstallInRuby
Phil
I just looked again, and remember why I don’t know anything about
raa-install: it doesn’t have a link to any docs on its RAA page.
So, it goes to my look at later pile, which is very large.
I’ll get to it one day, though.
Cheers,
Sam
Quoteing ptkwt@shell1.aracnet.com, on Thu, May 08, 2003 at 01:08:30PM +0900:
Similar to the YamlInRuby petition which has now closed.
If you’d like to see raa-install included in 1.8 please sign up here:
http://www.rubygarden.org/ruby?RaaInstallInRuby
Phil
You can find a tutorial on using raa-install (as well as its API) at:
http://www.rubygarden.org/ruby?QuickGuideToRaaInstall
It’s really simple. Nothin to it.
_why
Sam Roberts (sroberts@uniserve.com) wrote:
I just looked again, and remember why I don’t know anything about
raa-install: it doesn’t have a link to any docs on its RAA page.
ps, lucky-stiff, have you ever released a new version of yaml?
-----Original Message-----
From: why the lucky stiff [mailto:ruby-talk@whytheluckystiff.net]
Sent: Wednesday, May 07, 2003 10:38 PM
To: ruby-talk ML
Subject: Re: petition for raa-install to be included in 1.8
You can find a tutorial on using raa-install (as well as its API) at:
http://www.rubygarden.org/ruby?QuickGuideToRaaInstall
It’s really simple. Nothin to it.
_why
Sam Roberts (sroberts@uniserve.com) wrote:
I just looked again, and remember why I don’t know anything about
raa-install: it doesn’t have a link to any docs on its RAA page.
That would be a good link for the RAA doc link, then.
Cheers,
Sam
Quoteing ruby-talk@whytheluckystiff.net, on Thu, May 08, 2003 at 02:37:39PM +0900:
You can find a tutorial on using raa-install (as well as its API) at:
It’s really simple. Nothin to it.
_why
Sam Roberts (sroberts@uniserve.com) wrote:
I just looked again, and remember why I don’t know anything about
raa-install: it doesn’t have a link to any docs on its RAA page.
Way ahead of you :-).
-Tom
On Sat, May 10, 2003 at 12:44:14PM +0900, Sam Roberts wrote:
That would be a good link for the RAA doc link, then.
Cheers,
SamQuoteing ruby-talk@whytheluckystiff.net, on Thu, May 08, 2003 at 02:37:39PM +0900:
You can find a tutorial on using raa-install (as well as its API) at:
It’s really simple. Nothin to it.
_why
Sam Roberts (sroberts@uniserve.com) wrote:
I just looked again, and remember why I don’t know anything about
raa-install: it doesn’t have a link to any docs on its RAA page.
In article LMELLKPHLPHOPNBGJHAKMEAKOBAA.info@irvinehosting.net,
info@irvinehosting.net wrote:
ps, lucky-stiff, have you ever released a new version of yaml?
In fact, he just did.
Phil
Just in case you needed some encouragement to vote for raa-install,
raa-install is now capable of installing from any url not just
packages that are on the RAA.
It will actually install most ./configure style tar.gzs too. For
example a ruby preview:
raa-install -u ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.0-preview2.tar.gz
The latest stable version can of course be installed as follows:
raa-install -i ruby
-Tom
On Thu, May 08, 2003 at 04:09:12PM +0900, Phil Tomson wrote:
In article LMELLKPHLPHOPNBGJHAKMEAKOBAA.info@irvinehosting.net,
info@irvinehosting.net wrote:ps, lucky-stiff, have you ever released a new version of yaml?
In fact, he just did.
Phil
I have read the quick guide and I cannot find anything about uninstalling.
I consider packaging system that cannot track which files belong to what and
eventually uninstall them incomplete.
On the other hand, even incomplete system may be better than nothing.
On Fri, May 09, 2003 at 11:22:30AM +0900, tom@u2i.com wrote:
Just in case you needed some encouragement to vote for raa-install,
raa-install is now capable of installing from any url not just
packages that are on the RAA.It will actually install most ./configure style tar.gzs too. For
example a ruby preview:raa-install -u ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.0-preview2.tar.gz
The latest stable version can of course be installed as follows:
raa-install -i ruby
-Tom
–
Michal Suchanek
hramrach@centrum.cz
I want to use threads to do one process and also wait on any keyboard
input.
The sample of code I’ve included blocks indefinately.
I’d appreciate a bit of help.
The program ought to print out START every second except when something
is entered by the keyboard then that should be printed till the next
keyboard entry. But it just hangs up.
$g = “START\n”
s1 = Thread.new {
loop
{
sleep(2)
$g
= gets
}
}
s2 = Thread.new {
loop
{
sleep(1)
print
$g
}
}
s1.join
s2.join
Thanks
Tom Reilly
Yes, it’s incomplete. But in the case of developing an equivilent to CPAN
I saw the perfect being the enemy of the good with regard to getting it
rolled out.
I made the deliberate compromise to make it work without requiring
software to be re-packaged (and so work with the majority of packages on
RAA with no modification).
Uninstall and dependency tracking are the two biggest features missing.
You would be more than welcome to get CVS access to implement them ![]()
-Tom
On Fri, May 09, 2003 at 11:22:30AM +0900, tom@u2i.com wrote:
Just in case you needed some encouragement to vote for raa-install,
raa-install is now capable of installing from any url not just
packages that are on the RAA.It will actually install most ./configure style tar.gzs too. For
example a ruby preview:raa-install -u
ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.0-preview2.tar.gzThe latest stable version can of course be installed as follows:
raa-install -i ruby
-Tom
I have read the quick guide and I cannot find anything about
uninstalling. I consider packaging system that cannot track which files
belong to what and eventually uninstall them incomplete.
On the other hand, even incomplete system may be better than nothing.–
Michal Suchanek
hramrach@centrum.cz
[Nasty HTML :-P]
Sure? Works for me:
batsman@tux-chan:~/Anime$ ruby -v
ruby 1.6.8 (2003-02-28) [i386-linux]
batsman@tux-chan:~/Anime$ ruby
$g = “START\n”
s1 = Thread.new {
loop {
sleep(2)
$g = gets
}
}
s2 = Thread.new {
loop {
sleep(1)
print $g
}
}
s1.join
s2.join
START
START
START
START
START
START
bla
bla
bla
bla
foo
foo
foo
bar
bar
bar
baz
baz
baz
-:14:in `join’: Interrupt
from -:14
On Sat, May 10, 2003 at 03:49:00AM +0900, Thomas A. Reilly wrote:
–
_ _
__ __ | | ___ _ __ ___ __ _ _ __
'_ \ /| __/ __| '__ \ / ` | ’ \
) | (| | |__ \ | | | | | (| | | | |
.__/ _,|_|/| || ||_,|| |_|
Running Debian GNU/Linux Sid (unstable)
batsman dot geo at yahoo dot com
Turn right here. No! NO! The OTHER right!
$stdout.sync = true
Here, the ‘$g = gets’ in s1 stops the s2 thread until fed.
daz
“Thomas A. Reilly” w3gat@bellsouth.net wrote:
I want to use threads to do one process and also wait on any keyboard input.
The sample of code I’ve included blocks indefinately.
I’d appreciate a bit of help.
The program ought to print out START every second except when something is
entered by the keyboard then that should be printed till the next keyboard
entry. But it just hangs up.
$g = “START\n”
s1 = Thread.new {
loop {
sleep(2)
$g = gets
}
}
s2 = Thread.new {
loop {
sleep(1)
print $g
}
}
s1.join
s2.join
One way to do it on Un*x would be setting up a chroot and installing
there (unfortunately needs root). Then you get the list of files and
copy them to their final destination.
On Fri, May 09, 2003 at 11:41:41PM +0900, tom@u2i.com wrote:
Yes, it’s incomplete. But in the case of developing an equivilent to CPAN
I saw the perfect being the enemy of the good with regard to getting it
rolled out.I made the deliberate compromise to make it work without requiring
software to be re-packaged (and so work with the majority of packages on
RAA with no modification).Uninstall and dependency tracking are the two biggest features missing.
You would be more than welcome to get CVS access to implement them
–
_ _
__ __ | | ___ _ __ ___ __ _ _ __
'_ \ /| __/ __| '__ \ / ` | ’ \
) | (| | |__ \ | | | | | (| | | | |
.__/ _,|_|/| || ||_,|| |_|
Running Debian GNU/Linux Sid (unstable)
batsman dot geo at yahoo dot com
if (argc > 1 && strcmp(argv[1], "-advice") == 0) {
printf("Don't Panic!\n");
exit(42);
}
-- Arnold Robbins in the LJ of February '95, describing RCS