diff options
author | Petr Vaněk <arkamar@gentoo.org> | 2024-09-18 18:42:56 +0200 |
---|---|---|
committer | Petr Vaněk <arkamar@gentoo.org> | 2024-09-18 19:37:22 +0200 |
commit | a3be1ea00c80232d7338aa41c29b7297c86de71b (patch) | |
tree | a3099010295ea29f9409e2a681bd1d81987bd77c /sys-block | |
parent | sys-apps/usermode-utilities: update HOMEPAGE, SRC_URI (diff) | |
download | gentoo-a3be1ea00c80232d7338aa41c29b7297c86de71b.tar.gz gentoo-a3be1ea00c80232d7338aa41c29b7297c86de71b.tar.bz2 gentoo-a3be1ea00c80232d7338aa41c29b7297c86de71b.zip |
sys-block/f3: drop 8.0
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'sys-block')
-rw-r--r-- | sys-block/f3/f3-8.0.ebuild | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/sys-block/f3/f3-8.0.ebuild b/sys-block/f3/f3-8.0.ebuild deleted file mode 100644 index 88a46210bc81..000000000000 --- a/sys-block/f3/f3-8.0.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="Utilities to detect broken or counterfeit flash storage" -HOMEPAGE="http://oss.digirati.com.br/f3/ https://github.com/AltraMayor/f3" - -PATCHES=( -) - -if [[ ${PV} == "9999" ]]; then - EGIT_REPO_URI="https://github.com/AltraMayor/${PN}.git" - - PATCHES=() - - inherit git-r3 -else - SRC_URI="https://github.com/AltraMayor/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm ~arm64 x86" -fi - -LICENSE="GPL-3+" -SLOT="0" - -IUSE="extra" - -RDEPEND="elibc_musl? ( sys-libs/argp-standalone )" -DEPEND="${RDEPEND} - extra? ( - sys-block/parted - virtual/udev - )" - -DOCS=( changelog README.rst ) - -src_prepare() { - default - - sed -i \ - -e 's:-ggdb::' \ - -e 's:^PREFIX =:PREFIX ?=:' \ - Makefile || die - - # bug #715518 - use elibc_musl && append-ldflags -largp - - tc-export CC -} - -src_compile() { - default - - if use extra; then - emake V=1 extra - fi -} - -src_install() { - emake PREFIX="${ED}/usr" install - - if use extra; then - emake PREFIX="${ED}/usr" install-extra - fi - - einstalldocs -} |