From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1668779-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 C3078158083 for <garchives@archives.gentoo.org>; Sun, 8 Sep 2024 14:17:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3EECE2A22; Sun, 8 Sep 2024 14:17:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 C2F6FE2A22 for <gentoo-commits@lists.gentoo.org>; Sun, 8 Sep 2024 14:17:02 +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 016A334308C for <gentoo-commits@lists.gentoo.org>; Sun, 8 Sep 2024 14:17:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 687C114CA for <gentoo-commits@lists.gentoo.org>; Sun, 8 Sep 2024 14:17:00 +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: <1725805014.4486a20586a69f01ca941235eb604e88bb4001ae.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/khard/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/khard/khard-0.18.0.ebuild X-VCS-Directories: app-misc/khard/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4486a20586a69f01ca941235eb604e88bb4001ae X-VCS-Branch: master Date: Sun, 8 Sep 2024 14:17:00 +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: 1020e41b-d642-4ebb-ac57-0f8ffa4457af X-Archives-Hash: 3ebe8364f2de3d466380a765d52c4694 commit: 4486a20586a69f01ca941235eb604e88bb4001ae Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Sep 8 14:13:56 2024 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sun Sep 8 14:16:54 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4486a205 app-misc/khard: Use unittest to run tests Closes: https://bugs.gentoo.org/927514 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> app-misc/khard/khard-0.18.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-misc/khard/khard-0.18.0.ebuild b/app-misc/khard/khard-0.18.0.ebuild index 1f6d9ba081ef..d2600e3a9200 100644 --- a/app-misc/khard/khard-0.18.0.ebuild +++ b/app-misc/khard/khard-0.18.0.ebuild @@ -52,7 +52,7 @@ DOCS=( doc/source/examples/khard.conf.example ) -distutils_enable_tests setup.py +distutils_enable_tests unittest distutils_enable_sphinx docs python_compile_all() { @@ -71,5 +71,5 @@ python_install_all() { insinto /usr/share/zsh/site-functions doins misc/zsh/_khard - distutils-r1_python_install_all + distutils-r1_python_install_all }