[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-106-gb7b6ab74a

git at osgeo.org git at osgeo.org
Fri Sep 16 14:43:26 PDT 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, master has been updated
       via  b7b6ab74aeeb24c825813e6f3e3e62b3d2356df6 (commit)
      from  5698f9b0b4565bb57cdc82b8f77a0120d380a9ba (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 b7b6ab74aeeb24c825813e6f3e3e62b3d2356df6
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Sep 16 23:43:16 2022 +0200

    Don't leave .tmp files behind

diff --git a/extensions/address_standardizer/Makefile.in b/extensions/address_standardizer/Makefile.in
index 20bd88ff5..0964ea1b0 100644
--- a/extensions/address_standardizer/Makefile.in
+++ b/extensions/address_standardizer/Makefile.in
@@ -68,6 +68,7 @@ sql/%.sql: %.sql.in | sql
 	$(SQLPP) -I at buiddir@/../libpgcommon $< > $@.tmp
 	grep -v '^#' $@.tmp | \
 	$(PERL) -lpe "s'MODULE_PATHNAME'\$(MODULEPATH)'g" > $@
+	rm $@.tmp
 
 %.control: %.control.in Makefile
 	cat $< \
diff --git a/extensions/postgis/Makefile.in b/extensions/postgis/Makefile.in
index 5d1473f6c..404fb6686 100644
--- a/extensions/postgis/Makefile.in
+++ b/extensions/postgis/Makefile.in
@@ -140,6 +140,7 @@ sql/postgis_for_extension.sql: ../../postgis/postgis.sql.in ../../postgis_revisi
 	$(PERL) -lpe \
 		"s'MODULE_PATHNAME'\$(MODULEPATH)'g" \
 		| $(PERL) -pe 's/BEGIN\;//g ; s/COMMIT\;//g' > $@
+	rm $@.tmp
 
 sql/postgis_upgrade.sql: sql/postgis_upgrade_for_extension.sql | sql
 	$(PERL) -pe "s/BEGIN\;//g ; s/COMMIT\;//g; s/^(DROP .*)\;/SELECT postgis_extension_drop_if_exists('$(EXTENSION)', '\1');\n\1\;/" $< > $@
diff --git a/extensions/postgis_raster/Makefile.in b/extensions/postgis_raster/Makefile.in
index a1d4ad613..64eec13be 100644
--- a/extensions/postgis_raster/Makefile.in
+++ b/extensions/postgis_raster/Makefile.in
@@ -96,6 +96,7 @@ sql/rtpostgis_for_extension.sql: ../../raster/rt_pg/rtpostgis.sql.in ../../postg
 	$(SQLPP) -I at builddir@/../../postgis/ -I../../ $< > $@.tmp
 	grep -v '^#' $@.tmp | \
 	$(PERL) -lpe "s'MODULE_PATHNAME'\$(MODULEPATH)'g" > $@
+	rm $@.tmp
 
 sql/rtpostgis_upgrade.sql: sql/rtpostgis_upgrade_for_extension.sql | sql
 	$(PERL) -pe "s/BEGIN\;//g ; s/COMMIT\;//g; s/^(DROP .*)\;/SELECT postgis_extension_drop_if_exists('$(EXTENSION)', '\1');\n\1\;/" $< > $@
diff --git a/postgis/Makefile.in b/postgis/Makefile.in
index b5aef0768..60e0a486f 100644
--- a/postgis/Makefile.in
+++ b/postgis/Makefile.in
@@ -239,7 +239,7 @@ endif
 %.sql: %.sql.in
 	$(SQLPP) -I at top_srcdir@/libpgcommon -I at builddir@ $< > $@.tmp
 	grep -v '^#' $@.tmp | $(PERL) -lpe "s'MODULE_PATHNAME'\$(MODULEPATH)'g;s'@extschema@\.''g" > $@
-	rm -f $@.tmp
+	rm $@.tmp
 
 #this is redundant but trying to fold in with extension just hangs
 postgis_upgrade.sql.in: postgis.sql ../utils/create_upgrade.pl
diff --git a/raster/rt_pg/Makefile.in b/raster/rt_pg/Makefile.in
index 8146f66da..53cc52166 100644
--- a/raster/rt_pg/Makefile.in
+++ b/raster/rt_pg/Makefile.in
@@ -128,6 +128,7 @@ endif
 	$(SQLPP) -I at top_builddir@/postgis/ $< > $@.tmp
 	grep -v '^#' $@.tmp | \
 	$(PERL) -lpe "s'MODULE_PATHNAME'\$(MODULEPATH)'g;s'@extschema@\.''g" > $@
+	rm $@.tmp
 
 ../../liblwgeom/.libs/liblwgeom.a:
 	$(MAKE) -C ../../liblwgeom
diff --git a/sfcgal/Makefile.in b/sfcgal/Makefile.in
index b003d1b89..c8019332b 100644
--- a/sfcgal/Makefile.in
+++ b/sfcgal/Makefile.in
@@ -125,6 +125,7 @@ $(SQL_OBJS): ../postgis_config.h ../postgis_revision.h
 	$(SQLPP) -I at top_builddir@/postgis $< > $@.tmp
 	grep -v '^#' $@.tmp | \
 	$(PERL) -lpe "s'MODULE_PATHNAME'\$(MODULEPATH)'g;s'@extschema@\.''g" > $@
+	rm $@.tmp
 
 sfcgal_upgrade.sql.in: sfcgal.sql ../utils/create_upgrade.pl
 	$(PERL) @top_srcdir@/utils/create_upgrade.pl $< > $@
diff --git a/topology/Makefile.in b/topology/Makefile.in
index 4315df092..842de0933 100644
--- a/topology/Makefile.in
+++ b/topology/Makefile.in
@@ -105,6 +105,7 @@ endif
 	$(SQLPP) -I at top_builddir@/postgis $< > $@.tmp
 	grep -v '^#' $@.tmp | \
 	$(PERL) -lpe "s'MODULE_PATHNAME'\$(MODULEPATH)'g" > $@
+	rm $@.tmp
 
 #Generate upgrade script by stripping things that can't be reinstalled
 #e.g. don't bother with tables, types, triggers, and domains

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

Summary of changes:
 extensions/address_standardizer/Makefile.in | 1 +
 extensions/postgis/Makefile.in              | 1 +
 extensions/postgis_raster/Makefile.in       | 1 +
 postgis/Makefile.in                         | 2 +-
 raster/rt_pg/Makefile.in                    | 1 +
 sfcgal/Makefile.in                          | 1 +
 topology/Makefile.in                        | 1 +
 7 files changed, 7 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list