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 16D4D158020 for ; Mon, 14 Nov 2022 04:34:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5498EE087E; Mon, 14 Nov 2022 04:34:18 +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 C69AEE0876 for ; Mon, 14 Nov 2022 04:34:17 +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 E9885340DE9 for ; Mon, 14 Nov 2022 04:34:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 17188757 for ; Mon, 14 Nov 2022 04:34:14 +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: <1668400286.2e8170a279616291a8c57a3ada9af02697e8fd6b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/asteval/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/asteval/Manifest dev-python/asteval/asteval-0.9.27.ebuild X-VCS-Directories: dev-python/asteval/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2e8170a279616291a8c57a3ada9af02697e8fd6b X-VCS-Branch: master Date: Mon, 14 Nov 2022 04:34:14 +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: 1c91cb57-b003-442b-8f5a-aadd3f911344 X-Archives-Hash: 59813752b049647f030fd2f4b48cd4a6 commit: 2e8170a279616291a8c57a3ada9af02697e8fd6b Author: Michał Górny gentoo org> AuthorDate: Mon Nov 14 04:31:26 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Nov 14 04:31:26 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e8170a2 dev-python/asteval: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/asteval/Manifest | 1 - dev-python/asteval/asteval-0.9.27.ebuild | 31 ------------------------------- 2 files changed, 32 deletions(-) diff --git a/dev-python/asteval/Manifest b/dev-python/asteval/Manifest index 30f440ae81e5..5e4155821b71 100644 --- a/dev-python/asteval/Manifest +++ b/dev-python/asteval/Manifest @@ -1,2 +1 @@ -DIST asteval-0.9.27.tar.gz 41789 BLAKE2B 6db628dfc90479b605370e6cd4c3eb27a6fdabd2422016aab200ddb217fc5459df77ae99397145511600ae4a79e259c9e7c75c3be50bf5201e08915a76ca5571 SHA512 b56fb81f1055ab66868084edb89775ec87f40ee45563531bf4661ee65656e777b388856e691740af60b4a3891e872683768ac590a78fda2fed9173e613aa7263 DIST asteval-0.9.28.gh.tar.gz 39784 BLAKE2B 99c74b7d9f01de07dc568a5276852e66dd6c520c45af91b9471bc6f9485ac50bc20bc96df804188a610bac01e8e34534e8bb157784afd6b1799ca97280e4c5ed SHA512 108652594a0eaaf009b8652ced9000ef7454d8f33fe844e74fb1dd78a2ead42a60d5ba68845c8d9c9d8570a70b5958519a6350d77c66257a7fa18de23802c3b0 diff --git a/dev-python/asteval/asteval-0.9.27.ebuild b/dev-python/asteval/asteval-0.9.27.ebuild deleted file mode 100644 index d0a6c8b9f423..000000000000 --- a/dev-python/asteval/asteval-0.9.27.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..11} ) - -inherit distutils-r1 - -DESCRIPTION="Evaluator of Python expression using ast module" -HOMEPAGE=" - https://newville.github.io/asteval/ - https://github.com/newville/asteval/ - https://pypi.org/project/asteval/ -" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" - -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -python_test() { - epytest -o addopts= -}