From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
Date: Wed, 29 Jun 2022 09:08:01 +0000 (UTC) [thread overview]
Message-ID: <1656493672.20d5319d31378762c32b0b2344e24f37ffbaccd2.sam@gentoo> (raw)
commit: 20d5319d31378762c32b0b2344e24f37ffbaccd2
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 08:51:25 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 09:07:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20d5319d
sys-process/htop: use release tarball
Closes: https://bugs.gentoo.org/849422
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-process/htop/Manifest | 1 +
.../{htop-9999.ebuild => htop-3.2.1-r1.ebuild} | 42 +++++++++-------------
sys-process/htop/htop-9999.ebuild | 42 +++++++++-------------
3 files changed, 35 insertions(+), 50 deletions(-)
diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index bf26ca15fa8c..a84a0344d1f4 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,3 +1,4 @@
DIST htop-3.1.2.tar.gz 387656 BLAKE2B a9682b6f3475fbae6ab7fd57330271190ec32267c5a8f2aac845cd18c566eaa9beed642c1e67fbc9606f120df600c27ed2ef0480a29ef304875a99898c1f10e4 SHA512 7e08b820042e480ca61137ff24b468804b49b95c1bbedaf82029dd79d29c2c541c5211284ec075692203788bbb868a9d4326ffd24c68419e22eec13ae5012700
DIST htop-3.2.0.tar.gz 393712 BLAKE2B fff50fce1dd58d5738ca4a75a8b4078aa34e9544798c81bb18a2674823ab13a93ecec8c00d034704ecaab6a871efa2b021550dc1f0a03aa86f638c28e84f769e SHA512 174eaa7333fa60e40f67148560c53125e7aaf46a48e7f3ecfa2daa68553c94b3d076d03320afd479dcee07e739c0ff286a81b67cbc994782c33e798d3ed4605c
DIST htop-3.2.1.tar.gz 397632 BLAKE2B 301bc421b3ff8136a70603c523dd719d38703288114712a6e178c1a348b1bc9b9d578cdf3cf8fe99a9bcd2d5721cd2a10caeeeb4614b24c4f20a8e103c37d236 SHA512 d7b76e28ee870ac572ba1d9606dec6f9475346a00e599ca15838017c97683f1fc1be40417b9c1e76128cacc8a60ff9ba88c6b237be1835d309f98329b25644fc
+DIST htop-3.2.1.tar.xz 406048 BLAKE2B 7addefca7de8f0867220e6415f4585f7e6ecf655d6245e4a8e120552ac738544fde1c2d8e24ce1139209caad23994316e8be9611f6ed0253d60547158d17ff24 SHA512 f412c10ebdec4fb026fb93a79a9b0b84612ad5a0d28e37f06713e6c895f70e92cbd09a8737d04f3d51102295d7a419eb2c3ec3907b96f553fda8ff3d1a2142b6
diff --git a/sys-process/htop/htop-9999.ebuild b/sys-process/htop/htop-3.2.1-r1.ebuild
similarity index 73%
copy from sys-process/htop/htop-9999.ebuild
copy to sys-process/htop/htop-3.2.1-r1.ebuild
index f8aa53177141..76b7ce3cb327 100644
--- a/sys-process/htop/htop-9999.ebuild
+++ b/sys-process/htop/htop-3.2.1-r1.ebuild
@@ -3,25 +3,26 @@
EAPI=8
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
-inherit autotools fcaps linux-info python-any-r1 xdg-utils
+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
- inherit git-r3
EGIT_REPO_URI="https://github.com/htop-dev/htop.git"
+ inherit autotools git-r3
else
- SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+ 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"
-BDEPEND="virtual/pkgconfig"
RDEPEND="
sys-libs/ncurses:=[unicode(+)?]
hwloc? ( sys-apps/hwloc:= )
@@ -35,21 +36,15 @@ RDEPEND="
lm-sensors? ( sys-apps/lm-sensors )
)
"
-DEPEND="${RDEPEND}
- ${PYTHON_DEPS}"
+DEPEND="${RDEPEND}"
+BDEPEND="${PYTHON_DEPS}
+ virtual/pkgconfig"
DOCS=( ChangeLog README )
CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-S="${WORKDIR}/${P/_}"
-
pkg_setup() {
- if ! has_version sys-process/lsof ; then
- ewarn "To use lsof features in htop (what processes are accessing"
- ewarn "what files), you must have sys-process/lsof installed."
- fi
-
python-any-r1_pkg_setup
linux-info_pkg_setup
}
@@ -57,12 +52,15 @@ pkg_setup() {
src_prepare() {
default
- eautoreconf
+ if [[ ${PV} == 9999 ]] ; then
+ eautoreconf
+ fi
}
src_configure() {
if [[ ${CBUILD} != ${CHOST} ]] ; then
- export ac_cv_file__proc_{meminfo,stat}=yes #328971
+ # bug #328971
+ export ac_cv_file__proc_{meminfo,stat}=yes
fi
local myeconfargs=(
@@ -97,17 +95,11 @@ src_configure() {
)
fi
- econf ${myeconfargs[@]}
+ econf "${myeconfargs[@]}"
}
pkg_postinst() {
- xdg_desktop_database_update
- xdg_icon_cache_update
-
- fcaps cap_sys_ptrace /usr/bin/${PN}
-}
+ xdg_pkg_postinst
-pkg_postrm() {
- xdg_desktop_database_update
- xdg_icon_cache_update
+ optfeature "Viewing processes accessing certain files" sys-process/lsof
}
diff --git a/sys-process/htop/htop-9999.ebuild b/sys-process/htop/htop-9999.ebuild
index f8aa53177141..76b7ce3cb327 100644
--- a/sys-process/htop/htop-9999.ebuild
+++ b/sys-process/htop/htop-9999.ebuild
@@ -3,25 +3,26 @@
EAPI=8
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
-inherit autotools fcaps linux-info python-any-r1 xdg-utils
+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
- inherit git-r3
EGIT_REPO_URI="https://github.com/htop-dev/htop.git"
+ inherit autotools git-r3
else
- SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+ 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"
-BDEPEND="virtual/pkgconfig"
RDEPEND="
sys-libs/ncurses:=[unicode(+)?]
hwloc? ( sys-apps/hwloc:= )
@@ -35,21 +36,15 @@ RDEPEND="
lm-sensors? ( sys-apps/lm-sensors )
)
"
-DEPEND="${RDEPEND}
- ${PYTHON_DEPS}"
+DEPEND="${RDEPEND}"
+BDEPEND="${PYTHON_DEPS}
+ virtual/pkgconfig"
DOCS=( ChangeLog README )
CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-S="${WORKDIR}/${P/_}"
-
pkg_setup() {
- if ! has_version sys-process/lsof ; then
- ewarn "To use lsof features in htop (what processes are accessing"
- ewarn "what files), you must have sys-process/lsof installed."
- fi
-
python-any-r1_pkg_setup
linux-info_pkg_setup
}
@@ -57,12 +52,15 @@ pkg_setup() {
src_prepare() {
default
- eautoreconf
+ if [[ ${PV} == 9999 ]] ; then
+ eautoreconf
+ fi
}
src_configure() {
if [[ ${CBUILD} != ${CHOST} ]] ; then
- export ac_cv_file__proc_{meminfo,stat}=yes #328971
+ # bug #328971
+ export ac_cv_file__proc_{meminfo,stat}=yes
fi
local myeconfargs=(
@@ -97,17 +95,11 @@ src_configure() {
)
fi
- econf ${myeconfargs[@]}
+ econf "${myeconfargs[@]}"
}
pkg_postinst() {
- xdg_desktop_database_update
- xdg_icon_cache_update
-
- fcaps cap_sys_ptrace /usr/bin/${PN}
-}
+ xdg_pkg_postinst
-pkg_postrm() {
- xdg_desktop_database_update
- xdg_icon_cache_update
+ optfeature "Viewing processes accessing certain files" sys-process/lsof
}
next reply other threads:[~2022-06-29 9:08 UTC|newest]
Thread overview: 138+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-29 9:08 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-12 20:12 [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/ Sam James
2025-03-10 5:06 Sam James
2024-03-19 3:42 Ionen Wolkens
2024-03-02 16:27 Arthur Zamarin
2024-02-18 20:02 Arthur Zamarin
2024-02-18 19:57 Arthur Zamarin
2024-02-18 19:57 Arthur Zamarin
2024-02-18 19:57 Arthur Zamarin
2024-02-18 19:57 Arthur Zamarin
2024-02-18 13:31 Sam James
2023-12-28 4:04 Sam James
2023-12-18 7:10 Sam James
2023-03-10 8:21 Arthur Zamarin
2023-03-10 8:08 Sam James
2023-03-10 7:44 Arthur Zamarin
2023-03-10 7:44 Arthur Zamarin
2023-03-10 7:44 Arthur Zamarin
2023-03-10 7:44 Arthur Zamarin
2023-03-10 7:44 Arthur Zamarin
2023-03-10 7:44 Arthur Zamarin
2023-02-05 20:00 Sam James
2023-02-04 23:05 Sam James
2022-12-26 8:35 Sam James
2022-11-18 7:49 Arthur Zamarin
2022-09-23 2:09 Sam James
2022-09-04 10:50 Agostino Sarubbo
2022-09-03 21:44 Jakov Smolić
2022-09-03 21:44 Jakov Smolić
2022-09-03 21:30 Jakov Smolić
2022-09-03 21:28 Sam James
2022-09-03 21:28 Sam James
2022-09-03 21:28 Sam James
2022-08-09 20:06 Sam James
2022-07-29 10:26 Arthur Zamarin
2022-07-20 13:45 Agostino Sarubbo
2022-07-20 13:41 Agostino Sarubbo
2022-07-20 2:45 Sam James
2022-07-20 2:45 Sam James
2022-07-20 2:45 Sam James
2022-07-20 2:45 Sam James
2022-07-20 2:45 Sam James
2022-06-29 7:26 Sam James
2022-06-08 7:27 Lars Wendler
2022-06-08 7:27 Lars Wendler
2022-06-03 2:38 Sam James
2022-05-21 8:35 Lars Wendler
2022-05-19 7:28 WANG Xuerui
2022-05-02 7:07 Lars Wendler
2022-05-02 7:07 Lars Wendler
2022-01-14 14:45 Arthur Zamarin
2022-01-14 14:41 Arthur Zamarin
2022-01-14 13:55 Arthur Zamarin
2022-01-14 13:25 Arthur Zamarin
2022-01-14 13:23 Arthur Zamarin
2022-01-14 10:47 Sam James
2022-01-14 9:45 Jakov Smolić
2022-01-14 9:45 Jakov Smolić
2022-01-04 10:30 David Seifert
2022-01-04 3:29 Sam James
2021-12-30 13:21 Christian Ruppert
2021-11-30 7:10 Lars Wendler
2021-11-30 7:10 Lars Wendler
2021-11-03 21:20 Sam James
2021-10-29 22:44 Sam James
2021-10-14 23:22 Lars Wendler
2021-09-21 7:13 Lars Wendler
2021-09-06 6:07 Lars Wendler
2021-09-05 20:58 Sam James
2021-08-29 14:31 Lars Wendler
2021-08-11 2:05 Sam James
2021-08-11 2:05 Sam James
2021-07-17 21:30 David Seifert
2021-05-04 19:13 Sam James
2021-05-01 14:06 Sam James
2021-04-30 23:39 Sam James
2021-04-30 23:37 Sam James
2021-04-30 15:59 Sergei Trofimovich
2021-04-29 14:19 Sam James
2021-04-29 14:19 Sam James
2021-01-11 19:56 Lars Wendler
2021-01-11 19:56 Lars Wendler
2020-12-22 11:43 Lars Wendler
2020-12-21 9:36 Sergei Trofimovich
2020-12-15 10:30 Sam James
2020-12-13 0:31 Sam James
2020-12-07 13:18 Lars Wendler
2020-12-04 18:37 Sergei Trofimovich
2020-12-03 4:23 Sam James
2020-12-02 22:39 Sam James
2020-12-02 22:00 Sam James
2020-12-02 3:06 Thomas Deutschmann
2020-09-15 9:45 Lars Wendler
2020-09-15 9:45 Lars Wendler
2020-09-14 6:28 Lars Wendler
2020-09-03 11:11 Lars Wendler
2020-08-27 11:48 Thomas Deutschmann
2020-04-19 2:35 Craig Andrews
2020-02-10 13:26 Michał Górny
2019-10-31 22:48 Göktürk Yüksek
2019-07-25 14:57 Lars Wendler
2018-11-27 9:58 Mart Raudsepp
2018-10-17 9:53 Mikle Kolyada
2018-10-15 18:43 Sergei Trofimovich
2018-10-14 9:14 Sergei Trofimovich
2018-10-14 8:59 Sergei Trofimovich
2018-10-13 16:14 Sergei Trofimovich
2018-10-13 6:56 Tobias Klausmann
2018-10-12 19:08 Sergei Trofimovich
2018-10-10 13:31 Mikle Kolyada
2018-10-10 3:01 Thomas Deutschmann
2018-10-09 13:22 Lars Wendler
2018-07-24 8:45 Lars Wendler
2018-07-24 8:23 Lars Wendler
2018-07-24 8:17 Michał Górny
2018-06-08 20:45 Mikle Kolyada
2018-04-11 8:19 Lars Wendler
2018-04-09 15:23 Lars Wendler
2018-03-26 13:26 Lars Wendler
2018-03-26 13:26 Lars Wendler
2018-03-02 7:46 Lars Wendler
2017-12-24 13:56 Patrice Clement
2017-02-24 22:11 Michael Weber
2017-02-03 21:59 Lars Wendler
2017-02-03 21:44 Robin H. Johnson
2017-01-15 0:34 Jeroen Roovers
2016-12-24 10:25 Agostino Sarubbo
2016-12-19 15:12 Agostino Sarubbo
2016-12-19 14:35 Agostino Sarubbo
2016-12-19 11:07 Tobias Klausmann
2016-12-18 15:44 Agostino Sarubbo
2016-06-25 13:47 Lars Wendler
2016-03-08 8:04 Lars Wendler
2016-03-07 15:09 Lars Wendler
2016-03-07 15:09 Lars Wendler
2016-02-16 0:14 Stephen Klimaszewski
2015-09-10 8:39 Christian Ruppert
2015-08-16 10:31 Justin Lecher
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1656493672.20d5319d31378762c32b0b2344e24f37ffbaccd2.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox