cxoracle: rm old py2-only package w/o any revdeps

This commit is contained in:
Guido Kroon 2020-06-04 10:23:51 +02:00
parent e22651fe7b
commit edd94b9d30
No known key found for this signature in database
GPG key ID: 394C398C531EFAB0
2 changed files with 0 additions and 34 deletions

View file

@ -1 +0,0 @@
DIST cx_Oracle-5.3.tar.gz 129802 SHA256 124db57fd9e5f99a8033ffaef673db204565f5c2b9c2c957802a7281370562a6 SHA512 aa4001d48a4fc35cb045ed24cbdb6ba5a81054f8fbd6b96cdab97ee3635796fae32388dd249c5004a8684ee6ebaa4bd4892f4956d39e1bd62fa98c439a068f33 WHIRLPOOL 5a622fee366304b99d997ee7773001c4641be2c39673d3fa982342d1ceda11342c0bcf5cfd017937590ba158db6346a73a6e6853cdce531cd09a1828d37ac03f

View file

@ -1,33 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
MY_PN="cx_Oracle"
DESCRIPTION="Python extension module that allows access to Oracle Databases"
HOMEPAGE="http://www.python.net/crew/atuining/cx_Oracle/"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="test doc"
DEPEND=">=dev-db/oracle-instantclient-basic-10.1.0.2"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_PN}-${PV}"
src_install() {
distutils-r1_src_install
if use test;then
docinto tests/
dodoc test/*
fi
if use doc;then
dodoc html/*
fi
}