summaryrefslogtreecommitdiff
path: root/dev-python/rootpy
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [feature/flatten] <gitlab@liguros.net>2020-10-09 12:38:46 +0000
committerLiguros - Gitlab CI/CD [feature/flatten] <gitlab@liguros.net>2020-10-09 12:38:46 +0000
commitfa28403b5f1d59d71c140cbf9083dc87b506a196 (patch)
tree9d0035aa98abd4218dc3fc21040f7656e5fa8fee /dev-python/rootpy
parent51db3f38d594230fd2c57dd500c0bab891ff733f (diff)
downloadbaldeagleos-repo-fa28403b5f1d59d71c140cbf9083dc87b506a196.tar.gz
baldeagleos-repo-fa28403b5f1d59d71c140cbf9083dc87b506a196.tar.xz
baldeagleos-repo-fa28403b5f1d59d71c140cbf9083dc87b506a196.zip
Updating liguros repo
Diffstat (limited to 'dev-python/rootpy')
-rw-r--r--dev-python/rootpy/Manifest1
-rw-r--r--dev-python/rootpy/metadata.xml17
-rw-r--r--dev-python/rootpy/rootpy-1.0.1-r1.ebuild51
3 files changed, 0 insertions, 69 deletions
diff --git a/dev-python/rootpy/Manifest b/dev-python/rootpy/Manifest
deleted file mode 100644
index f9282c002149..000000000000
--- a/dev-python/rootpy/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST rootpy-1.0.1.tar.gz 418618 BLAKE2B ce321e69d7e202877697d133ad2ba90df71cd261b206211718cb6a9ec8ee3ec085cac49526b9bb75166fafeb43f83b3f53bf231d9353f3d63fa7e4be381ce454 SHA512 db1c7edc02d1cd5a4a1940237c1e1c63d892bb92e612bdad028d14f9723a4bdc5f9b6711a135b0e099ce1895b2564b29aeb21ef0d2c3681354bf4edc9c6a325f
diff --git a/dev-python/rootpy/metadata.xml b/dev-python/rootpy/metadata.xml
deleted file mode 100644
index 654b4534ac1f..000000000000
--- a/dev-python/rootpy/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>sci-physics@gentoo.org</email>
- <name>Gentoo Physics Project</name>
-</maintainer>
-<longdescription lang="en">
- The rootpy project is a community-driven initiative aiming to provide
- a more pythonic interface with ROOT on top of the existing PyROOT
- bindings.
-</longdescription>
-<upstream>
- <remote-id type="pypi">rootpy</remote-id>
-</upstream>
- <origin>gentoo-staging</origin>
-</pkgmetadata>
diff --git a/dev-python/rootpy/rootpy-1.0.1-r1.ebuild b/dev-python/rootpy/rootpy-1.0.1-r1.ebuild
deleted file mode 100644
index fe127d1530e4..000000000000
--- a/dev-python/rootpy/rootpy-1.0.1-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{5,6,7,8,9} )
-PYTHON_REQ_USE="readline"
-DISTUTILS_SINGLE_IMPL=1
-
-inherit distutils-r1
-
-DESCRIPTION="Pythonic layer on top of the ROOT framework's PyROOT bindings"
-HOMEPAGE="https://rootpy.org"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="examples test"
-
-RDEPEND="
- sci-physics/root:=[${PYTHON_SINGLE_USEDEP}]
- dev-python/root_numpy[${PYTHON_SINGLE_USEDEP}]
- $(python_gen_cond_dep '
- dev-python/matplotlib[${PYTHON_MULTI_USEDEP}]
- dev-python/pytables[${PYTHON_MULTI_USEDEP}]
- dev-python/termcolor[${PYTHON_MULTI_USEDEP}]
- ')"
-
-DEPEND="
- sci-physics/root[${PYTHON_SINGLE_USEDEP}]
- test? (
- $(python_gen_cond_dep '
- dev-python/nose[${PYTHON_MULTI_USEDEP}]
- ')
- )"
-
-# TOFIX: tests go in an infinite loop error
-RESTRICT=test
-
-python_test() {
- cd "${BUILD_DIR}" || die
- nosetests -v || die "Testing failed with ${EPYTHON}"
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- if use examples; then
- dodoc -r examples
- fi
-}