From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 88057138350 for ; Mon, 4 May 2020 11:39:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7160FE096B; Mon, 4 May 2020 11:39:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 46373E096B for ; Mon, 4 May 2020 11:39:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 64D1434F564 for ; Mon, 4 May 2020 11:39:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8754B21E for ; Mon, 4 May 2020 11:39:07 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1588592331.bd926104d3be4329cd817541422ed82f699cb9c0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pygal/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pygal/pygal-2.4.0.ebuild X-VCS-Directories: dev-python/pygal/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bd926104d3be4329cd817541422ed82f699cb9c0 X-VCS-Branch: master Date: Mon, 4 May 2020 11:39:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e1dcca11-867c-446f-906e-732e5fa70caa X-Archives-Hash: a6d70b87dad2032f32c8d58837b9f0bd commit: bd926104d3be4329cd817541422ed82f699cb9c0 Author: Michał Górny gentoo org> AuthorDate: Mon May 4 11:38:51 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 4 11:38:51 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd926104 dev-python/pygal: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pygal/pygal-2.4.0.ebuild | 66 ------------------------------------- 1 file changed, 66 deletions(-) diff --git a/dev-python/pygal/pygal-2.4.0.ebuild b/dev-python/pygal/pygal-2.4.0.ebuild deleted file mode 100644 index b50eb480cab..00000000000 --- a/dev-python/pygal/pygal-2.4.0.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_6 ) -PYTHON_REQ_USE="xml(+)" - -inherit distutils-r1 - -DESCRIPTION="A python SVG charts generator" -HOMEPAGE="https://github.com/Kozea/pygal/" -# PyPI tarballs do not contain docs -# https://github.com/Kozea/pygal/pull/428 -SRC_URI="https://github.com/Kozea/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-3+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc examples test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/lxml[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - media-gfx/cairosvg[${PYTHON_USEDEP}] -" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( - ${RDEPEND} - dev-python/pyquery[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - ) -" - -# CHANGELOG is a symlink to docs/changelog.rst -DOCS=( docs/changelog.rst README.md ) - -python_prepare_all() { - sed -i "/sphinx.ext.intersphinx/d" docs/conf.py || die - # Not actually required unless we want to do setup.py test - # https://github.com/Kozea/pygal/issues/430 - sed -i "s/'pytest-runner'\(,\)\?//" setup.py || die - distutils-r1_python_prepare_all -} - -python_compile_all() { - if use doc; then - sphinx-build docs docs/_build/html || die - HTML_DOCS=( docs/_build/html/. ) - fi -} - -python_test() { - py.test || die "tests failed with ${EPYTHON}" -} - -python_install_all() { - if use examples; then - docinto examples - dodoc -r demo/. - docompress -x /usr/share/doc/${PF}/examples - fi - distutils-r1_python_install_all -}