wok-current rev 24734
updated libee and libee-dev (0.3.2 -> 0.4.1)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 16 08:49:13 2022 +0100 (2022-03-16) |
parents | 4cfb1fddd0ad |
children | 0c6152afb7bb |
files | libee-dev/receipt libee/description.txt libee/receipt |
line diff
1.1 --- a/libee-dev/receipt Tue Mar 15 17:44:35 2022 +0100 1.2 +++ b/libee-dev/receipt Wed Mar 16 08:49:13 2022 +0100 1.3 @@ -1,21 +1,18 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libee-dev" 1.7 -VERSION="0.3.2" 1.8 +VERSION="0.4.1" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="libee dev files." 1.11 +SHORT_DESC="Libee development files." 1.12 MAINTAINER="erjo@slitaz.org" 1.13 LICENSE="LGPL2.1" 1.14 -WEB_SITE="https://web.archive.org/web/20181206220018/http://www.libee.org/" 1.15 -WANTED="libee" 1.16 +WEB_SITE="http://www.libee.org/" 1.17 1.18 DEPENDS="libee pkg-config" 1.19 +WANTED="libee" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 - mkdir -p $fs/usr/lib 1.25 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.26 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.27 - cp -a $install/usr/include $fs/usr 1.28 + get_dev_files 1.29 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libee/description.txt Wed Mar 16 08:49:13 2022 +0100 2.3 @@ -0,0 +1,11 @@ 2.4 +Libee - An Event Expression Library inspired by CEE. 2.5 + 2.6 +CEE is an upcoming standard used to describe network events in a 2.7 +number of normalized formats. It's goal is to unify the currently 2.8 +many different representations that exist in the industry. 2.9 + 2.10 +The core idea of libee is to provide a small but hopefully 2.11 +convenient API layer above the CEE standard. 2.12 +However, CEE is not finished. At the time of this writing, CEE is 2.13 +under heavy development and even some of its core data structures 2.14 +(like the data dictionary and taxonmy) have not been fully specified.
3.1 --- a/libee/receipt Tue Mar 15 17:44:35 2022 +0100 3.2 +++ b/libee/receipt Wed Mar 16 08:49:13 2022 +0100 3.3 @@ -1,14 +1,15 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libee" 3.7 -VERSION="0.3.2" 3.8 +VERSION="0.4.1" 3.9 CATEGORY="system-tools" 3.10 -SHORT_DESC="An Event Expression Library inspired by CEE" 3.11 +SHORT_DESC="An Event Expression Library inspired by CEE." 3.12 MAINTAINER="erjo@slitaz.org" 3.13 LICENSE="LGPL2.1" 3.14 WEB_SITE="http://www.libee.org/" 3.15 + 3.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.17 -WGET_URL="http://www.libee.org/files/download/$TARBALL" 3.18 +WGET_URL="${WEB_SITE}files/download/$TARBALL" 3.19 3.20 DEPENDS="libestr" 3.21 BUILD_DEPENDS="libestr-dev automake" 3.22 @@ -23,18 +24,21 @@ 3.23 # Rules to configure and make the package. 3.24 compile_rules() 3.25 { 3.26 - cd $src 3.27 + # 0.4.1 not required 3.28 # Patch from http://www.gossamer-threads.com/lists/rsyslog/users/4600 3.29 - patch -p 1 < $stuff/libee-build-fix.patch 3.30 - ./configure $CONFIGURE_ARGS \ 3.31 - --disable-testbench && make -j 1 && make install 3.32 + # patch -p 1 < $stuff/libee-build-fix.patch 3.33 + 3.34 + ./configure \ 3.35 + --disable-testbench \ 3.36 + $CONFIGURE_ARGS && 3.37 + make -j 1 && 3.38 + make install 3.39 + # Do not remove "-j 1" ! 3.40 } 3.41 3.42 # Rules to gen a SliTaz package suitable for Tazpkg. 3.43 genpkg_rules() 3.44 { 3.45 - mkdir -p $fs/usr/lib 3.46 - 3.47 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.48 - cp -a $install/usr/sbin $fs/usr 3.49 + cook_copy_folders sbin 3.50 + cook_copy_files *.so* 3.51 }