summaryrefslogtreecommitdiff
path: root/sys-cluster/libcircle/libcircle-0.2.1_rc1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-03-20 14:27:17 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-03-20 14:27:17 +0000
commit5bb9ff1ee56d2b5e75e01a7f066d8b0cec84ec02 (patch)
tree66e860a5099bcad013f1cf667255dc372a7c11b3 /sys-cluster/libcircle/libcircle-0.2.1_rc1.ebuild
parent7218e1b46bceac05841e90472501742d905fb3fc (diff)
gentoo resync : 20.03.2021
Diffstat (limited to 'sys-cluster/libcircle/libcircle-0.2.1_rc1.ebuild')
-rw-r--r--sys-cluster/libcircle/libcircle-0.2.1_rc1.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/sys-cluster/libcircle/libcircle-0.2.1_rc1.ebuild b/sys-cluster/libcircle/libcircle-0.2.1_rc1.ebuild
deleted file mode 100644
index 209b8ae5fe1c..000000000000
--- a/sys-cluster/libcircle/libcircle-0.2.1_rc1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils
-
-if [ "${PV}" = "9999" ]; then
- EGIT_REPO_URI="https://github.com/hpc/${PN}.git"
- inherit git-r3
-else
- inherit vcs-snapshot
- SRC_URI="https://github.com/hpc/${PN}/archive/${PV/_rc/-rc.}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux"
-fi
-
-DESCRIPTION="API for distributing embarrassingly parallel workloads using self-stabilization"
-HOMEPAGE="https://github.com/hpc/libcircle"
-
-SLOT="0"
-LICENSE="BSD"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="virtual/mpi"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )
- test? ( dev-libs/check )"
-
-DOCS=( HACKING.md README.md )
-
-src_configure() {
- local myeconfargs=(
- $(use_enable test tests)
- $(use_enable doc doxygen)
- )
- autotools-utils_src_configure
-}
-
-src_install() {
- use doc && HTML_DOCS=( "${BUILD_DIR}/doc/html/" )
- autotools-utils_src_install
-}