[GRASS-git] [OSGeo/grass] 12e3e5: configure: build external libraries first (#4671)
Edouard Choinière
noreply at github.com
Sun Nov 10 16:13:03 PST 2024
Branch: refs/heads/renovate/ruff
Home: https://github.com/OSGeo/grass
Commit: 12e3e5667f5adf28f099547cc65596a2c8f2dbd7
https://github.com/OSGeo/grass/commit/12e3e5667f5adf28f099547cc65596a2c8f2dbd7
Author: Nicklas Larsson <n_larsson at yahoo.com>
Date: 2024-11-08 (Fri, 08 Nov 2024)
Changed paths:
M lib/Makefile
Log Message:
-----------
configure: build external libraries first (#4671)
Enable use of external libraries in GRASS libraries.
Commit: 941e220799cb3e2c6d108a3585241c5ac7f9ea6f
https://github.com/OSGeo/grass/commit/941e220799cb3e2c6d108a3585241c5ac7f9ea6f
Author: Corey White <smortopahri at gmail.com>
Date: 2024-11-08 (Fri, 08 Nov 2024)
Changed paths:
M imagery/i.vi/main.c
Log Message:
-----------
i.vi: Add ndwi color table to output (#4668)
* i.vi: Add ndwi color table to output
* Changed the min max values when setting the color table
---------
Co-authored-by: Corey White <ctwhite48 at gmail.com>
Commit: fddbf9f0cb38e4d67b064a8190337c5fe3f8e17c
https://github.com/OSGeo/grass/commit/fddbf9f0cb38e4d67b064a8190337c5fe3f8e17c
Author: Mohan Yelugoti <ymdatta.work at gmail.com>
Date: 2024-11-08 (Fri, 08 Nov 2024)
Changed paths:
M lib/gis/file_name.c
Log Message:
-----------
lib/gis: Fix out of scope memory access error in file_name function call (#4650)
lib/gis: Fix out of scope memory access error in file_name()
When execution takes else path, pname, a pointer, is set to point
to a local variable array which has limited scope. This same
pointer is accessed outside of the block containing the local
variable, essentially creating a scenario where we are accessing
memory outside its score, which is undefined behavior.
Move the variable array out of the loop, so that it has the same
scope as pname.
This was found using cppcheck tool.
Signed-off-by: Mohan Yelugoti <ymdatta.work at gmail.com>
Commit: 177f5b441185bbd0121d2a5c81fa25a19104e529
https://github.com/OSGeo/grass/commit/177f5b441185bbd0121d2a5c81fa25a19104e529
Author: Hernán De Angelis <51515911+dhdeangelis at users.noreply.github.com>
Date: 2024-11-08 (Fri, 08 Nov 2024)
Changed paths:
M vector/v.rectify/v.rectify.html
Log Message:
-----------
docs: v.rectify.html fix typos (#4619)
Commit: 4f5da027b21a916e88b8670e0a63f1daf306d7a9
https://github.com/OSGeo/grass/commit/4f5da027b21a916e88b8670e0a63f1daf306d7a9
Author: Arohan Ajit <arohanajit232 at gmail.com>
Date: 2024-11-08 (Fri, 08 Nov 2024)
Changed paths:
M .flake8
M python/grass/temporal/temporal_topology_dataset_connector.py
Log Message:
-----------
temporal: Fixed bare 'except' PEP8 error (#4670)
Commit: b18e390b0c9729764fbac132cd2bfa509eb1c1c4
https://github.com/OSGeo/grass/commit/b18e390b0c9729764fbac132cd2bfa509eb1c1c4
Author: Shreshth Malik <shreshthmalik99 at gmail.com>
Date: 2024-11-08 (Fri, 08 Nov 2024)
Changed paths:
A raster/r.circle/testsuite/test_circle.py
Log Message:
-----------
r.circle: Add tests for raster circle tool (#4598)
Commit: 7fe3fa57ad6c122ff63956665648695a362e15e6
https://github.com/OSGeo/grass/commit/7fe3fa57ad6c122ff63956665648695a362e15e6
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date: 2024-11-08 (Fri, 08 Nov 2024)
Changed paths:
M .github/workflows/codeql-analysis.yml
M .github/workflows/python-code-quality.yml
Log Message:
-----------
CI(deps): Update github/codeql-action action to v3.27.1 (#4675)
Commit: 8dced26735eba9c385a2eebd1d31d97f2b808386
https://github.com/OSGeo/grass/commit/8dced26735eba9c385a2eebd1d31d97f2b808386
Author: Mohan Yelugoti <ymdatta.work at gmail.com>
Date: 2024-11-08 (Fri, 08 Nov 2024)
Changed paths:
M raster3d/r3.in.v5d/binio.c
M raster3d/r3.in.v5d/binio.h
M raster3d/r3.in.v5d/v5d.c
M raster3d/r3.in.v5d/v5d.h
M raster3d/r3.out.v5d/binio.c
M raster3d/r3.out.v5d/binio.h
M raster3d/r3.out.v5d/v5d.c
M raster3d/r3.out.v5d/v5d.h
Log Message:
-----------
r3.in.v5d, r3.out.v5d: Deprecate CRAY HW specific code (#4545)
Currently, there is no sign either from GitHub issues or grass-dev archive that many people are using CRAY code which was introduced 25 years ago. As part of fixing a bug, we found that it was hard to find reference materials related to CRAY, due to it being old and not in usage anymore. For this reason, deprecate CRAY code and corresponding complexity that comes with it.
Signed-off-by: Mohan Yelugoti <ymdatta.work at gmail.com>
Commit: 8c4f244c9533b64b7be5101cd7c4da0d496e89a5
https://github.com/OSGeo/grass/commit/8c4f244c9533b64b7be5101cd7c4da0d496e89a5
Author: Nicklas Larsson <n_larsson at yahoo.com>
Date: 2024-11-09 (Sat, 09 Nov 2024)
Changed paths:
M raster3d/r3.out.v5d/binio.c
Log Message:
-----------
r3.out.v5d: fix broken LITTLE ifdef-else macro in read_float4() (#4676)
Fix regression introduced by 8dced26735eba9c385a2eebd1d31d97f2b808386.
Commit: f8415210b5198ef882ece25dbf6a993000a50482
https://github.com/OSGeo/grass/commit/f8415210b5198ef882ece25dbf6a993000a50482
Author: Edouard Choinière <27212526+echoix at users.noreply.github.com>
Date: 2024-11-10 (Sun, 10 Nov 2024)
Changed paths:
M pyproject.toml
Log Message:
-----------
style: Ignore PYI066 on non-stub files. Doesn't seem idiomatic and not understood by Pyright.
Commit: 670f18ef0451abbe06979bef75938494e9752e23
https://github.com/OSGeo/grass/commit/670f18ef0451abbe06979bef75938494e9752e23
Author: Edouard Choinière <27212526+echoix at users.noreply.github.com>
Date: 2024-11-10 (Sun, 10 Nov 2024)
Changed paths:
M scripts/d.correlate/d.correlate.py
M scripts/db.dropcolumn/db.dropcolumn.py
Log Message:
-----------
style: Fix split-static-string (SIM905)
Ruff rule: https://docs.astral.sh/ruff/rules/split-static-string/
Commit: 3259a02d22d99688ac4d5a09565893fd14c0c912
https://github.com/OSGeo/grass/commit/3259a02d22d99688ac4d5a09565893fd14c0c912
Author: Edouard Choinière <27212526+echoix at users.noreply.github.com>
Date: 2024-11-11 (Mon, 11 Nov 2024)
Changed paths:
M pyproject.toml
Log Message:
-----------
style: Ignore subclass-builtin (FURB189) in two files, as expected change is not guaranteed to be equivalent
Commit: 0aa1665915c4a5404ea37b2ae628ed836a865cd9
https://github.com/OSGeo/grass/commit/0aa1665915c4a5404ea37b2ae628ed836a865cd9
Author: Edouard Choinière <27212526+echoix at users.noreply.github.com>
Date: 2024-11-11 (Mon, 11 Nov 2024)
Changed paths:
M .flake8
M .github/workflows/codeql-analysis.yml
M .github/workflows/python-code-quality.yml
M imagery/i.vi/main.c
M lib/Makefile
M lib/gis/file_name.c
M python/grass/temporal/temporal_topology_dataset_connector.py
A raster/r.circle/testsuite/test_circle.py
M raster3d/r3.in.v5d/binio.c
M raster3d/r3.in.v5d/binio.h
M raster3d/r3.in.v5d/v5d.c
M raster3d/r3.in.v5d/v5d.h
M raster3d/r3.out.v5d/binio.c
M raster3d/r3.out.v5d/binio.h
M raster3d/r3.out.v5d/v5d.c
M raster3d/r3.out.v5d/v5d.h
M vector/v.rectify/v.rectify.html
Log Message:
-----------
Merge branch 'main' into renovate/ruff
Compare: https://github.com/OSGeo/grass/compare/243d83e0bf55...0aa1665915c4
To unsubscribe from these emails, change your notification settings at https://github.com/OSGeo/grass/settings/notifications
More information about the grass-commit
mailing list