Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
From e9244b207c0fc883ff84c1fc46602feb1e2b0347 Mon Sep 17 00:00:00 2001
|
||||
From: Thomas Klausner <tk@giga.or.at>
|
||||
Date: Wed, 3 Jan 2018 11:41:57 +0100
|
||||
Subject: [PATCH] Use 'cmake -E tar' to extract test data.
|
||||
|
||||
For easier cross-compilation (Github issue #21).
|
||||
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
Patch status: upstream commit e9244b207c0
|
||||
|
||||
regress/CMakeLists.txt | 12 +++---------
|
||||
1 file changed, 3 insertions(+), 9 deletions(-)
|
||||
|
||||
diff --git a/regress/CMakeLists.txt b/regress/CMakeLists.txt
|
||||
index e2ce232c774a..3a0d4f77dcf6 100644
|
||||
--- a/regress/CMakeLists.txt
|
||||
+++ b/regress/CMakeLists.txt
|
||||
@@ -51,15 +51,9 @@ ADD_CUSTOM_TARGET(cleanup
|
||||
ADD_CUSTOM_TARGET(testinput
|
||||
ALL
|
||||
VERBATIM
|
||||
- COMMAND ziptool ${CMAKE_CURRENT_SOURCE_DIR}/manyfiles-zip.zip cat 0 > manyfiles.zip
|
||||
- COMMAND ziptool ${CMAKE_CURRENT_SOURCE_DIR}/manyfiles-zip.zip cat 1 > manyfiles-133000.zip
|
||||
- COMMAND ziptool ${CMAKE_CURRENT_SOURCE_DIR}/manyfiles-zip.zip cat 2 > manyfiles-65536.zip
|
||||
- COMMAND ziptool ${CMAKE_CURRENT_SOURCE_DIR}/manyfiles-zip.zip cat 3 > manyfiles-zip64-modulo.zip
|
||||
- COMMAND ziptool ${CMAKE_CURRENT_SOURCE_DIR}/manyfiles-zip.zip cat 4 > manyfiles-zip64.zip
|
||||
- COMMAND ziptool ${CMAKE_CURRENT_SOURCE_DIR}/manyfiles-zip.zip cat 5 > manyfiles-fewer.zip
|
||||
- COMMAND ziptool ${CMAKE_CURRENT_SOURCE_DIR}/manyfiles-zip.zip cat 6 > manyfiles-more.zip
|
||||
- COMMAND ziptool ${CMAKE_CURRENT_SOURCE_DIR}/bigzero-zip.zip cat 0 > bigzero.zip
|
||||
- DEPENDS ziptool ${CMAKE_CURRENT_SOURCE_DIR}/manyfiles-zip.zip ${CMAKE_CURRENT_SOURCE_DIR}/bigzero-zip.zip
|
||||
+ COMMAND cmake -E tar x ${CMAKE_CURRENT_SOURCE_DIR}/manyfiles-zip.zip
|
||||
+ COMMAND cmake -E tar x ${CMAKE_CURRENT_SOURCE_DIR}/bigzero-zip.zip
|
||||
+ DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/manyfiles-zip.zip ${CMAKE_CURRENT_SOURCE_DIR}/bigzero-zip.zip
|
||||
)
|
||||
|
||||
SET_PROPERTY(DIRECTORY PROPERTY ADDITIONAL_MAKE_CLEAN_FILES
|
||||
--
|
||||
2.15.1
|
||||
|
||||
@@ -1,8 +1,13 @@
|
||||
config BR2_PACKAGE_LIBZIP
|
||||
bool "libzip"
|
||||
depends on !BR2_STATIC_LIBS # dlsym()
|
||||
select BR2_PACKAGE_ZLIB
|
||||
help
|
||||
C library for reading, creating, and modifying zip archives. This
|
||||
package also contains zipcmp, ziptorrent and zipmerge utilities.
|
||||
C library for reading, creating, and modifying zip archives.
|
||||
This package also contains zipcmp, ziptorrent and zipmerge
|
||||
utilities.
|
||||
|
||||
http://www.nih.at/libzip/
|
||||
|
||||
comment "libzip needs a toolchain w/ dynamic library"
|
||||
depends on BR2_STATIC_LIBS
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 7cfbbc2c540e154b933b6e9ec781e2671086bd8114eb744ae1a1ade34d2bb6bb libzip-0.11.2.tar.xz
|
||||
sha256 e508aba025f5f94b267d5120fc33761bcd98440ebe49dbfe2ed3df3afeacc7b1 libzip-1.4.0.tar.xz
|
||||
sha256 3c964a7eb1abeb6bd6f40035ed3a014728ff8c5437f107dcf24fbbfab16e227e LICENSE
|
||||
|
||||
@@ -4,12 +4,18 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBZIP_VERSION = 0.11.2
|
||||
LIBZIP_VERSION = 1.4.0
|
||||
LIBZIP_SITE = http://www.nih.at/libzip
|
||||
LIBZIP_SOURCE = libzip-$(LIBZIP_VERSION).tar.xz
|
||||
LIBZIP_LICENSE = BSD-3c
|
||||
LIBZIP_LICENSE = BSD-3-Clause
|
||||
LIBZIP_LICENSE_FILES = LICENSE
|
||||
LIBZIP_INSTALL_STAGING = YES
|
||||
LIBZIP_DEPENDENCIES = zlib
|
||||
|
||||
$(eval $(autotools-package))
|
||||
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
||||
LIBZIP_DEPENDENCIES += bzip2
|
||||
else
|
||||
LIBZIP_CONF_OPTS += -DCMAKE_DISABLE_FIND_PACKAGE_BZIP2=TRUE
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
|
||||
Reference in New Issue
Block a user