dev-python/hiredis: Clean old versions up

This commit is contained in:
Michał Górny
2017-05-02 09:55:08 +02:00
parent 02b7065497
commit f01c33dbaa
3 changed files with 0 additions and 48 deletions

View File

@@ -1,2 +1 @@
DIST hiredis-0.1.1.tar.gz 35598 SHA256 ca7b3840d12f836dabfd73708bd64c0ac31204b22a926279b6515e6433e50ffc SHA512 fe588927698e771a3efb5918c2de308e435b1052b7991d331b4c59976a48ba42be0711bab4546d6aac19d851c6eb829c1208ff403f5e447c4201dc9c83aebc20 WHIRLPOOL e9e8b79e6f054e60f7eb0911123ce96e2cb3870378aa710b87c8604a22df4b3aa5a0b123970736d900a507eb5ee4e33858b4af170a776fdf01642e37b171a607
DIST hiredis-0.2.0.tar.gz 46113 SHA256 ca958e13128e49674aa4a96f02746f5de5973f39b57297b84d59fd44d314d5b5 SHA512 9eb18ec089517340043d14938a213b139dc948dc9cf2f9c65e632bb4694ac22543b87a5875c1cea083e2bc8e303103c749047889cdb3e9d5680b586d34330c86 WHIRLPOOL 5c2252d82814b8365a29160c41133571083954c317f9c36f534e3f0aa98bc97621f144479b715da0d5c77a0a00a7a5e0b69fb63c2559a4ebf124d88be93d477d

View File

@@ -1,25 +0,0 @@
--- hiredis-0.1.1/setup.py
+++ hiredis-0.1.1/setup.py
@@ -20,13 +20,9 @@
if self.distribution.has_ext_modules():
self.run_command('build_ext')
-lib = ("hiredis", {
- "sources": ["vendor/hiredis/%s.c" % src for src in ("hiredis", "net", "sds")],
- "include_dirs": ["vendor/hiredis"]})
-
ext = Extension("hiredis.hiredis",
sources=glob.glob("src/*.c"),
- include_dirs=["src", "vendor"],
+ include_dirs=["src"],
libraries=["hiredis"])
setup(
@@ -39,7 +35,6 @@
keywords=["Redis"],
license="BSD",
packages=["hiredis"],
- libraries=[lib],
ext_modules=[ext],
# Override "install_lib" command

View File

@@ -1,22 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python{2_7,3_4} )
inherit distutils-r1
DESCRIPTION="Python extension that wraps hiredis"
HOMEPAGE="https://github.com/pietern/hiredis-py"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm x86"
IUSE=""
DEPEND="dev-libs/hiredis"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}"/${P}-system-libs.patch )