commit: 5ac3a088455ac7a6161909b80d8f6b1423999d61 Author: Andre <openrc <AT> posteo <DOT> de> AuthorDate: Fri Mar 14 20:52:49 2025 +0000 Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me> CommitDate: Fri Mar 14 20:53:49 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5ac3a088
sys-apps/flashprog: add 1.4 Signed-off-by: Andre <openrc <AT> posteo.de> sys-apps/flashprog/Manifest | 1 + sys-apps/flashprog/flashprog-1.4.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/sys-apps/flashprog/Manifest b/sys-apps/flashprog/Manifest index 463603ca5..97e008d79 100644 --- a/sys-apps/flashprog/Manifest +++ b/sys-apps/flashprog/Manifest @@ -1,2 +1,3 @@ DIST flashprog-1.2.tar.gz 499136 BLAKE2B 1009aea4fe1686b3e88d146fef926e3b045975852eb8bd4a1e31d3d8497fd1bb6a9773ea3be91ed9ef2f0abeb631c43f62a25e1930f2e0f13a6044aee70f3cdb SHA512 4a9d6dc6ea5b66f2c96f855bef7401df3506dd067d0becdea08568fd2081bc91dfa371162f9fe7c4105abbaaab770b65d02b4ddec81bec1909a947811efa6174 DIST flashprog-1.3.tar.gz 507882 BLAKE2B 6ce38287b8cfc754b26647c846a56a9d89ebe14221f4875cdc826af0e8901232a5a54ca4674d276d4db7b51194b7ae06251d099f18c5a2465bdf664582fdae31 SHA512 e7ee58c072a4dceebb5e243ffaef3036c17b08e3e20eead35bc3d217866ec2a1a5bab458735d1be1766f8ab749af5a9c4e8ed0c09674908294b5f4b1e39f3672 +DIST flashprog-1.4.tar.gz 514791 BLAKE2B ccea3251a3a06d1029252d5a67dc4d2c18fa7e5c533ecf5ad2e829951dbf25fb9ceec667c59aba2ffe63ff3cafdb19785ff1e06acfcf563abfc299e2a6b5af68 SHA512 962a249e565d653d494645cc67ca4ae30ab0eb616e3a8550d472cd57d4808453e260d9d5e91f26d54b83230cd5d498bce50b71364363039a1c305fa1964d27f5 diff --git a/sys-apps/flashprog/flashprog-1.4.ebuild b/sys-apps/flashprog/flashprog-1.4.ebuild new file mode 100644 index 000000000..3ea5077a8 --- /dev/null +++ b/sys-apps/flashprog/flashprog-1.4.ebuild @@ -0,0 +1,21 @@ +# Copyright 2024-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 +EAPI=8 +DESCRIPTION="Utility for identifying, reading, writing, verifying and erasing flash chips" +HOMEPAGE="https://flashprog.org/" +SRC_URI="https://github.com/SourceArcade/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${PN}-${PV}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +RDEPEND=">=dev-libs/libusb-1.0.26 +>=dev-embedded/libjaylink-0.3.1 +>=dev-embedded/libftdi-1.5-r7 +>=dev-libs/libgpiod-1.6.4 +>=sys-apps/pciutils-3.13.0" +DEPEND="${RDEPEND}" +src_compile() { + emake WARNERROR=no +} +src_install() { + emake DESTDIR="${D}" PREFIX="/usr" install +}
