From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1397825-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 46B11158091 for <garchives@archives.gentoo.org>; Tue, 17 May 2022 12:20:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80087E0932; Tue, 17 May 2022 12:20:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 30B7BE0932 for <gentoo-commits@lists.gentoo.org>; Tue, 17 May 2022 12:20:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3598634195D for <gentoo-commits@lists.gentoo.org>; Tue, 17 May 2022 12:20:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0039F480 for <gentoo-commits@lists.gentoo.org>; Tue, 17 May 2022 12:20:05 +0000 (UTC) From: "Andrew Ammerlaan" <andrewammerlaan@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" <andrewammerlaan@gentoo.org> Message-ID: <1652789971.aa5076d024d487dde1870d6cfd35c5e0e49b6cb0.andrewammerlaan@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.2.0-r1.ebuild X-VCS-Directories: dev-python/bibtexparser/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: aa5076d024d487dde1870d6cfd35c5e0e49b6cb0 X-VCS-Branch: master Date: Tue, 17 May 2022 12:20:05 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 19989458-5de8-4da0-ba3c-e3fb1527c04f X-Archives-Hash: 6292efd1984e2c0c24a9b1a3b0f4ee0f commit: aa5076d024d487dde1870d6cfd35c5e0e49b6cb0 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org> AuthorDate: Tue May 17 11:39:41 2022 +0000 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org> CommitDate: Tue May 17 12:19:31 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa5076d0 dev-python/bibtexparser: nose-->pytest, enable py3.11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org> .../bibtexparser/bibtexparser-1.2.0-r1.ebuild | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/dev-python/bibtexparser/bibtexparser-1.2.0-r1.ebuild b/dev-python/bibtexparser/bibtexparser-1.2.0-r1.ebuild new file mode 100644 index 000000000000..0d1dd2ae0417 --- /dev/null +++ b/dev-python/bibtexparser/bibtexparser-1.2.0-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-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}.gh.tar.gz +" +S="${WORKDIR}/python-${P}" + +LICENSE="|| ( BSD LGPL-3 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest + +src_prepare() { + # fixed in upstream 5f98bac62e8ff3c8ab6b956f288f1c61b99c6a5d + sed -e 's:unittest2:unittest:' \ + -i bibtexparser/tests/test_crossref_resolving.py || die + distutils-r1_src_prepare +}