Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package btop for openSUSE:Factory checked in 
at 2023-01-11 14:35:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/btop (Old)
 and      /work/SRC/openSUSE:Factory/.btop.new.32243 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "btop"

Wed Jan 11 14:35:02 2023 rev:24 rq:1057660 version:1.2.13+git20221215.c4ee41e

Changes:
--------
--- /work/SRC/openSUSE:Factory/btop/btop.changes        2022-11-23 
09:48:33.547183175 +0100
+++ /work/SRC/openSUSE:Factory/.btop.new.32243/btop.changes     2023-01-11 
14:36:37.981766308 +0100
@@ -1,0 +2,14 @@
+Tue Jan 03 18:19:48 UTC 2023 - scott.bradn...@suse.com
+
+- Update to version 1.2.13+git20221215.c4ee41e:
+  * Fixed: Makefile, VERBOSE flag now shows directory creation, Issue #480
+  * Makefile: make build targets depend on directories
+
+-------------------------------------------------------------------
+Fri Dec 09 21:47:50 UTC 2022 - scott.bradn...@suse.com
+
+- Update to version 1.2.13+git20221130.e67a35d:
+  * Removed unused statement...
+  * Fixed: Use MemFree for used mem calculation if MemAvailable is greater 
than MemTotal.
+
+-------------------------------------------------------------------

Old:
----
  btop-1.2.13+git20221106.0f8498f.tar.gz

New:
----
  btop-1.2.13+git20221215.c4ee41e.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ btop.spec ++++++
--- /var/tmp/diff_new_pack.ttZ35y/_old  2023-01-11 14:36:38.421768795 +0100
+++ /var/tmp/diff_new_pack.ttZ35y/_new  2023-01-11 14:36:38.429768840 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           btop
-Version:        1.2.13+git20221106.0f8498f
+Version:        1.2.13+git20221215.c4ee41e
 Release:        0
 Summary:        Usage and stats for processor, memory, disks, network and 
processes
 License:        Apache-2.0

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.ttZ35y/_old  2023-01-11 14:36:38.469769066 +0100
+++ /var/tmp/diff_new_pack.ttZ35y/_new  2023-01-11 14:36:38.473769088 +0100
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/aristocratos/btop</param>
-              <param 
name="changesrevision">0f8498fa4e68e3af36a50b1d9f97b931b41b0824</param></service></servicedata>
+              <param 
name="changesrevision">c4ee41ebc0f7fabbf4717450c889292464dbeb6d</param></service></servicedata>
 (No newline at EOF)
 

++++++ btop-1.2.13+git20221106.0f8498f.tar.gz -> 
btop-1.2.13+git20221215.c4ee41e.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/btop-1.2.13+git20221106.0f8498f/Makefile 
new/btop-1.2.13+git20221215.c4ee41e/Makefile
--- old/btop-1.2.13+git20221106.0f8498f/Makefile        2022-11-06 
22:36:34.000000000 +0100
+++ new/btop-1.2.13+git20221215.c4ee41e/Makefile        2022-12-15 
17:42:07.000000000 +0100
@@ -200,7 +200,9 @@
 
 #? Make the Directories
 directories:
+       @$(VERBOSE) || printf "mkdir -p $(TARGETDIR)\n"
        @mkdir -p $(TARGETDIR)
+       @$(VERBOSE) || printf "mkdir -p $(BUILDDIR)/$(PLATFORM_DIR)\n"
        @mkdir -p $(BUILDDIR)/$(PLATFORM_DIR)
 
 #? Clean only Objects
@@ -259,7 +261,7 @@
 
 #? Link
 .ONESHELL:
-btop: $(OBJECTS)
+btop: $(OBJECTS) | directories
        @sleep 0.2 2>/dev/null || true
        @TSTAMP=$$(date +%s 2>/dev/null || echo "0")
        @$(QUIET) || printf "\n\033[1;92mLinking and optimizing 
binary\033[37m...\033[0m\n"
@@ -270,7 +272,7 @@
 
 #? Compile
 .ONESHELL:
-$(BUILDDIR)/%.$(OBJEXT): $(SRCDIR)/%.$(SRCEXT)
+$(BUILDDIR)/%.$(OBJEXT): $(SRCDIR)/%.$(SRCEXT) | directories
        @sleep 0.3 2>/dev/null || true
        @TSTAMP=$$(date +%s 2>/dev/null || echo "0")
        @$(QUIET) || printf "\033[1;97mCompiling $<\033[0m\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/btop-1.2.13+git20221106.0f8498f/src/linux/btop_collect.cpp 
new/btop-1.2.13+git20221215.c4ee41e/src/linux/btop_collect.cpp
--- old/btop-1.2.13+git20221106.0f8498f/src/linux/btop_collect.cpp      
2022-11-06 22:36:34.000000000 +0100
+++ new/btop-1.2.13+git20221215.c4ee41e/src/linux/btop_collect.cpp      
2022-12-15 17:42:07.000000000 +0100
@@ -901,7 +901,8 @@
                                mem.stats.at("cached") += arc_size;
                                mem.stats.at("available") += arc_size;
                        }
-                       mem.stats.at("used") = totalMem - 
mem.stats.at("available");
+                       mem.stats.at("used") = totalMem - 
(mem.stats.at("available") <= totalMem ? mem.stats.at("available") : 
mem.stats.at("free"));
+
                        if (mem.stats.at("swap_total") > 0) 
mem.stats.at("swap_used") = mem.stats.at("swap_total") - 
mem.stats.at("swap_free");
                }
                else

++++++ btop.obsinfo ++++++
--- /var/tmp/diff_new_pack.ttZ35y/_old  2023-01-11 14:36:38.593769767 +0100
+++ /var/tmp/diff_new_pack.ttZ35y/_new  2023-01-11 14:36:38.593769767 +0100
@@ -1,5 +1,5 @@
 name: btop
-version: 1.2.13+git20221106.0f8498f
-mtime: 1667770594
-commit: 0f8498fa4e68e3af36a50b1d9f97b931b41b0824
+version: 1.2.13+git20221215.c4ee41e
+mtime: 1671122527
+commit: c4ee41ebc0f7fabbf4717450c889292464dbeb6d
 

Reply via email to