[SCM] PostGIS branch master updated. 3.5.0-108-g317bca412
git at osgeo.org
git at osgeo.org
Sun Dec 8 05:37:05 PST 2024
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 317bca4125c5f14468fc6fd4391ec96460818590 (commit)
from f0861be9a9f37354098d0fd5ca71d17d93aee161 (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 317bca4125c5f14468fc6fd4391ec96460818590
Author: Regina Obe <lr at pcorp.us>
Date: Sun Dec 8 08:36:59 2024 -0500
Get rid of some obsolete tiger files
diff --git a/extras/tiger_geocoder/create_geocode.bat b/extras/tiger_geocoder/create_geocode.bat
deleted file mode 100755
index 46c738318..000000000
--- a/extras/tiger_geocoder/create_geocode.bat
+++ /dev/null
@@ -1,19 +0,0 @@
-set PGPORT=5432
-set PGHOST=localhost
-set PGUSER=postgres
-set PGPASSWORD=yourpasswordhere
-set THEDB=geocoder
-set PGBIN=C:\Program Files\PostgreSQL\12\bin
-set PGCONTRIB=C:\Program Files\PostgreSQL\12\share\contrib
-REM "%PGBIN%\psql" -d "%THEDB%" -f "%PGCONTRIB%\fuzzystrmatch.sql"
-REM If you are using PostgreSQL 9.1 or above, use the extension syntax instead as shown below
-"%PGBIN%\psql" -d "%THEDB%" -c "CREATE EXTENSION fuzzystrmatch;"
-"%PGBIN%\psql" -d "%THEDB%" -c "CREATE SCHEMA tiger;"
-REM unremark this next line and edit if you want the search paths set as part of the install
-REM "%PGBIN%\psql" -d "%THEDB%" -c "ALTER DATABASE %THEDB% SET search_path=public, tiger;"
-"%PGBIN%\psql" -d "%THEDB%" -f "create_geocode.sql"
-REM "%PGBIN%\psql" -d "%THEDB%" -f "tables\lookup_tables_2011.sql"
-"%PGBIN%\psql" -d "%THEDB%" -c "CREATE SCHEMA tiger_data;"
-"%PGBIN%\psql" -d "%THEDB%" -f "tiger_loader_2019.sql;"
-pause
-
diff --git a/extras/tiger_geocoder/create_geocode.sh b/extras/tiger_geocoder/create_geocode.sh
deleted file mode 100755
index cdd73c01f..000000000
--- a/extras/tiger_geocoder/create_geocode.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env bash
-PGPORT=5432
-PGHOST=localhost
-PGUSER=postgres
-PGPASSWORD=yourpasswordhere
-THEDB=geocoder
-PSQL_CMD= /usr/lib/postgresql/12/bin/psql
-PGCONTRIB=/usr/share/postgresql/12/contrib
-#if you are on 9.1+ use the CREATE EXTENSION syntax instead
-${PSQL_CMD} -d "${THEDB}" -f "${PGCONTRIB}/fuzzystrmatch.sql"
-#${PSQL_CMD} -d "${THEDB}" -c "CREATE EXTENSION fuzzystrmatch"
-${PSQL_CMD} -d "${THEDB}" -c "CREATE SCHEMA tiger"
-#unremark this next line and edit if you want the search paths set as part of the install
-#${PSQL_CMD} -d "${THEDB}" -c "ALTER DATABASE ${THEDB} SET search_path=public, tiger;"
-#${PSQL_CMD} -d "${THEDB}" -f "tables/lookup_tables_2011.sql"
-${PSQL_CMD} -d "${THEDB}" -c "CREATE SCHEMA tiger_data"
-${PSQL_CMD} -d "${THEDB}" -f "create_geocode.sql"
-${PSQL_CMD} -d "${THEDB}" -f "tiger_loader_2019.sql"
diff --git a/extras/tiger_geocoder/upgrade_geocoder.bat b/extras/tiger_geocoder/upgrade_geocoder.bat
deleted file mode 100755
index 30d090c19..000000000
--- a/extras/tiger_geocoder/upgrade_geocoder.bat
+++ /dev/null
@@ -1,18 +0,0 @@
-set PGPORT=5432
-set PGHOST=localhost
-set PGUSER=postgres
-set PGPASSWORD=yourpasswordhere
-set THEDB=geocoder
-set PGBIN=C:\Program Files\PostgreSQL\10\bin
-set PGCONTRIB=C:\Program Files\PostgreSQL\10\share\contrib
-
-"%PGBIN%\psql" -d "%THEDB%" -f "upgrade_geocode.sql"
-
-REM "%PGBIN%\psql" -d "%THEDB%" -c "ALTER EXTENSION postgis_tiger_geocoder UPDATE;"
-
-REM unremark the loader line to update your loader scripts
-REM note this wipes out your custom settings in loader_* tables
-REM "%PGBIN%\psql" -d "%THEDB%" -f "tiger_loader_2019.sql"
-cd regress
-REM "%PGBIN%\psql" -d "%THEDB%" -t -f regress.sql
-pause
diff --git a/extras/tiger_geocoder/upgrade_geocoder.sh b/extras/tiger_geocoder/upgrade_geocoder.sh
deleted file mode 100755
index 6cee9eb98..000000000
--- a/extras/tiger_geocoder/upgrade_geocoder.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env bash
-export PGPORT=5432
-export PGHOST=localhost
-export PGUSER=postgres
-export PGPASSWORD=yourpasswordhere
-THEDB=geocoder
-PSQL_CMD=/usr/bin/psql
-PGCONTRIB=/usr/share/postgresql/contrib
-${PSQL_CMD} -d "${THEDB}" -f "upgrade_geocode.sql"
-
-#unremark the loader line to update your loader scripts
-#note this wipes out your custom settings in loader_* tables
-#${PSQL_CMD} -d "${THEDB}" -f "tiger_loader_2019.sql"
-----------------------------------------------------------------------
Summary of changes:
extras/tiger_geocoder/create_geocode.bat | 19 -------------------
extras/tiger_geocoder/create_geocode.sh | 18 ------------------
extras/tiger_geocoder/upgrade_geocoder.bat | 18 ------------------
extras/tiger_geocoder/upgrade_geocoder.sh | 13 -------------
4 files changed, 68 deletions(-)
delete mode 100755 extras/tiger_geocoder/create_geocode.bat
delete mode 100755 extras/tiger_geocoder/create_geocode.sh
delete mode 100755 extras/tiger_geocoder/upgrade_geocoder.bat
delete mode 100755 extras/tiger_geocoder/upgrade_geocoder.sh
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list