# HG changeset patch # User Hans-G?nter Theisgen # Date 1648198358 -3600 # Node ID bc4acb77e84105ec4644a6dc97888853b665a7e6 # Parent 72ae4dc9e539ce6676f12d7d7ce89471b52bf286 updated libunwind and libunwind-dev (1.3.1 -> 1.6.2) diff -r 72ae4dc9e539 -r bc4acb77e841 libunwind-dev/receipt --- a/libunwind-dev/receipt Fri Mar 25 09:45:42 2022 +0100 +++ b/libunwind-dev/receipt Fri Mar 25 09:52:38 2022 +0100 @@ -1,11 +1,11 @@ # SliTaz package receipt. PACKAGE="libunwind-dev" -VERSION="1.3.1" +VERSION="1.6.2" CATEGORY="development" -SHORT_DESC="libunwind development files." +SHORT_DESC="Libunwind development files." MAINTAINER="pankso@slitaz.org" -LICENSE="X11" +LICENSE="MIT" WEB_SITE="https://www.nongnu.org/libunwind/" DEPENDS="libunwind pkg-config" @@ -14,9 +14,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + get_dev_files } diff -r 72ae4dc9e539 -r bc4acb77e841 libunwind/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libunwind/description.txt Fri Mar 25 09:52:38 2022 +0100 @@ -0,0 +1,6 @@ +The primary goal of this project is to define a portable and efficient +C programming interface (API) to determine the call-chain of a program. +The API additionally provides the means to manipulate the preserved +(callee-saved) state of each call-frame and to resume execution at any +point in the call-chain (non-local goto). +The API supports both local (same-process) and remote (across-process) operation. diff -r 72ae4dc9e539 -r bc4acb77e841 libunwind/receipt --- a/libunwind/receipt Fri Mar 25 09:45:42 2022 +0100 +++ b/libunwind/receipt Fri Mar 25 09:52:38 2022 +0100 @@ -1,18 +1,18 @@ # SliTaz package receipt. PACKAGE="libunwind" -VERSION="1.3.1" +VERSION="1.6.2" CATEGORY="development" SHORT_DESC="C programming interface (API) to determine the call-chain of a program." MAINTAINER="pankso@slitaz.org" -LICENSE="X11" +LICENSE="MIT" WEB_SITE="https://www.nongnu.org/libunwind/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="http://download.savannah.gnu.org/releases/libunwind/$TARBALL" +WGET_URL="https://download.savannah.gnu.org/releases/libunwind/$TARBALL" -DEPENDS="liblzma" -BUILD_DEPENDS="liblzma-dev" +DEPENDS="gcc83-lib-base liblzma" +BUILD_DEPENDS="gcc83 liblzma-dev" # What is the latest version available today? current_version() @@ -24,15 +24,16 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ + ./configure \ + CC=gcc-83 \ + CXX=g++-83 \ $CONFIGURE_ARGS && - make -j 1 && + make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }