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 CB7B113835B for ; Tue, 17 Nov 2020 00:08:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00BF5E0993; Tue, 17 Nov 2020 00:08:56 +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 DD421E0993 for ; Tue, 17 Nov 2020 00:08:55 +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 AA5FA341186 for ; Tue, 17 Nov 2020 00:08:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F662453 for ; Tue, 17 Nov 2020 00:08:53 +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: <1605571716.79a660c825fcab60249e532b38ea57e91f4fc474.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bibtexparser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/bibtexparser/bibtexparser-1.1.0.ebuild X-VCS-Directories: dev-python/bibtexparser/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 79a660c825fcab60249e532b38ea57e91f4fc474 X-VCS-Branch: master Date: Tue, 17 Nov 2020 00:08:53 +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: a81a6950-e57a-4be7-93d1-b9db198d823f X-Archives-Hash: 7c970cc0740ebfb843721b035c6bba76 commit: 79a660c825fcab60249e532b38ea57e91f4fc474 Author: Michał Górny gentoo org> AuthorDate: Mon Nov 16 23:55:34 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Nov 17 00:08:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79a660c8 dev-python/bibtexparser: Port up to py3.9, fix ebuild Signed-off-by: Michał Górny gentoo.org> dev-python/bibtexparser/bibtexparser-1.1.0.ebuild | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/dev-python/bibtexparser/bibtexparser-1.1.0.ebuild b/dev-python/bibtexparser/bibtexparser-1.1.0.ebuild index 5b5c3522fda..a72537c2748 100644 --- a/dev-python/bibtexparser/bibtexparser-1.1.0.ebuild +++ b/dev-python/bibtexparser/bibtexparser-1.1.0.ebuild @@ -3,27 +3,19 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 python-r1 DESCRIPTION="A BibTeX parser written in python" HOMEPAGE="https://github.com/sciunto-org/python-bibtexparser" SRC_URI="https://github.com/sciunto-org/python-bibtexparser/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/python-${P}" LICENSE="|| ( BSD LGPL-3 )" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" RDEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/nose[${PYTHON_USEDEP}] )" - -S="${WORKDIR}/python-${P}" -src_test() { - python_foreach_impl nosetests -} +distutils_enable_tests nose