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 E2DC1138334 for ; Wed, 4 Jul 2018 15:48:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91EC6E0929; Wed, 4 Jul 2018 15:48:14 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 61DB8E0929 for ; Wed, 4 Jul 2018 15:48:13 +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 E066D335C7A for ; Wed, 4 Jul 2018 15:48:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 337F4300 for ; Wed, 4 Jul 2018 15:48:09 +0000 (UTC) From: "Richard Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" Message-ID: <1530719250.3a15ff8bae4da89f049f23f88fe4a33837d2b5b2.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/mokutil/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/mokutil/Manifest sys-boot/mokutil/metadata.xml sys-boot/mokutil/mokutil-0.3.0_p20170404.ebuild X-VCS-Directories: sys-boot/mokutil/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: 3a15ff8bae4da89f049f23f88fe4a33837d2b5b2 X-VCS-Branch: master Date: Wed, 4 Jul 2018 15:48:09 +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: 38de3e44-da96-4e0a-9645-3537b5982144 X-Archives-Hash: f8f472f1888567bd99392514fb654dd7 commit: 3a15ff8bae4da89f049f23f88fe4a33837d2b5b2 Author: Zero_Chaos gentoo org> AuthorDate: Wed Jul 4 15:47:30 2018 +0000 Commit: Richard Farina gentoo org> CommitDate: Wed Jul 4 15:47:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a15ff8b sys-boot/mokutil: initial commit this is a tool that works with shim to allow secure booting with UEFI Package-Manager: Portage-2.3.41, Repoman-2.3.9 sys-boot/mokutil/Manifest | 1 + sys-boot/mokutil/metadata.xml | 11 +++++++++++ sys-boot/mokutil/mokutil-0.3.0_p20170404.ebuild | 26 +++++++++++++++++++++++++ 3 files changed, 38 insertions(+) diff --git a/sys-boot/mokutil/Manifest b/sys-boot/mokutil/Manifest new file mode 100644 index 00000000000..b9f69c820d3 --- /dev/null +++ b/sys-boot/mokutil/Manifest @@ -0,0 +1 @@ +DIST mokutil-0.3.0_p20170404.tar.gz 32590 BLAKE2B 867574b05a7a7c842869f75bd3b6a0cd0af083862ffc912b25b12fe6283946968ac6872b25a727d37185fb821871d5a2f958afddbb7e2bfefde854c6f434ab8f SHA512 ee64627089efe341bff466249a126dcdcc4a53878b17f651b17423650c3aea76d52dcae01ed689ba5bd317125dd9a669816563aa676d46d8ac36863f38f9ea16 diff --git a/sys-boot/mokutil/metadata.xml b/sys-boot/mokutil/metadata.xml new file mode 100644 index 00000000000..71aa8dfdc31 --- /dev/null +++ b/sys-boot/mokutil/metadata.xml @@ -0,0 +1,11 @@ + + + + + zerochaos@gentoo.org + Rick Farina + + + rapid7/metasploit-framework + + diff --git a/sys-boot/mokutil/mokutil-0.3.0_p20170404.ebuild b/sys-boot/mokutil/mokutil-0.3.0_p20170404.ebuild new file mode 100644 index 00000000000..d50f17eba46 --- /dev/null +++ b/sys-boot/mokutil/mokutil-0.3.0_p20170404.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools + +DESCRIPTION="The utility to manipulate machines owner keys which managed in shim" +HOMEPAGE="https://github.com/lcp/mokutil" +GIT_HASH="e19adc575c1f9d8f08b7fbc594a0887ace63f83f" +SRC_URI="https://github.com/lcp/mokutil/archive/${GIT_HASH}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-libs/openssl:= + sys-libs/efivar:=" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}-${GIT_HASH}" + +src_prepare() { + default + eautoreconf +}