diff --git a/server/web/libmicrohttpd/actions.py b/server/web/libmicrohttpd/actions.py index a56545582f..0f49d1799a 100644 --- a/server/web/libmicrohttpd/actions.py +++ b/server/web/libmicrohttpd/actions.py @@ -2,18 +2,20 @@ # -*- coding: utf-8 -*- # # Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/copyleft/gpl.txt +# See the file https://www.gnu.org/licenses/gpl-3.0.txt from pisi.actionsapi import autotools from pisi.actionsapi import pisitools from pisi.actionsapi import get +i = ''.join([ + ' --prefix=/usr', + ' --enable-{https,shared}', + ' --disable-{curl,examples,static} ' + ]) + def setup(): - autotools.configure("--disable-static \ - --enable-shared \ - --disable-curl \ - --disable-examples \ - --enable-https") + autotools.configure(i) def build(): autotools.make() @@ -21,4 +23,4 @@ def build(): def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README") + pisitools.dodoc("AUTHORS", "COPYING") diff --git a/server/web/libmicrohttpd/pspec.xml b/server/web/libmicrohttpd/pspec.xml index d4f0a48bfa..d3b397d921 100644 --- a/server/web/libmicrohttpd/pspec.xml +++ b/server/web/libmicrohttpd/pspec.xml @@ -1,18 +1,18 @@ - + libmicrohttpd - http://www.gnu.org/software/libmicrohttpd + https://www.gnu.org/software/libmicrohttpd/ PisiLinux Community admins@pisilinux.org - LGPLv2+ + LGPLv2.1 library - A compact API and implementation of HTTP web server + A compact API and implementation of HTTP web server. libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application. - http://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.77.tar.gz + https://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-1.0.1.tar.gz gnutls-devel @@ -25,8 +25,8 @@ /usr/lib - /usr/share/man /usr/share/info + /usr/share/man /usr/share/doc @@ -34,9 +34,6 @@ libmicrohttpd-devel Development files for libmicrohttpd - - gnutls-devel - gnutls-devel libmicrohttpd @@ -44,11 +41,17 @@ /usr/include /usr/lib/pkgconfig - /usr/share/man/man3 + + 2025-02-06 + 1.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-05-31 0.9.77