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.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 EE2C0158087 for ; Mon, 17 Jan 2022 16:48:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D56932BC043; Mon, 17 Jan 2022 16:48:40 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 618912BC042 for ; Mon, 17 Jan 2022 16:48:40 +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 E351C3431B2 for ; Mon, 17 Jan 2022 16:48:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 67B00263 for ; Mon, 17 Jan 2022 16:48:37 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1642438107.9534cdacfd0b09a02c2789a59bb671b0cfa1ebec.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bibtexparser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/bibtexparser/Manifest dev-python/bibtexparser/bibtexparser-1.2.0.ebuild X-VCS-Directories: dev-python/bibtexparser/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 9534cdacfd0b09a02c2789a59bb671b0cfa1ebec X-VCS-Branch: master Date: Mon, 17 Jan 2022 16:48:37 +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: fe8ec2f3-276a-4bf0-909a-42559e30d0d7 X-Archives-Hash: 0135772ed5c540e9a0d698d819c5d44b commit: 9534cdacfd0b09a02c2789a59bb671b0cfa1ebec Author: Arthur Zamarin gentoo org> AuthorDate: Mon Jan 17 14:22:25 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Mon Jan 17 16:48:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9534cdac dev-python/bibtexparser: add 1.2.0 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/bibtexparser/Manifest | 1 + dev-python/bibtexparser/bibtexparser-1.2.0.ebuild | 30 +++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/dev-python/bibtexparser/Manifest b/dev-python/bibtexparser/Manifest index b283466b8d76..97e6c099c048 100644 --- a/dev-python/bibtexparser/Manifest +++ b/dev-python/bibtexparser/Manifest @@ -1 +1,2 @@ DIST bibtexparser-1.1.0.tar.gz 88656 BLAKE2B e5285953fbf79558643e19ea39f6421394f93afbfc6820be9bee0583c1efa010b9fe3478c9f3e36bea0c64e35c9d5bcb8341f1ee784c4150883e160723b94119 SHA512 f984cb307bfb8ee8143499469c0a83a28b3e9f061b17e5b43b7f9aa730c91427f2b2c441e501d37ab62f99ce2b7dd1cd7dee40b21c9f1a8e8b2dddf8eac2e74b +DIST bibtexparser-1.2.0.gh.tar.gz 88600 BLAKE2B f02fca0330f035b3d9051c04ab5da57232178c637d250839c3939780424d2be9afa619d7a7781cbc92917da12aeb5f35847a54f460823b46a2a717f4b0ca6f8e SHA512 c8775f17d963c6dc5cf3f9dda52c798b70c939cf4c7a90501194561abd7f2386d6681cc236615366a9d8917ad01238fc2e6a4299f98b50b594c74c99bdb3ecee diff --git a/dev-python/bibtexparser/bibtexparser-1.2.0.ebuild b/dev-python/bibtexparser/bibtexparser-1.2.0.ebuild new file mode 100644 index 000000000000..d973deb63dd5 --- /dev/null +++ b/dev-python/bibtexparser/bibtexparser-1.2.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +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 nose + +src_prepare() { + # fixed in upstream 5f98bac62e8ff3c8ab6b956f288f1c61b99c6a5d + sed -e 's:unittest2:unittest:' \ + -i bibtexparser/tests/test_crossref_resolving.py || die + distutils-r1_src_prepare +}