update buildroot to 2017.02.11

This commit is contained in:
jbnadal
2018-05-22 15:35:47 +02:00
parent 4bf1f5e091
commit a3c10bd762
9257 changed files with 433426 additions and 1701 deletions

View File

@@ -0,0 +1,18 @@
fake check_lib for cross-compilation
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Index: b/Makefile.PL
===================================================================
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -88,8 +88,7 @@
# -------------------------------------------------------------------------- #
# -------------------------------------------------------------------------- #
-use lib qw(inc);
-use Devel::CheckLib;
+sub check_lib { return 1; }
# Prompt the user here for any paths and other configuration

View File

@@ -0,0 +1,15 @@
config BR2_PACKAGE_PERL_XML_LIBXML
bool "perl-xml-libxml"
depends on !BR2_STATIC_LIBS
select BR2_PACKAGE_LIBXML2
select BR2_PACKAGE_ZLIB
select BR2_PACKAGE_PERL_XML_NAMESPACESUPPORT
select BR2_PACKAGE_PERL_XML_SAX
select BR2_PACKAGE_PERL_XML_SAX_BASE
help
Interface to Gnome libxml2 xml parsing and DOM library
https://github.com/shlomif/perl-XML-LibXML
comment "perl-xml-libxml needs a toolchain w/ dynamic library"
depends on BR2_STATIC_LIBS

View File

@@ -0,0 +1,3 @@
# retrieved by scancpan from http://cpan.metacpan.org/
md5 9904690371679e082ff2c23677b6c90e XML-LibXML-2.0128.tar.gz
sha256 26e7ba451f3bade4d29ff00653a2ee01d13fe38b9a2ebcd0b0f3f82f9f688f2b XML-LibXML-2.0128.tar.gz

View File

@@ -0,0 +1,19 @@
################################################################################
#
# perl-xml-libxml
#
################################################################################
PERL_XML_LIBXML_VERSION = 2.0128
PERL_XML_LIBXML_SOURCE = XML-LibXML-$(PERL_XML_LIBXML_VERSION).tar.gz
PERL_XML_LIBXML_SITE = $(BR2_CPAN_MIRROR)/authors/id/S/SH/SHLOMIF
PERL_XML_LIBXML_DEPENDENCIES = zlib libxml2 perl-xml-namespacesupport perl-xml-sax perl-xml-sax-base
PERL_XML_LIBXML_LICENSE = Artistic or GPLv1+
PERL_XML_LIBXML_LICENSE_FILES = LICENSE
PERL_XML_LIBXML_CONF_OPTS = \
LIBS="-L $(STAGING_DIR)/usr/lib" \
INC="-I $(STAGING_DIR)/usr/include/libxml2" \
NO_THREADS
$(eval $(perl-package))