Hello community, here is the log from the commit of package qbittorrent for openSUSE:Factory checked in at 2018-08-27 13:48:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qbittorrent (Old) and /work/SRC/openSUSE:Factory/.qbittorrent.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qbittorrent" Mon Aug 27 13:48:14 2018 rev:64 rq:629569 version:4.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/qbittorrent/qbittorrent.changes 2018-05-29 10:49:10.511071783 +0200 +++ /work/SRC/openSUSE:Factory/.qbittorrent.new/qbittorrent.changes 2018-08-27 13:48:33.668483995 +0200 @@ -1,0 +2,56 @@ +Thu Aug 16 10:30:16 UTC 2018 - [email protected] + +- Avoid bashisms in build script. + +------------------------------------------------------------------- +Mon Aug 13 10:24:32 UTC 2018 - [email protected] + +- Update to version 4.1.2: + * FEATURE: New options for "inhibit sleep". + * FEATURE: Add option for regexps in the transferlist search + filter's context menu. + * FEATURE: Add async io threads option to AdvancedSettings. + * FEATURE: Allow save resume interval to be disabled. + * FEATURE: Add checkbox for recursive download dialogue. + * FEATURE: Add a changelog link in the application updater. + * BUGFIX: Avoid allocating large memory when loading a .torrent + file. + * BUGFIX: Notify users on 1st time close/minimise to tray. + * BUGFIX: Fix I/O error after fetching magnet metadata. + * BUGFIX: Never save resume data for already paused torrents. + * BUGFIX: Put temporary files in qbt own temp folder. + * BUGFIX: Avoid potentially setting the wrong piece priorities. + * BUGFIX: Various code refactorings/improvements. + * BUGFIX: Add options "Download in sequential order" and + "Download first and last pieces first" in AddNewTorrentDialog. + * BUGFIX: Download favicon using appropriate protocol. + * BUGFIX: Apply proxy settings on DownloadManager creation. + * BUGFIX: Improve torrent initialisation. + * BUGFIX: Save resume data on torrent change events. + * BUGFIX: Increase default resume data save interval. + * BUGFIX: Work around crash when procesing recursive download. + * BUGFIX: Reduce queries to python version. + * BUGFIX: Disable certain mouse wheel events in Options dialogue. + * WEBUI: Send all rechecks in one request. + * WEBUI: Add WebUI Force Reannounce option. + * WEBUI: Create non-existing path in setLocationAction(). + * WEBUI: Add WebUI support for Mac ⌘ (Command) key. + * WEBUI: Show current save path in the "Set location" window. + * WEBUI: Fix WebUI cache behavior for css files. + * WEBUI: Send Cache-Control header in WebUI responses. + * WEBUI: Add form-action to CSP. + * WEBUI: Add upgrade-insecure-requests to CSP when HTTPS is + enabled. + * WEBUI: Reset WebUI ban counter on login success. + * WEBUI: Add logging messages in WebUI login action. + * WEBUI: Add option to control CSRF protection. + * WEBUI: Add option to control WebUI clickjacking protection. + * RSS: Implement "Sequential downloading" feature. + * RSS: Don't use Atom/RSS feed URLs as base for file names. + * SEARCH: Add a name filter for search results. + * SEARCH: Fix python version detection. + * SEARCH: Clear python cache conditionally. + * SEARCH: Properly normalise version string before parsing it. + * OTHER: Fix CMake build with QtSingleApplication. + +------------------------------------------------------------------- Old: ---- qbittorrent-4.1.1.tar.xz qbittorrent-4.1.1.tar.xz.asc New: ---- qbittorrent-4.1.2.tar.xz qbittorrent-4.1.2.tar.xz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qbittorrent.spec ++++++ --- /var/tmp/diff_new_pack.YGUN8k/_old 2018-08-27 13:48:36.212487615 +0200 +++ /var/tmp/diff_new_pack.YGUN8k/_new 2018-08-27 13:48:36.212487615 +0200 @@ -18,28 +18,20 @@ Name: qbittorrent -Version: 4.1.1 +Version: 4.1.2 Release: 0 Summary: A BitTorrent client in Qt -License: GPL-2.0+ +License: GPL-2.0-or-later Group: Productivity/Networking/File-Sharing -Url: https://www.qbittorrent.org +URL: https://qbittorrent.org Source: https://downloads.sf.net/%{name}/%{name}-%{version}.tar.xz Source1: https://downloads.sf.net/%{name}/%{name}-%{version}.tar.xz.asc Source2: %{name}.keyring BuildRequires: cmake -%if 0%{?suse_version} >= 1500 -BuildRequires: libboost_system-devel -%else -BuildRequires: boost-devel -%endif BuildRequires: fdupes BuildRequires: hicolor-icon-theme BuildRequires: libqt5-linguist-devel >= 5.5.1 BuildRequires: pkgconfig -%if 0%{?suse_version} < 1500 -BuildRequires: update-desktop-files -%endif BuildRequires: pkgconfig(Qt5Concurrent) >= 5.5.1 BuildRequires: pkgconfig(Qt5Core) >= 5.5.1 BuildRequires: pkgconfig(Qt5DBus) >= 5.5.1 @@ -52,10 +44,16 @@ BuildRequires: pkgconfig(systemd) # For geolocalisation. Requires: GeoIP +%requires_ge libtorrent-rasterbar9 Recommends: python # For search engines. Recommends: python3 -%requires_ge libtorrent-rasterbar9 +%if 0%{?suse_version} >= 1500 +BuildRequires: libboost_system-devel +%else +BuildRequires: boost-devel +BuildRequires: update-desktop-files +%endif %description qBittorrent is a bittorrent client programmed in C++ and Qt that @@ -67,7 +65,7 @@ %package nox Summary: A BitTorrent client in Qt, CLI version Group: Productivity/Networking/File-Sharing -%{systemd_requires} +%{?systemd_requires} %description nox qBittorrent is a bittorrent client programmed in C++ and Qt that @@ -78,15 +76,13 @@ %setup -q %build -%ifarch %ix86 %arm -export CXXFLAGS="-Wno-error=sign-compare" -%endif for ui in nox gui; do - [[ "$ui" == nox ]] && ui_opt='-DGUI=OFF' || ui_opt= + [ "$ui" = nox ] && ui_opt="-DCMAKE_DISABLE_FIND_PACKAGE_Qt5Widgets=ON" || ui_opt= %cmake \ $ui_opt \ - -DSYSTEMD=ON - make %{?_smp_mflags} + -DSYSTEMD=ON \ + -DSystemd_SERVICES_INSTALL_DIR=%{_unitdir} + make %{?_smp_mflags} V=1 cd .. mv build build.$ui done @@ -126,8 +122,8 @@ %service_add_post %{name}[email protected] %files -%doc AUTHORS Changelog README.md TODO %license COPYING +%doc AUTHORS Changelog README.md TODO %{_bindir}/%{name} %{_datadir}/applications/%{name}.desktop %{_datadir}/icons/hicolor/*/apps/%{name}.png @@ -138,8 +134,8 @@ %{_mandir}/man?/%{name}.?%{?ext_man} %files nox -%doc AUTHORS Changelog README.md TODO %license COPYING +%doc AUTHORS Changelog README.md TODO %{_bindir}/%{name}-nox %{_sbindir}/rc%{name}-nox %{_unitdir}/%{name}[email protected] ++++++ qbittorrent-4.1.1.tar.xz -> qbittorrent-4.1.2.tar.xz ++++++ ++++ 505917 lines of diff (skipped)
