Accepting request 1144800 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1144800 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libmicrohttpd?expand=0&rev=45
This commit is contained in:
commit
3befdfd95f
BIN
libmicrohttpd-0.9.77.tar.gz
(Stored with Git LFS)
BIN
libmicrohttpd-0.9.77.tar.gz
(Stored with Git LFS)
Binary file not shown.
Binary file not shown.
3
libmicrohttpd-1.0.0.tar.gz
Normal file
3
libmicrohttpd-1.0.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a02792d3cd1520e2ecfed9df642079d44a36ed87167442b28d7ed19e906e3e96
|
||||||
|
size 2238702
|
BIN
libmicrohttpd-1.0.0.tar.gz.sig
Normal file
BIN
libmicrohttpd-1.0.0.tar.gz.sig
Normal file
Binary file not shown.
@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 5 18:21:53 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
- libmicrohttpd 1.0.0:
|
||||||
|
* first stable release
|
||||||
|
* Client request parsing was rewritten to RFC 9910 and RFC 9112
|
||||||
|
* Support for strict and lenient specification enforcement
|
||||||
|
* Digest Auth was reworked, improved support for RFC 7617
|
||||||
|
* Improved functionality in multi-threading environment,
|
||||||
|
especially with external sockets polling modes.
|
||||||
|
* Reworked Basic Auth, adding new convenient API functions.
|
||||||
|
* Re-implemented GnuTLS initialisation. Now supported
|
||||||
|
libmicrohttpd-specific system-wide configuration, as well as
|
||||||
|
generic GnuTLS system-wide configuration. Application may adjust
|
||||||
|
settings based on system configuration instead of specifying its
|
||||||
|
own full configuration.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 31 04:59:03 UTC 2023 - Andreas Stieger <Andreas.Stieger@gmx.de>
|
Wed May 31 04:59:03 UTC 2023 - Andreas Stieger <Andreas.Stieger@gmx.de>
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
# Copyright (c) 2010,2011,2012 Stephan Kleine
|
# Copyright (c) 2010,2011,2012 Stephan Kleine
|
||||||
|
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -20,7 +21,7 @@
|
|||||||
%global sover 12
|
%global sover 12
|
||||||
%global libname %{name}%{sover}
|
%global libname %{name}%{sover}
|
||||||
Name: libmicrohttpd
|
Name: libmicrohttpd
|
||||||
Version: 0.9.77
|
Version: 1.0.0
|
||||||
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
|
||||||
@ -85,7 +86,7 @@ Headers, pkg-config files, so link and other development files for %{name}
|
|||||||
(%{summary}).
|
(%{summary}).
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
%configure \
|
||||||
@ -107,13 +108,9 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
|||||||
rm -v %{buildroot}%{_infodir}/%{name}_performance_data.png
|
rm -v %{buildroot}%{_infodir}/%{name}_performance_data.png
|
||||||
|
|
||||||
%check
|
%check
|
||||||
# Parallel execution of tests fail
|
%make_build check
|
||||||
# Tests randomly fail so keep them in log for inspection rather than for valid
|
|
||||||
# verification of anything.
|
|
||||||
%make_build -j1 check || :
|
|
||||||
|
|
||||||
%post -n %{libname} -p /sbin/ldconfig
|
%ldconfig_scriptlets -n %{libname}
|
||||||
%postun -n %{libname} -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%files -n %{libname}
|
%files -n %{libname}
|
||||||
%license COPYING
|
%license COPYING
|
||||||
|
Loading…
Reference in New Issue
Block a user