package/sentry-cli: new package

Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com>
Tested-by: Titouan Christophe <titouan.christophe@railnova.eu>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Joseph Kogut 2020-09-15 13:57:38 -07:00 committed by Thomas Petazzoni
parent 5ebc935bce
commit 28c28ba303
5 changed files with 45 additions and 0 deletions

View file

@ -1423,6 +1423,7 @@ F: package/python-schedule/
F: package/python-sentry-sdk/
F: package/python-websockets/
F: package/python-xlib/
F: package/sentry-cli/
F: package/unclutter-xfixes/
N: Joshua Henderson <joshua.henderson@microchip.com>

View file

@ -74,6 +74,7 @@ menu "Host utilities"
source "package/s6-rc/Config.in.host"
source "package/sam-ba/Config.in.host"
source "package/sdbusplus/Config.in.host"
source "package/sentry-cli/Config.in.host"
source "package/squashfs/Config.in.host"
source "package/sunxi-tools/Config.in.host"
source "package/swig/Config.in.host"

View file

@ -0,0 +1,10 @@
config BR2_PACKAGE_HOST_SENTRY_CLI
bool "host sentry-cli"
depends on BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS
select BR2_PACKAGE_HOST_RUSTC
help
Official Sentry command line interface
For managing debug information files and source maps.
https://docs.sentry.io/cli/

View file

@ -0,0 +1,3 @@
# locally calculated
sha256 5d0f7acf6a139d1c1716b9a8ff76c8bfaab09104ba663c957bb9a5dba2ffbabd sentry-cli-1.57.0.tar.gz
sha256 9503def7b54ceb6e3cd182fd59bc05d3a30d7eae481e65aaba4b495133c83c14 LICENSE

View file

@ -0,0 +1,30 @@
################################################################################
#
# sentry-cli
#
################################################################################
SENTRY_CLI_VERSION = 1.57.0
SENTRY_CLI_SITE = $(call github,getsentry,sentry-cli,$(SENTRY_CLI_VERSION))
SENTRY_CLI_LICENSE = BSD-3-clause
SENTRY_CLI_LICENSE_FILES = LICENSE
SENTRY_CLI_DEPENDENCIES = host-rustc
HOST_SENTRY_CLI_CARGO_ENV = CARGO_HOME=$(HOST_DIR)/share/cargo
HOST_SENTRY_CLI_CARGO_OPTS = \
--release \
--manifest-path=$(@D)/Cargo.toml
define HOST_SENTRY_CLI_BUILD_CMDS
$(HOST_MAKE_ENV) $(HOST_SENTRY_CLI_CARGO_ENV) \
cargo build $(HOST_SENTRY_CLI_CARGO_OPTS)
endef
define HOST_SENTRY_CLI_INSTALL_CMDS
$(INSTALL) -D -m 0755 $(@D)/target/release/sentry-cli \
$(HOST_DIR)/bin/sentry-cli
endef
$(eval $(host-generic-package))