Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zsi/
Date: Fri, 28 Feb 2020 07:22:08
Message-Id: 1582874515.e5af07a05eb04e6e2ce070f60fc9333e4dd60c3e.zlogene@gentoo
1 commit: e5af07a05eb04e6e2ce070f60fc9333e4dd60c3e
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 28 07:21:55 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 28 07:21:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5af07a0
7
8 dev-python/zsi: remove last-rited package
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11
12 dev-python/zsi/Manifest | 1 -
13 dev-python/zsi/metadata.xml | 16 ----------
14 dev-python/zsi/zsi-2.1_alpha1-r1.ebuild | 54 ---------------------------------
15 3 files changed, 71 deletions(-)
16
17 diff --git a/dev-python/zsi/Manifest b/dev-python/zsi/Manifest
18 deleted file mode 100644
19 index 0ac13c908d7..00000000000
20 --- a/dev-python/zsi/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST ZSI-2.1-a1.tar.gz 932958 BLAKE2B a0133c2d2febc3be64d738a38304a0148fd6895333a48c940752af4ca25019f1cb26d606b3da86c2d386e117f081a83d47a52fd0ec9cbb12393f9397806f73cc SHA512 13f8734a5b09caa83786e776bc1104061812d05543b1412cda02dd904d6cd926042a4a882ffac71081a5275879d79927ea225ae2753936e0d026aee074f07974
24
25 diff --git a/dev-python/zsi/metadata.xml b/dev-python/zsi/metadata.xml
26 deleted file mode 100644
27 index 5a758b8ad8f..00000000000
28 --- a/dev-python/zsi/metadata.xml
29 +++ /dev/null
30 @@ -1,16 +0,0 @@
31 -<?xml version="1.0" encoding="UTF-8"?>
32 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 -<pkgmetadata>
34 - <maintainer type="project">
35 - <email>python@g.o</email>
36 - <name>Python</name>
37 - </maintainer>
38 - <use>
39 - <flag name="twisted">add support for python-twisted (needs
40 - <pkg>dev-python/twisted-core</pkg> and <pkg>dev-python/twisted-web</pkg>)
41 - </flag>
42 - </use>
43 - <upstream>
44 - <remote-id type="sourceforge">pywebsvcs</remote-id>
45 - </upstream>
46 -</pkgmetadata>
47
48 diff --git a/dev-python/zsi/zsi-2.1_alpha1-r1.ebuild b/dev-python/zsi/zsi-2.1_alpha1-r1.ebuild
49 deleted file mode 100644
50 index c4eee8e2d0f..00000000000
51 --- a/dev-python/zsi/zsi-2.1_alpha1-r1.ebuild
52 +++ /dev/null
53 @@ -1,54 +0,0 @@
54 -# Copyright 1999-2015 Gentoo Foundation
55 -# Distributed under the terms of the GNU General Public License v2
56 -
57 -EAPI=5
58 -
59 -PYTHON_COMPAT=( python2_7 )
60 -
61 -inherit distutils-r1
62 -
63 -MY_PN="ZSI"
64 -MY_P="${MY_PN}-${PV/_alpha/-a}"
65 -
66 -DESCRIPTION="Web Services for Python"
67 -HOMEPAGE="http://pywebsvcs.sourceforge.net/zsi.html"
68 -SRC_URI="mirror://sourceforge/pywebsvcs/${MY_P}.tar.gz"
69 -
70 -LICENSE="BSD MIT"
71 -SLOT="0"
72 -KEYWORDS="amd64 ppc x86"
73 -IUSE="doc examples twisted"
74 -
75 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
76 -
77 -DEPEND="${PYTHON_DEPS}
78 - dev-python/setuptools[${PYTHON_USEDEP}]
79 - twisted? (
80 - dev-python/twisted-core
81 - dev-python/twisted-web
82 - )"
83 -RDEPEND="${DEPEND}"
84 -
85 -S="${WORKDIR}/${MY_P}"
86 -
87 -python_prepare_all() {
88 - if ! use twisted; then
89 - sed -i \
90 - -e "/version_info/d"\
91 - -e "/ZSI.twisted/d"\
92 - setup.py || die "sed failed"
93 - fi
94 - distutils-r1_python_prepare_all
95 -}
96 -
97 -python_install_all() {
98 - distutils-r1_python_install_all
99 - if use doc; then
100 - dohtml doc/*.{html,css,png}
101 - fi
102 -
103 - if use examples; then
104 - insinto /usr/share/doc/${PF}/examples
105 - doins -r doc/examples/* samples/*
106 - fi
107 -}