Accepting request 580331 from home:mnhauke
- Update to version 0.9.59: * Fix masking operation. * Fix deadlock when failing to prepare chunked response * Fix __clang_major__ related warnings for non-clang compilers. * Fixed tests on platforms with huge number of CPUs. * Doxygen configuration was updated. * Various doxygen fixes. - Update to version 0.9.58: * Fixed HTTPS tests on modern platforms. * Minor documentation installation fixes. * Tolerate AF_UNIX when trying to determine our binding port from socket. Use `sockaddr_storage` instead of trying to guess the sockaddr type before calling getsockname(). OBS-URL: https://build.opensuse.org/request/show/580331 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libmicrohttpd?expand=0&rev=83
This commit is contained in:
parent
6764701fcd
commit
c6e793c943
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:dec1a76487d7e48ad74b468a888bfda1c05731f185ff950f1e363ca9d39caf4e
|
|
||||||
size 1332713
|
|
Binary file not shown.
3
libmicrohttpd-0.9.59.tar.gz
Normal file
3
libmicrohttpd-0.9.59.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9b9ccd7d0b11b0e179f1f58dc2caa3e0c62c8609e1e1dc7dcaadf941b67d923c
|
||||||
|
size 1396234
|
BIN
libmicrohttpd-0.9.59.tar.gz.sig
Normal file
BIN
libmicrohttpd-0.9.59.tar.gz.sig
Normal file
Binary file not shown.
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 26 19:05:14 UTC 2018 - mardnh@gmx.de
|
||||||
|
|
||||||
|
- Update to version 0.9.59:
|
||||||
|
* Fix masking operation.
|
||||||
|
* Fix deadlock when failing to prepare chunked response
|
||||||
|
* Fix __clang_major__ related warnings for non-clang compilers.
|
||||||
|
* Fixed tests on platforms with huge number of CPUs.
|
||||||
|
* Doxygen configuration was updated.
|
||||||
|
* Various doxygen fixes.
|
||||||
|
|
||||||
|
- Update to version 0.9.58:
|
||||||
|
* Fixed HTTPS tests on modern platforms.
|
||||||
|
* Minor documentation installation fixes.
|
||||||
|
* Tolerate AF_UNIX when trying to determine our binding port
|
||||||
|
from socket. Use `sockaddr_storage` instead of trying to
|
||||||
|
guess the sockaddr type before calling getsockname().
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 1 14:05:56 UTC 2017 - tchvatal@suse.com
|
Fri Dec 1 14:05:56 UTC 2017 - tchvatal@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libmicrohttpd
|
# spec file for package libmicrohttpd
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010,2011,2012 Stephan Kleine
|
# Copyright (c) 2010,2011,2012 Stephan Kleine
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@ -20,12 +20,12 @@
|
|||||||
%global sover 12
|
%global sover 12
|
||||||
%global libname %{name}%{sover}
|
%global libname %{name}%{sover}
|
||||||
Name: libmicrohttpd
|
Name: libmicrohttpd
|
||||||
Version: 0.9.57
|
Version: 0.9.59
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Small Embeddable HTTP Server Library
|
Summary: Small Embeddable HTTP Server Library
|
||||||
# Some internal tests are licenced as GPL-3.0+ - they are only used in
|
# Some internal tests are licenced as GPL-3.0+ - they are only used in
|
||||||
# check phase and not shipped further
|
# check phase and not shipped further
|
||||||
License: LGPL-2.1+ AND GPL-3.0+
|
License: LGPL-2.1-or-later AND GPL-3.0-or-later
|
||||||
Group: Productivity/Networking/Web/Servers
|
Group: Productivity/Networking/Web/Servers
|
||||||
Url: https://www.gnu.org/software/libmicrohttpd/
|
Url: https://www.gnu.org/software/libmicrohttpd/
|
||||||
Source0: https://ftp.gnu.org/gnu/libmicrohttpd/%{name}-%{version}.tar.gz
|
Source0: https://ftp.gnu.org/gnu/libmicrohttpd/%{name}-%{version}.tar.gz
|
||||||
@ -71,7 +71,7 @@ application, check it out.
|
|||||||
|
|
||||||
%package -n %{libname}
|
%package -n %{libname}
|
||||||
Summary: Small embeddable http server library
|
Summary: Small embeddable http server library
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1-or-later
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n %{libname}
|
%description -n %{libname}
|
||||||
@ -79,7 +79,7 @@ Shared library for %{name} (%{summary}).
|
|||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Small Embeddable HTTP Server Library
|
Summary: Small Embeddable HTTP Server Library
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1-or-later
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: %{libname} = %{version}
|
Requires: %{libname} = %{version}
|
||||||
Requires: pkgconfig
|
Requires: pkgconfig
|
||||||
@ -110,6 +110,7 @@ make %{?_smp_mflags}
|
|||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
find %{buildroot} -type f -name "*.la" -delete -print
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
rm -f %{buildroot}%{_infodir}/%{name}_performance_data.png
|
||||||
|
|
||||||
%check
|
%check
|
||||||
# Paralel execution of tests fail
|
# Paralel execution of tests fail
|
||||||
|
Loading…
Reference in New Issue
Block a user