me
/
guix
Archived
1
0
Fork 0

gnu: iotop: Update to 0.6-0.a14256a.

* gnu/packages/linux.scm (iotop): Update to 0.6-0.a14256a.
[source]: Build from Git.
master
Tobias Geerinckx-Rice 2022-05-22 02:00:02 +02:00
parent b38069a4c9
commit 00dcdfd731
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 33 additions and 28 deletions

View File

@ -3184,35 +3184,40 @@ the command line or a script.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public iotop (define-public iotop
(package ;; The last release is from 2013 and gives a misleading CONFIG_TASK_DELAY_ACCT
(name "iotop") ;; error on newer kernels.
(version "0.6") (let ((revision "0")
(source (commit "a14256a3ff74eeee59493ac088561f1bafab85a7"))
(origin (package
(method url-fetch) (name "iotop")
(uri (string-append "http://guichaz.free.fr/iotop/files/iotop-" (version (git-version "0.6" revision commit))
version ".tar.gz")) (source
(sha256 (base32 (origin
"1kp8mqg2pbxq4xzpianypadfxcsyfgwcaqgqia6h9fsq6zyh4z0s")))) (method git-fetch)
(build-system python-build-system) (uri (git-reference
(arguments (url "https://repo.or.cz/iotop.git")
'(#:phases (commit commit)))
(modify-phases %standard-phases (file-name (git-file-name name version))
(add-after 'unpack 'fix-build-with-python3 (sha256
(lambda _ (base32 "00h5p8fk1zi237q8mqds8apqbis9iw0yih1hl0pr63dsnyzmmrpw"))))
(substitute* "setup.py" (build-system python-build-system)
(("itervalues") "values")) (arguments
#t))) '(#:phases
;; There are currently no checks in the package. (modify-phases %standard-phases
#:tests? #f)) (add-after 'unpack 'fix-build-with-python3
(native-inputs (list python)) (lambda _
(home-page "http://guichaz.free.fr/iotop/") (substitute* "setup.py"
(synopsis (("itervalues") "values")))))
"Displays the IO activity of running processes") ;; There are currently no checks in the package.
(description #:tests? #f))
"Iotop is a Python program with a top like user interface to show the (native-inputs (list python))
(home-page "http://guichaz.free.fr/iotop/")
(synopsis
"Displays the IO activity of running processes")
(description
"Iotop is a Python program with a top like user interface to show the
processes currently causing I/O.") processes currently causing I/O.")
(license license:gpl2+))) (license license:gpl2+))))
(define-public fuse (define-public fuse
(package (package