diff options
author | Sam James <sam@gentoo.org> | 2022-08-27 17:59:34 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-08-27 17:59:34 +0100 |
commit | 7d4f3fe3abc4fa4d4bc2d812ddc43aa08e3d6d28 (patch) | |
tree | 68c3b0590db776b888582b05025539df59275a49 /dev-libs/libdynd | |
parent | dev-util/bdelta: fix EbuildReservedName (drop unused semi-live template bits) (diff) | |
download | gentoo-7d4f3fe3abc4fa4d4bc2d812ddc43aa08e3d6d28.tar.gz gentoo-7d4f3fe3abc4fa4d4bc2d812ddc43aa08e3d6d28.tar.bz2 gentoo-7d4f3fe3abc4fa4d4bc2d812ddc43aa08e3d6d28.zip |
dev-libs/libdynd: fix EbuildReservedName
dyn substring.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/libdynd')
-rw-r--r-- | dev-libs/libdynd/libdynd-0.7.2-r1.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-libs/libdynd/libdynd-0.7.2-r1.ebuild b/dev-libs/libdynd/libdynd-0.7.2-r1.ebuild index b83206ebd457..01dfa007a8b7 100644 --- a/dev-libs/libdynd/libdynd-0.7.2-r1.ebuild +++ b/dev-libs/libdynd/libdynd-0.7.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -6,7 +6,7 @@ EAPI=7 inherit cmake cuda # change each new libdynd version, to avoid git in tree dependency -DYND_GIT_SHA1=341d6d91931fdb04ad657d27ed740cf533fc925b +MY_GIT_SHA1=341d6d91931fdb04ad657d27ed740cf533fc925b DESCRIPTION="C++ dynamic multi-dimensionnal array library with Python exposure" HOMEPAGE="http://libdynd.org" @@ -20,7 +20,7 @@ RESTRICT="!test? ( test )" BDEPEND="doc? ( app-doc/doxygen[dot] )" RDEPEND=" - dev-libs/c-blosc:0= + dev-libs/c-blosc:= cuda? ( dev-util/nvidia-cuda-toolkit ) fftw? ( sci-libs/fftw:3.0 ) " @@ -59,7 +59,7 @@ src_prepare() { src_configure() { local mycmakeargs=( - -DDYND_GIT_SHA1="${DYND_GIT_SHA1}" + -DDYND_GIT_SHA1="${MY_GIT_SHA1}" -DDYND_VERSION_STRING="v${PV}" -DDYND_INSTALL_LIB=ON -DDYND_SHARED_LIB=ON |