[gnumeric] Updated revision control references from CVS and Subversion to Git.



commit 630dcf93e3c97ac12ed4dce3b2d1de1727fe948a
Author: J.H.M. Dassen (Ray) <jdassen debian org>
Date:   Sat Aug 8 21:20:10 2009 +0200

    Updated revision control references from CVS and Subversion to Git.

 doc/C/bugs.xml                |    4 +-
 doc/C/compiling.xml           |    2 +-
 doc/C/data-entry-external.xml |    2 +-
 doc/C/extending-python.xml    |   85 ++++++++++++++++++++++++++++++-----------
 doc/C/files-formats.xml       |    2 +-
 doc/C/programing.xml          |    2 +-
 6 files changed, 69 insertions(+), 28 deletions(-)
---
diff --git a/doc/C/bugs.xml b/doc/C/bugs.xml
index 59918f1..88f7927 100644
--- a/doc/C/bugs.xml
+++ b/doc/C/bugs.xml
@@ -509,8 +509,8 @@ a user
       </para>
 
       <para>
-        The "CVS" version refers to a version which the user has
-        recently obtained from the Concurrent Versions System
+        The "GIT" version refers to a version which the user has
+        recently obtained from the Git revision control
         repository provided by the GNOME project.
       </para>
 
diff --git a/doc/C/compiling.xml b/doc/C/compiling.xml
index b4de9da..a03d636 100644
--- a/doc/C/compiling.xml
+++ b/doc/C/compiling.xml
@@ -27,7 +27,7 @@
   <title>How to Obtain Gnumeric Source Code</title>
 
   <para>
-    Two sources: tarballs, cvs.
+    Two sources: tarballs, git.
   </para>
 
   <para>
diff --git a/doc/C/data-entry-external.xml b/doc/C/data-entry-external.xml
index fc5ec3d..97d7ece 100644
--- a/doc/C/data-entry-external.xml
+++ b/doc/C/data-entry-external.xml
@@ -98,7 +98,7 @@
       source code can be found in the directory
       <literal>gnumeric/plugins/sample_datasource/</literal> of
       either a distribution of &gnum; or
-      in a code checkout from the concurrent versioning system (CVS)
+      in a code checkout from the revision control 
       repository.
     </para>
 
diff --git a/doc/C/extending-python.xml b/doc/C/extending-python.xml
index 5dedfcd..0545e4d 100644
--- a/doc/C/extending-python.xml
+++ b/doc/C/extending-python.xml
@@ -76,8 +76,8 @@
 
         <listitem>
           <para>
-            The instructions on how to use GNOME CVS can be found <ulink
-            url="http://developer.gnome.org/tools/cvs.html";>here</ulink>.
+            The instructions on how to use GNOME Git can be found <ulink
+            url="http://live.gnome.org/Git";>here</ulink>.
           </para>
         </listitem>
 
@@ -175,7 +175,7 @@
     <para>
       You need to get Python and Gnumeric, and the Python plugin for
       Gnumeric. You can get the binaries, the packaged source, or the
-      developing edge CVS.
+      developing edge sources from Git.
     </para>
 	
     <sect4 id="sect-extending-python-install-binaries">
@@ -282,8 +282,8 @@
        </procedure>
      </sect4>
 
-    <sect4 id="sect-extending-python-install-cvs">
-      <title>Getting and building the source from CVS-HEAD</title>
+    <sect4 id="sect-extending-python-install-git">
+      <title>Getting and building the source from Git</title>
 	  
       <para>
         Remember that this is the developing edge. Things may not
@@ -328,20 +328,6 @@
 
           <step>
             <para>
-              <literal>export
-              CVSROOT=:pserver:anonymous anoncvs gnome org:/cvs/gnome</literal>
-            </para>
-          </step>
-
-          <step>
-            <para>
-              <literal>cvs login</literal> (No password -- hit
-              RETURN.)
-            </para>
-          </step>
-
-          <step>
-            <para>
               Getting and building libgsf:
             </para>
 
@@ -349,7 +335,7 @@
 
               <step>
                 <para>
-                  cvs co libgsf
+                  git clone git://git.gnome.org/libgsf
                 </para>
               </step>
 
@@ -403,13 +389,68 @@
              </para>
 	  </step>
 
+          <step>
+            <para>
+              Getting and building goffice:
+            </para>
+
+            <procedure>
+
+              <step>
+                <para>
+                  git clone git://git.gnome.org/goffice
+                </para>
+              </step>
+
+              <step>
+                <para>
+                  cd goffice
+                </para>
+              </step>
+
+              <step>
+                <para>
+                  Red Hat: <literal>./autogen.sh</literal>
+                </para>
+              </step>
+
+              <step>
+                <para>
+                  Debian: <literal>./autogen.sh --prefix=/usr
+                --with-gconf-schema-file-dir=/etc/gconf/schemas</literal>
+                </para>
+              </step>
+
+              <step>
+                <para>
+                  <literal>make</literal>
+                </para>
+              </step>
+
+              <step>
+                <para>
+                  <emphasis>$root</emphasis> <literal>make install</literal>
+                </para>
+              </step>
+
+              <step>
+                <para>
+                  If you find that this didn't work, try <literal>make
+                  clean</literal> and then repeat from the autogen
+                  step.
+                </para>
+              </step>
+            </procedure>
+
+          </step>
+
 	  <step>
             <para>
               Getting and building gnumeric:
             </para>
 		  <procedure>
-			<step><para><literal>cvs -z3 checkout gnumeric -d
-				gnumeric-head</literal></para></step>
+			<step><para><literal>git clone
+git://git.gnome.org/gnumeric gnumeric-head</literal></para></step>
 			<step><para><literal>cd gnumeric-head</literal></para></step>
 			<step><para>Red Hat: <literal>./autogen.sh</literal> and wait while it
 			  compiles</para></step>
diff --git a/doc/C/files-formats.xml b/doc/C/files-formats.xml
index 3222810..f0947c6 100644
--- a/doc/C/files-formats.xml
+++ b/doc/C/files-formats.xml
@@ -468,7 +468,7 @@ gunzip Book1.text.gz
             files and access the data they contain, since the file
 	    format is XML. The file can be validated by an XML Schema
 	    Definition (XSD) .  These are available via the Internet
-            at <uri>http://svn.gnome.org/svn/gnumeric/trunk/gnumeric.xsd</uri>.
+            at <uri>http://git.gnome.org/cgit/gnumeric/plain/gnumeric.xsd</uri>.
           </para>
 
 	  <para>
diff --git a/doc/C/programing.xml b/doc/C/programing.xml
index eef645f..6dc14a7 100644
--- a/doc/C/programing.xml
+++ b/doc/C/programing.xml
@@ -19,7 +19,7 @@
        checkout/code/checkbuild/diff/send patch to Jody or list or
       bugzilla
 
-      -graduate to cvs access
+      -graduate to git access
 
       !communicate!
   </para>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]