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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4B455158090 for ; Sat, 21 May 2022 07:47:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 964AFE0837; Sat, 21 May 2022 07:47:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 79C06E0837 for ; Sat, 21 May 2022 07:47:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 72EBC341462 for ; Sat, 21 May 2022 07:47:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7D0246A for ; Sat, 21 May 2022 07:47:18 +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: <1653119054.ca7eb62af428a216f661d340fbccf4772cfea088.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.2.0-r1.ebuild dev-python/bibtexparser/bibtexparser-1.2.0-r2.ebuild X-VCS-Directories: dev-python/bibtexparser/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ca7eb62af428a216f661d340fbccf4772cfea088 X-VCS-Branch: master Date: Sat, 21 May 2022 07:47:18 +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: 84e20ab3-da84-4263-bc73-106438c57b2e X-Archives-Hash: b9fa48040d21dbfb60be5c48f52ab5af commit: ca7eb62af428a216f661d340fbccf4772cfea088 Author: Michał Górny gentoo org> AuthorDate: Sat May 21 07:44:14 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 21 07:44:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca7eb62a dev-python/bibtexparser: Strip obsolete future dep Signed-off-by: Michał Górny gentoo.org> ...parser-1.2.0-r1.ebuild => bibtexparser-1.2.0-r2.ebuild} | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/dev-python/bibtexparser/bibtexparser-1.2.0-r1.ebuild b/dev-python/bibtexparser/bibtexparser-1.2.0-r2.ebuild similarity index 69% rename from dev-python/bibtexparser/bibtexparser-1.2.0-r1.ebuild rename to dev-python/bibtexparser/bibtexparser-1.2.0-r2.ebuild index 0d1dd2ae0417..656fb45a6c81 100644 --- a/dev-python/bibtexparser/bibtexparser-1.2.0-r1.ebuild +++ b/dev-python/bibtexparser/bibtexparser-1.2.0-r2.ebuild @@ -5,10 +5,14 @@ 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" +DESCRIPTION="A BibTeX parser written in Python" +HOMEPAGE=" + https://github.com/sciunto-org/python-bibtexparser/ + https://pypi.org/project/bibtexparser/ +" SRC_URI=" https://github.com/sciunto-org/python-bibtexparser/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz @@ -19,7 +23,9 @@ LICENSE="|| ( BSD LGPL-3 )" SLOT="0" KEYWORDS="~amd64 ~x86" -RDEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]" +RDEPEND=" + dev-python/pyparsing[${PYTHON_USEDEP}] +" distutils_enable_tests pytest @@ -27,5 +33,7 @@ src_prepare() { # fixed in upstream 5f98bac62e8ff3c8ab6b956f288f1c61b99c6a5d sed -e 's:unittest2:unittest:' \ -i bibtexparser/tests/test_crossref_resolving.py || die + # remove obsolete dep + sed -i -e "s:'future>=0.16.0'::" setup.py || die distutils-r1_src_prepare }