diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-10-01 23:05:41 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-10-01 23:05:41 +0100 |
commit | 2e34d110f164bf74d55fced27fe0000201b3eec5 (patch) | |
tree | f00ae60197c58f84ad51f60b210738d9b70f555b /sys-cluster/pbs-python | |
parent | f70a1bfc721336d4fc7dfb711c2f518a6b18cf16 (diff) |
gentoo resync : 01.10.2020
Diffstat (limited to 'sys-cluster/pbs-python')
-rw-r--r-- | sys-cluster/pbs-python/Manifest | 3 | ||||
-rw-r--r-- | sys-cluster/pbs-python/metadata.xml | 8 | ||||
-rw-r--r-- | sys-cluster/pbs-python/pbs-python-4.3.3-r1.ebuild | 41 |
3 files changed, 0 insertions, 52 deletions
diff --git a/sys-cluster/pbs-python/Manifest b/sys-cluster/pbs-python/Manifest deleted file mode 100644 index 46e2a9e81ba1..000000000000 --- a/sys-cluster/pbs-python/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST pbs_python-4.3.3.tar.gz 185442 BLAKE2B cfe72c5baba3476c019c662fb10c42b091f5ccdf21f36be6c077bf680de2b489972ad7c2c73d65cd44ce1593665337236e69c5381efdc71d48c957006b2eadaf SHA512 2a8c49d0be887cd7c5f9c17bd7ce679c7c04481c70e6949fd430007b7678c15636e8416fd30ac16d06cc387680bd4f9d3df8cad8be7b512b6fa2785891338044 -EBUILD pbs-python-4.3.3-r1.ebuild 760 BLAKE2B 68876f9df4353d6d012188d6aeeb185fae9561b7d6fd9f8bd43e088f13e4db89c9af45ef8d227a02ff78c16cb2206aaa3e146e5acf8d967d7e7cfe7f9ff30b1e SHA512 aa8a60da40ca583713285734313804c350d106500e58ebb966c203936eb297e054d77daaf5a133d6cc72f59f2378ddfd59760ef9bd52e67ecf76ebb8f0b1b0ae -MISC metadata.xml 257 BLAKE2B 7384ec22c045377599221b8961bb3ff4febe50844c76a23d5084628c4568765831eee20ccc61b0c90d4f940688e9b68d33fd5db65321399f5caa0fdb7e023be0 SHA512 d01f4b592393076365e924fcc717c807172488f03a7b64542238616207fd00dacd096c383e68b9558142f7dab357578f91904f73acd41ce3a6ba7b7ef72b4980 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 -} |