Hello community, here is the log from the commit of package conky for openSUSE:Factory checked in at 2016-10-02 00:07:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/conky (Old) and /work/SRC/openSUSE:Factory/.conky.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "conky" Changes: -------- --- /work/SRC/openSUSE:Factory/conky/conky.changes 2016-06-07 23:47:59.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.conky.new/conky.changes 2016-10-02 00:08:25.000000000 +0200 @@ -1,0 +2,7 @@ +Sat Sep 24 11:52:54 UTC 2016 - aloi...@gmx.com + +- Update to version 1.10.4 +- Enabled pulseaudio +- Added conky-1.10.4-ncurses.patch + +------------------------------------------------------------------- Old: ---- conky-1.10.2.tar.gz New: ---- conky-1.10.4-ncurses.patch conky-1.10.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ conky.spec ++++++ --- /var/tmp/diff_new_pack.A7bXpl/_old 2016-10-02 00:08:27.000000000 +0200 +++ /var/tmp/diff_new_pack.A7bXpl/_new 2016-10-02 00:08:27.000000000 +0200 @@ -17,7 +17,7 @@ Name: conky -Version: 1.10.2 +Version: 1.10.4 Release: 0 Summary: Lightweight System Monitor License: GPL-3.0+ and LGPL-3.0+ and MIT @@ -26,6 +26,8 @@ Source: https://github.com/brndnmtthws/conky/archive/v%{version}/conky-%{version}.tar.gz Patch: conky-1.10.0-libircclient.patch Patch1: conky-1.10.1-avoid-git.patch +# our ncurses doesn't supply a .pc file +Patch2: conky-1.10.4-ncurses.patch BuildRequires: alsa-devel BuildRequires: cairo-devel BuildRequires: cmake @@ -41,6 +43,7 @@ BuildRequires: libmicrohttpd-devel BuildRequires: libmysqld-devel BuildRequires: libpng-devel +BuildRequires: libpulse-devel BuildRequires: librsvg-devel BuildRequires: libtool BuildRequires: libxslt-tools @@ -127,6 +130,7 @@ %setup -q %patch -p1 %patch1 -p1 +%patch2 -p1 %build mkdir build && cd build @@ -159,12 +163,12 @@ -DBUILD_IRC=OFF \ %endif -DBUILD_MATH=ON \ - -DBUILD_MIXER_ALSA=ON \ -DBUILD_MOC=ON \ -DBUILD_MPD=ON \ -DBUILD_MYSQL=ON \ -DBUILD_NCURSES=ON \ -DBUILD_PORT_MONITORS=ON \ + -DBUILD_PULSEAUDIO=ON \ -DBUILD_RSS=ON \ -DBUILD_OLD_CONFIG=ON \ -DBUILD_WEATHER_METAR=ON \ @@ -178,7 +182,6 @@ -DOWN_WINDOW=ON \ -DBUILD_LUA_CAIRO=ON \ -DBUILD_LUA_RSVG=ON \ - -DBUILD_LUA_EXTRAS=ON \ %if 0%{?packman_bs} -DBUILD_AUDACIOUS=ON \ -DBUILD_CMUS=ON \ ++++++ conky-1.10.4-ncurses.patch ++++++ Index: conky-1.10.4/cmake/ConkyPlatformChecks.cmake =================================================================== --- conky-1.10.4.orig/cmake/ConkyPlatformChecks.cmake +++ conky-1.10.4/cmake/ConkyPlatformChecks.cmake @@ -119,12 +119,12 @@ if(BUILD_HTTP) endif(BUILD_HTTP) if(BUILD_NCURSES) - pkg_check_modules(NCURSES ncurses) - if(NOT NCURSES_FOUND) - message(FATAL_ERROR "Unable to find ncurses library") - endif(NOT NCURSES_FOUND) - set(conky_libs ${conky_libs} ${NCURSES_LIBRARIES}) - set(conky_includes ${conky_includes} ${NCURSES_INCLUDE_DIRS}) + check_include_files(ncurses.h NCURSES_H) + find_library(NCURSES_LIB NAMES ncurses) + if(NOT NCURSES_H OR NOT NCURSES_LIB) + message(FATAL_ERROR "Unable to find ncurses library") + endif(NOT NCURSES_H OR NOT NCURSES_LIB) + set(conky_libs ${conky_libs} ${NCURSES_LIB}) endif(BUILD_NCURSES) if(BUILD_MYSQL) ++++++ conky-1.10.2.tar.gz -> conky-1.10.4.tar.gz ++++++ ++++ 2649 lines of diff (skipped)