Anonymous access to CVS repository
This How-to applies to:
1.6.0
This How-to is intended for:
Any audience.
Our CVS repository can be accessed using Web-based Version Control Repository Browsing: http://mgldev.scripps.edu/cgi-bin/viewvc.cgi
You can also check out through CVS with the following instruction set. When prompted for a password, simply press the Enter key.
cvs -d:pserver:anonymous@mgl1.scripps.edu:/opt/cvs login
cvs -z3 -d:pserver:anonymous@mgl1.scripps.edu:/opt/cvs co packagename
Install CVS cient if you get "commond not found" message.
The packagename can be any of the packages included with MGLTools. To checkout AutoDockTools, for instance, type:
cvs -z3 -d:pserver:anonymous@mgl1.scripps.edu:/opt/cvs co AutoDockTools
You can also browse our CVS using Eclipse.
Note that packages ending with DIST can be installed using setup.py, see included README for more details.
CVS updating Packages
We are currently providing nighlty builds used to get the latest features and bugfixes. More up to date version of our code be obtained using CVS update.
Updating platform independent packages
Since we don't need to build platform independent packages before using them, change to MGLToolsPacks folder and run cvs update.
cd MGLToolsPacks
cvs update packagename
Updating platform dependent packages
We need to build these packages first, and for that, cvs checkout DIST version of the package.
cvs -d:pserver:anonymous@mgl1.scripps.edu:/opt/cvs loginThen build and install it as follows:
cvs -z3 -d:pserver:anonymous@mgl1.scripps.edu:/opt/cvs co packagenameDIST
cd packagenameDIST
pythonsh setup.py build
pythonsh setup.py install --install-platlib=PATH_TO_MGLToolsPacks/MGLToolsPacks
