[SCM] PostGIS branch master updated. 3.4.0rc1-1035-gddae34d6a
git at osgeo.org
git at osgeo.org
Fri Mar 15 05:42:13 PDT 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 ddae34d6a894b08cd2d524356ed9444eb7447f4b (commit)
via 04e3ff6f62afc151ddb7b87c1f4e67769ae10f1e (commit)
from 475392e85ef4a2cf4c248fa18ec87e17f76bb73b (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 ddae34d6a894b08cd2d524356ed9444eb7447f4b
Author: Sandro Santilli <strk at kbt.io>
Date: Fri Mar 15 13:42:01 2024 +0100
Translate another italian string
diff --git a/doc/po/it_IT/postgis-manual.po b/doc/po/it_IT/postgis-manual.po
index d1fa285e3..9bb0eba87 100644
--- a/doc/po/it_IT/postgis-manual.po
+++ b/doc/po/it_IT/postgis-manual.po
@@ -42146,7 +42146,7 @@ msgstr "Richiede GEOS (3.9,3.10,3.11,3.12) o versioni successive"
#. Tag: para
#, no-c-format
msgid "Requires SFCGAL 1.5 or higher"
-msgstr ""
+msgstr "Richiede SFCGAL 1.5 o superiore"
#. Tag: para
#, no-c-format
commit 04e3ff6f62afc151ddb7b87c1f4e67769ae10f1e
Author: Sandro Santilli <strk at kbt.io>
Date: Fri Mar 15 13:41:13 2024 +0100
[woodie] localized cheatsheet check depends on the english one
diff --git a/.woodpecker/docs.yml b/.woodpecker/docs.yml
index 32b6763f4..2c7c4870a 100644
--- a/.woodpecker/docs.yml
+++ b/.woodpecker/docs.yml
@@ -451,7 +451,7 @@ steps:
pull: true
commands:
- make -C build-docs/doc/po/it_IT local-check-cheatsheets
- depends_on: cheatsheets-it_IT
+ depends_on: [ cheatsheets-it_IT, build-cheatsheets ]
when:
path:
include:
@@ -461,7 +461,7 @@ steps:
pull: true
commands:
- make -C build-docs/doc/po/pt_BR local-check-cheatsheets
- depends_on: cheatsheets-pt_BR
+ depends_on: [ cheatsheets-pt_BR, build-cheatsheets ]
when:
path:
include:
@@ -471,7 +471,7 @@ steps:
pull: true
commands:
- make -C build-docs/doc/po/fr local-check-cheatsheets
- depends_on: cheatsheets-fr
+ depends_on: [ cheatsheets-fr, build-cheatsheets ]
when:
path:
include:
@@ -481,7 +481,7 @@ steps:
pull: true
commands:
- make -C build-docs/doc/po/es local-check-cheatsheets
- depends_on: cheatsheets-es
+ depends_on: [ cheatsheets-es, build-cheatsheets ]
when:
path:
include:
@@ -491,7 +491,7 @@ steps:
pull: true
commands:
- make -C build-docs/doc/po/pl local-check-cheatsheets
- depends_on: cheatsheets-pl
+ depends_on: [ cheatsheets-pl, build-cheatsheets ]
when:
path:
include:
@@ -501,7 +501,7 @@ steps:
pull: true
commands:
- make -C build-docs/doc/po/ko_KR local-check-cheatsheets
- depends_on: cheatsheets-ko_KR
+ depends_on: [ cheatsheets-ko_KR, build-cheatsheets ]
when:
path:
include:
@@ -511,7 +511,7 @@ steps:
pull: true
commands:
- make -C build-docs/doc/po/de local-check-cheatsheets
- depends_on: cheatsheets-de
+ depends_on: [ cheatsheets-de, build-cheatsheets ]
when:
path:
include:
@@ -521,7 +521,7 @@ steps:
pull: true
commands:
- make -C build-docs/doc/po/ja local-check-cheatsheets
- depends_on: cheatsheets-ja
+ depends_on: [ cheatsheets-ja, build-cheatsheets ]
when:
path:
include:
@@ -531,7 +531,7 @@ steps:
pull: true
commands:
- make -C build-docs/doc/po/ru local-check-cheatsheets
- depends_on: cheatsheets-ru
+ depends_on: [ cheatsheets-ru, build-cheatsheets ]
when:
path:
include:
@@ -541,7 +541,7 @@ steps:
pull: true
commands:
- make -C build-docs/doc/po/zh_Hans local-check-cheatsheets
- depends_on: cheatsheets-zh_Hans
+ depends_on: [ cheatsheets-zh_Hans, build-cheatsheets ]
when:
path:
include:
@@ -551,7 +551,7 @@ steps:
pull: true
commands:
- make -C build-docs/doc/po/ro local-check-cheatsheets
- depends_on: cheatsheets-ro
+ depends_on: [ cheatsheets-ro, build-cheatsheets ]
when:
path:
include:
@@ -561,7 +561,7 @@ steps:
pull: true
commands:
- make -C build-docs/doc/po/uk local-check-cheatsheets
- depends_on: cheatsheets-uk
+ depends_on: [ cheatsheets-uk, build-cheatsheets ]
when:
path:
include:
diff --git a/.woodpecker/update-docs-localized.sh b/.woodpecker/update-docs-localized.sh
index 07453cda7..98c3a6a14 100755
--- a/.woodpecker/update-docs-localized.sh
+++ b/.woodpecker/update-docs-localized.sh
@@ -26,7 +26,7 @@ do
depends_on="[ build-images, check-xml-${lang} ]"
;;
check-cheatsheets)
- depends_on=cheatsheets-${lang}
+ depends_on="[ cheatsheets-${lang}, build-cheatsheets ]"
;;
*)
echo "Unexpected target ${target}" >&2
-----------------------------------------------------------------------
Summary of changes:
.woodpecker/docs.yml | 24 ++++++++++++------------
.woodpecker/update-docs-localized.sh | 2 +-
doc/po/it_IT/postgis-manual.po | 2 +-
3 files changed, 14 insertions(+), 14 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list