Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package adriconf for openSUSE:Factory 
checked in at 2021-04-14 10:11:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/adriconf (Old)
 and      /work/SRC/openSUSE:Factory/.adriconf.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "adriconf"

Wed Apr 14 10:11:31 2021 rev:4 rq:885216 version:2.4.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/adriconf/adriconf.changes        2020-11-04 
18:32:25.360143668 +0100
+++ /work/SRC/openSUSE:Factory/.adriconf.new.2401/adriconf.changes      
2021-04-14 10:11:59.169595719 +0200
@@ -1,0 +2,9 @@
+Tue Apr 13 20:44:53 UTC 2021 - Ferdinand Thiessen <r...@fthiessen.de>
+
+- Update to version 2.4.1
+  * No source changes
+- Fixed dependencies
+  * GTK+ 0.24+ is required for ComboBoxExtra
+  * libXML++ is also supported in version 5 (used in Factory)
+
+-------------------------------------------------------------------

Old:
----
  adriconf-v2.4.tar.bz2

New:
----
  adriconf-v2.4.1.tar.bz2

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

Other differences:
------------------
++++++ adriconf.spec ++++++
--- /var/tmp/diff_new_pack.b84q6s/_old  2021-04-14 10:11:59.669596563 +0200
+++ /var/tmp/diff_new_pack.b84q6s/_new  2021-04-14 10:11:59.669596563 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package adriconf
 #
-# 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
@@ -17,7 +17,7 @@
 
 
 Name:           adriconf
-Version:        2.4
+Version:        2.4.1
 Release:        0
 Summary:        Advanced DRI Configurator
 License:        GPL-3.0-only
@@ -33,14 +33,14 @@
 BuildRequires:  libboost_filesystem-devel >= 1.60
 BuildRequires:  libboost_locale-devel >= 1.60
 BuildRequires:  libboost_system-devel >= 1.60
+BuildRequires:  libxml++-devel >= 3
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(egl)
 BuildRequires:  pkgconfig(gbm)
-BuildRequires:  pkgconfig(gdkmm-3.0)
+BuildRequires:  pkgconfig(gdkmm-3.0) > 3.24
 BuildRequires:  pkgconfig(libdrm)
 BuildRequires:  pkgconfig(libpci)
-BuildRequires:  pkgconfig(libxml++-3.0)
 BuildRequires:  pkgconfig(pciaccess)
 BuildRequires:  pkgconfig(x11)
 

++++++ adriconf-v2.4.tar.bz2 -> adriconf-v2.4.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/adriconf-v2.4/CMakeLists.txt 
new/adriconf-v2.4.1/CMakeLists.txt
--- old/adriconf-v2.4/CMakeLists.txt    2020-10-01 21:29:59.000000000 +0200
+++ new/adriconf-v2.4.1/CMakeLists.txt  2021-02-14 11:54:07.000000000 +0100
@@ -37,6 +37,9 @@
 set(OpenGL_GL_PREFERENCE "GLVND")
 find_package(OpenGL REQUIRED)
 
+## ATKMM
+pkg_check_modules(ATKMM atkmm-1.6)
+
 # GTKMM
 pkg_check_modules(GTKMM REQUIRED gtkmm-3.0)
 
@@ -44,12 +47,19 @@
 find_package(Boost 1.60 REQUIRED COMPONENTS locale filesystem system)
 
 # LIBXML
-pkg_check_modules(LibXML++ libxml++-3.0)
+pkg_check_modules(LibXML++ libxml++-5.0)
 if (NOT LibXML++_FOUND)
-    pkg_check_modules(LibXML++2 REQUIRED libxml++-2.6)
-    set(LibXML++_INCLUDE_DIRS ${LibXML++2_INCLUDE_DIRS})
-    set(LibXML++_LIBRARIES ${LibXML++2_LIBRARIES})
-endif ()
+    pkg_check_modules(LibXML++3 libxml++-3.0)
+    if (LibXML++3_FOUND)
+        set(LibXML++_INCLUDE_DIRS ${LibXML++3_INCLUDE_DIRS})
+        set(LibXML++_LIBRARIES ${LibXML++3_LIBRARIES})
+    endif()
+    if (NOT LibXML++3_FOUND)
+        pkg_check_modules(LibXML++2 REQUIRED libxml++-2.6)
+        set(LibXML++_INCLUDE_DIRS ${LibXML++2_INCLUDE_DIRS})
+       set(LibXML++_LIBRARIES ${LibXML++2_LIBRARIES})
+    endif ()
+endif()
 
 # X11
 pkg_check_modules(X11 REQUIRED x11)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/adriconf-v2.4/VERSION new/adriconf-v2.4.1/VERSION
--- old/adriconf-v2.4/VERSION   2020-10-01 21:29:59.000000000 +0200
+++ new/adriconf-v2.4.1/VERSION 2021-02-14 11:54:07.000000000 +0100
@@ -1 +1 @@
-2.4
\ No newline at end of file
+2.4.1
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/adriconf-v2.4/adriconf/CMakeLists.txt 
new/adriconf-v2.4.1/adriconf/CMakeLists.txt
--- old/adriconf-v2.4/adriconf/CMakeLists.txt   2020-10-01 21:29:59.000000000 
+0200
+++ new/adriconf-v2.4.1/adriconf/CMakeLists.txt 2021-02-14 11:54:07.000000000 
+0100
@@ -15,6 +15,8 @@
         ${CMAKE_SOURCE_DIR}/adriconf/Translation/GetTextTranslator.cpp
         ${CMAKE_SOURCE_DIR}/adriconf/Translation/GetTextTranslator.h)
 
+target_include_directories(adriconf PUBLIC ${ATKMM_INCLUDE_DIRS})
+
 target_link_libraries(adriconf ${GTKMM_LIBRARIES})
 target_include_directories(adriconf PUBLIC ${GTKMM_INCLUDE_DIRS})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/adriconf-v2.4/flatpak/org.freedesktop.adriconf.json 
new/adriconf-v2.4.1/flatpak/org.freedesktop.adriconf.json
--- old/adriconf-v2.4/flatpak/org.freedesktop.adriconf.json     2020-10-01 
21:29:59.000000000 +0200
+++ new/adriconf-v2.4.1/flatpak/org.freedesktop.adriconf.json   2021-02-14 
11:54:07.000000000 +0100
@@ -181,7 +181,7 @@
             {
                "type": "git",
                "url": "https://gitlab.freedesktop.org/mesa/adriconf/";,
-               "tag": "v2.4"
+               "tag": "v2.4.1"
             },
             {
                "type": "file",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/adriconf-v2.4/flatpak/org.freedesktop.adriconf.metainfo.xml 
new/adriconf-v2.4.1/flatpak/org.freedesktop.adriconf.metainfo.xml
--- old/adriconf-v2.4/flatpak/org.freedesktop.adriconf.metainfo.xml     
2020-10-01 21:29:59.000000000 +0200
+++ new/adriconf-v2.4.1/flatpak/org.freedesktop.adriconf.metainfo.xml   
2021-02-14 11:54:07.000000000 +0100
@@ -24,6 +24,13 @@
       </screenshot>
    </screenshots>
    <releases>
+      <release version="2.4.1" date="2021-02-14" urgency="low">
+         <p>This release bring only build fixes:</p>
+         <ul>
+            <li>Fixes build on Manjaro</li>
+            <li>Fixes build on OpenSuse</li>
+         </ul>
+      </release>
       <release version="2.4" date="2020-10-01" urgency="low">
          <p>This release brings some small improvements:</p>
          <ul>

Reply via email to