From adb727afeb568404873e8cbc91ba93d3d49eff13 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 26 Dec 2022 14:07:48 +0000 Subject: gentoo auto-resync : 26:12:2022 - 14:07:48 --- sys-process/htop/Manifest | 1 - sys-process/htop/htop-3.2.1-r1.ebuild | 105 ---------------------------------- 2 files changed, 106 deletions(-) delete mode 100644 sys-process/htop/htop-3.2.1-r1.ebuild (limited to 'sys-process/htop') diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest index bcba4e34949b..a46adc1e2338 100644 --- a/sys-process/htop/Manifest +++ b/sys-process/htop/Manifest @@ -1,5 +1,4 @@ DIST htop-3.2.1.tar.xz 406048 BLAKE2B 7addefca7de8f0867220e6415f4585f7e6ecf655d6245e4a8e120552ac738544fde1c2d8e24ce1139209caad23994316e8be9611f6ed0253d60547158d17ff24 SHA512 f412c10ebdec4fb026fb93a79a9b0b84612ad5a0d28e37f06713e6c895f70e92cbd09a8737d04f3d51102295d7a419eb2c3ec3907b96f553fda8ff3d1a2142b6 -EBUILD htop-3.2.1-r1.ebuild 2322 BLAKE2B 1f53e9b17bc0168095ebdc6ccc44c960aa343dcd251b0b07916e9334264fec09223c5a037c7506ba4b6630df96fd11264cc796bd6a43a411b2ac7daacf9d8d80 SHA512 b8e2c71af7baebd2a49cf0af769c5e79b7a01b8d583b523e7793bb8691f2513510fb8b3a75097e45e56dc070dedd0403ce73f8d92beaa2e119e46474ceaa862b EBUILD htop-3.2.1-r2.ebuild 2565 BLAKE2B df9bc845a23d08fdc1e4fbc08a462a7133c6002e80eb0100bee52ddb51d657cb5aab50eb81a5e4d1e48e4f240d56090ff7ed0b426ae5a66955a1e29af75a134e SHA512 59f1359b925f3004391e3c0397e9e2929cf02cf459291b716669b26c4e623f6b7adba897dde701e965ef7f901e8cdcf6b7d3d5d63c9d2debf8c246f63f379ce3 EBUILD htop-9999.ebuild 2573 BLAKE2B 4c6bdc685014fd0a22a101ce58bb2fc7e3167b5840905a96c51481e780fd6d67119b727cad077ee278b6382d7d044418ceb2ef3ada99e263d2d9cc8bc440e0ea SHA512 b984d6f0be3805792f73a0edbb42a3d5f38089c908abcc81757f892acc75ee4398e54aeb70d151c3ae1d5901d425d3ee7b8be2a84b241d81759f3a9b1cd8d948 MISC metadata.xml 908 BLAKE2B ef2166ceae63ee1545ac919278b3c0e2bcbba9612d7ff6e6cac20c3d1b5981b49bb13894b8177caafcc844395ae373415a07726ad89dabc4328274eec39ae90a SHA512 8f13f80bc6bdbfbf23e7172e1872681d7f063094a68a8e773a9258e364bb947d16325cf26e5091b3b75c80b0f3b8444394535bbe409e95d7e97a733e09d5537e diff --git a/sys-process/htop/htop-3.2.1-r1.ebuild b/sys-process/htop/htop-3.2.1-r1.ebuild deleted file mode 100644 index 51aac02058d6..000000000000 --- a/sys-process/htop/htop-3.2.1-r1.ebuild +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..11} ) - -inherit linux-info optfeature python-any-r1 xdg - -DESCRIPTION="interactive process viewer" -HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop" -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/htop-dev/htop.git" - inherit autotools git-r3 -else - SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" -fi - -S="${WORKDIR}/${P/_}" - -LICENSE="BSD GPL-2+" -SLOT="0" -IUSE="caps debug delayacct hwloc lm-sensors llvm-libunwind openvz unicode unwind vserver" - -RDEPEND=" - sys-libs/ncurses:=[unicode(+)?] - hwloc? ( sys-apps/hwloc:= ) - unwind? ( - !llvm-libunwind? ( sys-libs/libunwind:= ) - llvm-libunwind? ( sys-libs/llvm-libunwind:= ) - ) - kernel_linux? ( - caps? ( sys-libs/libcap ) - delayacct? ( dev-libs/libnl:3 ) - lm-sensors? ( sys-apps/lm-sensors ) - ) -" -DEPEND="${RDEPEND}" -BDEPEND="${PYTHON_DEPS} - virtual/pkgconfig" - -DOCS=( ChangeLog README ) - -CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS" - -pkg_setup() { - python-any-r1_pkg_setup - linux-info_pkg_setup -} - -src_prepare() { - default - - if [[ ${PV} == 9999 ]] ; then - eautoreconf - fi -} - -src_configure() { - if [[ ${CBUILD} != ${CHOST} ]] ; then - # bug #328971 - export ac_cv_file__proc_{meminfo,stat}=yes - fi - - local myeconfargs=( - --enable-unicode - $(use_enable debug) - $(use_enable hwloc) - $(use_enable !hwloc affinity) - $(use_enable openvz) - $(use_enable unicode) - $(use_enable unwind) - $(use_enable vserver) - ) - - if use kernel_linux ; then - myeconfargs+=( - $(use_enable caps capabilities) - $(use_enable delayacct) - $(use_enable lm-sensors sensors) - ) - else - if use kernel_Darwin ; then - # Upstream default to checking but --enable-affinity - # overrides this. Simplest to just disable on Darwin - # given it works on BSD anyway. - myeconfargs+=( --disable-affinity ) - fi - - myeconfargs+=( - --disable-capabilities - --disable-delayacct - --disable-sensors - ) - fi - - econf "${myeconfargs[@]}" -} - -pkg_postinst() { - xdg_pkg_postinst - - optfeature "Viewing processes accessing certain files" sys-process/lsof -} -- cgit v1.2.3