public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/psmisc/
Date: Sat, 17 Jun 2017 08:50:05 +0000 (UTC)	[thread overview]
Message-ID: <1497689401.2c21e09a8d681418a39c5333481ab223e9c6d6e0.polynomial-c@gentoo> (raw)

commit:     2c21e09a8d681418a39c5333481ab223e9c6d6e0
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 17 08:49:46 2017 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sat Jun 17 08:50:01 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c21e09a

sys-process/psmisc: Bump to version 23.1

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-process/psmisc/Manifest           |  1 +
 sys-process/psmisc/psmisc-23.1.ebuild | 53 +++++++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/sys-process/psmisc/Manifest b/sys-process/psmisc/Manifest
index 810ab7740ef..cac22294283 100644
--- a/sys-process/psmisc/Manifest
+++ b/sys-process/psmisc/Manifest
@@ -1,2 +1,3 @@
 DIST psmisc-22.21.tar.gz 457702 SHA256 97323cad619210845b696d7d722c383852b2acb5c49b5b0852c4f29c77a8145a SHA512 766aeb45687090b88b17176c5117a603e83fe92a13c013aea72c8ee80048adf02e18c7daa52ddfb8b2135f7c9a1bcae38896cdfb8d0158728d85a446c5e0d5ae WHIRLPOOL cbd4af3e54ce01f43558184b57a24e44dfb6e05d8438bd11e2308ee62535bb93dc417b08e66603966cc5912d7fa88c29df1529995a42e2a8b7c3da663b01681f
 DIST psmisc-23.0.tar.xz 295128 SHA256 7553318c5ecf021d3b98de0a200761e1a5898397832499201c1aa191a053f04c SHA512 334d625202fccd741363787c3f1d750515d63e2b5322b8ada5979144c8d841f505244c569bae9b63ce332aeace41b7caacd5354014c0301b56aca720a227f10d WHIRLPOOL 160e2d3d3eaf5482d5fee7a8966cf5c2620a4cb5551a4d9b673f2decd3e39480ca3b7e74c49cf28bb285fc1e3ae34f2de9df36aef036463ee00d458f92edfd7f
+DIST psmisc-23.1.tar.xz 296136 SHA256 2e84d474cf75dfbe3ecdacfb797bbfab71a35c7c2639d1b9f6d5f18b2149ba30 SHA512 f678869ea555986a2538ada9630b74ce79304f3ee85cc9d69a3912d8d30ad491829eac0dcb69aae7003ee9b5de9645d2135b80a9e0b77824e60c417dc0be5f95 WHIRLPOOL e0b891475a7b3ff3fbc9c835f388e626b70d3e4dc47a611c1fa34b5ec479cd20912aa6895dda9c6cc5fabcfc36b7aba12db989a3b733b35f643c927769910266

diff --git a/sys-process/psmisc/psmisc-23.1.ebuild b/sys-process/psmisc/psmisc-23.1.ebuild
new file mode 100644
index 00000000000..e25d09501c9
--- /dev/null
+++ b/sys-process/psmisc/psmisc-23.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="A set of tools that use the proc filesystem"
+HOMEPAGE="http://psmisc.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+IUSE="ipv6 nls selinux X"
+
+RDEPEND=">=sys-libs/ncurses-5.7-r7:0=
+	nls? ( virtual/libintl )
+	selinux? ( sys-libs/libselinux )"
+DEPEND="${RDEPEND}
+	>=sys-devel/libtool-2.2.6b
+	nls? ( sys-devel/gettext )"
+
+DOCS=( AUTHORS ChangeLog NEWS README )
+
+src_configure() {
+	local myeconfargs=(
+		$(use_enable selinux)
+		--disable-harden-flags
+		$(use_enable ipv6)
+		$(use_enable nls)
+	)
+	econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+	# peekfd is a fragile crap hack #330631
+	nonfatal emake -C src peekfd || touch src/peekfd{.o,}
+	emake
+}
+
+src_install() {
+	default
+
+	use X || rm -f "${ED}"/usr/bin/pstree.x11
+
+	[[ -s ${ED}/usr/bin/peekfd ]] || rm -f "${ED}"/usr/bin/peekfd
+	[[ -e ${ED}/usr/bin/peekfd ]] || rm -f "${ED}"/usr/share/man/man1/peekfd.1
+
+	# fuser is needed by init.d scripts; use * wildcard for #458250
+	dodir /bin
+	mv "${ED}"/usr/bin/*fuser "${ED}"/bin || die
+}


             reply	other threads:[~2017-06-17  8:50 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-17  8:50 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-01  3:46 [gentoo-commits] repo/gentoo:master commit in: sys-process/psmisc/ Ionen Wolkens
2024-04-29  7:51 Jakov Smolić
2024-04-29  7:51 Jakov Smolić
2024-03-07 19:44 Sam James
2024-02-04 20:21 Ulrich Müller
2023-03-07 15:45 Sam James
2023-03-07 11:42 Sam James
2023-03-04 12:02 Arthur Zamarin
2023-03-04  8:54 Arthur Zamarin
2023-03-04  7:48 Arthur Zamarin
2023-03-04  7:17 Arthur Zamarin
2023-03-04  6:11 Arthur Zamarin
2023-03-04  5:52 Arthur Zamarin
2022-12-13 22:54 Sam James
2022-10-28  7:01 Sam James
2022-07-29  4:17 Sam James
2021-08-30  2:25 Sam James
2021-05-13 22:11 David Seifert
2021-05-13 21:17 Sam James
2021-05-13 18:58 Sam James
2021-05-13 18:56 Sam James
2021-05-13 18:36 Sergei Trofimovich
2021-05-13 17:15 Sam James
2021-05-13 16:37 Sam James
2021-02-07 17:01 Ulrich Müller
2021-02-06 15:18 Lars Wendler
2020-09-26 21:34 Sergei Trofimovich
2020-09-24  6:46 Agostino Sarubbo
2020-09-23 10:32 Agostino Sarubbo
2020-09-23 10:31 Agostino Sarubbo
2020-09-23 10:29 Agostino Sarubbo
2020-09-23 10:24 Agostino Sarubbo
2020-09-23 10:21 Agostino Sarubbo
2020-09-20 21:52 Thomas Deutschmann
2020-09-20 17:23 Sam James
2020-09-07 20:44 Mike Gilbert
2019-11-12 15:10 Lars Wendler
2019-10-26 11:27 Lars Wendler
2019-05-04 11:54 Mikle Kolyada
2018-08-14 13:03 Lars Wendler
2018-07-22  0:42 Mikle Kolyada
2018-06-30 18:16 Mikle Kolyada
2018-06-26 15:44 Tobias Klausmann
2018-06-23 15:19 Mart Raudsepp
2018-06-12 20:48 Sergei Trofimovich
2018-06-12 16:21 Mikle Kolyada
2018-06-12 11:36 Thomas Deutschmann
2018-06-12  8:44 Sergei Trofimovich
2018-06-11 19:15 Lars Wendler
2018-06-11 19:15 Lars Wendler
2017-06-13  7:32 Lars Wendler
2017-01-29 20:14 Fabian Groffen
2016-10-27  6:06 Lars Wendler

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=1497689401.2c21e09a8d681418a39c5333481ab223e9c6d6e0.polynomial-c@gentoo \
    --to=polynomial-c@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