wok rev 24843

updated libunwind and libunwind-dev (1.3.1 -> 1.6.2)
author Hans-G?nter Theisgen
date Fri Mar 25 09:52:38 2022 +0100 (2022-03-25)
parents 72ae4dc9e539
children 909b36547bf2
files libunwind-dev/receipt libunwind/description.txt libunwind/receipt
line diff
     1.1 --- a/libunwind-dev/receipt	Fri Mar 25 09:45:42 2022 +0100
     1.2 +++ b/libunwind-dev/receipt	Fri Mar 25 09:52:38 2022 +0100
     1.3 @@ -1,11 +1,11 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libunwind-dev"
     1.7 -VERSION="1.3.1"
     1.8 +VERSION="1.6.2"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="libunwind development files."
    1.11 +SHORT_DESC="Libunwind development files."
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13 -LICENSE="X11"
    1.14 +LICENSE="MIT"
    1.15  WEB_SITE="https://www.nongnu.org/libunwind/"
    1.16  
    1.17  DEPENDS="libunwind pkg-config"
    1.18 @@ -14,9 +14,5 @@
    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 +	get_dev_files
    1.28  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libunwind/description.txt	Fri Mar 25 09:52:38 2022 +0100
     2.3 @@ -0,0 +1,6 @@
     2.4 +The primary goal of this project is to define a portable and efficient
     2.5 +C programming interface (API) to determine the call-chain of a program.
     2.6 +The API additionally provides the means to manipulate the preserved
     2.7 +(callee-saved) state of each call-frame and to resume execution at any
     2.8 +point in the call-chain (non-local goto).
     2.9 +The API supports both local (same-process) and remote (across-process) operation.
     3.1 --- a/libunwind/receipt	Fri Mar 25 09:45:42 2022 +0100
     3.2 +++ b/libunwind/receipt	Fri Mar 25 09:52:38 2022 +0100
     3.3 @@ -1,18 +1,18 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libunwind"
     3.7 -VERSION="1.3.1"
     3.8 +VERSION="1.6.2"
     3.9  CATEGORY="development"
    3.10  SHORT_DESC="C programming interface (API) to determine the call-chain of a program."
    3.11  MAINTAINER="pankso@slitaz.org"
    3.12 -LICENSE="X11"
    3.13 +LICENSE="MIT"
    3.14  WEB_SITE="https://www.nongnu.org/libunwind/"
    3.15  
    3.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.17 -WGET_URL="http://download.savannah.gnu.org/releases/libunwind/$TARBALL"
    3.18 +WGET_URL="https://download.savannah.gnu.org/releases/libunwind/$TARBALL"
    3.19  
    3.20 -DEPENDS="liblzma"
    3.21 -BUILD_DEPENDS="liblzma-dev"
    3.22 +DEPENDS="gcc83-lib-base liblzma"
    3.23 +BUILD_DEPENDS="gcc83 liblzma-dev"
    3.24  
    3.25  # What is the latest version available today?
    3.26  current_version()
    3.27 @@ -24,15 +24,16 @@
    3.28  # Rules to configure and make the package.
    3.29  compile_rules()
    3.30  {
    3.31 -	./configure \
    3.32 +	./configure		\
    3.33 +		CC=gcc-83	\
    3.34 +		CXX=g++-83	\
    3.35  		$CONFIGURE_ARGS &&
    3.36 -	make -j 1 &&
    3.37 +	make &&
    3.38  	make install
    3.39  }
    3.40  
    3.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.42  genpkg_rules()
    3.43  {
    3.44 -	mkdir -p $fs/usr/lib
    3.45 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    3.46 +	cook_copy_files	*.so*
    3.47  }