initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
config BR2_PACKAGE_DING_LIBS
bool "ding-libs"
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
help
The ding-libs packages contain a set of libraries used by
the System Security Services Daemon (SSSD) and other
projects and provide functions to manipulate filesystem
pathnames (libpath_utils), a hash table to manage storage
and access time properties (libdhash), a data type to
collect data in a hierarchical structure (libcollection), a
dynamically growing, reference-counted array (libref_array),
and a library to process configuration files in
initialization format (INI) into a library collection data
structure (libini_config).
https://pagure.io/SSSD/ding-libs
+4
View File
@@ -0,0 +1,4 @@
# Locally computed
sha256 ad3c573641701f67d4b6bd8a5a71f0b65d45fd39fe961495ef5f5d3c57fc0963 ding-libs-ding_libs-0_6_1.tar.gz
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
sha256 6c57f43c939054fd4b831f271a14c97a488c38f98cdda5e887c5d396e3b3bc58 COPYING.LESSER
+21
View File
@@ -0,0 +1,21 @@
################################################################################
#
# ding-libs
#
################################################################################
DING_LIBS_VERSION = 0.6.1
DING_LIBS_SOURCE = ding-libs-ding_libs-$(subst .,_,$(DING_LIBS_VERSION)).tar.gz
DING_LIBS_SITE = \
https://pagure.io/SSSD/ding-libs/archive/ding_libs-$(subst .,_,$(DING_LIBS_VERSION))
DING_LIBS_DEPENDENCIES = host-pkgconf \
$(TARGET_NLS_DEPENDENCIES) \
$(if $(BR2_PACKAGE_LIBICONV),libiconv)
DING_LIBS_INSTALL_STAGING = YES
DING_LIBS_LICENSE = LGPL-3.0+ (library),GPL-3.0+ (test programs)
DING_LIBS_LICENSE_FILES = COPYING COPYING.LESSER
# autoconf/automake generated files not present in tarball
DING_LIBS_AUTORECONF = YES
$(eval $(autotools-package))