From 23f401ff7e968763d03a6358d8639e0af001cad7 Mon Sep 17 00:00:00 2001 From: kuratsune Date: Sun, 3 Jun 2018 10:52:26 +0200 Subject: [PATCH] Fixed repo URI in nvramtool ebuild. Tested and working. --- sys-apps/nvramtool/Manifest | 2 +- sys-apps/nvramtool/nvramtool-9999.ebuild | 22 +++++++++------------- 2 files changed, 10 insertions(+), 14 deletions(-) diff --git a/sys-apps/nvramtool/Manifest b/sys-apps/nvramtool/Manifest index 52ebf78..1be51a3 100644 --- a/sys-apps/nvramtool/Manifest +++ b/sys-apps/nvramtool/Manifest @@ -1 +1 @@ -EBUILD nvramtool-9999.ebuild 580 BLAKE2B 9bde9847ce69c744bb8f6f2cf967db0d90d3863faff3dbb65910b8e63bc81c01719167f28487665e3b9c17cb8f34d3b78206a338a12e957c32a3a3eb7d52a0b6 SHA512 d1d87f3971d9408e779164a299b912a43999691ed4cfae4b4e49da93d4e872cbf82c7217841e48981b30418a0bbe2b1fd0ffa26f6ed99025beb800e5945109da +EBUILD nvramtool-9999.ebuild 599 BLAKE2B d5f190c376a4301db9ac9b08305c27b085679a6864fec7ea0ef8eb46fa72e172941b67bed2de569f7ddbdd970b6efb206f5a9dc359499617817f94d4870b5412 SHA512 d490f4f1ee1ad513aea05e2d9ab37dfc8c0a9b1f9aa20709131ab658510de8ce3714545d3547eb351e08d24545ccddd2a72e14157ec03d4a5728a92a4660873b diff --git a/sys-apps/nvramtool/nvramtool-9999.ebuild b/sys-apps/nvramtool/nvramtool-9999.ebuild index b9ac360..c1c8818 100644 --- a/sys-apps/nvramtool/nvramtool-9999.ebuild +++ b/sys-apps/nvramtool/nvramtool-9999.ebuild @@ -2,26 +2,22 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -inherit subversion eutils +EAPI=6 -DESCRIPTION="nvramtool is a utility for reading/writing/displaying LinuxBIOS parameters." +inherit git-r3 + +DESCRIPTION="nvramtool is a utility for reading/writing/displaying Coreboot parameters." HOMEPAGE="http://www.coreboot.org/Nvramtool" LICENSE="GPL-2" SLOT="0" -KEYWORDS="" -IUSE="" +KEYWORDS="~x86 ~amd64" -SRC_URI="" -ESVN_REPO_URI="svn://coreboot.org/repos/trunk/util/${PN}" +EGIT_REPO_URI="https://review.coreboot.org/coreboot.git" +EGIT_BRANCH="master" -S=${WORKDIR}/${PN} - -src_install() { - dobin ${PN} || die "dobin failed" - doman ${PN}.1 -} +S=${WORKDIR}/${P}/util/${PN} pkg_postinst() { - ewarn "The machine must be booted with LinuxBIOS to use this program." + ewarn "The machine must be booted with Coreboot or derivatives to use this program. /dev/mem device should also exists. (enabled in kernel)" }