From 5cd0e5aa9cb1d50279161cd00f4db7a667f6584e Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Sat, 5 Sep 2020 08:00:13 +0200 Subject: dev-python/pweave: Revbump post py3.6 removal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/pweave/pweave-0.30.3-r1.ebuild | 57 +++++++++++++++++++++++++++++++ dev-python/pweave/pweave-0.30.3.ebuild | 57 ------------------------------- 2 files changed, 57 insertions(+), 57 deletions(-) create mode 100644 dev-python/pweave/pweave-0.30.3-r1.ebuild delete mode 100644 dev-python/pweave/pweave-0.30.3.ebuild (limited to 'dev-python/pweave') diff --git a/dev-python/pweave/pweave-0.30.3-r1.ebuild b/dev-python/pweave/pweave-0.30.3-r1.ebuild new file mode 100644 index 000000000000..f85db19e41dd --- /dev/null +++ b/dev-python/pweave/pweave-0.30.3-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_7 ) + +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +MY_PN="Pweave" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Scientific report generator and literate programming tool" +HOMEPAGE="http://mpastell.com/pweave + https://github.com/mpastell/Pweave" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz" + +IUSE="examples" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +PATCHES=( + "${FILESDIR}/${P}-docs.patch" + "${FILESDIR}/${P}-rm-online-tests.patch" ) + +RDEPEND="dev-python/ipython[${PYTHON_USEDEP}] + dev-python/ipykernel[${PYTHON_USEDEP}] + dev-python/jupyter_client[${PYTHON_USEDEP}] + dev-python/markdown[${PYTHON_USEDEP}] + dev-python/nbconvert[${PYTHON_USEDEP}] + dev-python/nbformat[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}]" + +DEPEND="test? ( + dev-python/coverage[${PYTHON_USEDEP}] + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/notebook[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${MY_P}" + +distutils_enable_sphinx doc/source dev-python/sphinx_rtd_theme +distutils_enable_tests pytest + +python_install_all() { + if use examples; then + insinto /usr/share/${PN} + doins -r doc/examples + fi + + distutils-r1_python_install_all +} diff --git a/dev-python/pweave/pweave-0.30.3.ebuild b/dev-python/pweave/pweave-0.30.3.ebuild deleted file mode 100644 index f85db19e41dd..000000000000 --- a/dev-python/pweave/pweave-0.30.3.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_7 ) - -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit distutils-r1 - -MY_PN="Pweave" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Scientific report generator and literate programming tool" -HOMEPAGE="http://mpastell.com/pweave - https://github.com/mpastell/Pweave" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz" - -IUSE="examples" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -PATCHES=( - "${FILESDIR}/${P}-docs.patch" - "${FILESDIR}/${P}-rm-online-tests.patch" ) - -RDEPEND="dev-python/ipython[${PYTHON_USEDEP}] - dev-python/ipykernel[${PYTHON_USEDEP}] - dev-python/jupyter_client[${PYTHON_USEDEP}] - dev-python/markdown[${PYTHON_USEDEP}] - dev-python/nbconvert[${PYTHON_USEDEP}] - dev-python/nbformat[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}]" - -DEPEND="test? ( - dev-python/coverage[${PYTHON_USEDEP}] - dev-python/matplotlib[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - dev-python/notebook[${PYTHON_USEDEP}] - sci-libs/scipy[${PYTHON_USEDEP}] )" - -S="${WORKDIR}/${MY_P}" - -distutils_enable_sphinx doc/source dev-python/sphinx_rtd_theme -distutils_enable_tests pytest - -python_install_all() { - if use examples; then - insinto /usr/share/${PN} - doins -r doc/examples - fi - - distutils-r1_python_install_all -} -- cgit v1.2.3-65-gdbad