Hallo,
just a short note for those interested: I added Cyrille Henry as developer ("nusmuk") to the SF.net repository. Expect the loads of fun, I already have with "pmpd - Physical Modelling for pd", in your CVS soon as well. ;)
ciao
thanks Frank,
I'm triing to add pmpd to the cvs, but I've got a problem to log with my new acount.
I'm doing what's on pd page on sourceforge :
[cyrille@nunux cyrille]$ export CVS_RSH=ssh [cyrille@nunux cyrille]$ cvs -z3 -d:ext:nusmuk@cvs.pure-data.sourceforge.net:/cvsroot/pure-data import externals/pmpd nusmuk source-dist nusmuk@cvs.pure-data.sourceforge.net's password: Permission denied, please try again.
i'm using the nusmuk user acount password.
I'm not really familiar with cvs, so I don't really know what I should do...
maybee someone can help?
thanks a lot
cyrille
Frank Barknecht a écrit:
Hallo,
just a short note for those interested: I added Cyrille Henry as developer ("nusmuk") to the SF.net repository. Expect the loads of fun, I already have with "pmpd - Physical Modelling for pd", in your CVS soon as well. ;)
ciao
I am very excited to have your code included in the CVS since I plan on using them shortly. I'll definitely add them to the next MacOS X and Windows installers. Do you know of any patch that uses the physical models attached to input devices, like a mouse or joystick?
"cvs import" is used for starting a new module, like 'externals' or 'pd', at the root of the CVS. You just need to "cvs add" your directory and folders. Here's how I work with the pure-data CVS:
mkdir ~/cvs cd ~/cvs export CVS_RSH=ssh export CVSROOT=":ext:eighthave@cvs.sourceforge.net:/cvsroot/pure-data" cvs checkout pd cvs checkout externals cd externals cp -a /path/to/pmpd . cvs add pmpd cd pmpd cvs add *.c cvs commit -m "this is a comment about the changes I made in this commit"
(a lot of externals include m_pd.h, m_imp.h, etc. from the pd src, that's why its good to check it out also, even if you are not going to use it at all).
.hc
On Saturday, Mar 13, 2004, at 11:15 America/New_York, cyrille.henry wrote:
thanks Frank,
I'm triing to add pmpd to the cvs, but I've got a problem to log with my new acount.
I'm doing what's on pd page on sourceforge :
[cyrille@nunux cyrille]$ export CVS_RSH=ssh [cyrille@nunux cyrille]$ cvs -z3 -d:ext:nusmuk@cvs.pure-data.sourceforge.net:/cvsroot/pure-data import externals/pmpd nusmuk source-dist nusmuk@cvs.pure-data.sourceforge.net's password: Permission denied, please try again.
i'm using the nusmuk user acount password.
I'm not really familiar with cvs, so I don't really know what I should do...
maybee someone can help?
thanks a lot
cyrille
Frank Barknecht a écrit:
Hallo, just a short note for those interested: I added Cyrille Henry as developer ("nusmuk") to the SF.net repository. Expect the loads of fun, I already have with "pmpd - Physical Modelling for pd", in your CVS soon as well. ;) ciao
PD-dev mailing list PD-dev@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-dev
Hallo, Hans-Christoph Steiner hat gesagt: // Hans-Christoph Steiner wrote:
"cvs import" is used for starting a new module, like 'externals' or 'pd', at the root of the CVS.
This is not exactly true the way you said it. "import" imports a whole directory tree, but this doesn't have to be a new one at the root of the tree. So for the initial importing of pmpd "cvs import" would be the right thing (tm) to do. Quoting the manual:
Use 'cvs import' to incorporate an entire source distribution from an outside source (e.g., a source vendor) into your source repository directory. You can use this command both for initial creation of a repository, and for wholesale updates to the module form the outside source.
I have no idea why it didn't work for Cyrille the first time. Maybe the account wasn't switched on yet? Or maybe it's indeed a permissions thing, in that Cyrille isn't allowed to "import". Then the "cvs add" approach, which is quite a bit longer, would be worth a try.
You just need to "cvs add" your directory and folders. Here's how I work with the pure-data CVS:
mkdir ~/cvs cd ~/cvs export CVS_RSH=ssh export CVSROOT=":ext:eighthave@cvs.sourceforge.net:/cvsroot/pure-data" cvs checkout pd cvs checkout externals cd externals cp -a /path/to/pmpd . cvs add pmpd cd pmpd cvs add *.c cvs commit -m "this is a comment about the changes I made in this commit"
(a lot of externals include m_pd.h, m_imp.h, etc. from the pd src, that's why its good to check it out also, even if you are not going to use it at all).
ciao
3 reply in 1 mails...
Hans-Christoph Steiner wrote:
I am very excited to have your code included in the CVS since I plan on using them shortly. I'll definitely add them to the next MacOS X and Windows installers.
great.
Do you know of any patch that uses the physical models attached to input devices, like a mouse or joystick?
a few patch on the exemples are using external input. it's very simple, but the 08_ball allow the mouse to drag the ball.
all the exemples can be connected to sensor or other type of external device by ether : -displace position of "fixed" masses -send forces to some mass
Frank Barknecht wrote:
I have no idea why it didn't work for Cyrille the first time. Maybe the account wasn't switched on yet? Or maybe it's indeed a permissions thing, in that Cyrille isn't allowed to "import". Then the "cvs add" approach, which is quite a bit longer, would be worth a try.
does not change anything.
guenter geiger a écrit:
Its strange, seems that your account is not enabled. To test your account/password combination you could try to do a checkout as developer. If this works, then there is something strange going on.
ok, I tried : cvs -z3 -d:ext:nusmuk@cvs.pure-data.sourceforge.net:/cvsroot/pure-data co externals and got the same result : I can not login, invalid password.
it look like i've got a wrong password, but I tried there :
https://sourceforge.net/account/login.php
to log on sourceforge and I don't have any problem.
I remove everyting to have another tried. a cvs externals update gives me an error :
cvs server: Updating externals/grill/vasp cvs server: Updating externals/grill/vasp/doc cvs server: Updating externals/grill/vasp/max U externals/grill/vasp/max/vasp.mean? cvs [update aborted]: cannot rename file .new.vasp.mean to vasp.mean?: Invalid argument
I think it's independent to the rest of my problem, but I just wanted to noticed it...
As I don't have lot's of time to spend on my cvs problem, can anybody else add pmpd on the cvs? (sources and exemples are still here : http://drpichon.free.fr/pmpd/download/ )
thanks a lot everybody,
Cyrille
"cvs import" is used for starting a new module, like 'externals' or 'pd', at the root of the CVS. You just need to "cvs add" your directory and folders. Here's how I work with the pure-data CVS:
mkdir ~/cvs cd ~/cvs export CVS_RSH=ssh export CVSROOT=":ext:eighthave@cvs.sourceforge.net:/cvsroot/pure-data" cvs checkout pd cvs checkout externals cd externals cp -a /path/to/pmpd . cvs add pmpd cd pmpd cvs add *.c cvs commit -m "this is a comment about the changes I made in this commit"
(a lot of externals include m_pd.h, m_imp.h, etc. from the pd src, that's why its good to check it out also, even if you are not going to use it at all).
.hc
On Saturday, Mar 13, 2004, at 11:15 America/New_York, cyrille.henry wrote:
thanks Frank,
I'm triing to add pmpd to the cvs, but I've got a problem to log with my new acount.
I'm doing what's on pd page on sourceforge :
[cyrille@nunux cyrille]$ export CVS_RSH=ssh [cyrille@nunux cyrille]$ cvs -z3 -d:ext:nusmuk@cvs.pure-data.sourceforge.net:/cvsroot/pure-data import externals/pmpd nusmuk source-dist nusmuk@cvs.pure-data.sourceforge.net's password: Permission denied, please try again.
i'm using the nusmuk user acount password.
I'm not really familiar with cvs, so I don't really know what I should do...
maybee someone can help?
thanks a lot
cyrille
Frank Barknecht a écrit:
Hallo, just a short note for those interested: I added Cyrille Henry as developer ("nusmuk") to the SF.net repository. Expect the loads of fun, I already have with "pmpd - Physical Modelling for pd", in your CVS soon as well. ;) ciao
PD-dev mailing list PD-dev@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-dev
PD-dev mailing list PD-dev@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-dev
morning Cyrille,
On 15 March 2004 at 13:18:24, cyrille.henry wrote:
ok, I tried : cvs -z3 -d:ext:nusmuk@cvs.pure-data.sourceforge.net:/cvsroot/pure-data co externals and got the same result : I can not login, invalid password.
it look like i've got a wrong password, but I tried there :
https://sourceforge.net/account/login.php
to log on sourceforge and I don't have any problem.
i had similar problems with sourceforge cvs at first; in my case, it turned out that i had the environment variable 'CVS_SERVER' set on my local machine -- unsetting it magically solved the problem.
marmosets, Bryan
On Sat, 13 Mar 2004, cyrille.henry wrote:
I'm doing what's on pd page on sourceforge :
[cyrille@nunux cyrille]$ export CVS_RSH=ssh [cyrille@nunux cyrille]$ cvs -z3 -d:ext:nusmuk@cvs.pure-data.sourceforge.net:/cvsroot/pure-data import externals/pmpd nusmuk source-dist nusmuk@cvs.pure-data.sourceforge.net's password: Permission denied, please try again.
i'm using the nusmuk user acount password.
I'm not really familiar with cvs, so I don't really know what I should do...
maybee someone can help?
Its strange, seems that your account is not enabled. To test your account/password combination you could try to do a checkout as developer. If this works, then there is something strange going on.
Guenter
Frank Barknecht a �crit:
Hallo,
just a short note for those interested: I added Cyrille Henry as developer ("nusmuk") to the SF.net repository. Expect the loads of fun, I already have with "pmpd - Physical Modelling for pd", in your CVS soon as well. ;)
ciao
PD-dev mailing list PD-dev@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-dev