summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-10-01 17:09:05 +0200
committerMichał Górny <mgorny@gentoo.org>2020-10-01 17:12:53 +0200
commit30bebfe6308078682ba7f2cb78621e34d0e26bee (patch)
tree0dd39b819d8aab850e92ad78fbbd694723a6f288
parentwww-apps/ampache: Remove last-rited pkg (diff)
downloadgentoo-30bebfe6.tar.gz
gentoo-30bebfe6.tar.bz2
gentoo-30bebfe6.zip
sys-cluster/pbs-python: Remove last-rited pkg
Closes: https://bugs.gentoo.org/735492 Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--profiles/package.mask1
-rw-r--r--sys-cluster/pbs-python/Manifest1
-rw-r--r--sys-cluster/pbs-python/metadata.xml8
-rw-r--r--sys-cluster/pbs-python/pbs-python-4.3.3-r1.ebuild41
4 files changed, 0 insertions, 51 deletions
diff --git a/profiles/package.mask b/profiles/package.mask
index 1f9bfd554395..14f662a9d3a4 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -604,7 +604,6 @@ dev-cpp/icnc
dev-db/tokumx
net-fs/nfstest
sys-boot/udk
-sys-cluster/pbs-python
# Piotr Karbowski <slashbeast@gentoo.org> (2020-08-28)
# Temporary mask due to multiple reports of segfaults at startup, bug #739056
diff --git a/sys-cluster/pbs-python/Manifest b/sys-cluster/pbs-python/Manifest
deleted file mode 100644
index 78a5d39b3fd3..000000000000
--- a/sys-cluster/pbs-python/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pbs_python-4.3.3.tar.gz 185442 BLAKE2B cfe72c5baba3476c019c662fb10c42b091f5ccdf21f36be6c077bf680de2b489972ad7c2c73d65cd44ce1593665337236e69c5381efdc71d48c957006b2eadaf SHA512 2a8c49d0be887cd7c5f9c17bd7ce679c7c04481c70e6949fd430007b7678c15636e8416fd30ac16d06cc387680bd4f9d3df8cad8be7b512b6fa2785891338044
diff --git a/sys-cluster/pbs-python/metadata.xml b/sys-cluster/pbs-python/metadata.xml
deleted file mode 100644
index 8bf4b5f36954..000000000000
--- a/sys-cluster/pbs-python/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>cluster@gentoo.org</email>
- <name>Gentoo Cluster Project</name>
- </maintainer>
-</pkgmetadata>
diff --git a/sys-cluster/pbs-python/pbs-python-4.3.3-r1.ebuild b/sys-cluster/pbs-python/pbs-python-4.3.3-r1.ebuild
deleted file mode 100644
index d7f9338f422a..000000000000
--- a/sys-cluster/pbs-python/pbs-python-4.3.3-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_P=${P/-/_}
-
-DESCRIPTION="Python bindings to the Torque C API"
-HOMEPAGE="https://subtrac.sara.nl/oss/pbs_python/"
-SRC_URI="ftp://ftp.sara.nl/pub/outgoing/${MY_P}.tar.gz"
-
-LICENSE="openpbs"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples"
-
-DEPEND="sys-cluster/torque"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-python_prepare_all() {
- sed -i -e "s/4.1.3/${PV}/" setup.py.in || die
- distutils-r1_python_prepare_all
-}
-
-python_configure_all() {
- econf
-}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- if use examples; then
- insinto /usr/share/doc/${P}
- doins "${S}"/examples/*
- fi
-}