GNU bug report logs -
#58358
[PATCH 0/3] Update btop.
Previous Next
Reported by: Greg Hogan <code <at> greghogan.com>
Date: Fri, 7 Oct 2022 14:58:01 UTC
Severity: normal
Tags: patch
Done: Greg Hogan <code <at> greghogan.com>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 58358 in the body.
You can then email your comments to 58358 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#58358
; Package
guix-patches
.
(Fri, 07 Oct 2022 14:58:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Greg Hogan <code <at> greghogan.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Fri, 07 Oct 2022 14:58:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Update btop and set the superseded flags for the developer's earlier
iterations, bashtop and bpytop, for which development is frozen.
Greg Hogan (3):
gnu: bashtop: Deprecate for bpytop.
gnu: bpytop: Deprecate for btop.
gnu: btop: Update to 1.2.11.
gnu/packages/admin.scm | 56 ++++++++++++++++++++++--------------------
1 file changed, 29 insertions(+), 27 deletions(-)
--
2.37.3
Information forwarded
to
guix-patches <at> gnu.org
:
bug#58358
; Package
guix-patches
.
(Fri, 07 Oct 2022 15:01:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 58358 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/admin.scm (bpytop): Deprecate for btop.
---
gnu/packages/admin.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 0f3fcaa5e3..90858e1282 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -784,7 +784,8 @@ (define-public bpytop
(description "Resource monitor that shows usage and stats for processor,
memory, disks, network and processes. It's a Python port and continuation of
@command{bashtop}.")
- (license license:asl2.0)))
+ (license license:asl2.0)
+ (properties `((superseded . ,btop)))))
(define-public bashtop
(package
--
2.37.3
Information forwarded
to
guix-patches <at> gnu.org
:
bug#58358
; Package
guix-patches
.
(Fri, 07 Oct 2022 15:01:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 58358 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/admin.scm (bashtop): Deprecate for bpytop.
---
gnu/packages/admin.scm | 49 +++++++++++++++++++++---------------------
1 file changed, 25 insertions(+), 24 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 13d582403b..0f3fcaa5e3 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -751,30 +751,6 @@ (define-public htop
application (for console or X terminals) and requires ncurses.")
(license license:gpl2)))
-(define-public bashtop
- (package
- (name "bashtop")
- (version "0.9.25")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/aristocratos/bashtop")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "07nlr6vmyb7yihaxj1fp424lmhwkdjl6mls92v90f6gsvikpa13v"))))
- (build-system gnu-build-system)
- (arguments
- '(#:make-flags (list (string-append "PREFIX=" %output))
- #:tests? #f ; bats test fails with loading load.bash
- #:phases (modify-phases %standard-phases (delete 'configure))))
- (home-page "https://github.com/aristocratos/bashtop")
- (synopsis "Linux/OSX/FreeBSD resource monitor")
- (description "Resource monitor that shows usage and stats for processor,
-memory, disks, network and processes.")
- (license license:asl2.0)))
-
(define-public bpytop
(package
(name "bpytop")
@@ -810,6 +786,31 @@ (define-public bpytop
@command{bashtop}.")
(license license:asl2.0)))
+(define-public bashtop
+ (package
+ (name "bashtop")
+ (version "0.9.25")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/aristocratos/bashtop")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "07nlr6vmyb7yihaxj1fp424lmhwkdjl6mls92v90f6gsvikpa13v"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:make-flags (list (string-append "PREFIX=" %output))
+ #:tests? #f ; bats test fails with loading load.bash
+ #:phases (modify-phases %standard-phases (delete 'configure))))
+ (home-page "https://github.com/aristocratos/bashtop")
+ (synopsis "Linux/OSX/FreeBSD resource monitor")
+ (description "Resource monitor that shows usage and stats for processor,
+memory, disks, network and processes.")
+ (license license:asl2.0)
+ (properties `((superseded . ,bpytop)))))
+
(define-public pies
(package
(name "pies")
--
2.37.3
Information forwarded
to
guix-patches <at> gnu.org
:
bug#58358
; Package
guix-patches
.
(Fri, 07 Oct 2022 15:01:03 GMT)
Full text and
rfc822 format available.
Message #14 received at 58358 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/admin.scm (btop): Update to 1.2.11.
---
gnu/packages/admin.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 90858e1282..6f4a5304cf 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -705,7 +705,7 @@ (define-public ttyload
(define-public btop
(package
(name "btop")
- (version "1.2.9")
+ (version "1.2.11")
(source (origin
(method url-fetch)
(uri (string-append
@@ -713,7 +713,7 @@ (define-public btop
version ".tar.gz"))
(sha256
(base32
- "0cb5q7hrb9y378i98km9s6jbi5c50i7wra8m8jik5hf4m4s3930g"))))
+ "0z0960q44jkjam93wyrizf21bhn7khhf1rz8ykxsvaxmxya6cnl1"))))
(build-system gnu-build-system)
(arguments
(list #:tests? #f ;no test suite
--
2.37.3
Reply sent
to
Greg Hogan <code <at> greghogan.com>
:
You have taken responsibility.
(Fri, 07 Oct 2022 15:45:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Greg Hogan <code <at> greghogan.com>
:
bug acknowledged by developer.
(Fri, 07 Oct 2022 15:45:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 58358-done <at> debbugs.gnu.org (full text, mbox):
Now that I think more on this, Guix's "superseded by" is not a
deprecation warning but forces installation of the superseded package.
These are three different packages, and some day the unsupported
packages can be evaluated for removal. Closing.
Greg
On Fri, Oct 7, 2022 at 10:57 AM Greg Hogan <code <at> greghogan.com> wrote:
>
> Update btop and set the superseded flags for the developer's earlier
> iterations, bashtop and bpytop, for which development is frozen.
>
> Greg Hogan (3):
> gnu: bashtop: Deprecate for bpytop.
> gnu: bpytop: Deprecate for btop.
> gnu: btop: Update to 1.2.11.
>
> gnu/packages/admin.scm | 56 ++++++++++++++++++++++--------------------
> 1 file changed, 29 insertions(+), 27 deletions(-)
>
> --
> 2.37.3
>
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sat, 05 Nov 2022 11:24:07 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 284 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.