Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package btop for openSUSE:Factory checked in 
at 2024-05-10 12:05:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/btop (Old)
 and      /work/SRC/openSUSE:Factory/.btop.new.1880 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "btop"

Fri May 10 12:05:00 2024 rev:29 rq:1172951 version:1.3.2+git20240501.dd4ada7

Changes:
--------
--- /work/SRC/openSUSE:Factory/btop/btop.changes        2024-02-22 
21:02:37.556177238 +0100
+++ /work/SRC/openSUSE:Factory/.btop.new.1880/btop.changes      2024-05-10 
12:05:52.643096295 +0200
@@ -1,0 +2,56 @@
+Thu May  9 13:46:48 UTC 2024 - Scott Bradnick <scott.bradn...@suse.com>
+
+- Adding btop-rpmlintrc as Source99
+
+-------------------------------------------------------------------
+Wed May 01 18:53:11 UTC 2024 - scott.bradn...@suse.com
+
+- Removing btop_collect.cpp.diff since it was fixed upstream
+- Update to version 1.3.2+git20240501.dd4ada7:
+  * Fixed missing definition for ROCm static build
+
+-------------------------------------------------------------------
+Wed May  1 18:49:35 UTC 2024 - Scott Bradnick <scott.bradn...@suse.com>
+
+- Using '-pie' for 15.5 and 15.6 causes errors in the linking stage, removing.
+- Adding btop-rpmlintrc
+
+-------------------------------------------------------------------
+Wed May  1 18:27:21 UTC 2024 - Scott Bradnick <scott.bradn...@suse.com>
+
+- Adjusting btop_collect.cpp.diff to follow suggestion from
+  https://github.com/aristocratos/btop/issues/837
+
+-------------------------------------------------------------------
+Wed May 01 15:03:01 UTC 2024 - scott.bradn...@suse.com
+
+- Update to version 1.3.2+git20240430.b48bf6a:
+  * Add info text about regex filtering in help menu
+  * Add regex filtering
+  * Fix typo
+  * Show time in days when remaining battery exceeds an estimation of 24h
+  * Fix brew not finding LLVM path after release of LLVM 18
+  * Remove logging for uid without username
+  * osx: show uid instead of 'unknown' if no user exists with the same
+  * fix: crash on osx proc box
+  * fix pwr_usage not being defined correctly during rsmi collection
+
+-------------------------------------------------------------------
+Wed May  1 13:59:12 UTC 2024 - Scott Bradnick <scott.bradn...@suse.com>
+
+- Adding btop_collect.cpp.diff which reverts changes that were done as a part
+  of https://github.com/aristocratos/btop/issues/794 and incorporated as
+  https://github.com/aristocratos/btop/pull/796
+- Adding ROCm tarball as Source1 vs. injecting into tarball manually
+- Updating included ROCm version from 6.0.2 to 6.1.0
+
+-------------------------------------------------------------------
+Thu Feb 22 14:21:45 UTC 2024 - scott.bradn...@suse.com
+
+- Update to version 1.3.2+git20240218.6c66740:
+  * collect: Fix reading of battery power draw on Linux
+  * cmake: Remove version specifier
+  * Ask for 'btop --version' in issue template
+  * Include build info in binary
+
+-------------------------------------------------------------------

Old:
----
  btop-1.3.2+git20240212.fd2a2ac.tar.gz

New:
----
  btop-1.3.2+git20240501.dd4ada7.tar.gz
  btop-rpmlintrc
  rocm_smi_lib-rocm-6.1.0.tar.gz

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

Other differences:
------------------
++++++ btop.spec ++++++
--- /var/tmp/diff_new_pack.2igRbd/_old  2024-05-10 12:05:55.399196720 +0200
+++ /var/tmp/diff_new_pack.2igRbd/_new  2024-05-10 12:05:55.403196865 +0200
@@ -15,15 +15,19 @@
 # Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
-
+%define ROCm_version 6.1.0
 Name:           btop
-Version:        1.3.2+git20240212.fd2a2ac
+Version:        1.3.2+git20240501.dd4ada7
 Release:        0
 Summary:        Usage and stats for processor, memory, disks, network and 
processes
 License:        Apache-2.0
 Group:          System/Monitoring
 URL:            https://github.com/aristocratos/btop
-Source:         %{name}-%{version}.tar.gz
+Source0:        %{name}-%{version}.tar.gz
+### osc service runall download_files
+Source1:        
https://github.com/ROCm/rocm_smi_lib/archive/refs/tags/rocm-%{ROCm_version}.tar.gz#/rocm_smi_lib-rocm-%{ROCm_version}.tar.gz
+#####
+Source99:       btop-rpmlintrc
 Patch0:         Makefile.diff
 BuildRequires:  coreutils
 BuildRequires:  cmake
@@ -31,7 +35,12 @@
 BuildRequires:  gcc13-c++
 %define cxxflags CXXFLAGS="%{optflags} -fPIE"
 %define cxxopt CXX="g++-13"
-%define lddopt LDCXXFLAGS="-ldl -lpthread -pie -DFMT_HEADER_ONLY"
+### Throws:
+# ... relocation R_X86_64_32S against hidden symbol 
`_ZTVN3fmt3v1012format_errorE' can not be used when
+#   making a PIE object ..." error when '-pie' is used
+#%%define lddopt LDCXXFLAGS="-ldl -lpthread -pie -DFMT_HEADER_ONLY"
+#####
+%define lddopt LDCXXFLAGS="-ldl -lpthread -DFMT_HEADER_ONLY"
 %else
 BuildRequires:  gcc-c++ >= 11
 %define cxxflags %{nil}
@@ -45,6 +54,9 @@
 
 %prep
 %autosetup -p0
+cd %{_builddir}/%{name}-%{version}
+mkdir -vp %{_builddir}/%{name}-%{version}/lib/rocm_smi_lib
+tar zxf %{SOURCE1} -C %{_builddir}/%{name}-%{version}/lib/rocm_smi_lib 
--strip-components=1
 
 %build
 %make_build %{cxxflags} %{cxxopt} %{lddopt} RSMI_STATIC=true

++++++ _service ++++++
--- /var/tmp/diff_new_pack.2igRbd/_old  2024-05-10 12:05:55.439198177 +0200
+++ /var/tmp/diff_new_pack.2igRbd/_new  2024-05-10 12:05:55.443198324 +0200
@@ -2,9 +2,9 @@
   <service name="obs_scm" mode="manual">
     <param name="url">https://github.com/aristocratos/btop</param>
     <param name="scm">git</param>
+    <param name="revision">main</param>
     <param name="versionformat">@PARENT_TAG@+git%cd.%h</param>
     <param name="versionrewrite-pattern">v(.*)</param>
-    <param name="revision">main</param>
     <param name="changesgenerate">enable</param>
   </service>
   <service name="set_version" mode="manual"/>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.2igRbd/_old  2024-05-10 12:05:55.463199052 +0200
+++ /var/tmp/diff_new_pack.2igRbd/_new  2024-05-10 12:05:55.467199198 +0200
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/aristocratos/btop</param>
-              <param 
name="changesrevision">fd2a2acdad6fbaad76846cb5e802cf2ae022d670</param></service></servicedata>
+              <param 
name="changesrevision">dd4ada7023223c610ccfad48ec3abe0500f91af5</param></service></servicedata>
 (No newline at EOF)
 

++++++ btop-1.3.2+git20240212.fd2a2ac.tar.gz -> 
btop-1.3.2+git20240501.dd4ada7.tar.gz ++++++
++++ 149891 lines of diff (skipped)

++++++ btop-rpmlintrc ++++++
addFilter("position-independent-executable-suggested /usr/bin/btop");

++++++ btop.obsinfo ++++++
--- /var/tmp/diff_new_pack.2igRbd/_old  2024-05-10 12:05:55.807211587 +0200
+++ /var/tmp/diff_new_pack.2igRbd/_new  2024-05-10 12:05:55.811211733 +0200
@@ -1,5 +1,5 @@
 name: btop
-version: 1.3.2+git20240212.fd2a2ac
-mtime: 1707751809
-commit: fd2a2acdad6fbaad76846cb5e802cf2ae022d670
+version: 1.3.2+git20240501.dd4ada7
+mtime: 1714589026
+commit: dd4ada7023223c610ccfad48ec3abe0500f91af5
 

Reply via email to