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 11FC215800F for ; Thu, 16 Feb 2023 03:29:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9434AE08D3; Thu, 16 Feb 2023 03:29:20 +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 6CC0EE08CE for ; Thu, 16 Feb 2023 03:29:20 +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 3F10F340DB2 for ; Thu, 16 Feb 2023 03:29:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 821AD8B7 for ; Thu, 16 Feb 2023 03:29:16 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1676517995.b6563ac325c6f8b9639fdfc8f50ba79a6e87fe67.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyGPG/pyGPG-0.2-r1.ebuild dev-python/pyGPG/pyGPG-9999.ebuild X-VCS-Directories: dev-python/pyGPG/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b6563ac325c6f8b9639fdfc8f50ba79a6e87fe67 X-VCS-Branch: master Date: Thu, 16 Feb 2023 03:29:16 +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: 283fb5a1-6692-4de5-8426-8fa08d166172 X-Archives-Hash: 83fa70576c955b84c654a3f607d56acb commit: b6563ac325c6f8b9639fdfc8f50ba79a6e87fe67 Author: Sam James gentoo org> AuthorDate: Wed Feb 15 23:04:57 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Feb 16 03:26:35 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6563ac3 dev-python/pyGPG: sync live, wire up tests for live Signed-off-by: Sam James gentoo.org> dev-python/pyGPG/pyGPG-0.2-r1.ebuild | 11 +++-------- dev-python/pyGPG/pyGPG-9999.ebuild | 13 +++++-------- 2 files changed, 8 insertions(+), 16 deletions(-) diff --git a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild index 75d7cff0e204..43eeb1b5b61b 100644 --- a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild +++ b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild @@ -22,23 +22,18 @@ HOMEPAGE="https://github.com/dol-sen/pyGPG" LICENSE="BSD" SLOT="0" -IUSE="" -DEPEND="" -RDEPEND="${DEPEND} - app-crypt/gnupg - " +RDEPEND="app-crypt/gnupg" pkg_postinst() { - elog elog "This is experimental software." - elog "The API's it installs should be considered unstable" + elog "The APIs it installs should be considered unstable" elog "and are subject to change." elog elog "Please file any enhancement requests, or bugs" elog "at https://github.com/dol-sen/pyGPG/issues" elog "I am also on IRC @ #gentoo-ci of the Libera.Chat network" elog - ewarn "There may be some python 3 compatibility issues still." + ewarn "There may be some Python 3 compatibility issues still." ewarn "Please help debug/fix/report them in github or bugzilla." } diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild index 3cabe1085532..337db049369c 100644 --- a/dev-python/pyGPG/pyGPG-9999.ebuild +++ b/dev-python/pyGPG/pyGPG-9999.ebuild @@ -22,23 +22,20 @@ HOMEPAGE="https://github.com/dol-sen/pyGPG" LICENSE="BSD" SLOT="0" -IUSE="" -DEPEND="" -RDEPEND="${DEPEND} - app-crypt/gnupg - " +RDEPEND="app-crypt/gnupg" + +distutils_enable_tests pytest pkg_postinst() { - elog elog "This is experimental software." - elog "The API's it installs should be considered unstable" + elog "The APIs it installs should be considered unstable" elog "and are subject to change." elog elog "Please file any enhancement requests, or bugs" elog "at https://github.com/dol-sen/pyGPG/issues" elog "I am also on IRC @ #gentoo-ci of the Libera.Chat network" elog - ewarn "There may be some python 3 compatibility issues still." + ewarn "There may be some Python 3 compatibility issues still." ewarn "Please help debug/fix/report them in github or bugzilla." }