pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/sysutils/btop
Module Name: pkgsrc
Committed By: wiz
Date: Sun May 11 10:18:07 UTC 2025
Modified Files:
pkgsrc/sysutils/btop: Makefile PLIST distinfo
Removed Files:
pkgsrc/sysutils/btop/files: btop.1
Log Message:
btop: update to 1.4.3.
## v1.4.3
References | Description | Author(s)
--- | --- | ---
c3b225f | Revert e266ccd which broke str_to_upper() and str_to_lower() | @aristocratos
#1137 | Enable additional checks in libc++ with the new hardening mode | @imwints
#1135 | Remove redundant optimization flag | @imwints
#1139 | Ignore incomplete filter regex, issue #1133 | @imwints
## v1.4.2
References | Description | Author(s)
--- | --- | ---
f1482fe | Fix process arguments appearing outside proc box by replacing ASCII control codes with blankspace, issue #1080 | @aristocratos
#1130 | Fix problems shown by clang-tidy's performance checks | @imwints
#1120 | Fix wrong error message and documentation of renamed option --utf-force | @t-webber @imwints
#1128 | Flatten cmake module path | @imwints
#1129 | CMake: Remove option to use mold | @imwints
#1047 | Update Terminus font link, fix typo, spelling, and grammar | @QinCai-rui
#929 | Please clang with sanitizers | @bad-co-de
#1126 | Fix MacOS tree-mode + aggregate memory/thread scaling issue | @xaskii
#993 | Fix typo: Mhz -> MHz | @NyCodeGHG
## v1.4.1
References | Description | Author(s)
--- | --- | ---
#1111 #1112 | Various code fixes | @imwints
#930 #931 | Various code fixes | @bad-co-de
#1061 | Fixed typo | @polluks
#1110 | Move the config parser in it's own module | @imwints
#1101 | Adding a menu option to show bitrates in base 10 separate from the setting to show bytes/bits in base 10 | @georgev93
#1079 | Allow MidnightBSD to build btop using the existing freebsd support. | @laffer1
#1098 | Use XDG_STATE_HOME to save logs | @imwints
#1092 | Bump CMake version to 3.25 required for LINUX variable | @imwints
#1058 | Replace brackets with arrows in net and proc box | @taha-yassine
#1091 | Bump bundled fmt to 11.1.4 | @imwints
#725 | cmake: link to CMAKE_DL_LIBS | @alalazo
#990 | Fix phoenix-night.theme marked as executable | @sertonix
#1034 | Add Kanagawa-lotus and Kanagawa-wave themes | @philikarus
#973 | Bump NetBSD version to 10.1 and FreeBSD version to 14.2. | @fraggerfox
#1072 | Add dark version of adwaita theme: adwaita-dark | @k0tran
#1036 | Resetting last selection on page navigation in optionsMenu to avoid unordered_map error | @seth-wood
#1029 | Share the CPU name trimming code between platforms | @yarrick
#1033 | Update Ryzen name trimming | @yarrick
#1030 | Drop macos 12 build, add v14 and v15 | @yarrick
#1028 | Fix cmake-macos workflow | @yarrick
#1027 | Bump version of deprecated upload-artifact step | @yarrick
#1025 | Update obsolete egrep call | @tywkeene
b52069c | Fix menu crash when GPU_SUPPORT=false, issue #989 | @aristocratos
#961 | Add 'Everforest Ligth Medium' theme | @mstuttgart
#960 | Support intel GPUs before Gen-6 (patch from upstream) | @w8jcik
#958 | intel_name_lookup_shim.c (get_intel_device_name): Fix SEGFAULT | @artyom-poptsov
2e7208d | Fix rsmi_measure_pcie_speeds not saving, issue #934 | @aristocratos
f3446ed | Show GPU Watt fractions when below 100W | @aristocratos
| + more from @imwints @aristocratos
Big thanks to @imwints for helping out with project maintenance, PR reviews and merging!
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/btop/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/sysutils/btop/PLIST \
pkgsrc/sysutils/btop/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/sysutils/btop/files/btop.1
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/sysutils/btop/Makefile
diff -u pkgsrc/sysutils/btop/Makefile:1.2 pkgsrc/sysutils/btop/Makefile:1.3
--- pkgsrc/sysutils/btop/Makefile:1.2 Tue Mar 11 12:28:49 2025
+++ pkgsrc/sysutils/btop/Makefile Sun May 11 10:18:07 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2025/03/11 12:28:49 nia Exp $
+# $NetBSD: Makefile,v 1.3 2025/05/11 10:18:07 wiz Exp $
-DISTNAME= btop-1.4.0
+DISTNAME= btop-1.4.3
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_GITHUB:=aristocratos/}
GITHUB_TAG= v${PKGVERSION_NOREV}
@@ -10,6 +10,8 @@ HOMEPAGE= https://github.com/aristocrato
COMMENT= Colorful TTY resource monitor
LICENSE= apache-2.0
+TOOL_DEPENDS+= lowdown-[0-9]*:../../textproc/lowdown
+
USE_LANGUAGES= c c++
USE_TOOLS+= gmake
@@ -20,15 +22,6 @@ INSTALLATION_DIRS= ${PKGMANDIR}/man1
CXXFLAGS+= -DNDEBUG
MAKE_ENV+= STRIP=true VERBOSE=true
-post-extract:
- ${CHMOD} -R g-w ${WRKSRC}
-
-post-build:
- ${CP} ${FILESDIR}/btop.1 ${WRKDIR}/btop.1
-
-post-install:
- ${INSTALL_MAN} ${WRKDIR}/btop.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
-
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
.include "../../mk/atomic64.mk"
.include "../../mk/pthread.buildlink3.mk"
Index: pkgsrc/sysutils/btop/PLIST
diff -u pkgsrc/sysutils/btop/PLIST:1.1 pkgsrc/sysutils/btop/PLIST:1.2
--- pkgsrc/sysutils/btop/PLIST:1.1 Sun Oct 6 10:43:17 2024
+++ pkgsrc/sysutils/btop/PLIST Sun May 11 10:18:07 2025
@@ -1,10 +1,11 @@
-@comment $NetBSD: PLIST,v 1.1 2024/10/06 10:43:17 fox Exp $
+@comment $NetBSD: PLIST,v 1.2 2025/05/11 10:18:07 wiz Exp $
bin/btop
man/man1/btop.1
share/applications/btop.desktop
share/btop/README.md
share/btop/themes/HotPurpleTrafficLight.theme
share/btop/themes/adapta.theme
+share/btop/themes/adwaita-dark.theme
share/btop/themes/adwaita.theme
share/btop/themes/ayu.theme
share/btop/themes/dracula.theme
@@ -12,6 +13,7 @@ share/btop/themes/dusklight.theme
share/btop/themes/elementarish.theme
share/btop/themes/everforest-dark-hard.theme
share/btop/themes/everforest-dark-medium.theme
+share/btop/themes/everforest-light-medium.theme
share/btop/themes/flat-remix-light.theme
share/btop/themes/flat-remix.theme
share/btop/themes/greyscale.theme
@@ -20,6 +22,8 @@ share/btop/themes/gruvbox_dark_v2.theme
share/btop/themes/gruvbox_light.theme
share/btop/themes/gruvbox_material_dark.theme
share/btop/themes/horizon.theme
+share/btop/themes/kanagawa-lotus.theme
+share/btop/themes/kanagawa-wave.theme
share/btop/themes/kyli0x.theme
share/btop/themes/matcha-dark-sea.theme
share/btop/themes/monokai.theme
Index: pkgsrc/sysutils/btop/distinfo
diff -u pkgsrc/sysutils/btop/distinfo:1.1 pkgsrc/sysutils/btop/distinfo:1.2
--- pkgsrc/sysutils/btop/distinfo:1.1 Sun Oct 6 10:43:17 2024
+++ pkgsrc/sysutils/btop/distinfo Sun May 11 10:18:07 2025
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2024/10/06 10:43:17 fox Exp $
+$NetBSD: distinfo,v 1.2 2025/05/11 10:18:07 wiz Exp $
-BLAKE2s (btop-1.4.0.tar.gz) = 88ac532097420f31d44f89afbfb18e9cbd1bf16686c32f736bb88e25b34687c1
-SHA512 (btop-1.4.0.tar.gz) = 7b7c63daf68192893ae4533c04ea70dcd6f253e188b1c842f2ebebac0b28e51431edef6ccfce5b25b3adbd5b2b637fc832bce7d5d64d664c2bf5c4672be75c8f
-Size (btop-1.4.0.tar.gz) = 1239400 bytes
+BLAKE2s (btop-1.4.3.tar.gz) = e6f7690c92dfe513275e0c0c8360596d24ba9be673bb31536496a3e9f3606ef1
+SHA512 (btop-1.4.3.tar.gz) = 4a63c57d9d12549528055d3e509816123966a2143ed8c8cbc76d4c417ac8729265ef1be3102f5a00bc36b1a15786a089eaef05e6ec43382d65fd52ebcea03a4c
+Size (btop-1.4.3.tar.gz) = 1245882 bytes
SHA1 (patch-Makefile) = 87cd9333e786899109df3a931c6d0e99fbd017de
Home |
Main Index |
Thread Index |
Old Index