-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1451 from mariux64/update-rsyslog-8.1910
rsyslog: update to 8.1910
- Loading branch information
Showing
5 changed files
with
125 additions
and
60 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION libestr-0.1.11-1 | ||
|
||
# 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 \ | ||
--disable-shared | ||
} | ||
|
||
#mee_build() { | ||
# bee_build | ||
#} | ||
|
||
#mee_install() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION libfastjson-0.99.8-1 | ||
|
||
# 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 \ | ||
--disable-shared | ||
# PS1='xxx ' bash -norc | ||
} | ||
|
||
#mee_build() { | ||
# bee_build | ||
#} | ||
|
||
#mee_install() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |