[postgis-tickets] [SCM] PostGIS branch out-of-tree-builds updated. 3.2.0-317-ge33e1c852

git at osgeo.org git at osgeo.org
Thu Jan 20 07:14:21 PST 2022


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".

The branch, out-of-tree-builds has been updated
  discards  25faf296a62ba40a79dee476b0257146053be410 (commit)
       via  e33e1c85207cbd8fb68b0a9070c1f1282c8cfc9c (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (25faf296a62ba40a79dee476b0257146053be410)
            \
             N -- N -- N (e33e1c85207cbd8fb68b0a9070c1f1282c8cfc9c)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

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 e33e1c85207cbd8fb68b0a9070c1f1282c8cfc9c
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Jan 20 16:02:28 2022 +0100

    Drop deprecated -{pre,post}.sh files

diff --git a/raster/test/regress/load_outdb-post.sh b/raster/test/regress/load_outdb-post.sh
deleted file mode 100755
index 914c97b30..000000000
--- a/raster/test/regress/load_outdb-post.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-SOURCE="${BASH_SOURCE[0]}"
-while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
-DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
-
-rm -f "$DIR/$TEST-pre.sql"
-#rm -f "$DIR/$TEST-post.sql"
diff --git a/raster/test/regress/load_outdb-pre.sh b/raster/test/regress/load_outdb-pre.sh
deleted file mode 100755
index 6b05b9e64..000000000
--- a/raster/test/regress/load_outdb-pre.sh
+++ /dev/null
@@ -1,61 +0,0 @@
-SOURCE="${BASH_SOURCE[0]}"
-while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
-DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
-
-FILERASTER="$DIR/loader/testraster.tif"
-
-# special handling for msys
-CSYS=`uname -o | tr '[:upper:]' '[:lower:]'`
-if [ "$CSYS" == "msys" ]; then
-	FILERASTER=`cmd //c echo "${FILERASTER}"`
-fi
-
-SQL=" \
-WITH foo AS ( \
-	SELECT postgis_raster_lib_version() \
-) \
-SELECT NULL FROM foo; \
-SET postgis.gdal_enabled_drivers = 'GTiff'; \
-DROP TABLE IF EXISTS raster_outdb_template; \
-CREATE TABLE raster_outdb_template AS \
-SELECT \
-	1 AS rid, \
-	ST_AddBand( -- insert all three bands of out-db raster at index 1 \
-		ST_MakeEmptyRaster(90, 50, 0., 0., 1, -1, 0, 0, 0), \
-		1, '$FILERASTER'::text, NULL::int[] \
-	) AS rast \
-UNION ALL \
-SELECT \
-	2 AS rid, \
-	ST_AddBand( -- append all three bands of out-db raster \
-		ST_MakeEmptyRaster(90, 50, 0., 0., 1, -1, 0, 0, 0), \
-		'$FILERASTER'::text, NULL::int[] \
-	) AS rast \
-UNION ALL \
-SELECT \
-	3 AS rid, \
-	ST_AddBand( -- append out-db band 2 \
-		ST_AddBand( \
-			ST_MakeEmptyRaster(90, 50, 0., 0., 1, -1, 0, 0, 0), \
-			1, '8BUI', 1, 0 \
-		), \
-		'$FILERASTER'::text, ARRAY[2]::int[] \
-	) AS rast \
-UNION ALL \
-SELECT \
-	4 AS rid, \
-	ST_AddBand( -- append out-db band 2 \
-		ST_AddBand( \
-			ST_MakeEmptyRaster(90, 50, 0., 0., 1, -1, 0, 0, 0), \
-			1, '8BUI', 1, 0 \
-		), \
-		'$FILERASTER'::text, ARRAY[2]::int[], \
-		1, \
-		255 \
-	) AS rast \
-"
-
-echo "$SQL" > "$DIR/$TEST-pre.sql"
-
-# no longer needed as "clean" test takes care of it
-#echo "DROP TABLE IF EXISTS raster_outdb_template;" > "$DIR/$TEST-post.sql"

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

Summary of changes:
 raster/test/regress/load_outdb-post.sh | 6 ------
 1 file changed, 6 deletions(-)
 delete mode 100755 raster/test/regress/load_outdb-post.sh


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list