initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
config BR2_PACKAGE_HOST_MENDER_ARTIFACT
|
||||
bool "host mender-artifact"
|
||||
depends on BR2_PACKAGE_HOST_GO_HOST_ARCH_SUPPORTS
|
||||
help
|
||||
The mender-artifact tool is a CLI implementation of the
|
||||
Mender artifacts library.
|
||||
|
||||
A Mender artifact can be recognized by its .mender suffix.
|
||||
Mender artifacts can contain binaries, metadata, checksums,
|
||||
signatures and scripts that are used during a deployment.
|
||||
The artifact format acts as a wrapper, and uses the tar
|
||||
format to bundle several files into one.
|
||||
|
||||
In its simplest form, an artifact contains just a rootfs
|
||||
image, along with its checksum, id and device type
|
||||
compatibility.
|
||||
|
||||
https://github.com/mendersoftware/mender-artifact
|
||||
@@ -0,0 +1,37 @@
|
||||
# Locally computed:
|
||||
sha256 c46c305616cf53e65b786862addf04d97c388e451f11478886967b494c4ce5d9 mender-artifact-3.6.1.tar.gz
|
||||
sha256 ac23df36801aea6a28685b60a742f68f99d357e0d9973d5c36aa2e72599d8e2a LIC_FILES_CHKSUM.sha256
|
||||
|
||||
# License hash extracted from LIC_FILES_CHKSUM.sha256 using the
|
||||
# following command:
|
||||
#
|
||||
# sed '/^[A-Za-z0-9_]/s/^/sha256 /' LIC_FILES_CHKSUM.sha256
|
||||
|
||||
# Apache 2.0 licenses.
|
||||
sha256 b4acfcfa2a0ba1a8c82ec3965fbcee886cff8394ca4214e0ddac0a36beb1e05a LICENSE
|
||||
sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 vendor/github.com/minio/sha256-simd/LICENSE
|
||||
sha256 8f5d89b47d7a05a199b77b7e0f362dad391d451ebda4ef48ba11c50c071564c7 vendor/github.com/mendersoftware/progressbar/LICENSE
|
||||
#
|
||||
# BSD 2 Clause licenses.
|
||||
sha256 8d427fd87bc9579ea368fde3d49f9ca22eac857f91a9dec7e3004bdfab7dee86 vendor/github.com/pkg/errors/LICENSE
|
||||
#
|
||||
# BSD 3 Clause licenses.
|
||||
sha256 2eb550be6801c1ea434feba53bf6d12e7c71c90253e0a9de4a4f46cf88b56477 vendor/github.com/pmezard/go-difflib/LICENSE
|
||||
sha256 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067 vendor/golang.org/x/sys/LICENSE
|
||||
sha256 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067 vendor/golang.org/x/crypto/LICENSE
|
||||
sha256 a284e538f3e5649ae6a8f32da2bbd18e9daabf2c1ebbfb99ed92e797b159be1a vendor/github.com/remyoudompheng/go-liblzma/LICENSE
|
||||
sha256 16f848582e4b276a7392cd34496b7a33d6f65c0e190c163ff3a056a7c61219ce vendor/github.com/klauspost/compress/LICENSE
|
||||
sha256 75e1ca97a84a9da6051dee0114333388216f2c4a5a028296b882ff3d57274735 vendor/github.com/russross/blackfriday/v2/LICENSE.txt
|
||||
#
|
||||
# ISC licenses.
|
||||
sha256 1b93a317849ee09d3d7e4f1d20c2b78ddb230b4becb12d7c224c927b9d470251 vendor/github.com/davecgh/go-spew/LICENSE
|
||||
#
|
||||
# MIT licenses.
|
||||
sha256 f8e536c1c7b695810427095dc85f5f80d44ff7c10535e8a9486cf393e2599189 vendor/github.com/stretchr/testify/LICENSE
|
||||
sha256 da277af11b85227490377fbcac6afccc68be560c4fff36ac05ca62de55345fd7 vendor/github.com/urfave/cli/LICENSE
|
||||
sha256 51a0c9ec7f8b7634181b8d4c03e5b5d204ac21d6e72f46c313973424664b2e6b vendor/github.com/sirupsen/logrus/LICENSE
|
||||
sha256 6d2de1cde19c4d2bd8bcd9aaa1d581f4cfa3db9cf71896140330eaa2f2687685 vendor/github.com/klauspost/pgzip/LICENSE
|
||||
sha256 a55959c4e3e8917bfa857359bb641115336276a6cc97408fd8197e079fb18470 vendor/github.com/cpuguy83/go-md2man/v2/LICENSE.md
|
||||
sha256 c8024e31c1de453fea90f22a221968835cc7af9d520274a2576c9ec9976055b0 vendor/github.com/shurcooL/sanitized_anchor_name/LICENSE
|
||||
sha256 d18f6323b71b0b768bb5e9616e36da390fbd39369a81807cca352de4e4e6aa0b vendor/gopkg.in/yaml.v3/LICENSE
|
||||
sha256 08eab1118c80885fa1fa6a6dd7303f65a379fcb3733e063d20d1bbc2c76e6fa1 vendor/github.com/mattn/go-isatty/LICENSE
|
||||
@@ -0,0 +1,47 @@
|
||||
################################################################################
|
||||
#
|
||||
# host-mender-artifact
|
||||
#
|
||||
################################################################################
|
||||
|
||||
HOST_MENDER_ARTIFACT_VERSION = 3.6.1
|
||||
HOST_MENDER_ARTIFACT_SITE = $(call github,mendersoftware,mender-artifact,$(HOST_MENDER_ARTIFACT_VERSION))
|
||||
HOST_MENDER_ARTIFACT_LICENSE = Apache2.0, BSD-2-Clause, BSD-3-Clause, ISC, MIT
|
||||
HOST_MENDER_ARTIFACT_LICENSE_FILES = \
|
||||
LICENSE \
|
||||
LIC_FILES_CHKSUM.sha256 \
|
||||
vendor/github.com/minio/sha256-simd/LICENSE \
|
||||
vendor/github.com/mendersoftware/progressbar/LICENSE \
|
||||
vendor/github.com/pkg/errors/LICENSE \
|
||||
vendor/github.com/pmezard/go-difflib/LICENSE \
|
||||
vendor/golang.org/x/sys/LICENSE \
|
||||
vendor/golang.org/x/crypto/LICENSE \
|
||||
vendor/github.com/remyoudompheng/go-liblzma/LICENSE \
|
||||
vendor/github.com/klauspost/compress/LICENSE \
|
||||
vendor/github.com/russross/blackfriday/v2/LICENSE.txt \
|
||||
vendor/github.com/davecgh/go-spew/LICENSE \
|
||||
vendor/github.com/stretchr/testify/LICENSE \
|
||||
vendor/github.com/urfave/cli/LICENSE \
|
||||
vendor/github.com/sirupsen/logrus/LICENSE \
|
||||
vendor/github.com/klauspost/pgzip/LICENSE \
|
||||
vendor/github.com/cpuguy83/go-md2man/v2/LICENSE.md \
|
||||
vendor/github.com/shurcooL/sanitized_anchor_name/LICENSE \
|
||||
vendor/gopkg.in/yaml.v3/LICENSE \
|
||||
vendor/github.com/mattn/go-isatty/LICENSE
|
||||
|
||||
HOST_MENDER_ARTIFACT_DEPENDENCIES = host-xz
|
||||
|
||||
# By default, go will attempt to download needed modules before building, which
|
||||
# is not desirable. This behavior also causes permission issues when cleaning,
|
||||
# as go downloads modules as read-only by default. Because mender-artifact
|
||||
# includes the modules in the vendor directory, mod=vendor prevents the package
|
||||
# from downloading the go modules during the build process and prevents
|
||||
# permission issues when cleaning.
|
||||
HOST_MENDER_ARTIFACT_GO_ENV = GOFLAGS="-mod=vendor"
|
||||
|
||||
HOST_MENDER_ARTIFACT_LDFLAGS = -X github.com/mendersoftware/mender-artifact/cli.Version=$(HOST_MENDER_ARTIFACT_VERSION)
|
||||
|
||||
HOST_MENDER_ARTIFACT_BIN_NAME = mender-artifact
|
||||
HOST_MENDER_ARTIFACT_INSTALL_BINS = $(HOST_MENDER_ARTIFACT_BIN_NAME)
|
||||
|
||||
$(eval $(host-golang-package))
|
||||
Reference in New Issue
Block a user