# HG changeset patch # User Hans-G?nter Theisgen # Date 1647938827 -3600 # Node ID 47332d4af699a86562f77b525504f0f43a8a24f2 # Parent e4556f37511fd66f863e3088e276de26901378e6 updated libidn and libidn-dev (1.35 -> 1.38) diff -r e4556f37511f -r 47332d4af699 libidn-dev/receipt --- a/libidn-dev/receipt Mon Mar 21 17:34:22 2022 +0100 +++ b/libidn-dev/receipt Tue Mar 22 09:47:07 2022 +0100 @@ -1,24 +1,20 @@ # SliTaz package receipt. PACKAGE="libidn-dev" -VERSION="1.35" +VERSION="1.38" CATEGORY="development" SHORT_DESC="Encode and decode internationalized domain names, development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL3 LGPL2.1" WEB_SITE="https://www.gnu.org/software/libidn/" +DEPENDS="libidn pkg-config" WANTED="libidn" -DEPENDS="libidn pkg-config" HOST_ARCH="i486 arm" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + get_dev_files } diff -r e4556f37511f -r 47332d4af699 libidn-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libidn-lang/receipt Tue Mar 22 09:47:07 2022 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="libidn-lang" +VERSION="1.38" +CATEGORY="development" +SHORT_DESC="Encode and decode internationalised domain names - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL3 LGPL2.1" +WEB_SITE="https://www.gnu.org/software/libidn/" + +WANTED="libidn" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders locale +} diff -r e4556f37511f -r 47332d4af699 libidn/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libidn/description.txt Tue Mar 22 09:47:07 2022 +0100 @@ -0,0 +1,10 @@ +GNU Libidn is a fully documented implementation of the Stringprep, +Punycode and IDNA 2003 specifications. +Libidn's purpose is to encode and decode internationalized domain names. + +The library contains a generic Stringprep implementation. Profiles for +Nameprep, iSCSI, SASL, XMPP and Kerberos V5 are included. Punycode and +ASCII Compatible Encoding (ACE) via IDNA are supported. A mechanism to +define Top-Level Domain (TLD) specific validation tables, and to compare +strings against those tables, is included. Default tables for some TLDs +are also included. diff -r e4556f37511f -r 47332d4af699 libidn/receipt --- a/libidn/receipt Mon Mar 21 17:34:22 2022 +0100 +++ b/libidn/receipt Tue Mar 22 09:47:07 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libidn" -VERSION="1.35" +VERSION="1.38" CATEGORY="system-tools" SHORT_DESC="Encode and decode internationalized domain names." MAINTAINER="pascal.bellard@slitaz.org" @@ -11,6 +11,8 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" +SUGGESTED="libidn-lang" + HOST_ARCH="i486 arm" current_version() @@ -23,15 +25,13 @@ compile_rules() { ./configure $CONFIGURE_ARGS && - make $MAKEFLAGS -j 1 && + make $MAKEFLAGS && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }