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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ECC47158042 for ; Mon, 28 Oct 2024 18:15:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1378E089D; Mon, 28 Oct 2024 18:15:52 +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 C51E4E089D for ; Mon, 28 Oct 2024 18:15:52 +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 C5BAA33DF47 for ; Mon, 28 Oct 2024 18:15:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F3AF1626 for ; Mon, 28 Oct 2024 18:15:50 +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: <1730139341.82239beb113a047b47d6f35ac18e9ae8bc23cfca.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/simpleeval/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/simpleeval/Manifest dev-python/simpleeval/simpleeval-1.0.1.ebuild X-VCS-Directories: dev-python/simpleeval/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 82239beb113a047b47d6f35ac18e9ae8bc23cfca X-VCS-Branch: master Date: Mon, 28 Oct 2024 18:15:50 +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: 491585c3-2144-474d-972e-b4dc40d816ef X-Archives-Hash: 0826697dd6e3189667be7d1cf82ee6cc commit: 82239beb113a047b47d6f35ac18e9ae8bc23cfca Author: Michał Górny gentoo org> AuthorDate: Mon Oct 28 16:32:34 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Oct 28 18:15:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82239beb dev-python/simpleeval: Bump to 1.0.1 Signed-off-by: Michał Górny gentoo.org> dev-python/simpleeval/Manifest | 1 + dev-python/simpleeval/simpleeval-1.0.1.ebuild | 28 +++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-python/simpleeval/Manifest b/dev-python/simpleeval/Manifest index 5608d59a495d..d318202f317c 100644 --- a/dev-python/simpleeval/Manifest +++ b/dev-python/simpleeval/Manifest @@ -1 +1,2 @@ DIST simpleeval-1.0.0.tar.gz 25714 BLAKE2B 3527c3109fd77226c1103ebaac6fb5d03b9439b7e79b2b8386bd9ac9631bc0c1843d06e7a12843801294b84517bd2fc32ce607cc6f99dacf6c827e57d1717e6e SHA512 b5310dfac1ba231e47e86ff6dc8b3c814210f3f14724a0da12f429133354a46f60f980fd29ef66c675c52cd668f2f18c74a6b805192972e821d8331817f44c83 +DIST simpleeval-1.0.1.tar.gz 24395 BLAKE2B f5ac188a6797135e79ce6d1cdc5a57987666c6670ce335d7dec68df05c6793f857fb100c087d0f228103ac74f38e41054ad8dbcf4bfc895e47c11faaf965990d SHA512 ba5202f505da411378f97b516070c6f4c456d58467ecbdfd98e611a63c77fe4382a456a9551dee00d8b22cc9dd9d8cddf57e379fac968c27db075cbfc84d8dd2 diff --git a/dev-python/simpleeval/simpleeval-1.0.1.ebuild b/dev-python/simpleeval/simpleeval-1.0.1.ebuild new file mode 100644 index 000000000000..bbb48a12401d --- /dev/null +++ b/dev-python/simpleeval/simpleeval-1.0.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="A simple, safe single expression evaluator library" +HOMEPAGE=" + https://github.com/danthedeckie/simpleeval/ + https://pypi.org/project/simpleeval/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +distutils_enable_tests unittest + +src_prepare() { + distutils-r1_src_prepare + + # https://github.com/danthedeckie/simpleeval/issues/155 + sed -i -e '/pip/d' pyproject.toml || die +}