bump version to 2022.02.9

add miyoo_defconfig
This commit is contained in:
tiopex
2023-01-31 13:11:45 +01:00
parent 1fa746c353
commit dcdaa3599c
8423 changed files with 184305 additions and 91107 deletions

View File

@@ -0,0 +1,12 @@
config BR2_PACKAGE_GOCRYPTFS
bool "gocryptfs"
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
depends on BR2_TOOLCHAIN_HAS_THREADS
help
gocryptfs is an encrypted FUSE overlay filesystem.
https://github.com/rfjakob/gocryptfs
comment "gocryptfs needs a toolchain w/ threads"
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
depends on !BR2_TOOLCHAIN_HAS_THREADS

View File

@@ -0,0 +1,3 @@
# Locally computed
sha256 88f32bb8e18fa89e4ab666f7c8ad622281a11e423b4093e50ac260f960bc40b6 gocryptfs-2.2.1.tar.gz
sha256 322a7e3b02cf18e38b7e6b18cafefb773df8676c65634b34e8a2beb931294a4b LICENSE

View File

@@ -0,0 +1,19 @@
################################################################################
#
# gocryptfs
#
################################################################################
GOCRYPTFS_VERSION = 2.2.1
GOCRYPTFS_SITE = $(call github,rfjakob,gocryptfs,v$(GOCRYPTFS_VERSION))
GOCRYPTFS_LICENSE = MIT
GOCRYPTFS_LICENSE_FILES = LICENSE
GOCRYPTFS_GOMOD = github.com/rfjakob/gocryptfs/v2
GOCRYPTFS_LDFLAGS = \
-X main.GitVersion=$(GOCRYPTFS_VERSION) \
-X main.GitVersionFuse=[vendored]
GOCRYPTFS_TAGS = without_openssl
$(eval $(golang-package))