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 E232B15800D for ; Sat, 8 Jul 2023 18:43:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E02D1E08DD; Sat, 8 Jul 2023 18:43:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C98C3E08DD for ; Sat, 8 Jul 2023 18:43:34 +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 B89B5340E08 for ; Sat, 8 Jul 2023 18:43:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B020ACF for ; Sat, 8 Jul 2023 18:43:32 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1688841699.a8c141b807c89ccddd56f991f17c12ffc231f5ad.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/xkcdpass/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/xkcdpass/xkcdpass-1.19.3-r1.ebuild X-VCS-Directories: app-admin/xkcdpass/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: a8c141b807c89ccddd56f991f17c12ffc231f5ad X-VCS-Branch: master Date: Sat, 8 Jul 2023 18:43:32 +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: 3a1987c0-973d-4741-a0ac-b8d12d290862 X-Archives-Hash: a290424414f0d617ddb993031b4d6be0 commit: a8c141b807c89ccddd56f991f17c12ffc231f5ad Author: Ben Kohler gentoo org> AuthorDate: Sat Jul 8 13:00:21 2023 +0000 Commit: Ben Kohler gentoo org> CommitDate: Sat Jul 8 18:41:39 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8c141b8 app-admin/xkcdpass: update EAPI 7 -> 8, use PEP517 build Closes: https://bugs.gentoo.org/909863 Signed-off-by: Ben Kohler gentoo.org> app-admin/xkcdpass/xkcdpass-1.19.3-r1.ebuild | 40 ++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/app-admin/xkcdpass/xkcdpass-1.19.3-r1.ebuild b/app-admin/xkcdpass/xkcdpass-1.19.3-r1.ebuild new file mode 100644 index 000000000000..d76304959988 --- /dev/null +++ b/app-admin/xkcdpass/xkcdpass-1.19.3-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 2020-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) +inherit distutils-r1 pypi + +DESCRIPTION="Password generator inspired by XKCD 936" +HOMEPAGE="https://github.com/redacted/XKCD-password-generator" + +LICENSE="BSD CC-BY-3.0 + l10n_de? ( GPL-3 ) + l10n_it? ( CC-BY-SA-3.0 ) + l10n_no? ( CC-BY-4.0 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="l10n_de +l10n_en l10n_es l10n_fi l10n_fr l10n_it l10n_no l10n_pt" + +distutils_enable_tests pytest +REQUIRED_USE="test? ( l10n_en )" + +src_prepare() { + default + + use l10n_de || rm ${PN}/static/{ger-anlx,eff_large_de_sample.wordlist} + use l10n_en || rm ${PN}/static/{eff-short,eff-special,legacy} + use l10n_es || rm ${PN}/static/spa-mich + use l10n_fi || rm ${PN}/static/fin-kotus + use l10n_fr || rm ${PN}/static/fr-* + use l10n_it || rm ${PN}/static/ita-wiki + use l10n_no || rm ${PN}/static/nor-nb + use l10n_pt || rm ${PN}/static/pt-* +} + +python_install_all() { + distutils-r1_python_install_all + doman ${PN}.1 +}