Package Details: grass 8.4.1-1

Git Clone URL: https://aur.archlinux.org/grass.git (read-only, click to copy)
Package Base: grass
Description: Geospatial data management and analysis, image processing, graphics/maps production, spatial modeling and visualization
Upstream URL: http://grass.osgeo.org/
Keywords: analysis GIS remote sensing spatial
Licenses: GPL
Submitter: Scimmia
Maintainer: kikislater
Last Packager: kikislater
Votes: 38
Popularity: 0.000000
First Submitted: 2015-09-06 15:10 (UTC)
Last Updated: 2025-03-07 06:47 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 .. 16 Next › Last »

jamiejquinn commented on 2021-06-17 10:26 (UTC)

GDAL 3.3 has broken GRASS compilation and vector/v.hull/chull.c must be patched to fix. I added the application of this patch to the PKGBUILD along with a prepare block which applies the patch:

...
source=("http://grass.osgeo.org/grass$_shortver/source/$pkgname-$pkgver.tar.gz" "https://github.com/OSGeo/grass/commit/b86314c7.patch")
md5sums=('91f4830a5164cea703384814cd89cdf9' 'e72affb054af2794560971ddab90d0a2')

prepare() {
    cd "$pkgname-$pkgver"
    patch --forward --strip=1 --input="${srcdir}/b86314c7.patch"
}
...

dobedobedo commented on 2021-06-02 06:30 (UTC) (edited on 2021-06-02 06:32 (UTC) by dobedobedo)

Hi, Is it possible to add a LC_ALL=C before make, so that the users don't need to specify themselves? Without that the compilation will fail due to locale issue.

kikislater commented on 2021-04-25 11:23 (UTC) (edited on 2021-04-25 17:14 (UTC) by kikislater)

Could you please add python-pysvn as dependency or optional dependency to allow installation of plugins ?

marcocurreli commented on 2021-02-02 14:40 (UTC)

/usr/bin/python3.9

kikislater commented on 2021-02-02 04:40 (UTC) (edited on 2021-02-02 04:42 (UTC) by kikislater)

So you symlink python3 to python2 ... You have a problem in your python environment ! What is the output of readlink -f $(which python)

marcocurreli commented on 2021-01-31 13:50 (UTC) (edited on 2021-01-31 23:26 (UTC) by marcocurreli)

With python-wxpython-4.1.1 grass gui works fine, but without python 2 symlink ( ln -s ../../../usr/bin/python3 bin/python2) it doesn't work at all.

kikislater commented on 2021-01-21 14:30 (UTC) (edited on 2021-01-21 14:31 (UTC) by kikislater)

Warning : python-wxpython version 4.0.7.2 is buggy and so grass gui crash =>

https://github.com/OSGeo/grass/issues/1261

Solved by building python-wxpython-4.1.1

kikislater commented on 2020-12-31 16:26 (UTC)

Finally one year later removed python 2 symlink ... Thank you Scimmia

kikislater commented on 2020-10-14 14:37 (UTC)

You still incude python2 symlink which is a mess ...