Bump buidlroot version to 2018.02.6
This commit is contained in:
20
bsp/buildroot/package/augeas/Config.in
Normal file
20
bsp/buildroot/package/augeas/Config.in
Normal file
@@ -0,0 +1,20 @@
|
||||
config BR2_PACKAGE_AUGEAS
|
||||
bool "augeas"
|
||||
# ARC toolchain issue:
|
||||
# https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/issues/108
|
||||
depends on !BR2_arc
|
||||
depends on BR2_USE_WCHAR
|
||||
select BR2_PACKAGE_LIBXML2
|
||||
select BR2_PACKAGE_READLINE
|
||||
help
|
||||
Augeas is a configuration editing tool. It parses
|
||||
configuration files in their native formats and transforms
|
||||
them into a tree. Configuration changes are made by
|
||||
manipulating this tree and saving it back into native config
|
||||
files.
|
||||
|
||||
http://augeas.net
|
||||
|
||||
comment "augeas needs a toolchain w/ wchar"
|
||||
depends on !BR2_arc
|
||||
depends on !BR2_USE_WCHAR
|
||||
4
bsp/buildroot/package/augeas/augeas.hash
Normal file
4
bsp/buildroot/package/augeas/augeas.hash
Normal file
@@ -0,0 +1,4 @@
|
||||
# Locally calculated after checking pgp signature from
|
||||
# http://download.augeas.net/augeas-1.10.1.tar.gz.sig
|
||||
sha256 52db256afab261d31cc147eaa1a71795a5fec59e888dfd0b65a84c7aacd6364d augeas-1.10.1.tar.gz
|
||||
sha256 ca0061fc1381a3ab242310e4b3f56389f28e3d460eb2fd822ed7a21c6f030532 COPYING
|
||||
25
bsp/buildroot/package/augeas/augeas.mk
Normal file
25
bsp/buildroot/package/augeas/augeas.mk
Normal file
@@ -0,0 +1,25 @@
|
||||
################################################################################
|
||||
#
|
||||
# augeas
|
||||
#
|
||||
################################################################################
|
||||
|
||||
AUGEAS_VERSION = 1.10.1
|
||||
AUGEAS_SITE = http://download.augeas.net
|
||||
AUGEAS_INSTALL_STAGING = YES
|
||||
AUGEAS_LICENSE = LGPL-2.1+
|
||||
AUGEAS_LICENSE_FILES = COPYING
|
||||
AUGEAS_DEPENDENCIES = host-pkgconf readline libxml2
|
||||
|
||||
# patching examples/Makefile.am, can be removed when updating from version 1.9.0
|
||||
AUGEAS_AUTORECONF = YES
|
||||
|
||||
AUGEAS_CONF_OPTS = --disable-gnulib-tests
|
||||
|
||||
# Remove the test lenses which occupy about 1.4 MB on the target
|
||||
define AUGEAS_REMOVE_TEST_LENSES
|
||||
rm -rf $(TARGET_DIR)/usr/share/augeas/lenses/dist/tests
|
||||
endef
|
||||
AUGEAS_POST_INSTALL_TARGET_HOOKS += AUGEAS_REMOVE_TEST_LENSES
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user