package/sentry-cli: re-add package

This reverts commit d19077677f, but the
package now uses the cargo-package infrastructure with its vendoring
mechanism, which allows us to avoid the problems that caused the
package to be removed in d19077677f.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Thomas Petazzoni 2022-01-06 10:54:51 +01:00
parent 342fd3e735
commit 049ca10248
5 changed files with 29 additions and 0 deletions

View File

@ -1522,6 +1522,7 @@ F: package/python-schedule/
F: package/python-sentry-sdk/
F: package/python-websockets/
F: package/python-xlib/
F: package/sentry-cli/
F: package/sentry-native/
F: package/unclutter-xfixes/

View File

@ -81,6 +81,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/sloci-image/Config.in.host"
source "package/squashfs/Config.in.host"
source "package/sunxi-tools/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 d687336379fd96c4ee73f24bd062d31672bd7453af53311b72977be3c8c78fef sentry-cli-1.59.0.tar.gz
sha256 9503def7b54ceb6e3cd182fd59bc05d3a30d7eae481e65aaba4b495133c83c14 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# sentry-cli
#
################################################################################
SENTRY_CLI_VERSION = 1.59.0
SENTRY_CLI_SITE = $(call github,getsentry,sentry-cli,$(SENTRY_CLI_VERSION))
SENTRY_CLI_LICENSE = BSD-3-clause
SENTRY_CLI_LICENSE_FILES = LICENSE
HOST_SENTRY_CLI_DEPENDENCIES = host-zlib
$(eval $(host-cargo-package))