dev-python/pycoin: Add 0.77 - parlay - yet another gentoo overlay
HTML git clone https://git.parazyd.org/parlay
DIR Log
DIR Files
DIR Refs
DIR README
---
DIR commit d7165e18a7a6715e92703cce060f121ea4cdc5ce
DIR parent 4ab26c3961b7817b7eafa0dfdd22869d3eb467f4
HTML Author: parazyd <parazyd@dyne.org>
Date: Thu, 22 Jun 2017 12:36:02 +0200
dev-python/pycoin: Add 0.77
Diffstat:
A dev-python/pycoin/Manifest | 1 +
A dev-python/pycoin/pycoin-0.77.ebui⦠| 27 +++++++++++++++++++++++++++
2 files changed, 28 insertions(+), 0 deletions(-)
---
DIR diff --git a/dev-python/pycoin/Manifest b/dev-python/pycoin/Manifest
@@ -0,0 +1 @@
+DIST pycoin-0.77.tar.gz 110661 SHA256 c5e2fe86690e72b63000f4cf363851116cb7b96e8eb77b69b710e718d2e251de SHA512 d8cb2f7ffadca090a3e4003f0e4edca8d131a400f48fe229d9a5abcb5c16e99974704159315166516fa8bfb5d8479d7f52bf996762cf7603615fa884b68d71c6 WHIRLPOOL 895d6776ff4aaac5f7a3225360335ce67b25f27bc1ccefcb2a1e021f6e7dbeffc11aaa6be5236d220ff94a4934e7c629e22c760c307b96cbb712f9e4dd8fbd37
DIR diff --git a/dev-python/pycoin/pycoin-0.77.ebuild b/dev-python/pycoin/pycoin-0.77.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python Bitcoin Utilities"
+HOMEPAGE="https://pypi.python.org/pypi/pycoin
+https://github.com/richardkiss/pycoin"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+src_prepare() {
+ default
+ sed -i 's/import distutils.core/from setuptools import setup/' setup.py
+ sed -i 's/distutils.core.setup/setup/' setup.py
+}
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND=""