From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1418118-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 5AD9F158011 for <garchives@archives.gentoo.org>; Thu, 14 Jul 2022 07:31:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78561E0C2F; Thu, 14 Jul 2022 07:31:22 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 59D55E0C2B for <gentoo-commits@lists.gentoo.org>; Thu, 14 Jul 2022 07:31:22 +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 8ECF4340D78 for <gentoo-commits@lists.gentoo.org>; Thu, 14 Jul 2022 07:31:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A34653F for <gentoo-commits@lists.gentoo.org>; Thu, 14 Jul 2022 07:31:18 +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: <1657783869.dca0a2384a092fad224950722fb147fc32d329fd.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-editor/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-editor/python-editor-1.0.4-r2.ebuild X-VCS-Directories: dev-python/python-editor/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: dca0a2384a092fad224950722fb147fc32d329fd X-VCS-Branch: master Date: Thu, 14 Jul 2022 07:31:18 +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: bb2b5c3b-927b-46fa-a9af-2fb76285bb97 X-Archives-Hash: 5f11bb9d9e61e6774218d85271a41839 commit: dca0a2384a092fad224950722fb147fc32d329fd Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Jul 14 06:46:28 2022 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Jul 14 07:31:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dca0a238 dev-python/python-editor: Use PEP517, EAPI 8, py3.11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> .../python-editor/python-editor-1.0.4-r2.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-python/python-editor/python-editor-1.0.4-r2.ebuild b/dev-python/python-editor/python-editor-1.0.4-r2.ebuild new file mode 100644 index 000000000000..dc43d461812a --- /dev/null +++ b/dev-python/python-editor/python-editor-1.0.4-r2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{8..11} ) + +inherit distutils-r1 + +DESCRIPTION="Programmatically open an editor, capture the result" +HOMEPAGE=" + https://github.com/fmoo/python-editor/ + https://pypi.org/project/python-editor/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"