Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: fluent-bit-1.7.1
@ 2021-02-25 23:39 SimonAdameit
  2021-02-26  0:42 ` [PR REVIEW] [WIP] " sgn
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: SimonAdameit @ 2021-02-25 23:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1600 bytes --]

There is a new pull request by SimonAdameit against master on the void-packages repository

https://github.com/SimonAdameit/void-packages master
https://github.com/void-linux/void-packages/pull/29064

New package: fluent-bit-1.7.1
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/29064.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-master-29064.patch --]
[-- Type: text/x-diff, Size: 2777 bytes --]

From 7627262ca272a1882127fca8a74aee8a410a58d7 Mon Sep 17 00:00:00 2001
From: Simon Adameit <simon@simonadameit.com>
Date: Fri, 26 Feb 2021 00:36:08 +0100
Subject: [PATCH] New package: fluent-bit-1.7.1

---
 srcpkgs/fluent-bit/patches/flb_coro.patch | 17 ++++++++++
 srcpkgs/fluent-bit/template               | 38 +++++++++++++++++++++++
 2 files changed, 55 insertions(+)
 create mode 100644 srcpkgs/fluent-bit/patches/flb_coro.patch
 create mode 100644 srcpkgs/fluent-bit/template

diff --git a/srcpkgs/fluent-bit/patches/flb_coro.patch b/srcpkgs/fluent-bit/patches/flb_coro.patch
new file mode 100644
index 00000000000..b8b57d610ee
--- /dev/null
+++ b/srcpkgs/fluent-bit/patches/flb_coro.patch
@@ -0,0 +1,17 @@
+#
+# Hardcode the coroutine stack size to the glibc default also on musl
+#
+# This is so that the > getpagesize() check of the config passes also on musl.
+# We don't use another value, as the documentation warns against setting this to small:
+# https://docs.fluentbit.io/manual/administration/configuring-fluent-bit/configuration-file#config_section
+#
+--- include/fluent-bit/flb_coro.h
++++ include/fluent-bit/flb_coro.h
+@@ -65,7 +65,7 @@
+ #ifdef FLB_CORO_STACK_SIZE
+ #define FLB_CORO_STACK_SIZE      FLB_CORO_STACK_SIZE
+ #else
+-#define FLB_CORO_STACK_SIZE      ((3 * PTHREAD_STACK_MIN) / 2)
++#define FLB_CORO_STACK_SIZE      24576
+ #endif
+ #define FLB_CORO_DATA(coro)      (((char *) coro) + sizeof(struct flb_coro))
diff --git a/srcpkgs/fluent-bit/template b/srcpkgs/fluent-bit/template
new file mode 100644
index 00000000000..d402b7a4b5f
--- /dev/null
+++ b/srcpkgs/fluent-bit/template
@@ -0,0 +1,38 @@
+# Template file for 'fluent-bit'
+pkgname=fluent-bit
+version=1.7.1
+revision=1
+short_desc="Fluent Bit is an open source Log Processor and Forwarder"
+maintainer="Simon Adameit <simon@simonadameit.com>"
+license="Apache-2.0"
+homepage="https://fluentbit.io/"
+distfiles="https://fluentbit.io/releases/1.7/fluent-bit-${version}.tar.gz"
+checksum=2a870d8b2f3455b83e4660f677c83a9403b75b148c7c33b1b198c63f555e4c16
+
+# Configure build 
+# See:
+# https://docs.fluentbit.io/manual/installation/sources/build-and-install
+build_style=cmake
+export CMAKE_GENERATOR='Unix Makefiles'
+make_cmd=make
+
+hostmakedepends="pkg-config flex bison"
+
+if [ "$XBPS_TARGET_LIBC" = musl ]; then
+	makedepends+=" musl-fts-devel"
+	configure_args+=" -DCMAKE_C_STANDARD_LIBRARIES=-lfts"
+fi
+
+# Set release flags
+configure_args+=" -DFLB_RELEASE=On"
+configure_args+=" -DFLB_DEBUG=Off"
+configure_args+=" -DFLB_TRACE=Off"
+
+# Enable Features
+configure_args+=" -DFLB_JEMALLOC=On"
+configure_args+=" -DFLB_TLS=On"
+configure_args+=" -DFLB_HTTP_SERVER=On"
+
+# Enable additional plugins
+configure_args+=" -DFLB_OUT_KAFKA=On"
+configure_args+=" -DFLG_OUT_NATS=On"

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-02-28 16:35 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-25 23:39 [PR PATCH] New package: fluent-bit-1.7.1 SimonAdameit
2021-02-26  0:42 ` [PR REVIEW] [WIP] " sgn
2021-02-26  0:45 ` sgn
2021-02-26  0:52 ` sgn
2021-02-26  0:53 ` sgn
2021-02-26  1:19 ` sgn
2021-02-26 20:07 ` [PR PATCH] [Updated] " SimonAdameit
2021-02-26 20:08 ` SimonAdameit
2021-02-26 20:08 ` [PR PATCH] [Closed]: " SimonAdameit
2021-02-28 16:35 ` sgn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).