summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-05-31 12:26:23 +0200
committerMichał Górny <mgorny@gentoo.org>2020-05-31 12:29:50 +0200
commit70c95656a9917c98a0ace0bc137a87f48d481b0e (patch)
tree6aa180460cf6dcc32add453197b185652b71818f /dev-python/riak-python-client
parentdev-python/flower: Remove last-rited pkg (diff)
downloadgentoo-70c95656a9917c98a0ace0bc137a87f48d481b0e.tar.gz
gentoo-70c95656a9917c98a0ace0bc137a87f48d481b0e.tar.bz2
gentoo-70c95656a9917c98a0ace0bc137a87f48d481b0e.zip
dev-python/riak-python-client: Remove last-rited pkg
Closes: https://bugs.gentoo.org/719540 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/riak-python-client')
-rw-r--r--dev-python/riak-python-client/Manifest1
-rw-r--r--dev-python/riak-python-client/metadata.xml9
-rw-r--r--dev-python/riak-python-client/riak-python-client-2.7.0-r1.ebuild39
3 files changed, 0 insertions, 49 deletions
diff --git a/dev-python/riak-python-client/Manifest b/dev-python/riak-python-client/Manifest
deleted file mode 100644
index a5effc1d1ce3..000000000000
--- a/dev-python/riak-python-client/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST riak-python-client-2.7.0.tar.gz 194141 BLAKE2B ae94f64ea71d253885053ea8207bc1b2a51433d2293f76bb172f5f85529c1d9196663ad3f760a58f3742158c8d0b32076c3aa32734e1bc228af22619662f54e9 SHA512 d63d031fb4b3598176480a3f1419158437ea814b46623a9a69e9105ced4172a1609d731bd163dd258c9301fa3b3c406a81f4c1068460b0ea397046fa6a1863e8
diff --git a/dev-python/riak-python-client/metadata.xml b/dev-python/riak-python-client/metadata.xml
deleted file mode 100644
index da754f1e4d64..000000000000
--- a/dev-python/riak-python-client/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <upstream>
- <remote-id type="pypi">riak</remote-id>
- <remote-id type="github">basho/riak-python-client</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/riak-python-client/riak-python-client-2.7.0-r1.ebuild b/dev-python/riak-python-client/riak-python-client-2.7.0-r1.ebuild
deleted file mode 100644
index 2cce65354e4f..000000000000
--- a/dev-python/riak-python-client/riak-python-client-2.7.0-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="The Riak client for Python."
-HOMEPAGE="https://github.com/basho/riak-python-client/"
-MY_PN=${PN%%-*}
-MY_P=${MY_PN}-${PV}
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-python/basho-erlastic[${PYTHON_USEDEP}]
- dev-python/protobuf-python[${PYTHON_USEDEP}]
- >=dev-python/six-1.8[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- default
- # delete protobuf requirements that only work for pip
- sed '17,22d' -i setup.py || die
- sed -e "s:'\\\\n\\\\027:b\\0:" \
- -e "s:serialized_pb=:\\0b:" \
- -i riak/pb/*.py || die
-}
-
-python_test() {
- esetup.py test || die
-}