summaryrefslogtreecommitdiff
path: root/dev-libs/boost-numpy/boost-numpy-9999.ebuild
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2019-12-22 13:41:13 +0100
committerDavid Seifert <soap@gentoo.org>2019-12-22 13:41:13 +0100
commita563140dedcaa1a001b275b9ecbef78856325533 (patch)
tree9787bebde9fda559d9bdb61bdf776efbf57c3e91 /dev-libs/boost-numpy/boost-numpy-9999.ebuild
parent03628e256f8f400d4f11ee80b25758a2b1828015 (diff)
downloadgentoo-a563140dedcaa1a001b275b9ecbef78856325533.tar.gz
gentoo-a563140dedcaa1a001b275b9ecbef78856325533.tar.bz2
gentoo-a563140dedcaa1a001b275b9ecbef78856325533.zip
dev-libs/boost-numpy: Remove last-rited package
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-libs/boost-numpy/boost-numpy-9999.ebuild')
-rw-r--r--dev-libs/boost-numpy/boost-numpy-9999.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-libs/boost-numpy/boost-numpy-9999.ebuild b/dev-libs/boost-numpy/boost-numpy-9999.ebuild
deleted file mode 100644
index d7c8b5b6a0d6..000000000000
--- a/dev-libs/boost-numpy/boost-numpy-9999.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-
-inherit cmake-utils python-single-r1
-
-DESCRIPTION="Boost.Python interface for NumPy"
-HOMEPAGE="https://github.com/ndarray/Boost.NumPy"
-
-if [[ ${PV} == *9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/ndarray/Boost.NumPy.git"
-else
- SRC_URI="https://dev.gentoo.org/~heroxbd/${P}.tar.xz"
-fi
-
-LICENSE="Boost-1.0"
-SLOT=0
-KEYWORDS=""
-
-IUSE="doc examples"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
- ${PYTHON_DEPS}
- dev-python/numpy[${PYTHON_USEDEP}]
- <dev-libs/boost-1.70[python,${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- # Make sure that new Python ABI names are searched too
- sed -i \
- -e 's/PythonLibsNew/PythonLibs/' \
- -e 's/python3/python/' \
- CMakeLists.txt || die
-
- cmake-utils_src_prepare
-}
-
-src_install() {
- cmake-utils_src_install
-
- use doc && dodoc -r libs/numpy/doc/*
- use examples && dodoc -r libs/numpy/example
-}