Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package conky for openSUSE:Factory checked 
in at 2021-03-10 08:57:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/conky (Old)
 and      /work/SRC/openSUSE:Factory/.conky.new.2378 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "conky"

Wed Mar 10 08:57:46 2021 rev:32 rq:878084 version:1.12.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/conky/conky.changes      2020-07-28 
17:27:17.430037624 +0200
+++ /work/SRC/openSUSE:Factory/.conky.new.2378/conky.changes    2021-03-10 
08:58:53.942990783 +0100
@@ -1,0 +2,13 @@
+Thu Mar  4 15:57:16 UTC 2021 - [email protected]
+
+- Updated to version 1.12.1:
+  * Fix an issue in the AppImage build. There are no other changes
+    from v1.12.0, and so v1.12.0 and v1.12.1 are otherwise
+    equivalent.
+- Changes from version 1.12.0:
+  * No changelog foumd(?), for full details see:
+    https://github.com/brndnmtthws/conky/compare/v1.12.0...v1.12.1
+- Rebase conky.timestamp.patch and drop Conky.cmake part as this is
+  upstreamed.
+
+-------------------------------------------------------------------

Old:
----
  conky-1.11.6.tar.gz

New:
----
  conky-1.12.1.tar.gz

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

Other differences:
------------------
++++++ conky.spec ++++++
--- /var/tmp/diff_new_pack.EXqvTN/_old  2021-03-10 08:58:54.354991208 +0100
+++ /var/tmp/diff_new_pack.EXqvTN/_new  2021-03-10 08:58:54.358991213 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package conky
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,7 @@
 %bcond_with    xmms2
 %endif
 Name:           conky
-Version:        1.11.6
+Version:        1.12.1
 Release:        0
 Summary:        A System Monitor
 License:        GPL-3.0-or-later AND LGPL-3.0-or-later AND MIT

++++++ conky-1.11.6.tar.gz -> conky-1.12.1.tar.gz ++++++
++++ 6209 lines of diff (skipped)

++++++ conky.timestamp.patch ++++++
--- /var/tmp/diff_new_pack.EXqvTN/_old  2021-03-10 08:58:54.662991526 +0100
+++ /var/tmp/diff_new_pack.EXqvTN/_new  2021-03-10 08:58:54.662991526 +0100
@@ -1,30 +1,7 @@
-diff -urEbw conky-1.11.3/cmake/Conky.cmake conky-1.11.3.new/cmake/Conky.cmake
---- conky-1.11.3/cmake/Conky.cmake     2019-02-23 03:12:15.000000000 +0100
-+++ conky-1.11.3.new/cmake/Conky.cmake 2019-05-27 13:33:30.002789694 +0200
-@@ -155,7 +155,7 @@
-                 RESULT_VARIABLE RETVAL
-                 OUTPUT_VARIABLE BUILD_DATE
-                 OUTPUT_STRIP_TRAILING_WHITESPACE)
--execute_process(COMMAND ${APP_UNAME} -srm
-+execute_process(COMMAND ${APP_UNAME} -sm
-                 RESULT_VARIABLE RETVAL
-                 OUTPUT_VARIABLE BUILD_ARCH
-                 OUTPUT_STRIP_TRAILING_WHITESPACE)
-diff -urEbw conky-1.11.3/src/core.cc conky-1.11.3.new/src/core.cc
---- conky-1.11.3/src/core.cc   2019-02-23 03:12:15.000000000 +0100
-+++ conky-1.11.3.new/src/core.cc       2019-05-27 13:36:05.839543761 +0200
-@@ -823,7 +823,6 @@
-   obj->callbacks.free = &gen_free_opaque;
- #endif /* BUILD_X11 */
-   END OBJ(conky_version, nullptr) obj_be_plain_text(obj, VERSION);
--  END OBJ(conky_build_date, nullptr) obj_be_plain_text(obj, BUILD_DATE);
-   END OBJ(conky_build_arch, nullptr) obj_be_plain_text(obj, BUILD_ARCH);
-   END OBJ(downspeed, &update_net_stats)
-       parse_net_stat_arg(obj, arg, free_at_crash);
-diff -urEbw conky-1.11.3/src/llua.cc conky-1.11.3.new/src/llua.cc
---- conky-1.11.3/src/llua.cc   2019-02-23 03:12:15.000000000 +0100
-+++ conky-1.11.3.new/src/llua.cc       2019-05-27 13:33:30.034789848 +0200
-@@ -154,16 +154,12 @@
+diff -Naur a/src/llua.cc b/src/llua.cc
+--- a/src/llua.cc      2021-03-02 09:39:20.000000000 -0600
++++ b/src/llua.cc      2021-03-04 10:43:51.393815765 -0600
+@@ -157,8 +157,7 @@
    lua_setfield(lua_L, -3, "cpath");
    lua_pop(lua_L, 2);
  
@@ -34,17 +11,9 @@
    lua_setglobal(lua_L, "conky_build_info");
  
    lua_pushstring(lua_L, VERSION);
-   lua_setglobal(lua_L, "conky_version");
- 
--  lua_pushstring(lua_L, BUILD_DATE);
--  lua_setglobal(lua_L, "conky_build_date");
--
-   lua_pushstring(lua_L, BUILD_ARCH);
-   lua_setglobal(lua_L, "conky_build_arch");
- 
-diff -urEbw conky-1.11.3/src/main.cc conky-1.11.3.new/src/main.cc
---- conky-1.11.3/src/main.cc   2019-02-23 03:12:15.000000000 +0100
-+++ conky-1.11.3.new/src/main.cc       2019-05-27 13:35:28.959365326 +0200
+diff -Naur a/src/main.cc b/src/main.cc
+--- a/src/main.cc      2021-03-02 09:39:20.000000000 -0600
++++ b/src/main.cc      2021-03-04 10:44:34.869260595 -0600
 @@ -56,8 +56,7 @@
  #endif /* BUILD_BUILTIN_CONFIG */
  

Reply via email to