[postgis-tickets] [SCM] PostGIS; Spatial objects for PostgreSQL. branch master updated. 2cb3e569b35145fe70950b4b56f6ef4ab3f09ed0

git at osgeo.org git at osgeo.org
Sun Oct 27 12:34:30 PDT 2019


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 "PostGIS; Spatial objects for PostgreSQL.".

The branch, master has been updated
       via  2cb3e569b35145fe70950b4b56f6ef4ab3f09ed0 (commit)
      from  54399b9f6b0f02e8db9444f9f042b8d4ca6d4fa4 (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 2cb3e569b35145fe70950b4b56f6ef4ab3f09ed0
Author: Sandro Santilli <strk at kbt.io>
Date:   Sun Oct 27 20:34:20 2019 +0100

    Change SVN references to GIT

diff --git a/doc/installation.xml b/doc/installation.xml
index 9148a29..fe60ce9 100644
--- a/doc/installation.xml
+++ b/doc/installation.xml
@@ -307,21 +307,21 @@ tar -xvzf postgis-&last_release_version;.tar.gz</programlisting>
 
 	<para>
 	  Alternatively, checkout the source from the
-	  <ulink url="http://subversion.apache.org/">
-		svn
+	  <ulink url="https://git-scm.com/">
+		git
 	  </ulink>
 	  repository
-	  <ulink url="https://svn.osgeo.org/postgis/trunk/">
-		https://svn.osgeo.org/postgis/trunk/
+	  <ulink url="https://git.osgeo.org/gitea/postgis/postgis/">
+		https://git.osgeo.org/gitea/postgis/postgis/
 	  </ulink>
 	  .
 	</para>
 
-	<programlisting>svn checkout https://svn.osgeo.org/postgis/trunk/ postgis-&last_release_version;</programlisting>
+	<programlisting>git clone https://git.osgeo.org/gitea/postgis/postgis.git postgis</programlisting>
 
 	<para>
 	  Change into the newly created
-	  <varname>postgis-&last_release_version;</varname> directory to continue
+	  <varname>postgis</varname> directory to continue
 	  the installation.
 	</para>
   </sect1>
@@ -2483,33 +2483,33 @@ ALTER EXTENSION postgis_topology UPDATE TO "&last_release_version;next";</progra
 		<programlisting>ALTER TABLE spatial_ref_sys ADD CONSTRAINT spatial_ref_sys_srid_check check (srid > 0 AND srid < 999000 );</programlisting>
 
 		<programlisting>ALTER TABLE spatial_ref_sys ADD PRIMARY KEY(srid));</programlisting>
-	  
+
 		If you are upgrading an old database containing french <ulink url="https://en.wikipedia.org/wiki/Institut_g%C3%A9ographique_national">
 			IGN
-		  </ulink> cartography, you will have probably SRIDs out 
+		  </ulink> cartography, you will have probably SRIDs out
 		of range and you will see, when importing your database, issues like this :
-	  
+
 		<programlisting> WARNING: SRID 310642222 converted to 999175 (in reserved zone)</programlisting>
-	  
-		In this case, you can try following steps : first throw 
-		out completely the IGN from the sql which is resulting 
+
+		In this case, you can try following steps : first throw
+		out completely the IGN from the sql which is resulting
 		from postgis_restore.pl. So, after having run :
-	  
+
 		<programlisting>perl utils/postgis_restore.pl "/somepath/olddb.backup" > olddb.sql</programlisting>
 
 		run this command :
-	  
+
 		<programlisting>grep -v IGNF olddb.sql > olddb-without-IGN.sql</programlisting>
-	  
-		Create then your newdb, activate the required Postgis extensions, 
+
+		Create then your newdb, activate the required Postgis extensions,
 		and insert properly the french system IGN with :
-	  
+
 		<ulink url="https://raw.githubusercontent.com/Remi-C/IGN_spatial_ref_for_PostGIS/master/Put_IGN_SRS_into_Postgis.sql">
 			this script
 		  </ulink>
-	  
+
 		After these operations, import your data :
-	  
+
 		<programlisting>psql -h localhost -p 5432 -U postgres -d newdb -f olddb-without-IGN.sql  2> errors.txt</programlisting>
 
 	</para>
diff --git a/doc/reporting.xml b/doc/reporting.xml
index 9784a2b..ddcc6f6 100644
--- a/doc/reporting.xml
+++ b/doc/reporting.xml
@@ -14,7 +14,7 @@
     version()</code> [for postgresql].</para>
 
     <para>If you aren't using the latest release, it's worth taking a look at
-    its <ulink url="http://svn.osgeo.org/postgis/trunk/NEWS">release
+    its <ulink url="https://git.osgeo.org/gitea/postgis/postgis/raw/branch/master/NEWS">release
     changelog</ulink> first, to find out if your bug has already been
     fixed.</para>
 
@@ -51,20 +51,20 @@
 
     <orderedlist>
       <listitem>
-        <para>Check out a copy of PostGIS' Subversion trunk. On Unix,
+        <para>Clone the PostGIS' git repository. On Unix,
         type:</para>
 
-        <para><command>svn checkout
-        http://svn.osgeo.org/postgis/trunk/</command></para>
+        <para><command>git clone
+        https://git.osgeo.org/gitea/postgis/postgis.git</command></para>
 
-        <para>This will be stored in the directory ./trunk</para>
+        <para>This will be stored in the directory postgis</para>
       </listitem>
 
       <listitem>
         <para>Make your changes to the documentation with your favorite text
         editor. On Unix, type (for example):</para>
 
-        <para><command>vim trunk/doc/postgis.xml</command></para>
+        <para><command>vim doc/postgis.xml</command></para>
 
         <para>Note that the documentation is written in DocBook XML rather than HTML,
         so if you are not familiar with it please follow the example of the
@@ -75,7 +75,7 @@
         <para>Make a patch file containing the differences from the master
         copy of the documentation. On Unix, type:</para>
 
-        <para><command>svn diff trunk/doc/postgis.xml >
+        <para><command>git diff doc/postgis.xml >
         doc.patch</command></para>
       </listitem>
 

-----------------------------------------------------------------------

Summary of changes:
 doc/installation.xml | 38 +++++++++++++++++++-------------------
 doc/reporting.xml    | 14 +++++++-------
 2 files changed, 26 insertions(+), 26 deletions(-)


hooks/post-receive
-- 
PostGIS; Spatial objects for PostgreSQL.


More information about the postgis-tickets mailing list