Hello community,

here is the log from the commit of package apr for openSUSE:Factory checked in 
at 2019-08-16 15:28:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/apr (Old)
 and      /work/SRC/openSUSE:Factory/.apr.new.22127 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "apr"

Fri Aug 16 15:28:39 2019 rev:11 rq:723019 version:1.7.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/apr/apr.changes  2019-02-11 21:16:15.187373326 
+0100
+++ /work/SRC/openSUSE:Factory/.apr.new.22127/apr.changes       2019-08-16 
15:28:42.313992977 +0200
@@ -1,0 +2,42 @@
+Sat Aug  3 14:11:24 UTC 2019 - Manu Maier <[email protected]>
+
+- Version 1.7.0
+  * apr_dir_read: [Unix] Dropped the preference of the dirread_r() flavor
+    for dirread(), because the former is both deprecated and unneeded.
+    [Yann Ylavic, William Rowe]
+  * apr_file_info: [Win32 only] Treat only "name surrogate" reparse points
+    as symlinks, and not other reparse tag types. PR47630
+    [Oleg Liatte <olegliatte gmail.com>]
+  * Test %ld vs. %lld to avoid compiler emits using APR_OFF_T_FMT, in the
+    case of apparently equivilant long and long long types. [William Rowe] 
+  * Recognize APPLE predefined macros as equivilant to DARWIN. [Jim Jagielski]
+  * Signals: Allow handling of SIGUSR2 in apr_signal_thread. [Yann Ylavic]
+  * Atomics: Support for 64bit ints. [Jim Jagielski]
+  * Add the apr_encode_* API that implements RFC4648 and RFC7515
+    compliant BASE64, BASE64URL, BASE32, BASE32HEX and BASE16
+    encode/decode functions. [Graham Leggett]
+  * rand: Use arc4random_buf() on BSD platforms and getrandom() on Linux,
+    when available. [Christian Weisgerber <naddy openbsd.org, Yann Ylavic]
+  * Add apr_sockaddr_zone_set, apr_sockaddr_zone_set to set and retrieve
+    the zone for link-local IPv6 addresses.  [Joe Orton]
+  * apr_sockaddr_equal: Compare link-local IPv6 addresses with different
+    zones as not equal.  [Joe Orton]
+  * apr_sockaddr_ip_getbuf, apr_sockaddr_ip_get: Append "%zone" for
+    IPv6 link-local addresses.  [Joe Orton]
+  * Locks: add a --disable-timedlocks config option in case users
+    encounter more platforms where it fails [Nick Kew].
+  * apr_allocator, apr_pools: Add apr_allocator_page_size() and
+    apr_allocator_min_order_set() to respectively get the (system's) page size
+    in use and set the minimum allocation size for an allocator (expressed in
+    2^order pages).  [Yann Ylavic]
+  * locks: provide portable implementations of timedlock()s for
+    posix-sems, sysv-sems and pthreads for those platforms that
+    lack native versions (eg: OSX/macOS). [Jim Jagielski]
+  * locks: Introduce apr_{thread,proc,global}_mutex_timedlock().
+    [Yann Ylavic]
+- Remove patch
+  * apr-use-getrandom.patch no longer needed, apr 1.7.0 use getrandom() on 
Linux,
+    when available.
+- Refresh apr-visibility.patch    
+
+-------------------------------------------------------------------

Old:
----
  apr-1.6.5.tar.bz2
  apr-1.6.5.tar.bz2.asc
  apr-use-getrandom.patch

New:
----
  apr-1.7.0.tar.bz2
  apr-1.7.0.tar.bz2.asc

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

Other differences:
------------------
++++++ apr.spec ++++++
--- /var/tmp/diff_new_pack.LJQ76C/_old  2019-08-16 15:28:43.885992630 +0200
+++ /var/tmp/diff_new_pack.LJQ76C/_new  2019-08-16 15:28:43.885992630 +0200
@@ -21,7 +21,7 @@
 %define         installbuilddir %{_libdir}/apr-%{aprver}/build
 %define         includedir %{_includedir}/apr-%{aprver}
 Name:           apr
-Version:        1.6.5
+Version:        1.7.0
 Release:        0
 Summary:        Apache Portable Runtime (APR) Library
 License:        Apache-2.0
@@ -31,7 +31,6 @@
 Source1:        https://www.apache.org/dist/apr/apr-%{version}.tar.bz2.asc
 Source2:        %{name}.keyring
 Patch5:         apr-visibility.patch
-Patch6:         apr-use-getrandom.patch
 Patch9:         apr-proc-mutex-map-anon.patch
 # prevent random failures of the testsuite (sendfile test)
 Patch10:        apr-test-sendfile-timeout.patch
@@ -85,7 +84,6 @@
 %prep
 %setup -q
 %patch5 -p1
-%patch6 -p1
 %patch9 -p1
 %patch10 -p1
 

++++++ apr-1.6.5.tar.bz2 -> apr-1.7.0.tar.bz2 ++++++
++++ 16990 lines of diff (skipped)

++++++ apr-visibility.patch ++++++
--- /var/tmp/diff_new_pack.LJQ76C/_old  2019-08-16 15:28:44.629992466 +0200
+++ /var/tmp/diff_new_pack.LJQ76C/_new  2019-08-16 15:28:44.629992466 +0200
@@ -1,8 +1,8 @@
-Index: apr-1.6.3/include/apr.h.in
+Index: apr-1.7.0/include/apr.h.in
 ===================================================================
---- apr-1.6.3.orig/include/apr.h.in
-+++ apr-1.6.3/include/apr.h.in
-@@ -477,7 +477,7 @@ typedef  apr_uint32_t            apr_uin
+--- apr-1.7.0.orig/include/apr.h.in
++++ apr-1.7.0/include/apr.h.in
+@@ -495,7 +495,7 @@ typedef  apr_uint32_t            apr_uin
   * headers, without defining APR_DECLARE_STATIC, will prepare the code to be
   * linked to the dynamic library.
   */
@@ -11,7 +11,7 @@
  
  /**
   * The public APR functions using variable arguments are declared with 
-@@ -490,7 +490,7 @@ typedef  apr_uint32_t            apr_uin
+@@ -508,7 +508,7 @@ typedef  apr_uint32_t            apr_uin
   *
   * </PRE>
   */
@@ -20,7 +20,7 @@
  
  /**
   * The public APR variables are declared with AP_MODULE_DECLARE_DATA.
-@@ -506,7 +506,7 @@ typedef  apr_uint32_t            apr_uin
+@@ -524,7 +524,7 @@ typedef  apr_uint32_t            apr_uin
   *
   * </PRE>
   */
@@ -31,8 +31,8 @@
  #define APR_DECLARE(type)            type __stdcall
 Index: apr-1.6.3/include/apr_support.h
 ===================================================================
---- apr-1.6.3.orig/include/apr_support.h
-+++ apr-1.6.3/include/apr_support.h
+--- apr-1.7.0.orig/include/apr_support.h
++++ apr-1.7.0/include/apr_support.h
 @@ -45,7 +45,7 @@ extern "C" {
   *        otherwise wait for data to be able to be written. 
   * @return APR_TIMEUP if we run out of time.



Reply via email to