wok rev 25083
updated p11-kit and p11-kit-dev (0.23.20 -> 0.24.1)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jun 15 17:22:15 2022 +0100 (2022-06-15) |
parents | 34efc600820e |
children | 04e644032779 |
files | p11-kit-dev/receipt p11-kit/description.txt p11-kit/receipt |
line diff
1.1 --- a/p11-kit-dev/receipt Wed Jun 15 17:04:41 2022 +0100 1.2 +++ b/p11-kit-dev/receipt Wed Jun 15 17:22:15 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="p11-kit-dev" 1.7 -VERSION="0.23.20" 1.8 +VERSION="0.24.1" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Library to work with PKCS#11 modules, development files." 1.11 MAINTAINER="slaxemulator@gmail.com" 1.12 @@ -16,8 +16,6 @@ 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/lib/pkgconfig $fs/usr/lib 1.19 - cp -a $install/usr/include $fs/usr 1.20 + cook_copy_folders include 1.21 + cook_copy_folders pkgconfig 1.22 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/p11-kit/description.txt Wed Jun 15 17:22:15 2022 +0100 2.3 @@ -0,0 +1,6 @@ 2.4 +P11-kit provides a way to load and enumerate PKCS#11 modules. 2.5 +Provides a standard configuration setup for installing PKCS#11 2.6 +modules in such a way that they're discoverable. 2.7 + 2.8 +Also solves problems with coordinating the use of PKCS#11 by 2.9 +different components or libraries living in the same process.
3.1 --- a/p11-kit/receipt Wed Jun 15 17:04:41 2022 +0100 3.2 +++ b/p11-kit/receipt Wed Jun 15 17:22:15 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="p11-kit" 3.7 -VERSION="0.23.20" 3.8 +VERSION="0.24.1" 3.9 CATEGORY="security" 3.10 SHORT_DESC="Library to work with PKCS#11 modules." 3.11 MAINTAINER="slaxemulator@gmail.com" 3.12 @@ -12,7 +12,7 @@ 3.13 TARBALL="$PACKAGE-$VERSION.tar.xz" 3.14 WGET_URL="https://github.com/p11-glue/p11-kit/releases/download/$VERSION/$TARBALL" 3.15 3.16 -BUILD_DEPENDS="cacerts gettext glib glib-dev gtk-doc libffi libffi-dev \ 3.17 +BUILD_DEPENDS="cacerts gettext glib glib-dev gtk-doc libffi libffi-dev 3.18 libtasn1-dev libxslt" 3.19 3.20 current_version() 3.21 @@ -35,9 +35,7 @@ 3.22 # Rules to gen a SliTaz package suitable for Tazpkg. 3.23 genpkg_rules() 3.24 { 3.25 - mkdir -p $fs/usr/lib 3.26 - 3.27 - cp -a $install/etc $fs 3.28 - cp -a $install/usr/bin $fs/usr 3.29 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.30 + cook_copy_folders bin 3.31 + cook_copy_folders etc 3.32 + cook_copy_files *.so* 3.33 }