Hello community, here is the log from the commit of package goldendict for openSUSE:Factory checked in at 2018-06-22 13:29:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/goldendict (Old) and /work/SRC/openSUSE:Factory/.goldendict.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "goldendict" Fri Jun 22 13:29:40 2018 rev:10 rq:614424 version:1.5.0~rc2+git.20180531T195211 Changes: -------- --- /work/SRC/openSUSE:Factory/goldendict/goldendict.changes 2017-07-12 19:35:20.713948821 +0200 +++ /work/SRC/openSUSE:Factory/.goldendict.new/goldendict.changes 2018-06-22 13:29:58.830632842 +0200 @@ -1,0 +2,28 @@ +Wed Jun 6 04:59:46 UTC 2018 - [email protected] + +- Fix GCC 7.3 compiler warnings. +- Fix headwords search for case of wildcard in the first position. +- ScanPopup: + - Add button to stay over all other windows. + - Add an option to disable scan popup inside Goldendict in Linux +- Full-test search: + - Allow ignore diacritics while search. + - Use dictionary-specific articles sorting while search + - Add option to ignore words order while full-text search. + - DSL: Handle round brackets while full-text search. + - DSL: Expand tildes while full-text search + - Fix full-text search for case of partially matched sequence. +- Add QMediaPlayer internal player back end (Qt5 only). +- Forvo: order pronunciations by rate, high rated first. +- Add ".webm" extension to known video types. +- Add partial support for "audio" tag in Stardict(html), GSL. +- Wiki: Fix parsing of "audio" tags. +- Wiki: Fix handling of url's without urls scheme. +- Wiki: Fix work with headwords containing the '+' sign. +- Handle BOM's for UTF-8 and UTF-16 encoding in programs output. +- Improve X11 autostart behavior. +- Implement "inactive dictionaries" feature for all groups. +- Update help system. +- Update translations. + +------------------------------------------------------------------- Old: ---- goldendict-1.5.0~rc2+git.20170601T224956.tar.gz goldendict-Debian_7.0.dsc goldendict-xUbuntu_12.04.dsc New: ---- goldendict-1.5.0~rc2+git.20180531T195211.tar.gz goldendict-Debian_9.0.dsc goldendict-xUbuntu_18.04.dsc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ goldendict.spec ++++++ --- /var/tmp/diff_new_pack.L5Vbxx/_old 2018-06-22 13:30:00.578568237 +0200 +++ /var/tmp/diff_new_pack.L5Vbxx/_new 2018-06-22 13:30:00.582568089 +0200 @@ -3,7 +3,7 @@ # # Copyright (c) 2012-2014 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright 2013 Tvangeste <[email protected]> -# Copyright 2011-2017 <[email protected]> +# Copyright 2011-2018 <[email protected]> # Copyright 2008-2009 Buschmann <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -23,14 +23,12 @@ License: GPL-3.0+ Url: http://goldendict.org/ Group: Productivity/Office/Dictionary -Version: 1.5.0~rc2+git.20170601T224956 +Version: 1.5.0~rc2+git.20180531T195211 Release: 0 Source0: goldendict-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build -%if 0%{?suse_version} != 1110 BuildRequires: eb-devel -%endif BuildRequires: git BuildRequires: hunspell-devel >= 1.2.4 BuildRequires: libtiff-devel @@ -48,6 +46,7 @@ BuildRequires: pkgconfig(Qt5Core) BuildRequires: pkgconfig(Qt5Gui) BuildRequires: pkgconfig(Qt5Help) +BuildRequires: pkgconfig(Qt5Multimedia) BuildRequires: pkgconfig(Qt5Network) BuildRequires: pkgconfig(Qt5PrintSupport) BuildRequires: pkgconfig(Qt5Sql) @@ -110,20 +109,20 @@ %if 0%{?suse_version} > 1320 || ( 0%{?suse_version} == 1315 && 0%{?is_opensuse} ) || (0%{?suse_version} == 1315 && 0%{?sle_version} >= 120200) %if 0%{?is_opensuse} %qmake5 \ - PREFIX=%{_prefix} "CONFIG+=zim_support" + PREFIX=%{_prefix} "CONFIG+=zim_support" "CONFIG+=old_hunspell" %make_jobs %else %qmake5 \ - PREFIX=%{_prefix} "DISABLE_INTERNAL_PLAYER=1" "CONFIG+=zim_support" + PREFIX=%{_prefix} "CONFIG+=no_ffmpeg_player" "CONFIG+=zim_support" "CONFIG+=old_hunspell" %make_jobs %endif %else - qmake PREFIX=/usr "DISABLE_INTERNAL_PLAYER=1" && make clean && make + qmake PREFIX=/usr "CONFIG+=no_ffmpeg_player" "CONFIG+=no_qtmultimedia_player" "CONFIG+=old_hunspell" && make clean && make make %{?jobs:-j %jobs} %endif %endif %if 0%{?fedora_version} - qmake-qt4 PREFIX=/usr "DISABLE_INTERNAL_PLAYER=1" && make clean && make + qmake-qt4 PREFIX=/usr "CONFIG+=no_ffmpeg_player" "CONFIG+=old_hunspell" && make clean && make make %{?jobs:-j %jobs} %endif ++++++ debian.rules ++++++ --- /var/tmp/diff_new_pack.L5Vbxx/_old 2018-06-22 13:30:00.670564836 +0200 +++ /var/tmp/diff_new_pack.L5Vbxx/_new 2018-06-22 13:30:00.674564689 +0200 @@ -23,20 +23,27 @@ ifeq ($(DISTRO_NAME), Ubuntu) OLD_UBUNTU=$(shell (expr $(DISTRO_YEAR) \< 12)) ifeq ($(OLD_UBUNTU), 1) - DEB_QMAKE_ARGS="DISABLE_INTERNAL_PLAYER=1" + DEB_QMAKE_ARGS="CONFIG+=old_hunspell CONFIG+=no_qtmultimedia_player CONFIG+=no_ffmpeg_player " endif NEW_UBUNTU=$(shell (expr $(DISTRO_YEAR) \> 12)) ifeq ($(NEW_UBUNTU), 1) - DEB_QMAKE_ARGS="'CONFIG+=no_epwing_support' DISABLE_INTERNAL_PLAYER=1" + DEB_QMAKE_ARGS="CONFIG+=old_hunspell CONFIG+=no_epwing_support CONFIG+=no_qtmultimedia_player " endif ifeq ($(DISTRO_YEAR), 12) - DEB_QMAKE_ARGS="'CONFIG+=no_epwing_support'" + DEB_QMAKE_ARGS="CONFIG+=old_hunspell CONFIG+=no_epwing_support CONFIG+=no_qtmultimedia_player " endif endif ifeq ($(DISTRO_NAME), Debian) ifeq ($(DISTRO_VERSION), 6.0) - DEB_QMAKE_ARGS="DISABLE_INTERNAL_PLAYER=1" + DEB_QMAKE_ARGS="CONFIG+=old_hunspell CONFIG+=no_qtmultimedia_player CONFIG+=no_ffmpeg_player " + endif + ifeq ($(DISTRO_VERSION), 7.0) + DEB_QMAKE_ARGS="CONFIG+=old_hunspell CONFIG+=no_qtmultimedia_player " + endif + NEW_DEBIAN=$(shell (expr $(DISTRO_VERSION) \> 7)) + ifeq ($(NEW_DEBIAN), 1) + DEB_QMAKE_ARGS="CONFIG+=old_hunspell CONFIG+=no_qtmultimedia_player " endif endif ++++++ goldendict-1.5.0~rc2+git.20170601T224956.tar.gz -> goldendict-1.5.0~rc2+git.20180531T195211.tar.gz ++++++ /work/SRC/openSUSE:Factory/goldendict/goldendict-1.5.0~rc2+git.20170601T224956.tar.gz /work/SRC/openSUSE:Factory/.goldendict.new/goldendict-1.5.0~rc2+git.20180531T195211.tar.gz differ: char 12, line 1 ++++++ goldendict-Debian_8.0.dsc ++++++ --- /var/tmp/diff_new_pack.L5Vbxx/_old 2018-06-22 13:30:00.710563358 +0200 +++ /var/tmp/diff_new_pack.L5Vbxx/_new 2018-06-22 13:30:00.714563210 +0200 @@ -2,7 +2,7 @@ Source: goldendict Binary: goldendict Architecture: any -Version: 1.5.0~rc2+git.20170601T224956-0 +Version: 1.5.0~rc2+git.20180531T195211-0 Maintainer: Tvangeste <[email protected]> Homepage: http://goldendict.org/ Standards-Version: 3.9.3 ++++++ goldendict-Debian_7.0.dsc -> goldendict-Debian_9.0.dsc ++++++ --- /work/SRC/openSUSE:Factory/goldendict/goldendict-Debian_7.0.dsc 2017-07-12 19:35:20.581967465 +0200 +++ /work/SRC/openSUSE:Factory/.goldendict.new/goldendict-Debian_9.0.dsc 2018-06-22 13:29:58.394648956 +0200 @@ -2,8 +2,8 @@ Source: goldendict Binary: goldendict Architecture: any -Version: 1.5.0~rc2+git.20170601T224956-0 +Version: 1.5.0~rc2+git.20180531T195211-0 Maintainer: Tvangeste <[email protected]> Homepage: http://goldendict.org/ Standards-Version: 3.9.3 -Build-Depends: cdbs, debhelper (>= 7), libao-dev, libavformat-dev, libavutil-dev, libeb16-dev, liblzo2-dev, libxtst-dev, libbz2-dev, libhunspell-dev, libphonon-dev, libqt4-dev (>= 4.5.1), libqtwebkit-dev, libtiff4-dev, libvorbis-dev, libx11-dev, pkg-config, qt4-qmake, x11proto-record-dev, zlib1g-dev +Build-Depends: cdbs, debhelper (>= 7), libao-dev, libavformat-dev, libavutil-dev, libeb16-dev, liblzo2-dev, libxtst-dev, libbz2-dev, libhunspell-dev, libjpeg-dev, libphonon-dev, libqt4-dev (>= 4.5.1), libqtwebkit-dev, libtiff5-dev, libvorbis-dev, libx11-dev, pkg-config, qt4-qmake, x11proto-record-dev, zlib1g-dev ++++++ goldendict-xUbuntu_16.04.dsc ++++++ --- /var/tmp/diff_new_pack.L5Vbxx/_old 2018-06-22 13:30:00.754561732 +0200 +++ /var/tmp/diff_new_pack.L5Vbxx/_new 2018-06-22 13:30:00.758561584 +0200 @@ -2,7 +2,7 @@ Source: goldendict Binary: goldendict Architecture: any -Version: 1.5.0~rc2+git.20170601T224956-0 +Version: 1.5.0~rc2+git.20180531T195211-0 Maintainer: Tvangeste <[email protected]> Homepage: http://goldendict.org/ Standards-Version: 3.9.3 ++++++ goldendict-xUbuntu_12.04.dsc -> goldendict-xUbuntu_18.04.dsc ++++++ --- /work/SRC/openSUSE:Factory/goldendict/goldendict-xUbuntu_12.04.dsc 2017-07-12 19:35:20.669955036 +0200 +++ /work/SRC/openSUSE:Factory/.goldendict.new/goldendict-xUbuntu_18.04.dsc 2018-06-22 13:29:58.754635651 +0200 @@ -2,8 +2,8 @@ Source: goldendict Binary: goldendict Architecture: any -Version: 1.5.0~rc2+git.20170601T224956-0 +Version: 1.5.0~rc2+git.20180531T195211-0 Maintainer: Tvangeste <[email protected]> Homepage: http://goldendict.org/ Standards-Version: 3.9.3 -Build-Depends: cdbs, debhelper (>= 7), libao-dev, libavformat-dev, libavutil-dev, libjpeg-dev, liblzo2-dev, libxtst-dev, libbz2-dev, libhunspell-dev, libphonon-dev, libqt4-dev (>= 4.5.1), libqtwebkit-dev, libtiff4-dev, libvorbis-dev, libx11-dev, pkg-config, qt4-qmake, x11proto-record-dev, zlib1g-dev +Build-Depends: cdbs, debhelper (>= 7), libao-dev, libavformat-dev, libavutil-dev, libeb16-dev, liblzo2-dev, libxtst-dev, libbz2-dev, libhunspell-dev, libphonon-dev, libqt4-dev (>= 4.5.1), libqtwebkit-dev, libtiff5-dev, libvorbis-dev, libx11-dev, pkg-config, qt4-qmake, x11proto-record-dev, zlib1g-dev
