Hello community, here is the log from the commit of package tor for openSUSE:Factory checked in at 2017-09-21 12:35:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tor (Old) and /work/SRC/openSUSE:Factory/.tor.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "tor" Thu Sep 21 12:35:12 2017 rev:59 rq:527563 version:0.3.1.7 Changes: -------- --- /work/SRC/openSUSE:Factory/tor/tor.changes 2017-08-04 12:00:59.018047128 +0200 +++ /work/SRC/openSUSE:Factory/.tor.new/tor.changes 2017-09-21 12:35:31.453531366 +0200 @@ -1,0 +2,23 @@ +Wed Sep 20 14:44:09 UTC 2017 - [email protected] + +- tor 0.3.7.1: + * Serve and download directory information in more compact + formats + * New padding padding system to resist netflow-based traffic + analysis + * Improve protection against identification of tor traffic by ISP + via ConnectionPadding option + * Reduce the number of long-term connections open between relays +- add tor-0.3.1.7-fix-zstd-i586.patch to fix 32 bit build with zstd + +------------------------------------------------------------------- +Mon Sep 18 16:38:59 UTC 2017 - [email protected] + +- tor 0.3.0.11: + * CVE-2017-0380: hidden services with the SafeLogging option + disabled could disclose the stack TROVE-2017-008, boo#1059194 + * Update geoip and geoip6 to the September 6 2017 Maxmind GeoLite2 + Country database. + * drop tor-0.3.0.7-gcc7-fallthrough.patch, now upstream + +------------------------------------------------------------------- Old: ---- tor-0.3.0.10.tar.gz tor-0.3.0.10.tar.gz.asc tor-0.3.0.7-gcc7-fallthrough.patch New: ---- tor-0.3.1.7-fix-zstd-i586.patch tor-0.3.1.7.tar.gz tor-0.3.1.7.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tor.spec ++++++ --- /var/tmp/diff_new_pack.L0jIyL/_old 2017-09-21 12:35:32.501383908 +0200 +++ /var/tmp/diff_new_pack.L0jIyL/_new 2017-09-21 12:35:32.501383908 +0200 @@ -20,7 +20,7 @@ %define torgroup %{name} %define home_dir %{_localstatedir}/lib/empty Name: tor -Version: 0.3.0.10 +Version: 0.3.1.7 Release: 0 Summary: Anonymizing overlay network for TCP (The onion router) License: BSD-3-Clause @@ -34,19 +34,19 @@ Source4: tor.tmpfiles Source5: tor.firewall Patch0: tor-0.2.5.x-logrotate.patch -Patch1: tor-0.3.0.7-gcc7-fallthrough.patch +Patch1: tor-0.3.1.7-fix-zstd-i586.patch BuildRequires: openssl-devel >= 1.0.1 BuildRequires: pkgconfig >= 0.9.0 BuildRequires: pwdutils BuildRequires: python-base BuildRequires: pkgconfig(libevent) >= 2.0.10 +BuildRequires: pkgconfig(liblzma) BuildRequires: pkgconfig(libsystemd) +BuildRequires: pkgconfig(libzstd) BuildRequires: pkgconfig(systemd) -BuildRequires: pkgconfig(zlib) >= 1.2 Requires: logrotate Requires(post): %fillup_prereq Recommends: torsocks -BuildRoot: %{_tmppath}/%{name}-%{version}-build %{?systemd_requires} %description @@ -145,7 +145,6 @@ %service_del_postun tor.service %files -%defattr(-,root,root) %doc LICENSE README ChangeLog doc/HACKING doc/*.html %{_mandir}/man*/* %{_bindir}/%{name} ++++++ tor-0.3.1.7-fix-zstd-i586.patch ++++++ >From 427c2cc9e8f640769a7f8771c42b89948e78028e Mon Sep 17 00:00:00 2001 From: Andreas Stieger <[email protected]> Date: Mon, 18 Sep 2017 21:15:52 +0200 Subject: in zstd compression, fix 32 bit build References: https://trac.torproject.org/projects/tor/ticket/23568 https://gitweb.torproject.org/tor.git/commit/?id=427c2cc9e8f640769a7f8771c42b89948e78028e format '%lu' expects argument of type 'long unsigned int', but argument ... has type 'size_t' Closes ticket 23568. --- src/common/compress_zstd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common/compress_zstd.c b/src/common/compress_zstd.c index 0808bcd..63e92ed 100644 --- a/src/common/compress_zstd.c +++ b/src/common/compress_zstd.c @@ -62,10 +62,10 @@ tor_zstd_get_version_str(void) version_number = ZSTD_versionNumber(); tor_snprintf(version_str, sizeof(version_str), - "%lu.%lu.%lu", - version_number / 10000 % 100, - version_number / 100 % 100, - version_number % 100); + "%d.%d.%d", + (int) version_number / 10000 % 100, + (int) version_number / 100 % 100, + (int) version_number % 100); return version_str; #else -- cgit v1.1 ++++++ tor-0.3.0.10.tar.gz -> tor-0.3.1.7.tar.gz ++++++ ++++ 101847 lines of diff (skipped)
