mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 22:26:31 +00:00
riemann-c-client: new package
Riemann-c-client is a C client library for the Riemann monitoring system, providing a convenient and simple API, high test coverage and a copyleft license, along with API and ABI stability. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
c929c53f92
commit
8d68b3b957
@ -1364,6 +1364,7 @@ endif
|
|||||||
source "package/protobuf-c/Config.in"
|
source "package/protobuf-c/Config.in"
|
||||||
source "package/qhull/Config.in"
|
source "package/qhull/Config.in"
|
||||||
source "package/qlibc/Config.in"
|
source "package/qlibc/Config.in"
|
||||||
|
source "package/riemann-c-client/Config.in"
|
||||||
source "package/shapelib/Config.in"
|
source "package/shapelib/Config.in"
|
||||||
source "package/skalibs/Config.in"
|
source "package/skalibs/Config.in"
|
||||||
source "package/sphinxbase/Config.in"
|
source "package/sphinxbase/Config.in"
|
||||||
|
17
package/riemann-c-client/Config.in
Normal file
17
package/riemann-c-client/Config.in
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
config BR2_PACKAGE_RIEMANN_C_CLIENT
|
||||||
|
bool "riemann-c-client"
|
||||||
|
depends on BR2_INSTALL_LIBSTDCPP # protobuf-c
|
||||||
|
depends on BR2_TOOLCHAIN_HAS_THREADS # protobuf-c
|
||||||
|
depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" # protobuf-c
|
||||||
|
select BR2_PACKAGE_PROTOBUF_C
|
||||||
|
help
|
||||||
|
Riemann-c-client is a C client library for the Riemann
|
||||||
|
monitoring system, providing a convenient and simple API,
|
||||||
|
high test coverage and a copyleft license, along with API
|
||||||
|
and ABI stability.
|
||||||
|
|
||||||
|
https://github.com/algernon/riemann-c-client
|
||||||
|
|
||||||
|
comment "riemann-c-client needs a toolchain w/ C++, threads"
|
||||||
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
||||||
|
depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
|
2
package/riemann-c-client/riemann-c-client.hash
Normal file
2
package/riemann-c-client/riemann-c-client.hash
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Locally calculated
|
||||||
|
sha256 4b18804f489834fa953f4af887290173c745b471a5993bb108a9142c867de457 riemann-c-client-1.9.1.tar.xz
|
18
package/riemann-c-client/riemann-c-client.mk
Normal file
18
package/riemann-c-client/riemann-c-client.mk
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# riemann-c-client
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
RIEMANN_C_CLIENT_VERSION = 1.9.1
|
||||||
|
RIEMANN_C_CLIENT_SOURCE = riemann-c-client-$(RIEMANN_C_CLIENT_VERSION).tar.xz
|
||||||
|
RIEMANN_C_CLIENT_SITE = https://github.com/algernon/riemann-c-client/releases/download/riemann-c-client-$(RIEMANN_C_CLIENT_VERSION)
|
||||||
|
RIEMANN_C_CLIENT_LICENSE = LGPLv3+
|
||||||
|
RIEMANN_C_CLIENT_LICENSE_FILES = LICENSE
|
||||||
|
RIEMANN_C_CLIENT_INSTALL_STAGING = YES
|
||||||
|
RIEMANN_C_CLIENT_DEPENDENCIES = \
|
||||||
|
host-pkgconf protobuf-c \
|
||||||
|
$(if $(BR2_PACKAGE_GNUTLS),gnutls) \
|
||||||
|
$(if $(BR2_PACKAGE_JSON_C),json-c)
|
||||||
|
|
||||||
|
$(eval $(autotools-package))
|
Loading…
x
Reference in New Issue
Block a user