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,6 @@
config BR2_PACKAGE_LIBSIGC
bool "libsigc++"
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
depends on BR2_INSTALL_LIBSTDCPP
help
libsigc++ implements a typesafe callback system for standard
@@ -8,7 +8,7 @@ config BR2_PACKAGE_LIBSIGC
signals to any callback function, either global or a member
function, regardless of whether it is static or virtual.
http://libsigc.sourceforge.net/
https://libsigcplusplus.github.io/libsigcplusplus/
comment "libsigc++ needs a toolchain w/ C++, gcc >= 4.8"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
comment "libsigc++ needs a toolchain w/ C++, gcc >= 7"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_7

View File

@@ -1,5 +1,5 @@
# From http://ftp.gnome.org/pub/gnome/sources/libsigc++/2.10/libsigc++-2.10.0.sha256sum
sha256 f843d6346260bfcb4426259e314512b99e296e8ca241d771d21ac64f28298d81 libsigc++-2.10.0.tar.xz
# From http://ftp.gnome.org/pub/gnome/sources/libsigc++/3.0/libsigc++-3.0.7.sha256sum
sha256 bfbe91c0d094ea6bbc6cbd3909b7d98c6561eea8b6d9c0c25add906a6e83d733 libsigc++-3.0.7.tar.xz
# Locally calculated
sha256 5bbcbb737e60fe9deba08ecbd00920cfcc3403ba2e534c64fdeea49d6bb87509 COPYING
sha256 97628afebc60f026f5c2b25d7491c46a5c4ee61f693e7cfa07fbd2c03605979b COPYING

View File

@@ -4,19 +4,15 @@
#
################################################################################
LIBSIGC_VERSION_MAJOR = 2.10
LIBSIGC_VERSION = $(LIBSIGC_VERSION_MAJOR).0
LIBSIGC_VERSION_MAJOR = 3.0
LIBSIGC_VERSION = $(LIBSIGC_VERSION_MAJOR).7
LIBSIGC_SOURCE = libsigc++-$(LIBSIGC_VERSION).tar.xz
LIBSIGC_SITE = http://ftp.gnome.org/pub/GNOME/sources/libsigc++/$(LIBSIGC_VERSION_MAJOR)
LIBSIGC_DEPENDENCIES = host-m4
LIBSIGC_INSTALL_STAGING = YES
LIBSIGC_LICENSE = LGPL-2.1+
LIBSIGC_LICENSE = LGPL-3.0+
LIBSIGC_LICENSE_FILES = COPYING
LIBSIGC_CONF_OPTS = \
-Dbuild-examples=false \
-Dvalidation=false
define LIBSIGC_INSTALL_TARGET_FIXUP
rm -rf $(TARGET_DIR)/usr/share/devhelp/books/libsigc++*
endef
LIBSIGC_POST_INSTALL_TARGET_HOOKS += LIBSIGC_INSTALL_TARGET_FIXUP
$(eval $(autotools-package))
$(eval $(meson-package))