mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
27 lines
677 B
Bash
27 lines
677 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
PYTHON_COMPAT=( python3_{7..9} )
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A Python toolbox for building complex digital hardware"
|
|
HOMEPAGE="https://m-labs.hk/migen/index.html"
|
|
SRC_URI="https://github.com/m-labs/migen/archive/${PV}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]
|
|
dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
|
|
dev-python/colorama[${PYTHON_USEDEP}]"
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
|
|
src_prepare(){
|
|
sed -i "s|0.5.dev|${PV}|" setup.py
|
|
eapply_user
|
|
}
|