commit: 2d724e68ab06ee159f5f3221537f790f97913a0b Author: Andre <openrc <AT> posteo <DOT> de> AuthorDate: Sat Mar 1 13:44:31 2025 +0000 Commit: Andre <openrc <AT> posteo <DOT> de> CommitDate: Sat Mar 1 13:44:31 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2d724e68
sys-apps/flashprog: add 1.3 Signed-off-by: Andre <openrc <AT> posteo.de> sys-apps/flashprog/Manifest | 1 + sys-apps/flashprog/flashprog-1.3.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/sys-apps/flashprog/Manifest b/sys-apps/flashprog/Manifest index f8c98a146..463603ca5 100644 --- a/sys-apps/flashprog/Manifest +++ b/sys-apps/flashprog/Manifest @@ -1 +1,2 @@ DIST flashprog-1.2.tar.gz 499136 BLAKE2B 1009aea4fe1686b3e88d146fef926e3b045975852eb8bd4a1e31d3d8497fd1bb6a9773ea3be91ed9ef2f0abeb631c43f62a25e1930f2e0f13a6044aee70f3cdb SHA512 4a9d6dc6ea5b66f2c96f855bef7401df3506dd067d0becdea08568fd2081bc91dfa371162f9fe7c4105abbaaab770b65d02b4ddec81bec1909a947811efa6174 +DIST flashprog-1.3.tar.gz 507882 BLAKE2B 6ce38287b8cfc754b26647c846a56a9d89ebe14221f4875cdc826af0e8901232a5a54ca4674d276d4db7b51194b7ae06251d099f18c5a2465bdf664582fdae31 SHA512 e7ee58c072a4dceebb5e243ffaef3036c17b08e3e20eead35bc3d217866ec2a1a5bab458735d1be1766f8ab749af5a9c4e8ed0c09674908294b5f4b1e39f3672 diff --git a/sys-apps/flashprog/flashprog-1.3.ebuild b/sys-apps/flashprog/flashprog-1.3.ebuild new file mode 100644 index 000000000..3e9d1b40a --- /dev/null +++ b/sys-apps/flashprog/flashprog-1.3.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 +}