From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1408633-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 033C0158091 for <garchives@archives.gentoo.org>; Thu, 16 Jun 2022 08:04:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 429AAE0876; Thu, 16 Jun 2022 08:04:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1F858E0876 for <gentoo-commits@lists.gentoo.org>; Thu, 16 Jun 2022 08:04:24 +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 64EF0341ECE for <gentoo-commits@lists.gentoo.org>; Thu, 16 Jun 2022 08:04:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B317050C for <gentoo-commits@lists.gentoo.org>; Thu, 16 Jun 2022 08:04:20 +0000 (UTC) From: "Michał Górny" <mgorny@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, "Michał Górny" <mgorny@gentoo.org> Message-ID: <1655366475.d23bd91a8fed5e1419c75e27d7428a6ffc34b314.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.ebuild X-VCS-Directories: dev-python/bibtexparser/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d23bd91a8fed5e1419c75e27d7428a6ffc34b314 X-VCS-Branch: master Date: Thu, 16 Jun 2022 08:04:20 +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: 5a816365-3677-440b-9c0d-5c3304a8dba2 X-Archives-Hash: 96891a73633c3ac6e5da2a413add3de2 commit: d23bd91a8fed5e1419c75e27d7428a6ffc34b314 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Jun 16 08:01:15 2022 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Jun 16 08:01:15 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d23bd91a dev-python/bibtexparser: Remove old Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/bibtexparser/bibtexparser-1.2.0.ebuild | 30 ----------------------- 1 file changed, 30 deletions(-) diff --git a/dev-python/bibtexparser/bibtexparser-1.2.0.ebuild b/dev-python/bibtexparser/bibtexparser-1.2.0.ebuild deleted file mode 100644 index d973deb63dd5..000000000000 --- a/dev-python/bibtexparser/bibtexparser-1.2.0.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# 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 -}