Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/grass/
Date: Sat, 04 Jun 2022 03:58:05
Message-Id: 1654313252.4f754696082002eb5a4debed1b0b61e4404246cb.sam@gentoo
1 commit: 4f754696082002eb5a4debed1b0b61e4404246cb
2 Author: Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de>
3 AuthorDate: Fri Jun 3 21:19:31 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 4 03:27:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f754696
7
8 sci-geosciences/grass: version bump 8.2.0
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Mario Haustein <mario.haustein <AT> hrz.tu-chemnitz.de>
12 Closes: https://github.com/gentoo/gentoo/pull/25744
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 sci-geosciences/grass/Manifest | 1 +
16 sci-geosciences/grass/grass-8.2.0.ebuild | 283 +++++++++++++++++++++++++++++++
17 2 files changed, 284 insertions(+)
18
19 diff --git a/sci-geosciences/grass/Manifest b/sci-geosciences/grass/Manifest
20 index cd51431391bf..4fa939f09a8e 100644
21 --- a/sci-geosciences/grass/Manifest
22 +++ b/sci-geosciences/grass/Manifest
23 @@ -2,3 +2,4 @@ DIST grass-7.8.6.tar.gz 66331264 BLAKE2B bb5a3387f74bc30b7ce3230765cecdc7e61ded8
24 DIST grass-7.8.7.tar.gz 66333084 BLAKE2B 809daed6992838cd89b7f913c92bb588db05ae933c6e05b6fbd1add135dc36238260222f338df023c402b411b6c0338a56e06268d1fb736e9d9f6779bc2e4c42 SHA512 8c890b34a64c3a52285a8d99e2a2ec61b41de0258ae5b70d1876499988a9a8229925b82f4595df6b5cf21b77ecc8529feb75f765d4e92f324a734293dffc7303
25 DIST grass-8.0.1.tar.gz 64928098 BLAKE2B 81512a5e95727202705a06e11dcb243a393bb6d7b5756957ffe055c867aa18933d84a31ed5e006e8c25bff558aa3ce5acab9e90660b1537192ffa11c92cdf4cc SHA512 ec0e52bfe22179c85bb7119980ab4d5b96278fc85d1fc5c0781aea1864e89a302677fa008b65f0398d564fd6ffc05cee0da1b81affb489c89c20a3bd9f6b089f
26 DIST grass-8.0.2.tar.gz 65665825 BLAKE2B 496dab376b38c74d2206096f8b1bf848888c328be3871fca5173042d7368f5c40cdbb6908ed69ec9f2c0669b25f3cfc50b4105f9bb7b375c379b9cc518ebfe8f SHA512 fc6f45f2b6ac2507c70a14baa931d5c66f0b115c914081d24c95f40afa6c266a718026df895f7a182ea837c6abf70da15b09dccba39eedd6a71ba7b6301edf7c
27 +DIST grass-8.2.0.tar.gz 66819726 BLAKE2B e4398368dd8fd26324709202f42556033a0fea12b6bf5b300c9c416e8758472ceacf40e1d3d540b1aefea88199c0f411462a64fc5e09864582e2e4ce743d67f3 SHA512 8179b8704ea688ba412496d0e149c5a47b89fd557b613a49f3addb9721f166cd3aa23ff2549832d9940e5065893e3257ce7287e75018a3468aa7847392398930
28
29 diff --git a/sci-geosciences/grass/grass-8.2.0.ebuild b/sci-geosciences/grass/grass-8.2.0.ebuild
30 new file mode 100644
31 index 000000000000..d326298a52b2
32 --- /dev/null
33 +++ b/sci-geosciences/grass/grass-8.2.0.ebuild
34 @@ -0,0 +1,283 @@
35 +# Copyright 1999-2022 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=8
39 +
40 +PYTHON_COMPAT=( python3_{8..10} )
41 +PYTHON_REQ_USE="sqlite" # bug 572440
42 +WX_GTK_VER="3.0-gtk3"
43 +
44 +inherit autotools desktop python-single-r1 toolchain-funcs wxwidgets xdg
45 +
46 +DESCRIPTION="A free GIS with raster and vector functionality, as well as 3D vizualization"
47 +HOMEPAGE="https://grass.osgeo.org/"
48 +
49 +LICENSE="GPL-2"
50 +SLOT="0/8.2"
51 +
52 +GVERSION=${SLOT#*/}
53 +MY_PM="${PN}${GVERSION}"
54 +MY_PM="${MY_PM/.}"
55 +
56 +if [[ ${PV} =~ "9999" ]]; then
57 + inherit git-r3
58 + EGIT_REPO_URI="https://github.com/OSGeo/grass.git"
59 +else
60 + MY_P="${P/_rc/RC}"
61 + SRC_URI="https://grass.osgeo.org/${MY_PM}/source/${MY_P}.tar.gz"
62 + if [[ ${PV} != *_rc* ]] ; then
63 + KEYWORDS="~amd64 ~ppc ~x86"
64 + fi
65 +
66 + S="${WORKDIR}/${MY_P}"
67 +fi
68 +
69 +IUSE="blas cxx fftw geos lapack las mysql netcdf nls odbc opencl opengl openmp png postgres readline sqlite threads tiff truetype X zstd"
70 +REQUIRED_USE="
71 + ${PYTHON_REQUIRED_USE}
72 + opengl? ( X )"
73 +
74 +RDEPEND="
75 + ${PYTHON_DEPS}
76 + >=app-admin/eselect-1.2
77 + $(python_gen_cond_dep '
78 + dev-python/numpy[${PYTHON_USEDEP}]
79 + dev-python/six[${PYTHON_USEDEP}]
80 + ')
81 + sci-libs/gdal:=
82 + sys-libs/gdbm:=
83 + sys-libs/ncurses:0=
84 + sci-libs/proj:=
85 + sci-libs/xdrfile
86 + sys-libs/zlib
87 + media-libs/libglvnd
88 + media-libs/glu
89 + blas? (
90 + virtual/cblas[eselect-ldso(+)]
91 + virtual/blas[eselect-ldso(+)]
92 + )
93 + fftw? ( sci-libs/fftw:3.0= )
94 + geos? ( sci-libs/geos:= )
95 + lapack? ( virtual/lapack[eselect-ldso(+)] )
96 + las? ( sci-geosciences/liblas )
97 + mysql? ( dev-db/mysql-connector-c:= )
98 + netcdf? ( sci-libs/netcdf:= )
99 + odbc? ( dev-db/unixODBC )
100 + opencl? ( virtual/opencl )
101 + opengl? ( virtual/opengl )
102 + png? ( media-libs/libpng:0= )
103 + postgres? ( >=dev-db/postgresql-8.4:= )
104 + readline? ( sys-libs/readline:0= )
105 + sqlite? ( dev-db/sqlite:3 )
106 + tiff? ( media-libs/tiff:0= )
107 + truetype? ( media-libs/freetype:2 )
108 + X? (
109 + dev-python/wxpython:4.0
110 + x11-libs/cairo[X,opengl?]
111 + x11-libs/libICE
112 + x11-libs/libSM
113 + x11-libs/libX11
114 + x11-libs/libXext
115 + x11-libs/libXt
116 + )
117 + zstd? ( app-arch/zstd )"
118 +DEPEND="${RDEPEND}
119 + X? ( x11-base/xorg-proto )"
120 +BDEPEND="
121 + sys-devel/bison
122 + sys-devel/flex
123 + sys-devel/gettext
124 + virtual/pkgconfig
125 + X? ( dev-lang/swig )"
126 +
127 +PATCHES=(
128 + # bug 746590
129 + "${FILESDIR}/${PN}-flock.patch"
130 +)
131 +
132 +pkg_setup() {
133 + if use lapack; then
134 + local mylapack=$(eselect lapack show)
135 + if [[ -z "${mylapack/.*reference.*/}" ]] && \
136 + [[ -z "${mylapack/.*atlas.*/}" ]]; then
137 + ewarn "You need to set lapack to atlas or reference. Do:"
138 + ewarn " eselect lapack set <impl>"
139 + ewarn "where <impl> is atlas, threaded-atlas or reference"
140 + die "setup failed"
141 + fi
142 + fi
143 +
144 + if use blas; then
145 + local myblas=$(eselect blas show)
146 + if [[ -z "${myblas/.*reference.*/}" ]] && \
147 + [[ -z "${myblas/.*atlas.*/}" ]]; then
148 + ewarn "You need to set blas to atlas or reference. Do:"
149 + ewarn " eselect blas set <impl>"
150 + ewarn "where <impl> is atlas, threaded-atlas or reference"
151 + die "setup failed"
152 + fi
153 + fi
154 +
155 + python-single-r1_pkg_setup
156 +}
157 +
158 +src_prepare() {
159 + # Fix unversioned python calls
160 + sed -e "s:=python3:=${EPYTHON}:" -i "${S}/lib/init/grass.sh" || die
161 + sed -e "s:= python3:= ${EPYTHON}:" -i "${S}/include/Make/Platform.make.in" || die
162 +
163 + default
164 + eautoreconf
165 +
166 + ebegin "Fixing python shebangs"
167 + python_fix_shebang -q "${S}"
168 + eend $?
169 +
170 + # For testsuite, see https://bugs.gentoo.org/show_bug.cgi?id=500580#c3
171 + shopt -s nullglob
172 + local mesa_cards=$(echo -n /dev/dri/card* /dev/dri/render* | sed 's/ /:/g')
173 + if test -n "${mesa_cards}"; then
174 + addpredict "${mesa_cards}"
175 + fi
176 + local ati_cards=$(echo -n /dev/ati/card* | sed 's/ /:/g')
177 + if test -n "${ati_cards}"; then
178 + addpredict "${ati_cards}"
179 + fi
180 + shopt -u nullglob
181 + addpredict /dev/nvidiactl
182 +}
183 +
184 +src_configure() {
185 + if use X; then
186 + local WX_BUILD=yes
187 + setup-wxwidgets
188 + fi
189 +
190 + addwrite /dev/dri/renderD128
191 +
192 + local myeconfargs=(
193 + --enable-shared
194 + --disable-w11
195 + --without-opendwg
196 + --with-regex
197 + --with-gdal="${EPREFIX}"/usr/bin/gdal-config
198 + --with-proj-includes="${EPREFIX}"/usr/include/proj
199 + --with-proj-libs="${EPREFIX}"/usr/$(get_libdir)
200 + --with-proj-share="${EPREFIX}"/usr/share/proj/
201 + $(use_with cxx)
202 + $(use_with tiff)
203 + $(use_with png)
204 + $(use_with postgres)
205 + $(use_with mysql)
206 + $(use_with mysql mysql-includes "${EPREFIX}"/usr/include/mysql)
207 + $(use_with sqlite)
208 + $(use_with opengl)
209 + $(use_with odbc)
210 + $(use_with fftw)
211 + $(use_with blas)
212 + $(use_with lapack)
213 + $(use_with X cairo)
214 + $(use_with truetype freetype)
215 + $(use_with truetype freetype-includes "${EPREFIX}"/usr/include/freetype2)
216 + $(use_with nls)
217 + $(use_with readline)
218 + $(use_with threads pthread)
219 + $(use_with openmp)
220 + $(use_with opencl)
221 + $(use_with las liblas "${EPREFIX}"/usr/bin/liblas-config)
222 + $(use_with X wxwidgets "${WX_CONFIG}")
223 + $(use_with netcdf netcdf "${EPREFIX}"/usr/bin/nc-config)
224 + $(use_with geos geos "${EPREFIX}"/usr/bin/geos-config)
225 + $(use_with X x)
226 + $(use_with zstd)
227 + )
228 + econf "${myeconfargs[@]}"
229 +}
230 +
231 +src_compile() {
232 + # we don't want to link against embedded mysql lib
233 + emake CC="$(tc-getCC)" MYSQLDLIB=""
234 +}
235 +
236 +src_install() {
237 + emake DESTDIR="${ED}" \
238 + INST_DIR=/usr/$(get_libdir)/${MY_PM} \
239 + prefix=/usr/ BINDIR=/usr/bin \
240 + install
241 +
242 + pushd "${ED}"/usr/$(get_libdir)/${MY_PM} >/dev/null || die
243 +
244 + local HTML_DOCS=( docs/html/. )
245 + einstalldocs
246 +
247 + # translations
248 + if use nls; then
249 + insinto /usr/share/locale
250 + doins -r locale/.
251 + fi
252 +
253 + popd >/dev/null || die
254 +
255 + # link libraries in the ~standard~ place
256 + local f file
257 + for f in "${ED}"/usr/$(get_libdir)/${MY_PM}/lib/*; do
258 + file="${f##*/}"
259 + dosym ${MY_PM}/lib/${file} /usr/$(get_libdir)/${file}
260 + done
261 +
262 + # link headers in the ~standard~ place
263 + dodir /usr/include/
264 + dosym ../$(get_libdir)/${MY_PM}/include/grass /usr/include/grass
265 +
266 + # fix paths in addons makefile includes
267 + local scriptMakeDir="${ED}"/usr/$(get_libdir)/${MY_PM}/include/Make/
268 + for f in "${scriptMakeDir}"/*; do
269 + file="${f##*/}"
270 + echo sed -i "s|${ED}|/|g" "${scriptMakeDir}/${file}" || die
271 + sed -i "s|${ED}|/|g" "${scriptMakeDir}/${file}" || die
272 + done
273 +
274 + # get proper folder for grass path in script
275 + local gisbase=/usr/$(get_libdir)/${MY_PM}
276 + sed -e "s:GISBASE = os.path.normpath(\"${D}/usr/$(get_libdir)/${MY_PM}\"):\
277 +GISBASE = os.path.normpath(\"${gisbase}\"):" \
278 + -i "${ED}"/usr/bin/grass || die
279 +
280 + # get proper fonts path for fontcap
281 + sed -i \
282 + -e "s|${ED}/usr/${MY_PM}|${EPREFIX}/usr/$(get_libdir)/${MY_PM}|" \
283 + "${ED}"${gisbase}/etc/fontcap || die
284 +
285 + # set proper python interpreter
286 + sed -e "s:os.environ\[\"GRASS_PYTHON\"\] = \"python3\":\
287 +os.environ\[\"GRASS_PYTHON\"\] = \"${EPYTHON}\":" \
288 + -i "${ED}"/usr/bin/grass || die
289 +
290 + # set proper GISDBASE directory path in the demolocation .grassrc${GVERSION//.} file
291 + sed -e "s:GISDBASE\:.*$:GISDBASE\: ${gisbase}:" \
292 + -i "${ED}"${gisbase}/demolocation/.grassrc${GVERSION//.} || die
293 +
294 + if use X; then
295 + local GUI="-gui"
296 + [[ ${WX_BUILD} == yes ]] && GUI="-wxpython"
297 + make_desktop_entry "/usr/bin/grass ${GUI}" "${PN}" "${PN}-48x48" "Science;Education"
298 + doicon -s 48 gui/icons/${PN}-48x48.png
299 + fi
300 +
301 + # install .pc file so other apps know where to look for grass
302 + insinto /usr/$(get_libdir)/pkgconfig/
303 + doins grass.pc
304 +
305 + # fix weird +x on tcl scripts
306 + find "${ED}" -name "*.tcl" -exec chmod +r-x '{}' \; || die
307 +}
308 +
309 +pkg_postinst() {
310 + use X && xdg_pkg_postinst
311 + ewarn 'Starting with version 8.0.2 the "liblas" USE flag has been renamed'
312 + ewarn 'to "las" in order to match dev-games/openscenegraph (Bug 680854)'
313 +}
314 +
315 +pkg_postrm() {
316 + use X && xdg_pkg_postrm
317 +}