# HG changeset patch # User Hans-G?nter Theisgen # Date 1644336329 -3600 # Node ID f2701f2b47f2ff91f921b65ddabab30627aee98a # Parent 4bc80d930fe0218f901fd4e7320621fc312c3735 updated check and check-dev (0.13.0 -> 0.15.2) diff -r 4bc80d930fe0 -r f2701f2b47f2 check-dev/receipt --- a/check-dev/receipt Tue Feb 08 15:46:39 2022 +0100 +++ b/check-dev/receipt Tue Feb 08 17:05:29 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="check-dev" -VERSION="0.13.0" +VERSION="0.15.2" CATEGORY="development" SHORT_DESC="Check - development files." MAINTAINER="erjo@slitaz.org" @@ -9,7 +9,6 @@ WEB_SITE="https://libcheck.github.io/check/" DEPENDS="check pkg-config" -BUILD_DEPENDS="" WANTED="check" HOST_ARCH="i486 arm" @@ -17,11 +16,8 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - mkdir -p $fs/usr/share - - 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 - cp -a $install/usr/share/aclocal $fs/usr/share + cook_copy_folders aclocal + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r 4bc80d930fe0 -r f2701f2b47f2 check/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/check/description.txt Tue Feb 08 17:05:29 2022 +0100 @@ -0,0 +1,8 @@ +Check is a unit testing framework for C. +It features a simple interface for defining unit tests, putting +little in the way of the developer. +Tests are run in a separate address space, so both assertion +failures and code errors that cause segmentation faults or other +signals can be caught. +Test results are reportable in the following: +Subunit, TAP, XML, and a generic logging format. diff -r 4bc80d930fe0 -r f2701f2b47f2 check/receipt --- a/check/receipt Tue Feb 08 15:46:39 2022 +0100 +++ b/check/receipt Tue Feb 08 17:05:29 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="check" -VERSION="0.13.0" +VERSION="0.15.2" CATEGORY="system-tools" SHORT_DESC="A unit testing framework for C." MAINTAINER="erjo@slitaz.org" @@ -26,7 +26,9 @@ compile_rules() { autoreconf --install && - ./configure $CONFIGURE_ARGS && + ./configure \ + --disable-build-docs \ + $CONFIGURE_ARGS && make && make install } @@ -34,6 +36,5 @@ # 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* }