diff options
author | Kurt Kanzenbach <kurt@kmk-computers.de> | 2024-06-10 20:12:46 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-07-13 11:11:51 +0300 |
commit | 34dfee4cd3885aa761096ab22c160b0163e8ef0e (patch) | |
tree | be83211a063229e45d0798477b82f321b1bc3bcd /sys-cluster | |
parent | sys-cluster/hpx: drop 1.9.1 (diff) | |
download | gentoo-34dfee4cd3885aa761096ab22c160b0163e8ef0e.tar.gz gentoo-34dfee4cd3885aa761096ab22c160b0163e8ef0e.tar.bz2 gentoo-34dfee4cd3885aa761096ab22c160b0163e8ef0e.zip |
sys-cluster/hpx: Fix variable ordering
Fix the following warning:
|VariableOrderWrong: variable LICENSE should occur before SLOT
Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/hpx/hpx-1.10.0.ebuild | 2 | ||||
-rw-r--r-- | sys-cluster/hpx/hpx-9999.ebuild | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sys-cluster/hpx/hpx-1.10.0.ebuild b/sys-cluster/hpx/hpx-1.10.0.ebuild index 0c9138e2ed8a..69e8c0ce6b0f 100644 --- a/sys-cluster/hpx/hpx-1.10.0.ebuild +++ b/sys-cluster/hpx/hpx-1.10.0.ebuild @@ -17,8 +17,8 @@ inherit check-reqs cmake multiprocessing python-single-r1 DESCRIPTION="C++ runtime system for parallel and distributed applications" HOMEPAGE="https://hpx.stellar-group.org/" -SLOT="0" LICENSE="Boost-1.0" +SLOT="0" IUSE="examples jemalloc mpi papi +perftools tbb zlib" # tests fail to compile RESTRICT="test" diff --git a/sys-cluster/hpx/hpx-9999.ebuild b/sys-cluster/hpx/hpx-9999.ebuild index 8bdbcb41d96a..617ed6fd044e 100644 --- a/sys-cluster/hpx/hpx-9999.ebuild +++ b/sys-cluster/hpx/hpx-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -17,8 +17,8 @@ inherit check-reqs cmake multiprocessing python-single-r1 DESCRIPTION="C++ runtime system for parallel and distributed applications" HOMEPAGE="https://hpx.stellar-group.org/" -SLOT="0" LICENSE="Boost-1.0" +SLOT="0" IUSE="examples jemalloc mpi papi +perftools tbb zlib" # tests fail to compile RESTRICT="test" |