# HG changeset patch # User Hans-G?nter Theisgen # Date 1647271093 -3600 # Node ID cbdedb979b582504c2701aff0f5612f8ce062a57 # Parent 68080ae2ec0325ea9508d9309043b9088efebc7e updated lcov (1.14 -> 1.15) diff -r 68080ae2ec03 -r cbdedb979b58 lcms2/receipt --- a/lcms2/receipt Mon Mar 14 15:57:04 2022 +0100 +++ b/lcms2/receipt Mon Mar 14 16:18:13 2022 +0100 @@ -7,6 +7,7 @@ MAINTAINER="al.bobylev@gmail.com" LICENSE="MIT" WEB_SITE="https://www.littlecms.com/" +REPOLOGY="lcms" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://github.com/mm2/Little-CMS/archive/lcms$VERSION.tar.gz" diff -r 68080ae2ec03 -r cbdedb979b58 lcov/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lcov/description.txt Mon Mar 14 16:18:13 2022 +0100 @@ -0,0 +1,16 @@ +LCOV is an extension of GCOV, a GNU tool which provides information about +what parts of a program are actually executed (i.e. "covered") while running +a particular test case. The extension consists of a set of Perl scripts +which build on the textual GCOV output to implement the following enhanced +functionality: + +* HTML based output: coverage rates are additionally indicated using bar + graphs and specific colors. + +* Support for large projects: overview pages allow quick browsing of + coverage data by providing three levels of detail: directory view, + file view and source code view. + +LCOV was initially designed to support Linux kernel coverage measurements, +but works as well for coverage measurements on standard user space +applications. diff -r 68080ae2ec03 -r cbdedb979b58 lcov/receipt --- a/lcov/receipt Mon Mar 14 15:57:04 2022 +0100 +++ b/lcov/receipt Mon Mar 14 16:18:13 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="lcov" -VERSION="1.14" +VERSION="1.15" CATEGORY="development" SHORT_DESC="LTP GCOV extension code coverage tool." MAINTAINER="pascal.bellard@slitaz.org" @@ -23,14 +23,15 @@ # Rules to configure and make the package. compile_rules() { - make PREFIX=/usr CFG_DIR=/etc DESTDIR=$DESTDIR install + make install \ + PREFIX=/usr \ + CFG_DIR=/etc \ + DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - - cp -a $install/usr/bin $fs/usr - cp -a $install/etc $fs + cook_copy_folders bin + cook_copy_folders etc }