# HG changeset patch # User Hans-G?nter Theisgen # Date 1647416953 -3600 # Node ID a7524849966d78c3891e818ebcc3e3c7b5bd07e7 # Parent 4cfb1fddd0ad13fdc034d7ee6e2a5e3a91d8cd4d updated libee and libee-dev (0.3.2 -> 0.4.1) diff -r 4cfb1fddd0ad -r a7524849966d libee-dev/receipt --- a/libee-dev/receipt Tue Mar 15 17:44:35 2022 +0100 +++ b/libee-dev/receipt Wed Mar 16 08:49:13 2022 +0100 @@ -1,21 +1,18 @@ # SliTaz package receipt. PACKAGE="libee-dev" -VERSION="0.3.2" +VERSION="0.4.1" CATEGORY="development" -SHORT_DESC="libee dev files." +SHORT_DESC="Libee development files." MAINTAINER="erjo@slitaz.org" LICENSE="LGPL2.1" -WEB_SITE="https://web.archive.org/web/20181206220018/http://www.libee.org/" -WANTED="libee" +WEB_SITE="http://www.libee.org/" DEPENDS="libee pkg-config" +WANTED="libee" # 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 4cfb1fddd0ad -r a7524849966d libee/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libee/description.txt Wed Mar 16 08:49:13 2022 +0100 @@ -0,0 +1,11 @@ +Libee - An Event Expression Library inspired by CEE. + +CEE is an upcoming standard used to describe network events in a +number of normalized formats. It's goal is to unify the currently +many different representations that exist in the industry. + +The core idea of libee is to provide a small but hopefully +convenient API layer above the CEE standard. +However, CEE is not finished. At the time of this writing, CEE is +under heavy development and even some of its core data structures +(like the data dictionary and taxonmy) have not been fully specified. diff -r 4cfb1fddd0ad -r a7524849966d libee/receipt --- a/libee/receipt Tue Mar 15 17:44:35 2022 +0100 +++ b/libee/receipt Wed Mar 16 08:49:13 2022 +0100 @@ -1,14 +1,15 @@ # SliTaz package receipt. PACKAGE="libee" -VERSION="0.3.2" +VERSION="0.4.1" CATEGORY="system-tools" -SHORT_DESC="An Event Expression Library inspired by CEE" +SHORT_DESC="An Event Expression Library inspired by CEE." MAINTAINER="erjo@slitaz.org" LICENSE="LGPL2.1" WEB_SITE="http://www.libee.org/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="http://www.libee.org/files/download/$TARBALL" +WGET_URL="${WEB_SITE}files/download/$TARBALL" DEPENDS="libestr" BUILD_DEPENDS="libestr-dev automake" @@ -23,18 +24,21 @@ # Rules to configure and make the package. compile_rules() { - cd $src + # 0.4.1 not required # Patch from http://www.gossamer-threads.com/lists/rsyslog/users/4600 - patch -p 1 < $stuff/libee-build-fix.patch - ./configure $CONFIGURE_ARGS \ - --disable-testbench && make -j 1 && make install + # patch -p 1 < $stuff/libee-build-fix.patch + + ./configure \ + --disable-testbench \ + $CONFIGURE_ARGS && + make -j 1 && + make install + # Do not remove "-j 1" ! } # 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 - cp -a $install/usr/sbin $fs/usr + cook_copy_folders sbin + cook_copy_files *.so* }