summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2020-06-20 10:37:49 +0200
committerPatrice Clement <monsieurp@gentoo.org>2020-06-20 10:43:02 +0200
commita3345f1093d5a3ea2f0b7c4d198bd203876926d5 (patch)
tree5fe14ca59fa242ec815179cc894acb1fdfd42fa6 /app-admin
parentapp-admin/clustershell: version bump. (diff)
downloadgentoo-a3345f1093d5a3ea2f0b7c4d198bd203876926d5.tar.gz
gentoo-a3345f1093d5a3ea2f0b7c4d198bd203876926d5.tar.bz2
gentoo-a3345f1093d5a3ea2f0b7c4d198bd203876926d5.zip
app-admin/clustershell: clean up old.
Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/clustershell/Manifest1
-rw-r--r--app-admin/clustershell/clustershell-1.7.3.ebuild57
2 files changed, 0 insertions, 58 deletions
diff --git a/app-admin/clustershell/Manifest b/app-admin/clustershell/Manifest
index b57ce4ab8323..6f30a4d35adf 100644
--- a/app-admin/clustershell/Manifest
+++ b/app-admin/clustershell/Manifest
@@ -1,2 +1 @@
-DIST clustershell-1.7.3.tar.gz 345447 BLAKE2B 45bf059670a71724d8614f9b084c5e865daa1fb8dd2268e572d1a30b4d69259162fda8ee22eb2cc22261773c4e34849d345147de76c1628422f6c326b746724d SHA512 acb8e8a5b4a576ee93fbe23a8d903bab813f4182b50d9cd752b3684c743e611d3ee3fcfde31818c0a92495a3ee7640094d4568a03fdbf543e398a1b741a978d4
DIST clustershell-1.8.3.tar.gz 363975 BLAKE2B 3a7bb9103398e96f57f53d0d5d5edc6895ce02b6983e8fed34d65cad83a6d4e86f40b9576f41631e499a99adc8be5f4f422005b8ddc7ac8325fe11abd2c99477 SHA512 5108773e2958d1dae0aa6966d764e9af9d41024f65271005b202468f2bd1a3b63acc977729324fe1305d400dc8b06b0c4672e8d8ded207fa77cef69fb0005108
diff --git a/app-admin/clustershell/clustershell-1.7.3.ebuild b/app-admin/clustershell/clustershell-1.7.3.ebuild
deleted file mode 100644
index 7c96600098cc..000000000000
--- a/app-admin/clustershell/clustershell-1.7.3.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# TODO: test phase
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="xml"
-inherit distutils-r1
-
-DESCRIPTION="Python framework for efficient cluster administration"
-HOMEPAGE="https://cea-hpc.github.com/clustershell/"
-SRC_URI="https://github.com/cea-hpc/clustershell/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc libressl test"
-
-CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${CDEPEND}
- test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-RDEPEND="${CDEPEND}
- dev-python/pyyaml[${PYTHON_USEDEP}]
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )"
-
-RESTRICT="test" # currently fail
-
-src_install() {
- distutils-r1_src_install
-
- if use doc ; then
- local i
- for i in $(ls -I man "${S}"/doc) ; do
- dodoc -r doc/${i}
- done
- fi
-
- doman doc/man/man*/*
-
- insinto /etc/${PN}
- doins -r conf/*
-}
-
-python_test() {
- cd tests || die
- nosetests -sv --all-modules || die
-}
-
-pkg_postinst() {
- einfo
- einfo "Some default system-wide config files have been installed into"
- einfo "/etc/${PN}"
- einfo
-}