# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) PYTHON_REQ_USE="readline,sqlite" DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 SAGE_PKG="sage-sws2rst" MY_P="${SAGE_PKG}-${PV}" if [[ ${PV} == 9999 ]]; then inherit git-r3 sage-git else inherit pypi SRC_URI="$(pypi_sdist_url --no-normalize "${SAGE_PKG}")" KEYWORDS="~amd64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" S="${WORKDIR}/${MY_P}" fi DESCRIPTION="SageNB worksheet converter" HOMEPAGE="https://www.sagemath.org" LICENSE="GPL-2" SLOT="0" RESTRICT="mirror test" DEPEND="dev-python/beautifulsoup4[${PYTHON_USEDEP}]" RDEPEND="${DEPEND}"