diff options
author | 2024-02-20 20:32:55 +0100 | |
---|---|---|
committer | 2024-02-20 21:48:18 +0100 | |
commit | 679595c32f412fe84b1f619c1d36dcba991c0dbb (patch) | |
tree | e20585a65a5ada501e917e4344a23950b174d0c0 /dev-util | |
parent | dev-libs/libixion: drop 0.17.0-r1 (diff) | |
download | gentoo-679595c32f412fe84b1f619c1d36dcba991c0dbb.tar.gz gentoo-679595c32f412fe84b1f619c1d36dcba991c0dbb.tar.bz2 gentoo-679595c32f412fe84b1f619c1d36dcba991c0dbb.zip |
dev-util/mdds: drop 2.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/mdds/Manifest | 1 | ||||
-rw-r--r-- | dev-util/mdds/mdds-2.0.3.ebuild | 60 |
2 files changed, 0 insertions, 61 deletions
diff --git a/dev-util/mdds/Manifest b/dev-util/mdds/Manifest index d45b01122432..b1e2412f89ad 100644 --- a/dev-util/mdds/Manifest +++ b/dev-util/mdds/Manifest @@ -1,2 +1 @@ -DIST mdds-2.0.3.tar.xz 419884 BLAKE2B bfadf334ccf7695ac0234a9355e5c466e4f8b8fced2b37a4446a3ef899ce28cc9f155223ac5c4ba88ed54886ffd9a38996973195a5120abb886d2e791f596609 SHA512 6600cca5cd2272905dfdeea21a8a1615bb8f15e0c0ae5efec99345b34387cc18fa2aa61ae7142edaddb41738f7386a74a91997ac5ed1a8cfc7cf4b72b0bd2935 DIST mdds-2.1.1.tar.xz 540732 BLAKE2B d549bf5c39db6b8ec738cca2833545fef48ffd0b603c2c97dd425ae89bd5368a6981fb75bd4cbf90c9cf09efc7116a4e485c843bb2200fc198d23a02dbdd6559 SHA512 5fe345e7d84d2e290a519d65b27332f69001c01da961c05a30abfe2a17cb8545822490bcd63b320d49e1b26291a4a898f77495951919aece83208133027848ea diff --git a/dev-util/mdds/mdds-2.0.3.ebuild b/dev-util/mdds/mdds-2.0.3.ebuild deleted file mode 100644 index dd5517871eb0..000000000000 --- a/dev-util/mdds/mdds-2.0.3.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -if [[ ${PV} == *9999* ]]; then - EGIT_REPO_URI="https://gitlab.com/mdds/mdds.git" - inherit git-r3 -else - SRC_URI="https://kohei.us/files/${PN}/src/${P}.tar.xz" - KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux" -fi -inherit autotools toolchain-funcs - -DESCRIPTION="Collection of multi-dimensional data structure and indexing algorithm" -HOMEPAGE="https://gitlab.com/mdds/mdds" - -LICENSE="MIT" -SLOT="1/2.0" # Check API version on version bumps! -IUSE="doc openmp test" -RESTRICT="!test? ( test )" - -BDEPEND=" - doc? ( - app-text/doxygen - dev-python/sphinx - ) - test? ( dev-util/dejagnu ) -" -DEPEND="dev-libs/boost:=" -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}/${PN}-1.5.0-buildsystem.patch" ) - -pkg_pretend() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -pkg_setup() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myeconfargs=( - --disable-memory_tests - $(use_enable doc docs) - $(use_enable openmp) - ) - econf "${myeconfargs[@]}" -} - -src_test() { - tc-export CXX - default -} |