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 92312138334 for ; Thu, 18 Jul 2019 21:31:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7850E0822; Thu, 18 Jul 2019 21:31:52 +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 AD390E0822 for ; Thu, 18 Jul 2019 21:31:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 50C8C348020 for ; Thu, 18 Jul 2019 21:31:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C8F26DF for ; Thu, 18 Jul 2019 21:31:48 +0000 (UTC) From: "Aaron W. Swenson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron W. Swenson" Message-ID: <1563485494.f0df5bdaef0748e07ee24cec955b58fb4caa94dc.titanofold@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tinycss2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tinycss2/tinycss2-1.0.2.ebuild X-VCS-Directories: dev-python/tinycss2/ X-VCS-Committer: titanofold X-VCS-Committer-Name: Aaron W. Swenson X-VCS-Revision: f0df5bdaef0748e07ee24cec955b58fb4caa94dc X-VCS-Branch: master Date: Thu, 18 Jul 2019 21:31:48 +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: 79640829-7e0a-46df-822f-5a97b838b312 X-Archives-Hash: ce5e342519c62b1956ff9c658c8b0c28 commit: f0df5bdaef0748e07ee24cec955b58fb4caa94dc Author: Aaron W. Swenson gentoo org> AuthorDate: Thu Jul 18 21:27:09 2019 +0000 Commit: Aaron W. Swenson gentoo org> CommitDate: Thu Jul 18 21:31:34 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0df5bda dev-python/tinycss2: Fix dependencies, doc install Added missing dependency declaration for tests. CHANGES dropped from distribution, so removes from DOCS. Closes: https://bugs.gentoo.org/690170 Closes: https://bugs.gentoo.org/690174 Package-Manager: Portage-2.3.66, Repoman-2.3.11 Signed-off-by: Aaron W. Swenson gentoo.org> dev-python/tinycss2/tinycss2-1.0.2.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-python/tinycss2/tinycss2-1.0.2.ebuild b/dev-python/tinycss2/tinycss2-1.0.2.ebuild index 6a89feef642..40307a78ea0 100644 --- a/dev-python/tinycss2/tinycss2-1.0.2.ebuild +++ b/dev-python/tinycss2/tinycss2-1.0.2.ebuild @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{5,6} ) inherit distutils-r1 DESCRIPTION="A complete yet simple CSS parser for Python" -HOMEPAGE="https://github.com/SimonSapin/tinycss2/ https://pypi.python.org/pypi/tinycss2/" +HOMEPAGE="https://github.com/Kozea/tinycss2/ https://pypi.python.org/pypi/tinycss2/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" @@ -16,16 +16,19 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" -RDEPEND="dev-python/webencodings[${PYTHON_USEDEP}]" +RDEPEND=">=dev-python/webencodings-0.4[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} + >=dev-python/setuptools-39.2.0[${PYTHON_USEDEP}] test? ( - dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-cov[${PYTHON_USEDEP}] dev-python/pytest-flake8[${PYTHON_USEDEP}] dev-python/pytest-isort[${PYTHON_USEDEP}] + dev-python/pytest-runner[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] ) " -DOCS=( CHANGES README.rst ) +DOCS=( README.rst ) python_test() { py.test || die "testsuite failed under ${EPYTHON}"