wok rev 24627
updated gsasl and gsasl-lang (1.8.1 -> 1.10.0)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 08 08:57:07 2022 +0100 (2022-03-08) |
parents | ad9008f821da |
children | 290e2045aaea |
files | gsasl-dev/receipt gsasl-lang/receipt gsasl/description.txt gsasl/receipt |
line diff
1.1 --- a/gsasl-dev/receipt Mon Mar 07 17:32:18 2022 +0000 1.2 +++ b/gsasl-dev/receipt Tue Mar 08 08:57:07 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gsasl-dev" 1.7 -VERSION="1.8.1" 1.8 +VERSION="1.10.0" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Simple Authentication and Security Layer, development files." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 @@ -14,9 +14,7 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib 1.17 - 1.18 - cp -a $install/usr/include $fs/usr 1.19 - cp -a $install/usr/lib/*a $fs/usr/lib 1.20 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.21 + cook_copy_folders include 1.22 + cook_copy_folders pkgconfig 1.23 + cook_copy_files *.*a 1.24 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/gsasl-lang/receipt Tue Mar 08 08:57:07 2022 +0100 2.3 @@ -0,0 +1,16 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="gsasl-lang" 2.7 +VERSION="1.10.0" 2.8 +CATEGORY="localization" 2.9 +SHORT_DESC="Simple Authentication and Security Layer - localised messages." 2.10 +MAINTAINER="maintainer@slitaz.org" 2.11 +LICENSE="GPL3" 2.12 +WEB_SITE="https://www.gnu.org/software/gsasl/" 2.13 + 2.14 +WANTED="gsasl" 2.15 + 2.16 +genpkg_rules() 2.17 +{ 2.18 + cook_copy_folders locale 2.19 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/gsasl/description.txt Tue Mar 08 08:57:07 2022 +0100 3.3 @@ -0,0 +1,19 @@ 3.4 +GNU SASL is an implementation of the Simple Authentication and 3.5 +Security Layer framework and a few common SASL mechanisms. 3.6 +SASL is used by network servers (e.g., IMAP, SMTP, XMPP) to 3.7 +request authentication from clients, and in clients to 3.8 +authenticate against servers. 3.9 + 3.10 +GNU SASL consists of a C library (libgsasl), a command-line 3.11 +application (gsasl), and a manual. 3.12 +The library supports the ANONYMOUS, CRAM-MD5, DIGEST-MD5, 3.13 +EXTERNAL, GS2-KRB5, GSSAPI, LOGIN, NTLM, OPENID20, PLAIN, 3.14 +SCRAM-SHA-1, SCRAM-SHA-1-PLUS, SCRAM-SHA-256, SCRAM-SHA-256-PLUS, 3.15 +SAML20, and SECURID mechanisms. 3.16 + 3.17 +The library is portable because it does not do network 3.18 +communication by itself, but rather leaves it up to the calling 3.19 +application. 3.20 +The library is flexible with regards to the authorization 3.21 +infrastructure used, as it utilizes callbacks into the application 3.22 +to decide whether an user is authorized or not.
4.1 --- a/gsasl/receipt Mon Mar 07 17:32:18 2022 +0000 4.2 +++ b/gsasl/receipt Tue Mar 08 08:57:07 2022 +0100 4.3 @@ -1,7 +1,7 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="gsasl" 4.7 -VERSION="1.8.1" 4.8 +VERSION="1.10.0" 4.9 CATEGORY="system-tools" 4.10 SHORT_DESC="Simple Authentication and Security Layer." 4.11 MAINTAINER="pascal.bellard@slitaz.org" 4.12 @@ -11,7 +11,8 @@ 4.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 4.14 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 4.15 4.16 -DEPENDS="gnutls libcomerr3 libgcrypt libgpg-error libidn libkrb5 4.17 +SUGGESTED="gsasl-lang" 4.18 +DEPENDS="gnutls libcomerr3 libgcrypt libgpg-error libidn libkrb5 4.19 libtasn1 ncurses readline zlib" 4.20 BUILD_DEPENDS="libgcrypt-dev" 4.21 4.22 @@ -30,15 +31,13 @@ 4.23 --infodir=/usr/share/info \ 4.24 --mandir=/usr/share/man \ 4.25 $CONFIGURE_ARGS && 4.26 - make $MAKEFLAGS -j 1 && 4.27 - make DESTDIR=$DESTDIR install 4.28 + make $MAKEFLAGS && 4.29 + make install DESTDIR=$DESTDIR 4.30 } 4.31 4.32 # Rules to gen a SliTaz package suitable for Tazpkg. 4.33 genpkg_rules() 4.34 { 4.35 - mkdir -p $fs/usr/lib 4.36 - 4.37 - cp -a $install/usr/bin $fs/usr 4.38 - cp -a $install/usr/lib/*.so* $fs/usr/lib 4.39 + cook_copy_folders bin 4.40 + cook_copy_files *.so* 4.41 }