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 41F7E158094 for ; Mon, 25 Jul 2022 07:15:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7E1C9E1101; Mon, 25 Jul 2022 07:14:59 +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 5A980E1100 for ; Mon, 25 Jul 2022 07:14:59 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 79135340F7A for ; Mon, 25 Jul 2022 07:14:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00A30555 for ; Mon, 25 Jul 2022 07:14:56 +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: <1658733292.79c02a2fbc6de207a097551ff49c955ab3c74a85.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-augeas/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-augeas/python-augeas-1.1.0.ebuild X-VCS-Directories: dev-python/python-augeas/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 79c02a2fbc6de207a097551ff49c955ab3c74a85 X-VCS-Branch: master Date: Mon, 25 Jul 2022 07:14:56 +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: ddb1ce0f-6ffe-46ed-a6e9-2b8e9dbd2612 X-Archives-Hash: 07575210dd648b4683b92c01fa9f43cd commit: 79c02a2fbc6de207a097551ff49c955ab3c74a85 Author: Michał Górny gentoo org> AuthorDate: Mon Jul 25 07:14:29 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jul 25 07:14:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79c02a2f dev-python/python-augeas: Remove old Signed-off-by: Michał Górny gentoo.org> .../python-augeas/python-augeas-1.1.0.ebuild | 27 ---------------------- 1 file changed, 27 deletions(-) diff --git a/dev-python/python-augeas/python-augeas-1.1.0.ebuild b/dev-python/python-augeas/python-augeas-1.1.0.ebuild deleted file mode 100644 index 0d043ed20916..000000000000 --- a/dev-python/python-augeas/python-augeas-1.1.0.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="Python bindings for Augeas" -HOMEPAGE="http://augeas.net/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" - -RDEPEND="app-admin/augeas - >=dev-python/cffi-1.0.0[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -PATCHES=( "${FILESDIR}/remove-tests.patch" ) - -python_test() { - cd test && "${PYTHON}" test_augeas.py || die -}