Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, sys-cluster/pbs-python/
Date: Thu, 01 Oct 2020 15:13:18
Message-Id: 1601565173.30bebfe6308078682ba7f2cb78621e34d0e26bee.mgorny@gentoo
1 commit: 30bebfe6308078682ba7f2cb78621e34d0e26bee
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 1 15:09:05 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 1 15:12:53 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30bebfe6
7
8 sys-cluster/pbs-python: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/735492
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 profiles/package.mask | 1 -
14 sys-cluster/pbs-python/Manifest | 1 -
15 sys-cluster/pbs-python/metadata.xml | 8 -----
16 sys-cluster/pbs-python/pbs-python-4.3.3-r1.ebuild | 41 -----------------------
17 4 files changed, 51 deletions(-)
18
19 diff --git a/profiles/package.mask b/profiles/package.mask
20 index 1f9bfd55439..14f662a9d3a 100644
21 --- a/profiles/package.mask
22 +++ b/profiles/package.mask
23 @@ -604,7 +604,6 @@ dev-cpp/icnc
24 dev-db/tokumx
25 net-fs/nfstest
26 sys-boot/udk
27 -sys-cluster/pbs-python
28
29 # Piotr Karbowski <slashbeast@g.o> (2020-08-28)
30 # Temporary mask due to multiple reports of segfaults at startup, bug #739056
31
32 diff --git a/sys-cluster/pbs-python/Manifest b/sys-cluster/pbs-python/Manifest
33 deleted file mode 100644
34 index 78a5d39b3fd..00000000000
35 --- a/sys-cluster/pbs-python/Manifest
36 +++ /dev/null
37 @@ -1 +0,0 @@
38 -DIST pbs_python-4.3.3.tar.gz 185442 BLAKE2B cfe72c5baba3476c019c662fb10c42b091f5ccdf21f36be6c077bf680de2b489972ad7c2c73d65cd44ce1593665337236e69c5381efdc71d48c957006b2eadaf SHA512 2a8c49d0be887cd7c5f9c17bd7ce679c7c04481c70e6949fd430007b7678c15636e8416fd30ac16d06cc387680bd4f9d3df8cad8be7b512b6fa2785891338044
39
40 diff --git a/sys-cluster/pbs-python/metadata.xml b/sys-cluster/pbs-python/metadata.xml
41 deleted file mode 100644
42 index 8bf4b5f3695..00000000000
43 --- a/sys-cluster/pbs-python/metadata.xml
44 +++ /dev/null
45 @@ -1,8 +0,0 @@
46 -<?xml version="1.0" encoding="UTF-8"?>
47 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
48 -<pkgmetadata>
49 - <maintainer type="project">
50 - <email>cluster@g.o</email>
51 - <name>Gentoo Cluster Project</name>
52 - </maintainer>
53 -</pkgmetadata>
54
55 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
56 deleted file mode 100644
57 index d7f9338f422..00000000000
58 --- a/sys-cluster/pbs-python/pbs-python-4.3.3-r1.ebuild
59 +++ /dev/null
60 @@ -1,41 +0,0 @@
61 -# Copyright 1999-2015 Gentoo Foundation
62 -# Distributed under the terms of the GNU General Public License v2
63 -
64 -EAPI=5
65 -PYTHON_COMPAT=( python2_7 )
66 -
67 -inherit distutils-r1
68 -
69 -MY_P=${P/-/_}
70 -
71 -DESCRIPTION="Python bindings to the Torque C API"
72 -HOMEPAGE="https://subtrac.sara.nl/oss/pbs_python/"
73 -SRC_URI="ftp://ftp.sara.nl/pub/outgoing/${MY_P}.tar.gz"
74 -
75 -LICENSE="openpbs"
76 -SLOT="0"
77 -KEYWORDS="~amd64 ~x86"
78 -IUSE="examples"
79 -
80 -DEPEND="sys-cluster/torque"
81 -RDEPEND="${DEPEND}"
82 -
83 -S=${WORKDIR}/${MY_P}
84 -
85 -python_prepare_all() {
86 - sed -i -e "s/4.1.3/${PV}/" setup.py.in || die
87 - distutils-r1_python_prepare_all
88 -}
89 -
90 -python_configure_all() {
91 - econf
92 -}
93 -
94 -python_install_all() {
95 - distutils-r1_python_install_all
96 -
97 - if use examples; then
98 - insinto /usr/share/doc/${P}
99 - doins "${S}"/examples/*
100 - fi
101 -}