Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/hpx/
Date: Sat, 28 Mar 2020 14:21:52
Message-Id: 1585405277.2ced84299fcd9ddd3e457fce9819ba70e40fbf8b.juippis@gentoo
1 commit: 2ced84299fcd9ddd3e457fce9819ba70e40fbf8b
2 Author: Kurt Kanzenbach <kurt <AT> kmk-computers <DOT> de>
3 AuthorDate: Thu Mar 26 15:49:36 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 14:21:17 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ced8429
7
8 sys-cluster/hpx: Drop old
9
10 The only library using hpx is libgeodecomp and that one should/will work with
11 v1.4. Remove the old version and close bugs along with it.
12
13 Closes: https://bugs.gentoo.org/679958
14 Closes: https://bugs.gentoo.org/623434
15 Package-Manager: Portage-2.3.89, Repoman-2.3.20
16 Signed-off-by: Kurt Kanzenbach <kurt <AT> kmk-computers.de>
17 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
18
19 sys-cluster/hpx/Manifest | 1 -
20 sys-cluster/hpx/hpx-1.2.1.ebuild | 82 ----------------------------------------
21 2 files changed, 83 deletions(-)
22
23 diff --git a/sys-cluster/hpx/Manifest b/sys-cluster/hpx/Manifest
24 index 18b6ea7b1ed..1fa6355399d 100644
25 --- a/sys-cluster/hpx/Manifest
26 +++ b/sys-cluster/hpx/Manifest
27 @@ -1,2 +1 @@
28 -DIST hpx_1.2.1.tar.gz 3919474 BLAKE2B 5f62f97a047c1b931068b671855bc9d7b8ff03d7f26793ee58445fb4c567d68c6c24c87844c7a6463901d784e11afe475120a41038e783a67cc75ede508473c5 SHA512 057724de1ef252e941a776174fa594a855255b5600461725a4da6e9002b1424a1e59be3f8a40673bb3db5a8aabd3c7b38abbb78042490befe247dd73c921b87c
29 DIST hpx_1.4.1.tar.gz 4213023 BLAKE2B dc8a9cda3061359ea1bb8eba9ccee60dea308f5425cfe0f18d9003032726962d74d417b8748124c8e6a0b207624093ccf625c82e9e1a71fce8dde74d41d987d2 SHA512 f110d5e5c10ec396f6e762568c9ecd5b767cb6efe91168b5caa8fe1e07bb5870cd13b3392fa4e008a2cc0e044b02084a35b0866e943d9b9c7435599c131f1582
30
31 diff --git a/sys-cluster/hpx/hpx-1.2.1.ebuild b/sys-cluster/hpx/hpx-1.2.1.ebuild
32 deleted file mode 100644
33 index d075974e0bd..00000000000
34 --- a/sys-cluster/hpx/hpx-1.2.1.ebuild
35 +++ /dev/null
36 @@ -1,82 +0,0 @@
37 -# Copyright 1999-2020 Gentoo Authors
38 -# Distributed under the terms of the GNU General Public License v2
39 -
40 -EAPI=7
41 -
42 -PYTHON_COMPAT=( python3_6 )
43 -
44 -if [[ ${PV} == 9999 ]] ; then
45 - inherit git-r3
46 - EGIT_REPO_URI="https://github.com/STEllAR-GROUP/hpx.git"
47 -else
48 - SRC_URI="https://stellar.cct.lsu.edu/files/${PN}_${PV}.tar.gz"
49 - KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
50 - S="${WORKDIR}/${PN}_${PV}"
51 -fi
52 -inherit cmake fortran-2 python-any-r1
53 -
54 -DESCRIPTION="C++ runtime system for parallel and distributed applications"
55 -HOMEPAGE="https://stellar.cct.lsu.edu/tag/hpx/"
56 -
57 -SLOT="0"
58 -LICENSE="Boost-1.0"
59 -IUSE="doc examples jemalloc papi +perftools tbb test"
60 -RESTRICT="!test? ( test )"
61 -
62 -REQUIRED_USE="?? ( jemalloc perftools tbb )"
63 -
64 -BDEPEND="
65 - virtual/pkgconfig
66 - doc? ( >=dev-libs/boost-1.56.0-r1[tools] )
67 -"
68 -RDEPEND="
69 - >=dev-libs/boost-1.49:=
70 - >=sys-apps/hwloc-1.8
71 - >=sys-libs/libunwind-1
72 - sys-libs/zlib
73 - papi? ( dev-libs/papi )
74 - perftools? ( >=dev-util/google-perftools-1.7.1 )
75 - tbb? ( dev-cpp/tbb )
76 -"
77 -DEPEND="${RDEPEND}
78 - test? ( ${PYTHON_DEPS} )
79 -"
80 -
81 -pkg_setup() {
82 - use test && python-any-r1_pkg_setup
83 -}
84 -
85 -src_configure() {
86 - local mycmakeargs=(
87 - -DHPX_WITH_EXAMPLES=OFF
88 - -DHPX_WITH_DOCUMENTATION=$(usex doc)
89 - -DHPX_WITH_PAPI=$(usex papi)
90 - -DHPX_WITH_GOOGLE_PERFTOOLS=$(usex perftools)
91 - -DBUILD_TESTING=$(usex test)
92 - )
93 - if use jemalloc; then
94 - mycmakeargs+=( -DHPX_WITH_MALLOC=jemalloc )
95 - elif use perftools; then
96 - mycmakeargs+=( -DHPX_WITH_MALLOC=tcmalloc )
97 - elif use tbb; then
98 - mycmakeargs+=( -DHPX_WITH_MALLOC=tbbmalloc )
99 - else
100 - mycmakeargs+=( -DHPX_WITH_MALLOC=system )
101 - fi
102 -
103 - cmake_src_configure
104 -}
105 -
106 -src_test() {
107 - # avoid over-suscribing
108 - cmake_build -j1 tests
109 -}
110 -
111 -src_install() {
112 - cmake_src_install
113 - if use examples; then
114 - mv "${D}/usr/bin/spin" "${D}/usr/bin/hpx_spin" || die
115 - insinto /usr/share/doc/${PF}
116 - doins -r examples
117 - fi
118 -}