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

@@ -1,6 +1,7 @@
config BR2_PACKAGE_DUKTAPE
bool "duktape"
depends on !BR2_STATIC_LIBS
depends on !BR2_OPTIMIZE_FAST
help
Duktape is an embeddable Javascript engine, with a focus on
portability and compact footprint.
@@ -14,3 +15,6 @@ config BR2_PACKAGE_DUKTAPE
comment "duktape needs a toolchain w/ dynamic library"
depends on BR2_STATIC_LIBS
comment "duktape can't be built with Optimize for fast"
depends on BR2_OPTIMIZE_FAST

View File

@@ -1,3 +1,3 @@
# Locally computed:
sha256 810e1dab50dfd3040cac4bb18b96d749a5fdebfd898a7bfe74512044c1a89880 duktape-2.5.0.tar.gz
sha256 5b42d02dbd084fd6d7e61d93f52e02b596f25400e54e0f86d5780045e5b754c8 LICENSE.txt
sha256 96f4a05a6c84590e53b18c59bb776aaba80a205afbbd92b82be609ba7fe75fa7 duktape-2.6.0.tar.xz
sha256 5b42d02dbd084fd6d7e61d93f52e02b596f25400e54e0f86d5780045e5b754c8 LICENSE.txt

View File

@@ -4,8 +4,10 @@
#
################################################################################
DUKTAPE_VERSION = 2.5.0
DUKTAPE_SITE = $(call github,svaarala,duktape-releases,v$(DUKTAPE_VERSION))
DUKTAPE_VERSION = 2.6.0
DUKTAPE_SOURCE = duktape-$(DUKTAPE_VERSION).tar.xz
DUKTAPE_SITE = \
https://github.com/svaarala/duktape/releases/download/v$(DUKTAPE_VERSION)
DUKTAPE_LICENSE = MIT
DUKTAPE_LICENSE_FILES = LICENSE.txt
DUKTAPE_INSTALL_STAGING = YES
@@ -17,6 +19,10 @@ endef
define DUKTAPE_INSTALL_STAGING_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -f Makefile.sharedlibrary \
INSTALL_PREFIX=$(STAGING_DIR)/usr install
$(INSTALL) -D -m 0644 $(DUKTAPE_PKGDIR)/duktape.pc.in \
$(STAGING_DIR)/usr/lib/pkgconfig/duktape.pc
$(SED) 's/@VERSION@/$(DUKTAPE_VERSION)/g;' \
$(STAGING_DIR)/usr/lib/pkgconfig/duktape.pc
endef
define DUKTAPE_INSTALL_TARGET_CMDS

View File

@@ -0,0 +1,10 @@
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
Name: duktape
Description: Embeddable Javascript engine
Version: @VERSION@
Libs: -L${libdir} -lduktape
Cflags: -I${includedir}/