Re: [Fink-devel] current fink HEAD

2003-11-27 Thread TheSin
yeah I know about those bits :P I think almost everyone is scared of the dep engine too :) it's been on the todo list for a few years now :) Mostly just make sure you can inject.pl for new and for upgrades...and maybe just run a selfupdate or something to make sure it run but normally it's not

Re: [Fink-devel] current fink HEAD

2003-11-27 Thread Benjamin Reed
Michael G Schwern wrote: Anyhow, I should probably start doing some manual testing until we get better coverage. What do most people do? If you do a real make install (ie, inject) and do a "fink index" you will generally find out right away whether changes are broken in obvious ways. I often d

Re: [Fink-devel] current fink HEAD

2003-11-27 Thread Michael G Schwern
On Wed, Nov 26, 2003 at 09:47:38AM -0700, TheSin wrote: > HEAD is currently broke because of Michael's changes again, @BASEPATH@ > needs to be set someplace to find $config_file Sorry. I fixed it. Just forgot to load the Fink::Config in fink. > As a side note, does Michael test his changes be

Re: [Fink-devel] current fink HEAD

2003-11-26 Thread TheSin
oh right you need to add use Fink::Base at the top and on the EXPORTER you need to change @ISA = qw(Exporter); to @ISA = qw(Exporter Fink::Base); Thanks for reminding me JF, but again i stress this isn't a great patch, but at least we can use fink again

Re: [Fink-devel] current fink HEAD

2003-11-26 Thread jfm
On Nov 26, 2003, at 5:47 PM, TheSin wrote: HEAD is currently broke because of Michael's changes again, @BASEPATH@ needs to be set someplace to find $config_file, I fixed my local Engine.pm with this sub initialize { my $self = shift; my $config = Fink::Config->new_with_path('/sw

[Fink-devel] current fink HEAD

2003-11-26 Thread TheSin
HEAD is currently broke because of Michael's changes again, @BASEPATH@ needs to be set someplace to find $config_file, I fixed my local Engine.pm with this sub initialize { my $self = shift; my $config = Fink::Config->new_with_path('/sw/etc/fink.conf'); my ($basepath);