Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

configure: update to latest config.guess and config.sub #6

Open
wants to merge 122 commits into
base: master
Choose a base branch
from

Commits on Feb 20, 2024

  1. Configuration menu
    Copy the full SHA
    31458ca View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. Configuration menu
    Copy the full SHA
    381f661 View commit details
    Browse the repository at this point in the history
  2. wxGUI: fix URL to Piemonte (Italy) dataset (OSGeo#3443)

    The dataset belongs to the book
    
    L. Casagrande, P. Cavallini, A. Frigeri, A. Furieri, I. Marchesini, M. Neteler, 2012: GIS Open Source. GRASS GIS, Quantum GIS e Spatialite.
    ISBN 9788857901497. 224 pages, Dario Flaccovio Editore S.r.l.
    
    The dataset URL is now updated to the new download space:
    
    https://grass.osgeo.org/sampledata/grassdata_piemonte_utm32n_wgs84_grass7.tar.gz
    
    (size: 291MB)
    
    Fixes OSGeo#3292
    neteler authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    e0f9153 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

  1. script: Change insecure mktemp to NamedTemporaryFile (OSGeo#3444)

    Deprecated mktemp function returns an arbitrary file name to use for a temporary file. However, the application does not immediately create/open this file.
    
    This introduces an opportunity for an attacker to interfere with the file to be created. Documentation on tempfile recommends replacing mktemp with NamedTemporaryFile. By doing this, there is no window between getting the temp file name and opening it.
    Ntp9413 authored Feb 22, 2024
    Configuration menu
    Copy the full SHA
    f3172de View commit details
    Browse the repository at this point in the history
  2. r.horizon: variable needs to be reset for point mode (OSGeo#3441)

    The bug is that for part of the angles it results in zeros. It comes up when there are nulls at the edge of the raster, test was added.
    petrasovaa authored Feb 22, 2024
    Configuration menu
    Copy the full SHA
    d5718d8 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2024

  1. v.dissolve: Allow all features dissolving line features (OSGeo#3433)

    * Allows all types to be processed through the underlying modules, not just areas.
    * Resolves issue with dissolving line features reported in OSGeo#3420.
    * Makes statements in documentation more generic, rather than referring to dissolving areas only.
    * Improves documentation overall, esp. parts about attribute aggregation.
    
    Closes OSGeo#3420
    ecodiv authored Feb 23, 2024
    Configuration menu
    Copy the full SHA
    87d2d42 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2024

  1. Configuration menu
    Copy the full SHA
    24365e1 View commit details
    Browse the repository at this point in the history
  2. CI: Enable BASH_EXEC checks in super-linter (OSGeo#3454)

    * CI: Enable BASH_EXEC checks in super-linter.yml
    
    * shell: Make shell scripts executable
    echoix authored Feb 26, 2024
    Configuration menu
    Copy the full SHA
    809ca1e View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. v.in.wfs: add different WFS version support, import only specified la…

    …yers and define area of interest (OSGeo#3311)
    
    * v.in.wfs: enhanced for alkis data import
    
    * v.in.wfs: including suggestions
    
    * v.in.wfs.py: small changes based on review
    
    * Update v.in.wfs.html
    
    * Update v.in.wfs.py
    
    * wording fixes
    
    ---------
    
    Co-authored-by: Veronica <koess@mundialis.de>
    Co-authored-by: Markus Neteler <neteler@osgeo.org>
    3 people authored Feb 27, 2024
    Configuration menu
    Copy the full SHA
    29e1b80 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9aacb94 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. script.core.Popen: do not show new window on MS Windows (OSGeo#3460)

    Hide a new window created by script.core.Popen on Windows by defining subprocess.STARTUPINFO() and using subprocess.SW_HIDE Windows constants. Inspired by QGIS executeGrass() method.
    landam authored Feb 28, 2024
    Configuration menu
    Copy the full SHA
    77de677 View commit details
    Browse the repository at this point in the history
  2. vector: use full db connection settings (OSGeo#3462)

    fix `db.dropcolumn`, `db.in.ogr`, `v.db.renamecolumn`
    metzm authored Feb 28, 2024
    Configuration menu
    Copy the full SHA
    d33427c View commit details
    Browse the repository at this point in the history
  3. docs: r.texture manual texture measure explanations (OSGeo#3458)

    This PR attempts to complete missing texture measure explanations.
    neteler authored Feb 28, 2024
    Configuration menu
    Copy the full SHA
    bbd35ac View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. Configuration menu
    Copy the full SHA
    7e40490 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    92b966a View commit details
    Browse the repository at this point in the history
  3. r.mapcalc: simplify Makefile rule (OSGeo#3425)

    Co-authored-by: Bernhard M. Wiedemann <bwiedemann@suse.de>
    nilason and bmwiedemann authored Feb 29, 2024
    Configuration menu
    Copy the full SHA
    76bcffb View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2024

  1. grass.script: Provide env parameter in the g.message API (OSGeo#3439)

    This makes the _message_, _verbose_ and other functions consistent with other wrappers around _run_command_ family calls. While not needed for multiple-mapset situations and parallelization, it is necessary when calls with messages are used without global environment being set and only a custom (local) environment is available which is the case in grass.script.setup (with OSGeo#3438).
    
    The PR aims at providing the interface, not updating all use cases (it will be applied for grass.script.setup in OSGeo#3438).
    
    This does not have any test since the current API does not allow for writing these test. This will be tested indirectly in the future (e.g. by OSGeo#3438).
    
    Additionally, it fixes documentation for couple other function where the parameter documentation was misleading or wrong.
    wenzeslaus authored Mar 3, 2024
    Configuration menu
    Copy the full SHA
    44ea597 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. Configuration menu
    Copy the full SHA
    dcb41fa View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2024

  1. Docker alpine: Fix for PEP-668 (OSGeo#3463)

    * fix pip use (PEP 668) after alpine docker image was updated to alpine 3.19,
    * set PYTHONPATH
    * add pip --no-cache-dir option
    mmacata authored Mar 5, 2024
    Configuration menu
    Copy the full SHA
    9cb4745 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

  1. grass.script: Add separate function for setting location description (O…

    …SGeo#3431)
    
    This adds a separate function for setting location (aka title) stored in MYNAME file. It includes tests of this function.
    wenzeslaus authored Mar 7, 2024
    Configuration menu
    Copy the full SHA
    ac63b38 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7f570b5 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2024

  1. Configuration menu
    Copy the full SHA
    b45319c View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2024

  1. makefile: Remove unused doxygen from temporal and python/grass/except…

    …ions (OSGeo#3471)
    
    * temporal: Remove doxygen from makefile that was accidently commited back
    
    * python(exceptions): Remove doxygen from makefile
    echoix authored Mar 10, 2024
    Configuration menu
    Copy the full SHA
    90496c2 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. Configuration menu
    Copy the full SHA
    30efa16 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d0849eb View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. Remove libexpat-1.dll from package.sh (taken from OSGeo#3476) (OSGeo#…

    …3479)
    
    Co-authored-by: Jürgen Fischer <jef@norbit.de>
    landam and jef-n authored Mar 13, 2024
    Configuration menu
    Copy the full SHA
    2d1cb6e View commit details
    Browse the repository at this point in the history
  2. CI(clang-format): Run faster and post fixes as code suggestions if po…

    …ssible when running on a PR (OSGeo#3483)
    echoix authored Mar 13, 2024
    Configuration menu
    Copy the full SHA
    b1d7a4f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b4aba39 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b8818a7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e3603c9 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2024

  1. CI(labeler): Match notebook label (OSGeo#3498)

    * CI(labeler): Match notebook label
    
    * CI(labeler): Match notebook label for Jupyter support code
    echoix authored Mar 14, 2024
    Configuration menu
    Copy the full SHA
    9c3b67e View commit details
    Browse the repository at this point in the history
  2. d.rast.num: Constrain rendering within the current display extent in …

    …the wx monitor (OSGeo#3489)
    
    * d.rast.num: Use GRASS_REGION to constrain rendering within the current display extent
    
    * Use -1 instead of < 0
    
    * Use PR OSGeo#3500
    HuidaeCho authored Mar 14, 2024
    Configuration menu
    Copy the full SHA
    827f988 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2024

  1. v.patch: Continuous cats with -e (OSGeo#3508)

    * v.patch: Continuous cats with -e
    
    * Copyright year
    HuidaeCho authored Mar 17, 2024
    Configuration menu
    Copy the full SHA
    8130144 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2024

  1. r.in.gdal: remove outdated example (OSGeo#3511)

    The example of the import of bioclim data is outdated. The data at WorldClim is now available as geoTIFs.
    ecodiv authored Mar 18, 2024
    Configuration menu
    Copy the full SHA
    b656141 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2024

  1. packaging: Use subprocess instead of os.popen for change log creation (

    …OSGeo#3469)
    
    This addresses a warning from Bandit about an injection attack risk by using subprocess.Popen instead of os.popen.
    
    ---------
    
    Co-authored-by: kpolchow <polchow.kira@gmail.com>
    naidneelttil and kpolchow authored Mar 21, 2024
    Configuration menu
    Copy the full SHA
    edb7703 View commit details
    Browse the repository at this point in the history
  2. r.univar: init max value with smallest possible value (OSGeo#3512)

    * r.univar: init max value with smallest possible value
    
    * add test
    nilason authored Mar 21, 2024
    Configuration menu
    Copy the full SHA
    68ca15d View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. Configuration menu
    Copy the full SHA
    259b768 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5399d9c View commit details
    Browse the repository at this point in the history
  3. r.horizon: get rid of global variables and other refactoring (OSGeo#3346

    )
    
    Refactored r.horizon to make it possible to extend it in the future (e.g. multiple coordinates, parallelization, etc.), Refactoring includes
    
    * removing most global variables and reorganizing them into structures depending on when the variables change and when they don't, e.g. member variables in new struct OriginAngle are constant for each origin point and angle computed. 
     * reducing the scope of some local variables
     * renaming/reorganizing some functions
     * reducing the code duplication between the point and raster mode
     * removing unused functions
     * addressing cppcheck complaints
     * adding a test comparing values of raster mode result with point mode results for couple points
    
    I tried not do any changes that could impact results, e.g. there is still some discrepancy in how maxlength is computed for the  modes.
    petrasovaa authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    8c56397 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    de4a3d7 View commit details
    Browse the repository at this point in the history
  5. wxGUI: Minimal changes to rename location to project (OSGeo#2993)

    This renames location to project in user messages in wxGUI.
    This does not change any documentation or variable names. It does not change names outside of wxGUI.
    This changes only location to project. It leaves mapset as is because there seems to be much higher consensus about renaming location to project than about renaming mapset in general.
    See also OSGeo#3121
    
    Co-authored-by: Caitlin Haedrich
    Co-authored-by: Veronica Andreo <veroandreo@gmail.com>
    Co-authored-by: Anna Petrasova <kratochanna@gmail.com>
    Co-authored-by: Markus Neteler <neteler@osgeo.org>
    4 people authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    b3bd795 View commit details
    Browse the repository at this point in the history
  6. v.info: Rename location to project in outputs (OSGeo#3133)

    - Translatable plain text output now generates "Project" instead of "Location".
    - Extended shell-style output now generates "project=" in addtion to "location=".
    - Examples in documentation now show project only.
    - History continues using LOCATION because history file is printed as is and the parsing rules applied to it are unclear, so consequences of adding a new key there are not clear to me.
    wenzeslaus authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    553f861 View commit details
    Browse the repository at this point in the history
  7. r.info: Rename location to project in outputs (OSGeo#3134)

    - Translatable plain text output now generates "Project" instead of "Location".
    - Extended shell-style output now generates "project=" in addtion to "location=".
    - Shell example in documentation now shows project only.
    - Words "data base location and mapset" in documentation are now replaces by slightly experimental "project, mapset, project parent directory (database directory)". The order is what works best for the sentence. The print order is mapset, project, directory.
    wenzeslaus authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    0f047e2 View commit details
    Browse the repository at this point in the history
  8. lib/parser: Use project for G_OPT_M_LOCATION (OSGeo#3130)

    Standard option G_OPT_M_LOCATION which creates option named location now creates option named project. Each module using G_OPT_M_LOCATION without further modifications has its own entry in in the renamed options file for backwards compatibility.
    
    * Update usage of g.mapset to use project. Remove all caps MAPSET and LOCATION from g.mapset documentation.
    * Minimal changes to r.proj doc to rename to project
    * Update usage of v.proj location= to project= and v.proj man page
    * Replace r.proj-related usages of location= by project=
    wenzeslaus authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    22e0626 View commit details
    Browse the repository at this point in the history
  9. ci: Add Automated Coverity Scan analysis (OSGeo#3514)

    This adds automatic Coverity to the repository. This action should tell the Synopsys Coverity action to run the scan, with the results being posted on the Coverity Scan website. It assumes secrets in the repo settings.
    
    This file was created based off of:
    https://sig-product-docs.synopsys.com/bundle/bridge/page/documentation/c_github-coverity.html
    jadenabrams100 authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    ff6582e View commit details
    Browse the repository at this point in the history
  10. i.ortho.target: Rename location and mapset options to target (OSGeo#3131

    )
    
    i.ortho.target has option target_location and mapset_location. This renames them to target_project and target_mapset, so the new names are consistent. While mapsets are in locations (projects), there seems to be no reason for the word location in mapset_location because it is G_OPT_M_MAPSET.
    
    This also includes change for g.gui.image2target which uses G_OPT_M_LOCATION with a custom name target_location, now renamed target_project. Both old and new names are consistent with target_project in i.ortho.target.
    
    
    Co-authored-by: Anna Petrasova <kratochanna@gmail.com>
    wenzeslaus and petrasovaa authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    cb37ba7 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2024

  1. CI(deps): Update actions/checkout action to v3.6.0 (OSGeo#3524)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 23, 2024
    Configuration menu
    Copy the full SHA
    88c349a View commit details
    Browse the repository at this point in the history
  2. CI(deps): Update actions/checkout action to v4 (OSGeo#3526)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 23, 2024
    Configuration menu
    Copy the full SHA
    10d1b55 View commit details
    Browse the repository at this point in the history
  3. v.db.connect: Replace -o flag with the standard --overwrite (OSGeo#3214)

    * v.db.connect: Implement standard --overwrite and remove -o flag
    
    * Add -o => --overwrite to renamed_options
    HuidaeCho authored Mar 23, 2024
    Configuration menu
    Copy the full SHA
    2c298d9 View commit details
    Browse the repository at this point in the history
  4. CI(deps): Update synopsys-sig/synopsys-action action to v1.8.0 (OSGeo…

    …#3525)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 23, 2024
    Configuration menu
    Copy the full SHA
    7b8fd9c View commit details
    Browse the repository at this point in the history
  5. CI(deps): Update github/codeql-action action to v3.24.9 (OSGeo#3519)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 23, 2024
    Configuration menu
    Copy the full SHA
    2c26d9d View commit details
    Browse the repository at this point in the history
  6. Tidy up INSTALL and REQUIREMENTS files (OSGeo#3499)

    * Tidy up INSTALL and REQUIREMENTS files
    * 64bit support is enabled by default
    * large file support is enabled by default
    * list LIBSVM and PDAL as optional requirements
    
    * PDAL is required also for v.in.pdal
    
    Co-authored-by: Anna Petrasova <kratochanna@gmail.com>
    
    * Remove pointers to trac wiki & tutorials (thanks @petrasovaa)
    
    * remove tutorials also from table of contents
    
    ---------
    
    Co-authored-by: Anna Petrasova <kratochanna@gmail.com>
    marisn and petrasovaa authored Mar 23, 2024
    Configuration menu
    Copy the full SHA
    d58b692 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2024

  1. configure: enable read Git hash and date from file (OSGeo#3435)

    Use more platform independent GRASS header commit script.
    nilason authored Mar 24, 2024
    Configuration menu
    Copy the full SHA
    391e934 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. Configuration menu
    Copy the full SHA
    bcc7af9 View commit details
    Browse the repository at this point in the history
  2. CI: update publishing workflow (OSGeo#3437)

    Generates Git derived data files, which are added to release tarballs
    of both `*.tar.gz` and `tar.xz` formats. Accompanied by `md5` and
    `sha256` checksum files.
    nilason authored Mar 25, 2024
    Configuration menu
    Copy the full SHA
    704f446 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2024

  1. Checks: Fix flake8 F401 imported but unused (OSGeo#3535)

    F401 errors are most often caused by `__init__.py`, except one. The line `--per-file-ignores=__init__.py:F401` has been added to the .flake8 file to ignore `__init__.py`.
    mshukuno authored Mar 26, 2024
    Configuration menu
    Copy the full SHA
    071e8db View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2869b8a View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2024

  1. Document that GRASS jupyter enables overwrite by default (OSGeo#3516)

    * Document that GRASS jupyter enables overwrite by default
    
    * Update python/grass/jupyter/__init__.py
    
    Explain rationale for defaulting to overwrite
    
    Co-authored-by: Vaclav Petras <wenzeslaus@gmail.com>
    
    Improve syntax
    
    Co-authored-by: Vaclav Petras <wenzeslaus@gmail.com>
    
    * Shorten line length of lines commited directly from GH
    
    ---------
    
    Co-authored-by: Vaclav Petras <wenzeslaus@gmail.com>
    marisn and wenzeslaus authored Mar 27, 2024
    Configuration menu
    Copy the full SHA
    17dac19 View commit details
    Browse the repository at this point in the history
  2. wxGUI: rename location to project for new project wizard (OSGeo#3520)

    * wxGUI: rename location to project for new project wizard
    petrasovaa authored Mar 27, 2024
    Configuration menu
    Copy the full SHA
    9541615 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    732383e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e3be54b View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. CI(deps): Pin dependencies (OSGeo#3536)

    * CI(deps): Pin dependencies
    
    * Add complete version in comment
    
    ---------
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Edouard Choinière <27212526+echoix@users.noreply.github.com>
    renovate[bot] and echoix authored Mar 28, 2024
    Configuration menu
    Copy the full SHA
    d610953 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    535c39c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a34dcf3 View commit details
    Browse the repository at this point in the history
  4. r.what: Add JSON output (OSGeo#3528)

    * [feat] Add JSON output to r.what
    
    Added an option format which accepts the value "plain" for the current
    output format and "json" for the JSON output. The newly added parson library
    is being used here.
    
    Also, added a couple of python tests to ensure JSON output works as expected.
    
    * fix clang format
    
    * fix python black formatting
    
    * fix changes from code review
    kritibirda26 authored Mar 28, 2024
    Configuration menu
    Copy the full SHA
    fbc99e8 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2024

  1. Configuration menu
    Copy the full SHA
    43e8659 View commit details
    Browse the repository at this point in the history
  2. Translated using Weblate (Italian) (OSGeo#3542)

    Currently translated at 87.0% (3689 of 4238 strings)
    
    Translation: GRASS GIS/grasswxpy
    Translate-URL: https://weblate.osgeo.org/projects/grass-gis/grasswxpy/it/
    
    Co-authored-by: luca <lucadeluge@gmail.com>
    osgeoweblate and lucadelu authored Mar 29, 2024
    Configuration menu
    Copy the full SHA
    6c790bf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    339e0d1 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2024

  1. Configuration menu
    Copy the full SHA
    2aa98a1 View commit details
    Browse the repository at this point in the history
  2. r.surf.gauss: Added seed option and flag (OSGeo#2931)

    * r.surf.gauss: Added seed option and flag
    
    * Updated seed options, flags and tests
    
    * r.surf.gauss: switch seed to long from int
    
    * Update raster/r.surf.gauss/main.c
    
    Co-authored-by: Anna Petrasova <kratochanna@gmail.com>
    
    * Changed message to warning
    
    * Change to G_warning
    
    * Update test to check univar stats
    
    * Updated tests to check default params univar stats
    
    * Removed random seed flag -s
    
    * Updated warning message and copywrite
    
    * Fixed typo
    
    * Update raster/r.surf.gauss/main.c
    
    Co-authored-by: Anna Petrasova <kratochanna@gmail.com>
    
    * Change test file name to meet convention
    
    * Reduced the extent of the test raster to speed up tests
    
    * Apply suggestions from code review
    
    * Removed old comment
    
    * change the tests to use fixed reference values
    
    ---------
    
    Co-authored-by: Corey White <ctwhite48@gmail.com>
    Co-authored-by: Anna Petrasova <kratochanna@gmail.com>
    3 people authored Mar 30, 2024
    Configuration menu
    Copy the full SHA
    23d28c0 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2024

  1. i.pca: added tests for the module (OSGeo#3550)

    * Add test_pca.py
    
    * Add assertRasterFitsInfo assertion
    
    * Add tests for r.univar results [i.pca] & save expected results in files
    
    * i.pca: clear maps after testing is done
    
    * Add header to test_pca.py
    
    * remove data directory and save results in script
    
    * Update imagery/i.pca/testsuite/test_pca.py
    
    ---------
    
    Co-authored-by: Stefan Blumentrath <stefan.blumentrath@gmx.de>
    HamedElgizery and ninsbl authored Apr 2, 2024
    Configuration menu
    Copy the full SHA
    315f7ef View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c617f0b View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2024

  1. Configuration menu
    Copy the full SHA
    d32ece4 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2024

  1. Configuration menu
    Copy the full SHA
    692b3c9 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2024

  1. Configuration menu
    Copy the full SHA
    0cd72be View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e592034 View commit details
    Browse the repository at this point in the history
  3. r.univar: add note that parallelization is disabled if mask is set (O…

    …SGeo#3562)
    
    And remove older note about extended statistics that is not valid anymore.
    ecodiv authored Apr 5, 2024
    Configuration menu
    Copy the full SHA
    927b653 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d32dfb5 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2024

  1. Configuration menu
    Copy the full SHA
    9f49630 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2024

  1. libgis/r.gwflow: fixed security vulnerabilities and weaknesses (OSGeo…

    …#3549)
    
    This fixes three vulnerabilities/weaknesses found with older scans of Coverity:
    - Issue 1208372 in lib/gis/error.c concerns an unbounded read of an environment variable into memory. An attacker could overwrite the environment variable that is accessed by G__home() and exploit it to overflow the buf array.
    - Issue 1501330 in lib/gis/mapset_msc.c concerns writing into an array that is not null terminated. If the path variable was not null terminated, the write could fill the whole array with data without a null terminator, causing trouble down the line.
    - Issue 1207344 in raster/r.gwflow/main.c concerns a constant variable guarding dead code. This is not exactly a security vulnerability, but is a code quality issue I was able to easily fix.
    jadenabrams100 authored Apr 7, 2024
    Configuration menu
    Copy the full SHA
    dec4266 View commit details
    Browse the repository at this point in the history
  2. r.in.pdal: use NoFileWriter class for PDAL > 2.7.0 (fixes OSGeo#3552) (

    …OSGeo#3567)
    
    * r.in.pdal: use NoFileWriter class for PDAL > 2.7.0 (fixes OSGeo#3552)
    
    Starting from PDAL 2.7.0 filename is mandatory for Writer class, but
    there is a NoFileWriter class that maintains old behavior.
    PDAL/PDAL#4342
    
    ---------
    
    Co-authored-by: Nicklas Larsson <n_larsson@yahoo.com>
    marisn and nilason authored Apr 7, 2024
    Configuration menu
    Copy the full SHA
    544a780 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2024

  1. Configuration menu
    Copy the full SHA
    597e222 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2c93249 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2024

  1. v.db.join: speed up processing by using fewer db.execute commands (OS…

    …Geo#3286)
    
    * speed_up
    * add comments
    * remove addcolumn part
    * remove unnecessary import
    * use chunks
    * remove not required import
    * review MN; add TRANSACTION
    * review tmszi
    
    ---------
    
    Co-authored-by: Edouard Choinière <27212526+echoix@users.noreply.github.com>
    griembauer and echoix authored Apr 9, 2024
    Configuration menu
    Copy the full SHA
    f98c3f2 View commit details
    Browse the repository at this point in the history
  2. wxGUI: Integrate Grapical Modeler into single window layout (OSGeo#3003)

    * log in main statusbar
    * rename classes/methods map -> main
    * new icon modeler-settings, add model properties into toolbar
    * menu implemented for dockable widget
    * unique menu shortcuts
    * address issues reported by flake8
    landam authored Apr 9, 2024
    Configuration menu
    Copy the full SHA
    e61e86a View commit details
    Browse the repository at this point in the history
  3. CI: Overhaul Coverity Scan (OSGeo#3566)

    This attempts to fix the problems with the previously submitted Coverity Scanning action. Basic building functionality is borrowed from our ubuntu.yml, and Coverity functionality is borrowed from PROJ's coverity-scan.yml.
    
    The needed secrets are COVERITY_PASSPHRASE (the token used to submit builds) and COVERITY_USER (user email).
    
    ---------
    
    Co-authored-by: Nicklas Larsson <n_larsson@yahoo.com>
    jadenabrams100 and nilason authored Apr 9, 2024
    Configuration menu
    Copy the full SHA
    88f73e2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a26a54f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8a3c6b7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1c09578 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9744210 View commit details
    Browse the repository at this point in the history
  8. CI: configure Coverity Scan with debug flag (OSGeo#3572)

    Configure and build for Coverity Scan with debug flag set. Also run
    `cov-build` directly with `make` as argument.
    
    In addition some style fixes to pass pre-commit.
    nilason authored Apr 9, 2024
    Configuration menu
    Copy the full SHA
    8e1214c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    afce9ea View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2024

  1. Configuration menu
    Copy the full SHA
    49e1353 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2024

  1. g.mapsets: Add JSON output (OSGeo#2542)

    * g.mapsets: fixed indenting and added json flag  in preperation to add json output
    
    * Added format options to list mapsets as plain, vertical, csv, or json
    
    * g.mapsets: Added start testing listing mapsets with different formats
    
    * g.mapsets: Reformated python with flake8 and black
    
    * g.mapsets: Fixed indent conflict
    
    * Fixed implicit declaration of function errors
    
    * Fixed issues found in code review
    
    * Added print flag to json output and added tests
    
    * Simplified tests
    
    * Apply clang format suggestions
    
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    
    * Updated code to use parson and fixed tests
    
    * Updated docs
    
    * Fixed mapsets array initalization issue
    
    * Fixed bug setting JSON_ARRAY
    
    * Removed unused parameter
    
    * Update general/g.mapsets/main.c
    
    Fixed typo.
    
    Co-authored-by: Anna Petrasova <kratochanna@gmail.com>
    
    * Updated default separator to space
    
    * Update general/g.mapsets/main.c
    
    Switch GUI section to Print
    
    Co-authored-by: Anna Petrasova <kratochanna@gmail.com>
    
    * Update general/g.mapsets/main.c
    
    Co-authored-by: Anna Petrasova <kratochanna@gmail.com>
    
    * Update general/g.mapsets/main.c
    
    Co-authored-by: Anna Petrasova <kratochanna@gmail.com>
    
    * Removed unneeded logic
    
    * Update general/g.mapsets/list.c
    
    Co-authored-by: Nicklas Larsson <n_larsson@yahoo.com>
    
    * Update general/g.mapsets/list.c
    
    Co-authored-by: Nicklas Larsson <n_larsson@yahoo.com>
    
    * Implmented suggestion from code review
    
    * Removed duplicate code
    
    * Refactored duplicate code and removed some comments
    
    ---------
    
    Co-authored-by: Edouard Choinière <27212526+echoix@users.noreply.github.com>
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    Co-authored-by: Corey White <ctwhite48@gmail.com>
    Co-authored-by: Anna Petrasova <kratochanna@gmail.com>
    Co-authored-by: Nicklas Larsson <n_larsson@yahoo.com>
    6 people authored Apr 11, 2024
    Configuration menu
    Copy the full SHA
    8bf604c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    324ef27 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d327df2 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. utils: do not make unnecessary request to addons GitHub repository if…

    … addon path is None (OSGeo#3571)
    
    ---------
    
    Co-authored-by: Tomas Zigo <tomas.zigo@slovanet.sk>
    mmacata and tmszi authored Apr 12, 2024
    Configuration menu
    Copy the full SHA
    20a7620 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    73aadd7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f877fb8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c4316f1 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2024

  1. Configuration menu
    Copy the full SHA
    6da4f45 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2024

  1. Configuration menu
    Copy the full SHA
    dcc4425 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. Configuration menu
    Copy the full SHA
    11b986b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c33e794 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5aa7f1b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f8fb819 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5c9d1fc View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    23c0db5 View commit details
    Browse the repository at this point in the history
  7. CI: configure Coverity Scan for larger scans and artifact (OSGeo#3606)

    Updated the coverity.yml action with two things:
    1: Changed the upload commands to match the commands for uploading analyses over 500MB.
    2: Added in extra step to output the scan results as an artifact.
    jadenabrams100 authored Apr 16, 2024
    Configuration menu
    Copy the full SHA
    31a3c77 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    34666e4 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2024

  1. Configuration menu
    Copy the full SHA
    9b28d7b View commit details
    Browse the repository at this point in the history
  2. v.in.ogr: fix escape table column name during creating table (OSGeo#3605

    )
    
    * v.in.ogr: fix escape table column name during creating table
    
    Which allow create DB table column name with reserved keyword.
    
    * Use SQL standard double quotes instead of single quotes
    tmszi authored Apr 17, 2024
    Configuration menu
    Copy the full SHA
    25c2a32 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d6884f0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    94e398b View commit details
    Browse the repository at this point in the history
  5. db/drivers/mysql: set SQL ANSI_QUOTES MODE (OSGeo#3612)

    Which allow to use SQL standard double quotes instead of backticks for
    escaping column name.
    tmszi authored Apr 17, 2024
    Configuration menu
    Copy the full SHA
    efb595f View commit details
    Browse the repository at this point in the history
  6. t.vect.import: rename location parameter to project (OSGeo#3610)

    Applies to t.rast.import also.
    petrasovaa authored Apr 17, 2024
    Configuration menu
    Copy the full SHA
    97ca8c0 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    af7aa69 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2d982f1 View commit details
    Browse the repository at this point in the history
  9. r.mapcalc: add data types info to manual (OSGeo#3579)

    * r.mapcalc: add data types info to manual
    
    * delete commas as thousand separators in new  examples
    
    * r.mapcalc: update value ranges - architecture dependency, wording
    
    ---------
    
    Co-authored-by: Veronica Andreo <veroandreo@gmail.com>
    pesekon2 and veroandreo authored Apr 17, 2024
    Configuration menu
    Copy the full SHA
    79fb976 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    bb27c05 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. run on my fork

    nilason committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    7eadec8 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Configuration menu
    Copy the full SHA
    f547ed5 View commit details
    Browse the repository at this point in the history