wok rev 24963

updated neon and neon-dev (0.30.2 -> 0.32.2)
author Hans-G?nter Theisgen
date Sun Apr 24 07:32:05 2022 +0100 (2022-04-24)
parents 25d5b5a73d2e
children 3f8f42d47b65
files neon-dev/receipt neon/description.txt neon/receipt
line diff
     1.1 --- a/neon-dev/receipt	Sun Apr 24 07:20:09 2022 +0100
     1.2 +++ b/neon-dev/receipt	Sun Apr 24 07:32:05 2022 +0100
     1.3 @@ -1,12 +1,12 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="neon-dev"
     1.7 -VERSION="0.30.2"
     1.8 +VERSION="0.32.2"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Neon HTTP and WebDAV client library - development files."
    1.11  MAINTAINER="lehswe@gmail.com"
    1.12  LICENSE="GPL2"
    1.13 -WEB_SITE="http://www.webdav.org/neon"
    1.14 +WEB_SITE="https://notroj.github.io/neon/"
    1.15  
    1.16  DEPENDS="pkg-config"
    1.17  WANTED="neon"
    1.18 @@ -14,9 +14,7 @@
    1.19  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.20  genpkg_rules()
    1.21  {
    1.22 -	mkdir -p $fs/usr/lib
    1.23 -
    1.24 -	cp -a $install/usr/lib/*a		$fs/usr/lib
    1.25 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.26 -	cp -a $install/usr/include		$fs/usr
    1.27 +	cook_copy_folders	include
    1.28 +	cook_copy_folders	pkgconfig
    1.29 +	cook_copy_files		*.*a
    1.30  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/neon/description.txt	Sun Apr 24 07:32:05 2022 +0100
     2.3 @@ -0,0 +1,21 @@
     2.4 +Neon is an HTTP/1.1 and WebDAV client library, with a C interface.
     2.5 +
     2.6 +Features:
     2.7 +
     2.8 +- High-level wrappers for common HTTP and WebDAV operations
     2.9 +  (GET, MOVE, DELETE, etc)
    2.10 +  Low-level interface to the HTTP request/response engine,
    2.11 +  allowing the use of arbitrary HTTP methods, headers, etc.
    2.12 +- Authentication support including Basic and Digest support,
    2.13 +  along with GSSAPI-based Negotiate on Unix, and SSPI-based
    2.14 +  Negotiate/NTLM on Win32
    2.15 +- SSL/TLS support using OpenSSL or GnuTLS;
    2.16 +  exposing an abstraction layer for verifying server certificates,
    2.17 +  handling client certificates, and examining certificate properties.
    2.18 +- Smartcard-based client certificates are also supported via a
    2.19 +  PKCS#11 wrapper interface
    2.20 +- Abstract interface to parsing XML using libxml2 or expat,
    2.21 +  and wrappers for simplifying handling XML HTTP response bodies
    2.22 +- WebDAV metadata support;
    2.23 +  wrappers for PROPFIND and PROPPATCH to simplify property manipulation
    2.24 +
     3.1 --- a/neon/receipt	Sun Apr 24 07:20:09 2022 +0100
     3.2 +++ b/neon/receipt	Sun Apr 24 07:32:05 2022 +0100
     3.3 @@ -1,19 +1,19 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="neon"
     3.7 -VERSION="0.30.2"
     3.8 +VERSION="0.32.2"
     3.9  CATEGORY="development"
    3.10  TAGS="http webdav"
    3.11  SHORT_DESC="Neon HTTP and WebDAV client library."
    3.12  MAINTAINER="lehswe@gmail.com"
    3.13  LICENSE="GPL2"
    3.14 -WEB_SITE="http://www.webdav.org/neon"
    3.15 +WEB_SITE="https://notroj.github.io/neon/"
    3.16  
    3.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.18 -WGET_URL="http://www.webdav.org/neon/$TARBALL"
    3.19 +WGET_URL="https://notroj.github.io/$PACKAGE/$TARBALL"
    3.20  
    3.21  DEPENDS="expat libcomerr3 libkrb5 libssl zlib"
    3.22 -BUILD_DEPENDS="expat-dev libxml2-dev openssl-dev zlib-dev"
    3.23 +BUILD_DEPENDS="expat-dev libxml2-dev openssl-dev xmlto zlib-dev"
    3.24  
    3.25  # What is the latest version available today?
    3.26  current_version()
    3.27 @@ -32,16 +32,15 @@
    3.28  		--mandir=/usr/share/man		\
    3.29  		--enable-shared			\
    3.30  		--disable-static		\
    3.31 +		--with-libxml2			\
    3.32  		$CONFIGURE_ARGS &&
    3.33  	make &&
    3.34 -	make DESTDIR=$DESTDIR install
    3.35 +	make install DESTDIR=$DESTDIR
    3.36  }
    3.37  
    3.38  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.39  genpkg_rules()
    3.40  {
    3.41 -	mkdir -p $fs/usr/lib
    3.42 -
    3.43 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    3.44 -	cp -a $install/usr/bin		$fs/usr
    3.45 +	cook_copy_folders	bin
    3.46 +	cook_copy_files		*.so*
    3.47  }