# HG changeset patch # User Hans-G?nter Theisgen # Date 1650781925 -3600 # Node ID e95024856175e3e6532fcb26e2e4b9c59d21c15c # Parent 25d5b5a73d2eacb84dbfccbf89d9482fceb62d56 updated neon and neon-dev (0.30.2 -> 0.32.2) diff -r 25d5b5a73d2e -r e95024856175 neon-dev/receipt --- a/neon-dev/receipt Sun Apr 24 07:20:09 2022 +0100 +++ b/neon-dev/receipt Sun Apr 24 07:32:05 2022 +0100 @@ -1,12 +1,12 @@ # SliTaz package receipt. PACKAGE="neon-dev" -VERSION="0.30.2" +VERSION="0.32.2" CATEGORY="development" SHORT_DESC="Neon HTTP and WebDAV client library - development files." MAINTAINER="lehswe@gmail.com" LICENSE="GPL2" -WEB_SITE="http://www.webdav.org/neon" +WEB_SITE="https://notroj.github.io/neon/" DEPENDS="pkg-config" WANTED="neon" @@ -14,9 +14,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r 25d5b5a73d2e -r e95024856175 neon/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/neon/description.txt Sun Apr 24 07:32:05 2022 +0100 @@ -0,0 +1,21 @@ +Neon is an HTTP/1.1 and WebDAV client library, with a C interface. + +Features: + +- High-level wrappers for common HTTP and WebDAV operations + (GET, MOVE, DELETE, etc) + Low-level interface to the HTTP request/response engine, + allowing the use of arbitrary HTTP methods, headers, etc. +- Authentication support including Basic and Digest support, + along with GSSAPI-based Negotiate on Unix, and SSPI-based + Negotiate/NTLM on Win32 +- SSL/TLS support using OpenSSL or GnuTLS; + exposing an abstraction layer for verifying server certificates, + handling client certificates, and examining certificate properties. +- Smartcard-based client certificates are also supported via a + PKCS#11 wrapper interface +- Abstract interface to parsing XML using libxml2 or expat, + and wrappers for simplifying handling XML HTTP response bodies +- WebDAV metadata support; + wrappers for PROPFIND and PROPPATCH to simplify property manipulation + diff -r 25d5b5a73d2e -r e95024856175 neon/receipt --- a/neon/receipt Sun Apr 24 07:20:09 2022 +0100 +++ b/neon/receipt Sun Apr 24 07:32:05 2022 +0100 @@ -1,19 +1,19 @@ # SliTaz package receipt. PACKAGE="neon" -VERSION="0.30.2" +VERSION="0.32.2" CATEGORY="development" TAGS="http webdav" SHORT_DESC="Neon HTTP and WebDAV client library." MAINTAINER="lehswe@gmail.com" LICENSE="GPL2" -WEB_SITE="http://www.webdav.org/neon" +WEB_SITE="https://notroj.github.io/neon/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="http://www.webdav.org/neon/$TARBALL" +WGET_URL="https://notroj.github.io/$PACKAGE/$TARBALL" DEPENDS="expat libcomerr3 libkrb5 libssl zlib" -BUILD_DEPENDS="expat-dev libxml2-dev openssl-dev zlib-dev" +BUILD_DEPENDS="expat-dev libxml2-dev openssl-dev xmlto zlib-dev" # What is the latest version available today? current_version() @@ -32,16 +32,15 @@ --mandir=/usr/share/man \ --enable-shared \ --disable-static \ + --with-libxml2 \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/lib/*.so* $fs/usr/lib - cp -a $install/usr/bin $fs/usr + cook_copy_folders bin + cook_copy_files *.so* }