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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 61771138334 for ; Thu, 2 Aug 2018 15:15:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9D15E083D; Thu, 2 Aug 2018 15:15:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BBBDDE083D for ; Thu, 2 Aug 2018 15:15:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7DF49335CC9 for ; Thu, 2 Aug 2018 15:15:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 913E6348 for ; Thu, 2 Aug 2018 15:15:17 +0000 (UTC) From: "Michał Górny" 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" Message-ID: <1533222912.d3164b4b7e87340229b8b4bb23733291f65ad984.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/glep63-check/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/glep63-check/Manifest app-crypt/glep63-check/glep63-check-5.ebuild X-VCS-Directories: app-crypt/glep63-check/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d3164b4b7e87340229b8b4bb23733291f65ad984 X-VCS-Branch: master Date: Thu, 2 Aug 2018 15:15:17 +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-Archives-Salt: 9c9e4ec1-cb5a-4564-849f-7a1dea6edfb9 X-Archives-Hash: 8eb4e520a216eddeb1d1c048bd1b56cb commit: d3164b4b7e87340229b8b4bb23733291f65ad984 Author: Michał Górny gentoo org> AuthorDate: Thu Aug 2 15:14:20 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Aug 2 15:15:12 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3164b4b app-crypt/glep63-check: Bump to v5, now with tests! app-crypt/glep63-check/Manifest | 1 + app-crypt/glep63-check/glep63-check-5.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/app-crypt/glep63-check/Manifest b/app-crypt/glep63-check/Manifest index 1f3b875b029..376cc055415 100644 --- a/app-crypt/glep63-check/Manifest +++ b/app-crypt/glep63-check/Manifest @@ -1 +1,2 @@ DIST glep63-check-4.tar.gz 5898 BLAKE2B b28dd0843138bb54c81142959a28b121b043b7da4e3dc797b8ad3ebabfde6f850a11c40e94e3d20b9cf152b2138165733ba36754859081eb59bbbd5e99f2b98e SHA512 65a40ce097937df0517f86d1b32fd47e23d39abc6a49fa45dfa9075e7f7a163c2c2e25f6e39538a5e47c295bfdb2390bc4909e14a06b21f2bf14edf8cf43f199 +DIST glep63-check-5.tar.gz 61234 BLAKE2B 15b2e38e00ec044c963f4aaea9be4bf0659441a94ba9958aa1e70ecd425cc9f3dada31ab194092abdf9953ca10d711aa0cdd615365a6e78761b07fb0739fadd5 SHA512 d79a2e2a92dc4f123fbfa73df501fb9a0829a879e0d3674e8d6a854b8a2b437698b77793d92c6862d646a58ef302638cb9e5d152f60e634c9ec06e804dea79b4 diff --git a/app-crypt/glep63-check/glep63-check-5.ebuild b/app-crypt/glep63-check/glep63-check-5.ebuild new file mode 100644 index 00000000000..b1ee063dd91 --- /dev/null +++ b/app-crypt/glep63-check/glep63-check-5.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6,7} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="GLEP 63 compliance checker for OpenPGP keys" +HOMEPAGE="https://github.com/mgorny/glep63-check/" +SRC_URI="https://github.com/mgorny/glep63-check/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" +RESTRICT="!test? ( test )" + +RDEPEND="app-crypt/gnupg" +DEPEND="test? ( ${RDEPEND} )" + +python_test() { + "${EPYTHON}" -m unittest -v || die "Tests fail with ${EPYTHON}" +}