wok rev 24800

updated libidn and libidn-dev (1.35 -> 1.38)
author Hans-G?nter Theisgen
date Tue Mar 22 09:47:07 2022 +0100 (2022-03-22)
parents e4556f37511f
children a9879c37011c
files libidn-dev/receipt libidn-lang/receipt libidn/description.txt libidn/receipt
line diff
     1.1 --- a/libidn-dev/receipt	Mon Mar 21 17:34:22 2022 +0100
     1.2 +++ b/libidn-dev/receipt	Tue Mar 22 09:47:07 2022 +0100
     1.3 @@ -1,24 +1,20 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libidn-dev"
     1.7 -VERSION="1.35"
     1.8 +VERSION="1.38"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Encode and decode internationalized domain names, development files."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL3 LGPL2.1"
    1.13  WEB_SITE="https://www.gnu.org/software/libidn/"
    1.14  
    1.15 +DEPENDS="libidn pkg-config"
    1.16  WANTED="libidn"
    1.17 -DEPENDS="libidn pkg-config"
    1.18  
    1.19  HOST_ARCH="i486 arm"
    1.20  
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24 -	mkdir -p $fs/usr/lib
    1.25 -
    1.26 -	cp -a $install/usr/include		$fs/usr
    1.27 -	cp -a $install/usr/lib/*a		$fs/usr/lib
    1.28 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.29 +	get_dev_files
    1.30  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libidn-lang/receipt	Tue Mar 22 09:47:07 2022 +0100
     2.3 @@ -0,0 +1,17 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="libidn-lang"
     2.7 +VERSION="1.38"
     2.8 +CATEGORY="development"
     2.9 +SHORT_DESC="Encode and decode internationalised domain names - localised messages."
    2.10 +MAINTAINER="maintainer@slitaz.org"
    2.11 +LICENSE="GPL3 LGPL2.1"
    2.12 +WEB_SITE="https://www.gnu.org/software/libidn/"
    2.13 +
    2.14 +WANTED="libidn"
    2.15 +
    2.16 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.17 +genpkg_rules()
    2.18 +{
    2.19 +	cook_copy_folders	locale
    2.20 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/libidn/description.txt	Tue Mar 22 09:47:07 2022 +0100
     3.3 @@ -0,0 +1,10 @@
     3.4 +GNU Libidn is a fully documented implementation of the Stringprep,
     3.5 +Punycode and IDNA 2003 specifications.
     3.6 +Libidn's purpose is to encode and decode internationalized domain names.
     3.7 +
     3.8 +The library contains a generic Stringprep implementation. Profiles for
     3.9 +Nameprep, iSCSI, SASL, XMPP and Kerberos V5 are included. Punycode and
    3.10 +ASCII Compatible Encoding (ACE) via IDNA are supported. A mechanism to
    3.11 +define Top-Level Domain (TLD) specific validation tables, and to compare
    3.12 +strings against those tables, is included. Default tables for some TLDs
    3.13 +are also included.
     4.1 --- a/libidn/receipt	Mon Mar 21 17:34:22 2022 +0100
     4.2 +++ b/libidn/receipt	Tue Mar 22 09:47:07 2022 +0100
     4.3 @@ -1,7 +1,7 @@
     4.4  # SliTaz package receipt.
     4.5  
     4.6  PACKAGE="libidn"
     4.7 -VERSION="1.35"
     4.8 +VERSION="1.38"
     4.9  CATEGORY="system-tools"
    4.10  SHORT_DESC="Encode and decode internationalized domain names."
    4.11  MAINTAINER="pascal.bellard@slitaz.org"
    4.12 @@ -11,6 +11,8 @@
    4.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.14  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    4.15  
    4.16 +SUGGESTED="libidn-lang"
    4.17 +
    4.18  HOST_ARCH="i486 arm"
    4.19  
    4.20  current_version()
    4.21 @@ -23,15 +25,13 @@
    4.22  compile_rules()
    4.23  {
    4.24  	./configure $CONFIGURE_ARGS &&
    4.25 -	make $MAKEFLAGS -j 1 &&
    4.26 +	make $MAKEFLAGS &&
    4.27  	make install
    4.28  }
    4.29  
    4.30  # Rules to gen a SliTaz package suitable for Tazpkg.
    4.31  genpkg_rules()
    4.32  {
    4.33 -	mkdir -p $fs/usr/lib
    4.34 -
    4.35 -	cp -a $install/usr/bin		$fs/usr
    4.36 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    4.37 +	cook_copy_folders	bin
    4.38 +	cook_copy_files		*.so*
    4.39  }