diff options
author | Aaron Bauman <bman@gentoo.org> | 2020-09-26 15:04:13 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-09-26 15:40:06 -0400 |
commit | dc8d0d637c9660f958fe2e8e70ddadd62474c20a (patch) | |
tree | 839eb435db9eaa5384ed780d6c5bb4649cc97ca5 /app-misc/abduco | |
parent | app-laptop/tpacpi-bat: drop old EAPI=5 (diff) | |
download | gentoo-dc8d0d637c9660f958fe2e8e70ddadd62474c20a.tar.gz gentoo-dc8d0d637c9660f958fe2e8e70ddadd62474c20a.tar.bz2 gentoo-dc8d0d637c9660f958fe2e8e70ddadd62474c20a.zip |
app-misc/abduco: drop old EAPI=5
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-misc/abduco')
-rw-r--r-- | app-misc/abduco/Manifest | 1 | ||||
-rw-r--r-- | app-misc/abduco/abduco-0.5.ebuild | 49 |
2 files changed, 0 insertions, 50 deletions
diff --git a/app-misc/abduco/Manifest b/app-misc/abduco/Manifest index c57588341d65..b32b69e30d85 100644 --- a/app-misc/abduco/Manifest +++ b/app-misc/abduco/Manifest @@ -1,2 +1 @@ -DIST abduco-0.5.tar.gz 15790 BLAKE2B 6541c758aa5b2ece2f4eae744e9d9da7f8b4cf0d1e39546708e73631688d31c71c74af31e65cdb26bb046b6bf7f595409c0a71027c681fba1d4b3997020b1428 SHA512 e0772b8eecc1fb6f16c7516a6956825b9bda4149f00f56b34e68ec3544f74c2270ba8cc2642599de26ae34d11ed78b8bba70497bfc9a79f3008f50de02ce49d8 DIST abduco-0.6.tar.gz 15829 BLAKE2B fd6c1670e0a4cf95bfaa00734b981c23877b79ffc14dadae8c84fb198cb4f585cdacf874e127190b6f8c8b784cdfa403a8be0f4cae8bc442d43723967f4525d7 SHA512 3b70a5cc10f0a2743dcbdf6eebdcfcee0e4f4ff8c6ce0bf0aa9f55c3fa85ab43aa659997735e063eab36aba69f91be7bb5519f3f632bff1b9098f5179165c1f2 diff --git a/app-misc/abduco/abduco-0.5.ebuild b/app-misc/abduco/abduco-0.5.ebuild deleted file mode 100644 index 6c804288e637..000000000000 --- a/app-misc/abduco/abduco-0.5.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils savedconfig toolchain-funcs - -DESCRIPTION="lightweight session manager with {de,at}tach support" -HOMEPAGE="https://www.brain-dump.org/projects/abduco/" -SRC_URI="https://www.brain-dump.org/projects/${PN}/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="" - -DEPEND="" -RDEPEND="" - -src_prepare() { - sed -e 's:^PREFIX.*:PREFIX = /usr:' \ - -e 's/-Os//' \ - -e '/^CC/d' \ - -i config.mk || die - - sed -e "s/VERSION/${PV}/g" \ - -i ${PN}.1 || die - - sed -e '/@echo CC/d' \ - -e 's|@${CC}|$(CC)|g' \ - -i Makefile || die - - restore_config config.def.h - epatch_user - - tc-export CC -} - -src_test() { - ./testsuite.sh || die -} - -src_install() { - dobin ${PN} - dodoc README.md - doman ${PN}.1 - - save_config config.def.h -} |