Thread: [Number::Format] Interesting issue in development environment
Brought to you by:
billward
From: Bill W. <bi...@wa...> - 2006-09-21 19:32:08
|
I just ran the "make test" and was shocked to find that it didn't pass. Why? It was using the Number::Format that is installed in my system directory. Why? Because my work directory has :: in the pathname. Why? Because I used :: in the directory name when I checked it into CVS, and Perl uses : as a path separator in the -I command line option. Ugh. To fix, I had to call it from a path that didn't have any colons in it. I made a symlink of the Number::Format directory called Number__Format, and now it works. -- Help bring back the San Jose Earthquakes - http://www.soccersiliconvalley.com/ |
From: Darren C. <dl...@se...> - 2006-09-22 00:28:41
|
* Bill Ward <bill at wards.net> [2006/09/21 12:32]: > I just ran the "make test" and was shocked to find that it didn't > pass. Why? It was using the Number::Format that is installed in my > system directory. Why? Because my work directory has :: in the > pathname. Why? Because I used :: in the directory name when I > checked it into CVS, and Perl uses : as a path separator in the -I > command line option. Ugh. I noticed this when I was doing the CVS checkout, and used the -d option: $ cvs co -d Number-Format 'Number::Format' I think that will be the best option, since we can't rename CVS modules. (darren) --=20 Opportunity is missed by most people because it is dressed in overalls and looks like work. -- Thomas Edison |
From: Jonas B. N. <jo...@gm...> - 2006-09-22 05:53:31
|
Hep, With shell access to the CVS server it would be possible to rename, but I do not think that we have that :-/ jonasbn On 22/09/2006, at 2.28, Darren Chamberlain wrote: > * Bill Ward <bill at wards.net> [2006/09/21 12:32]: >> I just ran the "make test" and was shocked to find that it didn't >> pass. Why? It was using the Number::Format that is installed in my >> system directory. Why? Because my work directory has :: in the >> pathname. Why? Because I used :: in the directory name when I >> checked it into CVS, and Perl uses : as a path separator in the -I >> command line option. Ugh. > > I noticed this when I was doing the CVS checkout, and used the -d > option: > > $ cvs co -d Number-Format 'Number::Format' > > I think that will be the best option, since we can't rename CVS > modules. > > (darren) > > -- > Opportunity is missed by most people because it is dressed in overalls > and looks like work. > -- Thomas Edison > ---------------------------------------------------------------------- > --- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to > share your > opinions on IT & business topics through brief surveys -- and earn > cash > http://www.techsay.com/default.php? > page=join.php&p=sourceforge&CID=DEVDEV________________________________ > _______________ > Number-Format-Developers mailing list > Num...@li... > https://lists.sourceforge.net/lists/listinfo/number-format-developers |
From: Bill W. <bi...@wa...> - 2006-09-22 00:29:33
|
On 9/21/06, Darren Chamberlain <dl...@se...> wrote: > * Bill Ward <bill at wards.net> [2006/09/21 12:32]: > > I just ran the "make test" and was shocked to find that it didn't > > pass. Why? It was using the Number::Format that is installed in my > > system directory. Why? Because my work directory has :: in the > > pathname. Why? Because I used :: in the directory name when I > > checked it into CVS, and Perl uses : as a path separator in the -I > > command line option. Ugh. > > I noticed this when I was doing the CVS checkout, and used the -d > option: > > $ cvs co -d Number-Format 'Number::Format' > > I think that will be the best option, since we can't rename CVS > modules. Actually the CVS module is named "perl" so maybe we could? -- Help bring back the San Jose Earthquakes - http://www.soccersiliconvalley.com/ |
From: Darren C. <dl...@se...> - 2006-09-22 00:33:39
|
* Bill Ward <bill at wards.net> [2006/09/21 17:29]: > On 9/21/06, Darren Chamberlain <dl...@se...> wrote: > > I noticed this when I was doing the CVS checkout, and used the -d > > option: > > > > $ cvs co -d Number-Format 'Number::Format' > > > > I think that will be the best option, since we can't rename CVS > > modules. >=20 > Actually the CVS module is named "perl" so maybe we could? We'd still need to do cvs add and cvs rm, which means that the file histories would be lost. It's definitely possible, of course. You might also be able to get a SF admin to simply rename the Number::Format directory to Number-Format; one fo the nice thing about CVS is that it's just files, so this will Just Work. (darren) --=20 The higher we soar the smaller we appear to those who cannot fly. -- Friedrich Nietzsche |
From: Jonas B. N. <jo...@gm...> - 2006-09-22 05:57:39
|
Hello, Well we could do one thing and that is take a snapshot of what we have done so far on sf.net. Then we could import all of Bill Ward's CVS history into sf.net CVS and then re-add our snapshot. This is a fairly well documented procedure on sf.net and when we do it we can fix the renaming issue and we would not loose much history apart from the commits made on sf.net CVS, which we would have to redo. It is a long road, but it is doable - I am doing the same thing for the Workflow module any day know. What do you think? jonasbn On 22/09/2006, at 2.33, Darren Chamberlain wrote: > * Bill Ward <bill at wards.net> [2006/09/21 17:29]: >> On 9/21/06, Darren Chamberlain <dl...@se...> wrote: >>> I noticed this when I was doing the CVS checkout, and used the -d >>> option: >>> >>> $ cvs co -d Number-Format 'Number::Format' >>> >>> I think that will be the best option, since we can't rename CVS >>> modules. >> >> Actually the CVS module is named "perl" so maybe we could? > > We'd still need to do cvs add and cvs rm, which means that the file > histories would be lost. It's definitely possible, of course. You > might also be able to get a SF admin to simply rename the > Number::Format directory to Number-Format; one fo the nice thing about > CVS is that it's just files, so this will Just Work. > > (darren) > > -- > The higher we soar the smaller we appear to those who cannot fly. > -- Friedrich Nietzsche > ---------------------------------------------------------------------- > --- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to > share your > opinions on IT & business topics through brief surveys -- and earn > cash > http://www.techsay.com/default.php? > page=join.php&p=sourceforge&CID=DEVDEV________________________________ > _______________ > Number-Format-Developers mailing list > Num...@li... > https://lists.sourceforge.net/lists/listinfo/number-format-developers |
From: Bill W. <bi...@wa...> - 2006-09-22 18:16:20
|
We can ask the SF.net admins to rename the directory. That's one of the things they're willing to do IIRC. On 9/22/06, Jonas B. Nielsen <jo...@gm...> wrote: > Hello, > > Well we could do one thing and that is take a snapshot of what we > have done so far on sf.net. > > Then we could import all of Bill Ward's CVS history into sf.net CVS > and then re-add our snapshot. This is a fairly well documented > procedure on sf.net and when we do it we can fix the renaming issue > and we would not loose much history apart from the commits made on > sf.net CVS, which we would have to redo. > > It is a long road, but it is doable - I am doing the same thing for > the Workflow module any day know. > > What do you think? > > jonasbn > > On 22/09/2006, at 2.33, Darren Chamberlain wrote: > > > * Bill Ward <bill at wards.net> [2006/09/21 17:29]: > >> On 9/21/06, Darren Chamberlain <dl...@se...> wrote: > >>> I noticed this when I was doing the CVS checkout, and used the -d > >>> option: > >>> > >>> $ cvs co -d Number-Format 'Number::Format' > >>> > >>> I think that will be the best option, since we can't rename CVS > >>> modules. > >> > >> Actually the CVS module is named "perl" so maybe we could? > > > > We'd still need to do cvs add and cvs rm, which means that the file > > histories would be lost. It's definitely possible, of course. You > > might also be able to get a SF admin to simply rename the > > Number::Format directory to Number-Format; one fo the nice thing about > > CVS is that it's just files, so this will Just Work. > > > > (darren) > > > > -- > > The higher we soar the smaller we appear to those who cannot fly. > > -- Friedrich Nietzsche > > ---------------------------------------------------------------------- > > --- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to > > share your > > opinions on IT & business topics through brief surveys -- and earn > > cash > > http://www.techsay.com/default.php? > > page=join.php&p=sourceforge&CID=DEVDEV________________________________ > > _______________ > > Number-Format-Developers mailing list > > Num...@li... > > https://lists.sourceforge.net/lists/listinfo/number-format-developers > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Number-Format-Developers mailing list > Num...@li... > https://lists.sourceforge.net/lists/listinfo/number-format-developers > -- Help bring back the San Jose Earthquakes - http://www.soccersiliconvalley.com/ |
From: Bill W. <bi...@wa...> - 2006-10-12 05:08:30
|
Unless there are no objections I will ask them to do this tomorrow. On 9/22/06, Bill Ward <bi...@wa...> wrote: > We can ask the SF.net admins to rename the directory. That's one of > the things they're willing to do IIRC. > > On 9/22/06, Jonas B. Nielsen <jo...@gm...> wrote: > > Hello, > > > > Well we could do one thing and that is take a snapshot of what we > > have done so far on sf.net. > > > > Then we could import all of Bill Ward's CVS history into sf.net CVS > > and then re-add our snapshot. This is a fairly well documented > > procedure on sf.net and when we do it we can fix the renaming issue > > and we would not loose much history apart from the commits made on > > sf.net CVS, which we would have to redo. > > > > It is a long road, but it is doable - I am doing the same thing for > > the Workflow module any day know. > > > > What do you think? > > > > jonasbn > > > > On 22/09/2006, at 2.33, Darren Chamberlain wrote: > > > > > * Bill Ward <bill at wards.net> [2006/09/21 17:29]: > > >> On 9/21/06, Darren Chamberlain <dl...@se...> wrote: > > >>> I noticed this when I was doing the CVS checkout, and used the -d > > >>> option: > > >>> > > >>> $ cvs co -d Number-Format 'Number::Format' > > >>> > > >>> I think that will be the best option, since we can't rename CVS > > >>> modules. > > >> > > >> Actually the CVS module is named "perl" so maybe we could? > > > > > > We'd still need to do cvs add and cvs rm, which means that the file > > > histories would be lost. It's definitely possible, of course. You > > > might also be able to get a SF admin to simply rename the > > > Number::Format directory to Number-Format; one fo the nice thing about > > > CVS is that it's just files, so this will Just Work. > > > > > > (darren) > > > > > > -- > > > The higher we soar the smaller we appear to those who cannot fly. > > > -- Friedrich Nietzsche > > > ---------------------------------------------------------------------- > > > --- > > > Take Surveys. Earn Cash. Influence the Future of IT > > > Join SourceForge.net's Techsay panel and you'll get the chance to > > > share your > > > opinions on IT & business topics through brief surveys -- and earn > > > cash > > > http://www.techsay.com/default.php? > > > page=join.php&p=sourceforge&CID=DEVDEV________________________________ > > > _______________ > > > Number-Format-Developers mailing list > > > Num...@li... > > > https://lists.sourceforge.net/lists/listinfo/number-format-developers > > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share your > > opinions on IT & business topics through brief surveys -- and earn cash > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > Number-Format-Developers mailing list > > Num...@li... > > https://lists.sourceforge.net/lists/listinfo/number-format-developers > > > > > -- > Help bring back the San Jose Earthquakes - http://www.soccersiliconvalley.com/ > -- Help bring back the San Jose Earthquakes - http://www.soccersiliconvalley.com/ |
From: Darren C. <dl...@se...> - 2006-10-12 11:56:19
|
+1 On 10/12/06, Bill Ward <bi...@wa...> wrote: > Unless there are no objections I will ask them to do this tomorrow. > > On 9/22/06, Bill Ward <bi...@wa...> wrote: > > We can ask the SF.net admins to rename the directory. That's one of > > the things they're willing to do IIRC. > > > > On 9/22/06, Jonas B. Nielsen <jo...@gm...> wrote: > > > Hello, > > > > > > Well we could do one thing and that is take a snapshot of what we > > > have done so far on sf.net. > > > > > > Then we could import all of Bill Ward's CVS history into sf.net CVS > > > and then re-add our snapshot. This is a fairly well documented > > > procedure on sf.net and when we do it we can fix the renaming issue > > > and we would not loose much history apart from the commits made on > > > sf.net CVS, which we would have to redo. > > > > > > It is a long road, but it is doable - I am doing the same thing for > > > the Workflow module any day know. > > > > > > What do you think? > > > > > > jonasbn > > > > > > On 22/09/2006, at 2.33, Darren Chamberlain wrote: > > > > > > > * Bill Ward <bill at wards.net> [2006/09/21 17:29]: > > > >> On 9/21/06, Darren Chamberlain <dl...@se...> wrote: > > > >>> I noticed this when I was doing the CVS checkout, and used the -d > > > >>> option: > > > >>> > > > >>> $ cvs co -d Number-Format 'Number::Format' > > > >>> > > > >>> I think that will be the best option, since we can't rename CVS > > > >>> modules. > > > >> > > > >> Actually the CVS module is named "perl" so maybe we could? > > > > > > > > We'd still need to do cvs add and cvs rm, which means that the file > > > > histories would be lost. It's definitely possible, of course. You > > > > might also be able to get a SF admin to simply rename the > > > > Number::Format directory to Number-Format; one fo the nice thing about > > > > CVS is that it's just files, so this will Just Work. > > > > > > > > (darren) > > > > > > -- (darren) |
From: Jonas B. N. <jo...@gm...> - 2006-10-12 12:02:36
|
Hi Guys, Here is a link to the documentation: http://sourceforge.net/docs/E04/#import jonasbn On 12/10/2006, at 13.56, Darren Chamberlain wrote: > +1 > > On 10/12/06, Bill Ward <bi...@wa...> wrote: >> Unless there are no objections I will ask them to do this tomorrow. >> >> On 9/22/06, Bill Ward <bi...@wa...> wrote: >>> We can ask the SF.net admins to rename the directory. That's one of >>> the things they're willing to do IIRC. >>> >>> On 9/22/06, Jonas B. Nielsen <jo...@gm...> wrote: >>>> Hello, >>>> >>>> Well we could do one thing and that is take a snapshot of what we >>>> have done so far on sf.net. >>>> >>>> Then we could import all of Bill Ward's CVS history into sf.net CVS >>>> and then re-add our snapshot. This is a fairly well documented >>>> procedure on sf.net and when we do it we can fix the renaming issue >>>> and we would not loose much history apart from the commits made on >>>> sf.net CVS, which we would have to redo. >>>> >>>> It is a long road, but it is doable - I am doing the same thing for >>>> the Workflow module any day know. >>>> >>>> What do you think? >>>> >>>> jonasbn >>>> >>>> On 22/09/2006, at 2.33, Darren Chamberlain wrote: >>>> >>>>> * Bill Ward <bill at wards.net> [2006/09/21 17:29]: >>>>>> On 9/21/06, Darren Chamberlain <dl...@se...> wrote: >>>>>>> I noticed this when I was doing the CVS checkout, and used >>>>>>> the -d >>>>>>> option: >>>>>>> >>>>>>> $ cvs co -d Number-Format 'Number::Format' >>>>>>> >>>>>>> I think that will be the best option, since we can't rename CVS >>>>>>> modules. >>>>>> >>>>>> Actually the CVS module is named "perl" so maybe we could? >>>>> >>>>> We'd still need to do cvs add and cvs rm, which means that the >>>>> file >>>>> histories would be lost. It's definitely possible, of course. >>>>> You >>>>> might also be able to get a SF admin to simply rename the >>>>> Number::Format directory to Number-Format; one fo the nice >>>>> thing about >>>>> CVS is that it's just files, so this will Just Work. >>>>> >>>>> (darren) >>>> >>> >> > > -- > (darren) > > ---------------------------------------------------------------------- > --- > 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 > _______________________________________________ > Number-Format-Developers mailing list > Num...@li... > https://lists.sourceforge.net/lists/listinfo/number-format-developers |