Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/mdds/
Date: Wed, 18 May 2022 11:13:10
Message-Id: 1652872373.b4e0aec699b1843aa777ee751e702ddb21ec4ae2.asturm@gentoo
1 commit: b4e0aec699b1843aa777ee751e702ddb21ec4ae2
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 18 11:05:50 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed May 18 11:12:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4e0aec6
7
8 dev-util/mdds: Drop 2.0.2
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-util/mdds/Manifest | 1 -
14 dev-util/mdds/mdds-2.0.2.ebuild | 60 -----------------------------------------
15 2 files changed, 61 deletions(-)
16
17 diff --git a/dev-util/mdds/Manifest b/dev-util/mdds/Manifest
18 index 22a37a5393f0..b6539fa1e9b8 100644
19 --- a/dev-util/mdds/Manifest
20 +++ b/dev-util/mdds/Manifest
21 @@ -1,3 +1,2 @@
22 DIST mdds-1.7.0.tar.xz 313220 BLAKE2B 02ab09ad1338223da2911c05fc8d67c9d0d5414d1dcedac066dc95a2b0853f3801347c9791a5fc5700d666933be78efc52f735453769f9f2123ce06eca1fa67f SHA512 ac2bfe5186d499a79f4379c1dc7cc869bbbd9a59d4943399409dd4dd1ef7e3567a993deda5d5a06ad67dbd94b0a534439805837f2f405c5aca0aeb197178291a
23 -DIST mdds-2.0.2.tar.xz 415824 BLAKE2B 47b720b96fec4a4410dcb15c86c19ddaa502b9d45905905609a28ba9cbb2e6021ce20c82d26e28cd2374e76d779361e1805a7401134c2ee30fd09fbf6ac35d79 SHA512 eba7dc5a5961e69208c8e605995355c0fef392eb4273e8391d529aa9c49b24e491675f443767abef80ff30440bd9fcbaf0f1fbd5bad9c0ecb6b761033efd6f27
24 DIST mdds-2.0.3.tar.xz 419884 BLAKE2B bfadf334ccf7695ac0234a9355e5c466e4f8b8fced2b37a4446a3ef899ce28cc9f155223ac5c4ba88ed54886ffd9a38996973195a5120abb886d2e791f596609 SHA512 6600cca5cd2272905dfdeea21a8a1615bb8f15e0c0ae5efec99345b34387cc18fa2aa61ae7142edaddb41738f7386a74a91997ac5ed1a8cfc7cf4b72b0bd2935
25
26 diff --git a/dev-util/mdds/mdds-2.0.2.ebuild b/dev-util/mdds/mdds-2.0.2.ebuild
27 deleted file mode 100644
28 index 9185efd612ad..000000000000
29 --- a/dev-util/mdds/mdds-2.0.2.ebuild
30 +++ /dev/null
31 @@ -1,60 +0,0 @@
32 -# Copyright 1999-2022 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=8
36 -
37 -if [[ ${PV} == *9999* ]]; then
38 - EGIT_REPO_URI="https://gitlab.com/mdds/mdds.git"
39 - inherit git-r3
40 -else
41 - SRC_URI="https://kohei.us/files/${PN}/src/${P}.tar.xz"
42 - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
43 -fi
44 -inherit autotools toolchain-funcs
45 -
46 -DESCRIPTION="Collection of multi-dimensional data structure and indexing algorithm"
47 -HOMEPAGE="https://gitlab.com/mdds/mdds"
48 -
49 -LICENSE="MIT"
50 -SLOT="1/2.0" # Check API version on version bumps!
51 -IUSE="doc openmp valgrind test"
52 -RESTRICT="!test? ( test )"
53 -
54 -BDEPEND="
55 - doc? (
56 - app-doc/doxygen
57 - dev-python/sphinx
58 - )
59 - valgrind? ( dev-util/valgrind )
60 -"
61 -DEPEND="dev-libs/boost:="
62 -RDEPEND="${DEPEND}"
63 -
64 -PATCHES=( "${FILESDIR}/${PN}-1.5.0-buildsystem.patch" )
65 -
66 -pkg_pretend() {
67 - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
68 -}
69 -
70 -pkg_setup() {
71 - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
72 -}
73 -
74 -src_prepare() {
75 - default
76 - eautoreconf
77 -}
78 -
79 -src_configure() {
80 - local myeconfargs=(
81 - $(use_enable doc docs)
82 - $(use_enable openmp)
83 - $(use_enable valgrind memory_tests)
84 - )
85 - econf "${myeconfargs[@]}"
86 -}
87 -
88 -src_test() {
89 - tc-export CXX
90 - default
91 -}