sys-apps/hashboot: Version 0.9.13.
the build was successful Details

Package-Manager: Portage-2.3.62, Repoman-2.3.11
Manifest-Sign-Key: 3555266864CA6D7FF45AA6E7CFC39497F1B26E07
This commit is contained in:
tastytea 2019-03-30 00:19:02 +01:00
parent ff8d62db14
commit a0b885bd89
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 40 additions and 4 deletions

View File

@ -1,12 +1,14 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
DIST 0.9.13.tar.gz 6726 BLAKE2B 0eaf486a2cddf9d7fdb857e2f3812c5b2af0585bb7ae3926941298ee29f58ccd44046f68fe2f84d38a08fe0fa1693ce687561ece676858523d28c394a429057a SHA512 ce90b420086439c114b31bf03c21e0065034f638b1e76592e87bad8db7d85cf0b760174baa81fcc796fbfe23faef2e614f37eccdc030f66953b9dbefb2b743b1
EBUILD hashboot-0.9.13.ebuild 699 BLAKE2B a47bba3f2506ede5241fde66104caeaa337056c302f1473666b6e5d38ef6317d22df9918f33b5f92c36d71f8ae7c246d73f4cc00cf7b2dfda50015f2fa022f6c SHA512 08e920202fb9dbc9977c2449ce2176c4c8bfe76101d07d798fb28e00565caa9f07a91d87d32fddca7f228684a32cf8181aabdace03a01ba21f44eca26122cab5
EBUILD hashboot-9999.ebuild 693 BLAKE2B ab5fbe6fd454fa345719c95d926b63122bd6fd138fab97907bc82f1aa0dbae39ee79ae0e0da03fad75116030fa03d658874069314f6c7f0e7c9d3b4bed4f3e07 SHA512 8fb5cfdab406b43fe6d63c450dc3ad1096f50948705e6fde797e51170f182cc0b34ecf3898d354d309ddca66bd9238abf75c84240384782713073d1a66d3beb2
MISC metadata.xml 564 BLAKE2B eb11f8ef0db175268688e1a31e741285d369d75e5cb7f25ce5810e9310851f42ab56dc34edf1b3b2e7726fb36f673726b554a44a112bdb33c2db8264e42e5027 SHA512 a4c10a48c0eb6258dd3e3b63c7012cf3231328029beaf1b25a9ed92b8726efabd982a7672662fc059862393c81b8435b20057d9b613fc15a0abc6802722ae7f0
-----BEGIN PGP SIGNATURE-----
iHUEAREIAB0WIQQ1VSZoZMptf/RapufPw5SX8bJuBwUCXJ6miAAKCRDPw5SX8bJu
B9W1AP9NDgT5v5BjtCIgW9lY42lhx55M9YE/QBpzrKSeeYrjrAD7B9Cp9D7R5Ck/
EqYSWWLubPUmJRFhjyQHCqBJLpAQWuA=
=GtS2
iHUEAREIAB0WIQQ1VSZoZMptf/RapufPw5SX8bJuBwUCXJ6n5gAKCRDPw5SX8bJu
BwSUAPwISpNarXYGxgF+gRgb8zX4kdYSAh66/goA7GRIbAvgjQD8CrWck0nqFA6g
1y0/LFLicgIQk2wCMBOtIrn6QAvuSYU=
=9yDJ
-----END PGP SIGNATURE-----

View File

@ -0,0 +1,34 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Check integrity of files in /boot"
HOMEPAGE="https://github.com/tastytea/hashboot/"
SRC_URI="https://github.com/tastytea/hashboot/archive/${PV}.tar.gz"
LICENSE="hug-ware"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="firmware"
RDEPEND="firmware? ( sys-apps/flashrom )"
DEPEND="app-text/asciidoc"
src_preinst() {
default
if grep -q '^rc_parallel="YES"' /etc/rc.conf; then
ewarn "hashboot does not work properly with parallel boot enabled."
fi
}
src_compile() {
./build_manpage.sh
}
src_install() {
default
dobin hashboot
newinitd init/openrc hashboot
doman ${PN}.1
}