unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#34828: psmisc description vague
@ 2019-03-12 18:15 mikadoZero
  2019-03-13 14:48 ` Ludovic Courtès
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: mikadoZero @ 2019-03-12 18:15 UTC (permalink / raw)
  To: 34828

The description for the psmisc package would be more helpful if it
listed the utilities that it included.  As it is I do not know what I
will get after installing.

An example of a description that is more helpful is procps.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#34828: psmisc description vague
  2019-03-12 18:15 bug#34828: psmisc description vague mikadoZero
@ 2019-03-13 14:48 ` Ludovic Courtès
  2019-03-23 23:54 ` bug#34828: [PATCH] bug#34828 gnu: psmisc: Make package description more informative mikadoZero
  2023-09-16 13:43 ` bug#34828: [PATCH] Update psmisc to 23.6 Tobias Geerinckx-Rice via Bug reports for GNU Guix
  2 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2019-03-13 14:48 UTC (permalink / raw)
  To: mikadoZero; +Cc: 34828

Hi,

mikadoZero <mikadozero@yandex.com> skribis:

> The description for the psmisc package would be more helpful if it
> listed the utilities that it included.  As it is I do not know what I
> will get after installing.
>
> An example of a description that is more helpful is procps.

I would recommend against turning descriptions into lists of commands
just for the sake of package search (we should instead have another
mechanism to determine which package provides a given command), but
listing key commands is useful for a package like this one.

Would you like to propose a patch?

Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#34828: [PATCH] bug#34828 gnu: psmisc: Make package description more informative
  2019-03-12 18:15 bug#34828: psmisc description vague mikadoZero
  2019-03-13 14:48 ` Ludovic Courtès
@ 2019-03-23 23:54 ` mikadoZero
  2023-09-16 13:43 ` bug#34828: [PATCH] Update psmisc to 23.6 Tobias Geerinckx-Rice via Bug reports for GNU Guix
  2 siblings, 0 replies; 4+ messages in thread
From: mikadoZero @ 2019-03-23 23:54 UTC (permalink / raw)
  To: Guix-patches

This patch is for bug#34828.  It makes the description for psmisc
more informative.

This is one of my first patches submitted to Guix.  Feedback is
appreciated.

Passed:
`guix lint psmisc`
`guix build --rounds=4 psmisc`

------------


From 95f47eadb05de56a542d1be8f630e5ec4aa81485 Mon Sep 17 00:00:00 2001
From: mikadoZero <mikadozero@yandex.com>
Date: Sat, 23 Mar 2019 19:23:33 -0400
Subject: [PATCH] gnu: psmisc: Make package description more informative.

* gnu/packages/linux.scm (psmisc):
The content for the description is taken from the psmisc readme.
---
 gnu/packages/linux.scm | 19 ++++++++++++++++---
 1 file changed, 16 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 311bc6fa5..5365aa97d 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -33,6 +33,7 @@
 ;;; Copyright © 2018 Pierre Langlois <pierre.langlois@gmx.com>
 ;;; Copyright © 2018 Vasile Dumitrascu <va511e@yahoo.com>
 ;;; Copyright © 2019 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
+;;; Copyright © 2019 mikadoZero <mikadozero@yandex.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -602,9 +603,21 @@ at login.  Local and dynamic reconfiguration are its key features.")
     (synopsis
      "Small utilities that use the proc file system")
     (description
-     "This PSmisc package is a set of some small useful utilities that
-use the proc file system.  We're not about changing the world, but
-providing the system administrator with some help in common tasks.")
+     "A package of small utilities that use the proc file-system.
+@itemize @bullet
+@item
+fuser - Identifies processes using files or sockets
+@item
+killall - kills processes by name, e.g. killall -HUP named
+@item
+prtstat - prints statistics of a process
+@item
+pslog - prints log path(s) of a process
+@item
+pstree - shows the currently running processes as a tree
+@item
+peekfd - shows the data travelling over a file descriptor
+@end itemize")
     (license license:gpl2+)))
 
 (define-public util-linux
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#34828: [PATCH] Update psmisc to 23.6.
  2019-03-12 18:15 bug#34828: psmisc description vague mikadoZero
  2019-03-13 14:48 ` Ludovic Courtès
  2019-03-23 23:54 ` bug#34828: [PATCH] bug#34828 gnu: psmisc: Make package description more informative mikadoZero
@ 2023-09-16 13:43 ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
  2 siblings, 0 replies; 4+ messages in thread
From: Tobias Geerinckx-Rice via Bug reports for GNU Guix @ 2023-09-16 13:43 UTC (permalink / raw)
  To: 62348-done, 34828-done

Hi mikadoZero & Bruno,

I pushed #62348 patches 1 & 2 to master as 
32b4f59433df620ab8f4b9a6c523f8ef9500d75d et al.  I fixed a minor typo 
(‘file-system’) and added a full stop.

The update patch (3/3) went to core-updates as 
725b2528a65edf7425762b99330ab1c9bd33bc86.

Thanks!

T G-R

Sent from a Web browser.  Excuse or enjoy my brevity.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-09-16 13:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-12 18:15 bug#34828: psmisc description vague mikadoZero
2019-03-13 14:48 ` Ludovic Courtès
2019-03-23 23:54 ` bug#34828: [PATCH] bug#34828 gnu: psmisc: Make package description more informative mikadoZero
2023-09-16 13:43 ` bug#34828: [PATCH] Update psmisc to 23.6 Tobias Geerinckx-Rice via Bug reports for GNU Guix

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).