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 CF91D1581F0 for ; Fri, 17 Jan 2025 16:09:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29A71E08ED; Fri, 17 Jan 2025 16:09:46 +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 0CA83E08EB for ; Fri, 17 Jan 2025 16:09:46 +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 1E41C3431E0 for ; Fri, 17 Jan 2025 16:09:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD1C92468 for ; Fri, 17 Jan 2025 16:09:43 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1737130177.67bd11c805ef6a221c203b21621f3f844e6c1279.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bpython/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/bpython/Manifest dev-python/bpython/bpython-0.25.ebuild X-VCS-Directories: dev-python/bpython/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 67bd11c805ef6a221c203b21621f3f844e6c1279 X-VCS-Branch: master Date: Fri, 17 Jan 2025 16:09:43 +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: 1755eeff-65d0-47d9-8b78-2f3177b9ce92 X-Archives-Hash: 35626e2ce496676a4dfee5fd3d710235 commit: 67bd11c805ef6a221c203b21621f3f844e6c1279 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Jan 17 16:07:41 2025 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Jan 17 16:09:37 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67bd11c8 dev-python/bpython: add 0.25 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/bpython/Manifest | 1 + dev-python/bpython/bpython-0.25.ebuild | 47 ++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) diff --git a/dev-python/bpython/Manifest b/dev-python/bpython/Manifest index a92edc89a76d..f48b0d5e736e 100644 --- a/dev-python/bpython/Manifest +++ b/dev-python/bpython/Manifest @@ -1 +1,2 @@ DIST bpython-0.24.tar.gz 222879 BLAKE2B d74276c2da25e4c9f4440af3c26bd69b08baa3f6f8ae04f55ace2a159c5d839711b6f969dcaae831bc680273bc6f4f8e7f9297751534ae14d76fb06e6bc4be48 SHA512 f95e853ad5aaba476cf0bcc197ae1d322af4a458637f8445372b54b75d315d3caae7a3f8b7d8c6d1bd2c4307c36b21cf320b22c367990bd0b9bfbf42a5e02267 +DIST bpython-0.25.tar.gz 207610 BLAKE2B d180838ddbf87165acf44214bdf3d5983ebcecb529647ecdd4f1b8f7c325a1d7013e47908ee88bdacacec9ba9b0b3f3052fc88999128416e6a01e1b7cfa1194b SHA512 052a84666e5e559a883964d8eb41a1ed8c704a9760799cdbe98d7fdcd8060815b5d7b26e7589a56735f91c1f1214b1cdf17ad30d6bed34a506233d2d9e0bbd2c diff --git a/dev-python/bpython/bpython-0.25.ebuild b/dev-python/bpython/bpython-0.25.ebuild new file mode 100644 index 000000000000..2e657c0f3314 --- /dev/null +++ b/dev-python/bpython/bpython-0.25.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Syntax highlighting and autocompletion for the Python interpreter" +HOMEPAGE=" + https://www.bpython-interpreter.org/ + https://github.com/bpython/bpython/ + https://pypi.org/project/bpython/ +" + +LICENSE="MIT BSD-2 PSF-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~riscv ~x86" +IUSE="clipboard +jedi watch" + +# see https://github.com/bpython/bpython/issues/641 wrt greenlet +RDEPEND=" + >=dev-python/curtsies-0.4.0[${PYTHON_USEDEP}] + dev-python/cwcwidth[${PYTHON_USEDEP}] + dev-python/greenlet[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/pyxdg[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + clipboard? ( dev-python/pyperclip[${PYTHON_USEDEP}] ) + jedi? ( dev-python/jedi[${PYTHON_USEDEP}] ) + watch? ( dev-python/watchdog[${PYTHON_USEDEP}] ) + $(python_gen_cond_dep ' + >=dev-python/typing-extensions-4.0.0[${PYTHON_USEDEP}] + ' 3.10) +" +# sphinx is used implicitly to build manpages +BDEPEND=" + dev-python/wheel[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] +" + +DOCS=( AUTHORS.rst CHANGELOG.rst ) + +distutils_enable_sphinx doc/sphinx/source --no-autodoc +distutils_enable_tests unittest