commit: b06e17f68ef0ba06f10e7da0e93f22b118639d21 Author: Miezhiko <Miezhiko <AT> gmail <DOT> com> AuthorDate: Thu Mar 31 12:12:36 2022 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Fri Apr 1 07:41:11 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b06e17f6
dev-python/pythondialog: update to 3.5.3 set max python version to 3.10, update EAPI to 8 Signed-off-by: Miezhiko <Miezhiko <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/24828 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> dev-python/pythondialog/Manifest | 1 + dev-python/pythondialog/pythondialog-3.5.3.ebuild | 32 +++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/dev-python/pythondialog/Manifest b/dev-python/pythondialog/Manifest index a0f7d8de19fa..0dd3311eaa32 100644 --- a/dev-python/pythondialog/Manifest +++ b/dev-python/pythondialog/Manifest @@ -1 +1,2 @@ DIST python3-pythondialog-3.5.1.tar.bz2 1418034 BLAKE2B 28dbb76a213d702abd6fb4571ddd28acea0bd9757424e99432aa58c1336fce2aa9b248e4de0631fe34c7ac52b928c8b3dc65afc42a826cc268ca4247be4dafb8 SHA512 f032e425ce1ebac53ade1401e48625b5869497367f788831d08fd22eb3b3b14fa5aebd26fd3681b47222ef0247ebb5c1ead127f111ca296197e258650dd675ad +DIST python3-pythondialog-3.5.3.tar.bz2 1428518 BLAKE2B 032735d2df318b4e94c138475148c71ab8322c52181550ea13ddd27ac63d715cb59124a2fc1f09f7d835d4453583c449c665f5efd16a2418fe3ca3348f53ed8e SHA512 69ae3e3894dbd56136989699fee7a7f459ce9a024e0e06d22193f5fd306f0f2bf2f4d300460f7de7898db347acdf6111652878948a78468a1aa23158c5f7ae98 diff --git a/dev-python/pythondialog/pythondialog-3.5.3.ebuild b/dev-python/pythondialog/pythondialog-3.5.3.ebuild new file mode 100644 index 000000000000..731f6758d226 --- /dev/null +++ b/dev-python/pythondialog/pythondialog-3.5.3.ebuild @@ -0,0 +1,32 @@ +# 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..10} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="A Python module for making simple text/console-mode user interfaces" +HOMEPAGE="http://pythondialog.sourceforge.net/" +SRC_URI="mirror://sourceforge/pythondialog/${PV}/python3-${P}.tar.bz2" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86" + +RDEPEND="dev-util/dialog" + +distutils_enable_sphinx doc + +python_prepare_all() { + distutils-r1_python_prepare_all + sed -e "/^ 'sphinx.ext.intersphinx',/d" -i doc/conf.py || die +} + +python_install_all() { + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + distutils-r1_python_install_all +}
