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 10CE11396D9 for ; Fri, 27 Oct 2017 23:08:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76EFD2BC005; Fri, 27 Oct 2017 23:08:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 58FF62BC005 for ; Fri, 27 Oct 2017 23:08:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8ECFB33D3CE for ; Fri, 27 Oct 2017 23:08:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50BDD31C for ; Fri, 27 Oct 2017 23:08:25 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1509145690.7b2f7f5f9db42058b76e155ab3e87d36c86062ed.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/gentoo-keys/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/gentoo-keys/gentoo-keys-201607021514-r1.ebuild X-VCS-Directories: app-crypt/gentoo-keys/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 7b2f7f5f9db42058b76e155ab3e87d36c86062ed X-VCS-Branch: master Date: Fri, 27 Oct 2017 23:08:25 +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: e108cb8b-bdda-4c39-866c-2f0f35eb1049 X-Archives-Hash: 6d2012fbd05f68493f2d14d03e78094a commit: 7b2f7f5f9db42058b76e155ab3e87d36c86062ed Author: charIes17 arcor de> AuthorDate: Fri Aug 4 12:03:18 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Fri Oct 27 23:08:10 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b2f7f5f app-crypt/gentoo-keys: bump to EAPI 6. Package-Manager: Portage-2.3.6, Repoman-2.3.1 Closes: https://bugs.gentoo.org/566782 Closes: https://github.com/gentoo/gentoo/pull/5294 .../gentoo-keys/gentoo-keys-201607021514-r1.ebuild | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/app-crypt/gentoo-keys/gentoo-keys-201607021514-r1.ebuild b/app-crypt/gentoo-keys/gentoo-keys-201607021514-r1.ebuild new file mode 100644 index 00000000000..111551ffeb5 --- /dev/null +++ b/app-crypt/gentoo-keys/gentoo-keys-201607021514-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 2014-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +DESCRIPTION="A Openpgp/gpg keyring of official Gentoo release media gpg keys" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Gentoo-keys" +SRC_URI="https://dev.gentoo.org/~dolsen/releases/keyrings/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc64 ~ppc ~sparc ~x86 ~arm64 ~x86-fbsd ~amd64-fbsd ~m68k ~mips ~s390 ~sh" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}" + +src_install(){ + insinto /var/lib/gentoo/gkeys/keyrings + doins -r gentoo + fperms -R 700 /var/lib/gentoo/gkeys/keyrings/gentoo/release/ +}