diff options
author | Sam James <sam@gentoo.org> | 2022-04-17 18:07:22 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-04-17 18:12:10 +0100 |
commit | 89547e8b6ce888405cade208a7810ff5f85f56b1 (patch) | |
tree | 81fc147ea9ee0c17d4eefb4702e19b2426d8cfb3 /sys-process | |
parent | dev-lang/go: stabilize 1.17.9 for amd64 (diff) | |
download | gentoo-89547e8b6ce888405cade208a7810ff5f85f56b1.tar.gz gentoo-89547e8b6ce888405cade208a7810ff5f85f56b1.tar.bz2 gentoo-89547e8b6ce888405cade208a7810ff5f85f56b1.zip |
sys-process/atop: drop 2.6.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/atop/Manifest | 1 | ||||
-rw-r--r-- | sys-process/atop/atop-2.6.0.ebuild | 68 |
2 files changed, 0 insertions, 69 deletions
diff --git a/sys-process/atop/Manifest b/sys-process/atop/Manifest index 0629516a4ea7..9c23aa0cbdee 100644 --- a/sys-process/atop/Manifest +++ b/sys-process/atop/Manifest @@ -1,3 +1,2 @@ -DIST atop-2.6.0.tar.gz 242323 BLAKE2B 8cf39c4b18994de26188ad5e19e282bc3ef7693eeff4853386f6b254d1115dbd2308eaa4c6e7620e6081d44037e6ce01356ad72ba25bcf4b1c3e7674768e5c24 SHA512 46cbc1c67ee6683be8dca79bf68d85962a119469ddce4947519cf4fe178b14d54b69451cfaa2b5c0a3f8c9bf8769de619aa5a7768eae34422688c7fc26fe0a58 DIST atop-2.7.1.tar.gz 248809 BLAKE2B 2cf1a68a7b24d76340295d9bde03a5602e9049a860468217771c696fe4b9062f2155aeefa2e3e810984780f82de6bf922bf7d6b02c7fd19194162dc70b015b81 SHA512 18f30c67d6f86b9270599317eed846c63d19e8ba6ea85bad8ec3d5ffb0489f17c75c8d8b3a14054bd14e89ed40d39e5d37bce834c7422087e6d8b86c99273a72 DIST netatop-3.1.tar.gz 22812 BLAKE2B 1b1faebf1392a57db6b4662192f90821289c8fc40c2c1ee0ad61feeeee6477c4d091744a1e82cdd987baf59f8dd71fc6d242d6dd294b8fb29b9447a9d5055996 SHA512 b12fd2287d89d3a8277f8fb540a19e6d26aa26c3f88e7ae2e6601b63f78d642e73b8d16cf351f6979ce7bbf53251b9c1faa76798a87f70cf3dcf51279eb0db68 diff --git a/sys-process/atop/atop-2.6.0.ebuild b/sys-process/atop/atop-2.6.0.ebuild deleted file mode 100644 index 593972f43deb..000000000000 --- a/sys-process/atop/atop-2.6.0.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit linux-info systemd toolchain-funcs - -DESCRIPTION="Resource-specific view of processes" -HOMEPAGE="https://www.atoptool.nl/ https://github.com/Atoptool/atop" -SRC_URI="https://github.com/Atoptool/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~mips ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux" -IUSE="" - -RDEPEND=" - sys-libs/ncurses:0= - >=sys-process/acct-6.6.4-r1 -" -DEPEND=" - ${RDEPEND} -" -BDEPEND=" - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${PN}-2.6.0-build.patch -) - -pkg_pretend() { - if use kernel_linux ; then - CONFIG_CHECK="~BSD_PROCESS_ACCT" - check_extra_config - fi -} - -src_prepare() { - default - tc-export CC PKG_CONFIG - sed -i 's: root : :' atop.cronsysv || die #191926 - # prefixify - sed -i "s:/\(usr\|etc\|var\):${EPREFIX}/\1:g" Makefile || die -} - -src_install() { - emake DESTDIR="${D}" genericinstall - - # useless -${PV} copies ? - rm "${ED}"/usr/bin/atop*-${PV} || die - - newinitd "${FILESDIR}"/${PN}.rc-r2 ${PN} - newinitd "${FILESDIR}"/atopacct.rc atopacct - - systemd_dounit "${FILESDIR}"/${PN}.service - systemd_dounit "${FILESDIR}"/atopacct.service - - dodoc atop.cronsysv AUTHOR README - - exeinto /usr/share/${PN} - doexe ${PN}.daily - - insinto /etc/default - newins ${PN}{.default,} - - keepdir /var/log/${PN} -} |