pentoo-overlay/sci-electronics/migen/migen-0.7.ebuild
Arusekk d803a94a1c
dev-python/*: Rename dev-python/{sphinx_rtd_theme → sphinx-rtd-theme}
See gentoo commit 15d76ea3e49bf90f74df649773167d6ba96c0583
2023-04-18 13:45:02 +02:00

27 lines
679 B
Bash

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{10..11} )
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
}