| 
      
      
      From: Leo B. <l_b...@us...> - 2011-06-13 15:19:14
      
     | 
| This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Maxima, A Computer Algebra System - site-xml - http://maxima.sourceforge.net". The branch, master has been updated via 6e18615b97ac4d8033f8394d43f5fd8bd3656246 (commit) from 1d7bcd4bbeb59da3a64eb908e36267c256c0495a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6e18615b97ac4d8033f8394d43f5fd8bd3656246 Author: Leo Butler <nb0...@sd...> Date: Mon Jun 13 11:16:15 2011 -0400 Updated download information and README to replace references to CVS with Git. diff --git a/README b/README index 548b635..97c2013 100644 --- a/README +++ b/README @@ -1,13 +1,13 @@ Here is a brief explanation of how it works. You should have write access to /home/groups/m/ma/maxima/ at -web.sourceforge.net and to the Maxima CVS repository +web.sourceforge.net and to the Maxima GIT repository (i.e. you should be a developer of Maxima project at the SF). -See https://sourceforge.net/scm/?type=cvs&group_id=4933 +See https://sourceforge.net/scm/?type=git&group_id=4933 DO NOT edit the .html files in /home/groups/m/ma/maxima/htdocs since -they are generated automatically. The sources are stored in the CVS +they are generated automatically. The sources are stored in the GIT module 'site-xml'. The template is main.xsl; all .xml files should be transformed @@ -21,11 +21,15 @@ For transformations I recommend xsltproc An example session (suppose the user ID is bob): - - ~/foo$ cvs -z3 -d:ext:bo...@ma...:/cvsroot/maxima co -P site-xml - ~/foo/site-xml/es$ cd site-xml/es/ +Either do a fresh clone: + ~/foo$ git clone ssh://bob@maxima.git.sourceforge.net/gitroot/maxima/site-xml +Or update your existing repository: + ~/foo$ cd site-xml + ~/foo$ git pull +Then: + ~/foo$ git checkout -b fixit ; cd es ~/foo/site-xml/es$ emacs documentation.xml - ~/foo/site-xml/es$ cvs commit documentation.xml + ~/foo/site-xml/es$ git commit -m 'message' documentation.xml ~/foo/site-xml/es$ xsltproc documentation.xml ../main.xsl > documentation.html ~/foo/site-xml/es$ scp documentation.html bob,ma...@we...:/home/groups/m/ma/maxima/htdocs/es ~/foo/site-xml/es$ rm documentation.html diff --git a/download.xml b/download.xml index 845de25..abe3a0d 100644 --- a/download.xml +++ b/download.xml @@ -44,9 +44,13 @@ <p>To rebuild from the source, you want <kbd>maxima-x.y.z.tar.gz</kbd>.</p> -<h3>CVS</h3> +<h3>GIT</h3> -<p>You can obtain the latest development code at the <a href="http://sourceforge.net/cvs/?group_id=4933">Sourceforge CVS page for Maxima</a>.</p> +<p>You can obtain the latest development code at the <a href="http://sourceforge.net/git/?group_id=4933">Sourceforge GIT page for Maxima</a>.</p> + +<h4>CVS</h4> + +<p>The Maxima project now manages its source code with Git.</p> </body> </html> ----------------------------------------------------------------------- Summary of changes: README | 18 +++++++++++------- download.xml | 8 ++++++-- 2 files changed, 17 insertions(+), 9 deletions(-) hooks/post-receive -- Maxima, A Computer Algebra System - site-xml - http://maxima.sourceforge.net |