diff options
author | James Le Cuirot <chewi@gentoo.org> | 2023-09-16 14:09:52 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2023-09-16 14:10:39 +0100 |
commit | 547998220914f0d2d7bbf9b4e0ae2335c7deb6c4 (patch) | |
tree | de810cd7c4bd9077e7cb07d0c9507f207673bc34 /sys-fs/safecopy/safecopy-1.7.ebuild | |
parent | profiles: drop obsolete masks (diff) | |
download | gentoo-547998220914f0d2d7bbf9b4e0ae2335c7deb6c4.tar.gz gentoo-547998220914f0d2d7bbf9b4e0ae2335c7deb6c4.tar.bz2 gentoo-547998220914f0d2d7bbf9b4e0ae2335c7deb6c4.zip |
sys-fs/safecopy: Fix test issues, EAPI 8
Closes: https://bugs.gentoo.org/838091
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'sys-fs/safecopy/safecopy-1.7.ebuild')
-rw-r--r-- | sys-fs/safecopy/safecopy-1.7.ebuild | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/sys-fs/safecopy/safecopy-1.7.ebuild b/sys-fs/safecopy/safecopy-1.7.ebuild deleted file mode 100644 index ea11400db323..000000000000 --- a/sys-fs/safecopy/safecopy-1.7.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Tool for fault-tolerant data recovery from damaged (io-errors) devices or files" -HOMEPAGE="http://safecopy.sourceforge.net" -SRC_URI="mirror://sourceforge/safecopy/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DOCS=( README ) - -src_configure() { - econf - cd simulator || die - use test && econf -} - -src_compile() { - emake - use test && emake -C simulator -} - -src_test() { - cd test || die - ./test.sh || die -} |