From ad5ce8fa440f8e0129805e1953e81a109a0a03fb Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Mon, 4 Nov 2019 14:02:08 +0100 Subject: [PATCH 1/5] libestr: update to 0.1.11 - rsyslog says so - be0ify - SRCURL --- libestr-0.1.0-0.bee | 30 ------------------------------ libestr.be0 | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 30 deletions(-) delete mode 100755 libestr-0.1.0-0.bee create mode 100755 libestr.be0 diff --git a/libestr-0.1.0-0.bee b/libestr-0.1.0-0.bee deleted file mode 100755 index 58c57de25..000000000 --- a/libestr-0.1.0-0.bee +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/env beesh - -SRCURL[0]="http://downloads.sourceforge.net/project/libestr/libestr-0.1.0.tar.gz" - -PATCHURL[0]="" - -PGRP=( uncategorized ) - - - -# BEE_CONFIGURE=compat - -# EXCLUDE="" - -mee_patch() { - bee_patch -} - -mee_configure() { - bee_configure -} - -mee_build() { - bee_build -} - -mee_install() { - bee_install -} - diff --git a/libestr.be0 b/libestr.be0 new file mode 100755 index 000000000..a959665eb --- /dev/null +++ b/libestr.be0 @@ -0,0 +1,38 @@ +#!/usr/bin/env beesh + +# BEE_VERSION libestr-0.1.11-0 + +# more info: https://libestr.adiscon.com +# dependency of rsyslog + +SRCURL[0]="https://libestr.adiscon.com/files/download/libestr-${PKGVERSION}.tar.gz" + +# PATCHURL+=() + +# build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +#mee_configure() { +# bee_configure +#} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} + +#mee_install_post() { +# exit +#} From 49a395a141b7c2ca3ae291d48edc72ac7546efd9 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Mon, 4 Nov 2019 14:12:16 +0100 Subject: [PATCH 2/5] libfastjson: add version 0.99.8 - rsyslog says so --- libfastjson.be0 | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 libfastjson.be0 diff --git a/libfastjson.be0 b/libfastjson.be0 new file mode 100755 index 000000000..17de943c4 --- /dev/null +++ b/libfastjson.be0 @@ -0,0 +1,38 @@ +#!/usr/bin/env beesh + +# BEE_VERSION libfastjson-0.99.8-0 + +# rsyslog dependency + +SRCURL[0]="https://github.com/rsyslog/libfastjson/archive/v${PKGVERSION}.tar.gz ${PKGNAME}-${PKGFULLVERSION}.tar.gz" + +# PATCHURL+=() + +build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + autoreconf -fvi + bee_configure +} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} + +#mee_install_post() { +# exit +#} From 674f57520bb0f4196f8b0f9910ed7ef5019d1834 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Tue, 5 Nov 2019 12:38:38 +0100 Subject: [PATCH 3/5] rsyslog: update to 8.1910 - be0ify - disable static - disable new fancy shiny stuff --- rsyslog-6.1.2-0.bee | 30 ----------------------------- rsyslog.be0 | 46 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 30 deletions(-) delete mode 100755 rsyslog-6.1.2-0.bee create mode 100755 rsyslog.be0 diff --git a/rsyslog-6.1.2-0.bee b/rsyslog-6.1.2-0.bee deleted file mode 100755 index d12460f8e..000000000 --- a/rsyslog-6.1.2-0.bee +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/env beesh - -SRCURL[0]="http://www.rsyslog.com/files/download/rsyslog/rsyslog-6.1.2.tar.gz" - -PATCHURL[0]="" - -PGRP=( uncategorized ) - - - -# BEE_CONFIGURE=compat - -# EXCLUDE="" - -mee_patch() { - bee_patch -} - -mee_configure() { - bee_configure -} - -mee_build() { - bee_build -} - -mee_install() { - bee_install -} - diff --git a/rsyslog.be0 b/rsyslog.be0 new file mode 100755 index 000000000..9b3d1a39e --- /dev/null +++ b/rsyslog.be0 @@ -0,0 +1,46 @@ +#!/usr/bin/env beesh + +# BEE_VERSION rsyslog-8.1910.0-1 + +# more info: https://foo.bar.com + +SRCURL[0]="http://www.rsyslog.com/files/download/rsyslog/rsyslog-${PKGVERSION}.tar.gz" + +# PATCHURL+=() + +# build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + bee_configure \ + --disable-silent-rules \ + --disable-fmhash \ + --disable-fmhttp \ + --disable-default-tests \ + --disable-helgrind \ + --disable-static + +# PS1='xxx ' bash -norc +} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} + +mee_install_post() { + mkdir -vp ${D}/etc/systemd/system + ln -vs /lib/systemd/system/rsyslog.service ${D}/etc/systemd/system/syslog.service +} From 25ccd11c03004a5b82e3e5f36f349c0559fa5d2e Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Tue, 5 Nov 2019 12:39:33 +0100 Subject: [PATCH 4/5] libestr: disable shared - get rid of dependency --- libestr.be0 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/libestr.be0 b/libestr.be0 index a959665eb..a6abe0fd2 100755 --- a/libestr.be0 +++ b/libestr.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION libestr-0.1.11-0 +# BEE_VERSION libestr-0.1.11-1 # more info: https://libestr.adiscon.com # dependency of rsyslog @@ -21,9 +21,10 @@ SRCURL[0]="https://libestr.adiscon.com/files/download/libestr-${PKGVERSION}.tar. # bee_patch "${@}" #} -#mee_configure() { -# bee_configure -#} +mee_configure() { + bee_configure \ + --disable-shared +} #mee_build() { # bee_build From 0031f36bfc3e56409fe33fe1a6f6c4d7cee219a0 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Tue, 5 Nov 2019 12:39:57 +0100 Subject: [PATCH 5/5] libfastjson: disable shared - get rid of dependency --- libfastjson.be0 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libfastjson.be0 b/libfastjson.be0 index 17de943c4..1acf68ae3 100755 --- a/libfastjson.be0 +++ b/libfastjson.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION libfastjson-0.99.8-0 +# BEE_VERSION libfastjson-0.99.8-1 # rsyslog dependency @@ -22,7 +22,9 @@ build_in_sourcedir mee_configure() { autoreconf -fvi - bee_configure + bee_configure \ + --disable-shared +# PS1='xxx ' bash -norc } #mee_build() {