wok rev 24797
updated libhtp and libhtp-dev (0.5.32 -> 0.5.39)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Mar 21 17:10:45 2022 +0100 (2022-03-21) |
parents | 16df716d02af |
children | a6336704378f |
files | libhtp-dev/receipt libhtp/description.txt libhtp/receipt |
line diff
1.1 --- a/libhtp-dev/receipt Mon Mar 21 16:04:07 2022 +0000 1.2 +++ b/libhtp-dev/receipt Mon Mar 21 17:10:45 2022 +0100 1.3 @@ -1,22 +1,18 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libhtp-dev" 1.7 -VERSION="0.5.32" 1.8 +VERSION="0.5.39" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Libhtp, development files." 1.11 MAINTAINER="erjo@slitaz.org" 1.12 LICENSE="GPL2" 1.13 -WEB_SITE="http://www.openinfosecfoundation.org" 1.14 +WEB_SITE="https://github.com/OISF/libhtp" 1.15 1.16 +DEPENDS="libhtp pkg-config" 1.17 WANTED="libhtp" 1.18 -DEPENDS="libhtp pkg-config" 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 genpkg_rules() 1.22 { 1.23 - mkdir -p $fs/usr/lib 1.24 - 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/libhtp/description.txt Mon Mar 21 17:10:45 2022 +0100 2.3 @@ -0,0 +1,20 @@ 2.4 +LibHTP is a security-aware parser for the HTTP protocol and the related bits 2.5 +and pieces. The goals of the project, in the order of importance, are as 2.6 +follows: 2.7 + 2.8 + 1. Completeness of coverage; LibHTP must be able to parse virtually all 2.9 + traffic that is found in practice. 2.10 + 2.11 + 2. Permissive parsing; LibHTP must never fail to parse a stream that would 2.12 + be parsed by some other web server. 2.13 + 2.14 + 3. Awareness of evasion techniques; LibHTP must be able to detect and 2.15 + effectively deal with various evasion techniques, producing, where 2.16 + practical, identical or practically identical results as the web 2.17 + server processing the same traffic stream. 2.18 + 2.19 + 4. Performance; The performance must be adequate for the desired tasks. 2.20 + Completeness and security are often detrimental to performance. Our 2.21 + idea of handling the conflicting requirements is to put the library 2.22 + user in control, allowing him to choose the most desired library 2.23 + characteristic.
3.1 --- a/libhtp/receipt Mon Mar 21 16:04:07 2022 +0000 3.2 +++ b/libhtp/receipt Mon Mar 21 17:10:45 2022 +0100 3.3 @@ -1,15 +1,15 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libhtp" 3.7 -VERSION="0.5.32" 3.8 +VERSION="0.5.39" 3.9 CATEGORY="system-tools" 3.10 SHORT_DESC="Security-aware parser for the HTTP protocol." 3.11 MAINTAINER="erjo@slitaz.org" 3.12 LICENSE="GPL2" 3.13 -WEB_SITE="http://www.openinfosecfoundation.org" 3.14 +WEB_SITE="https://github.com/OISF/libhtp" 3.15 3.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.17 -WGET_URL="https://github.com/OISF/$PACKAGE/archive/$VERSION.tar.gz" 3.18 +WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" 3.19 3.20 BUILD_DEPENDS="automake libtool" 3.21 3.22 @@ -31,6 +31,5 @@ 3.23 # Rules to gen a SliTaz package suitable for Tazpkg. 3.24 genpkg_rules() 3.25 { 3.26 - mkdir -p $fs/usr/lib 3.27 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.28 + cook_copy_files *.so* 3.29 }