Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -4,7 +4,8 @@ config BR2_PACKAGE_GIT
|
||||
select BR2_PACKAGE_ZLIB
|
||||
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||
help
|
||||
Git is a free and open source distributed version control system
|
||||
designed to handle everything from small to very large projects.
|
||||
Git is a free and open source distributed version control
|
||||
system designed to handle everything from small to very large
|
||||
projects.
|
||||
|
||||
http://git-scm.com
|
||||
|
||||
@@ -1,2 +1,4 @@
|
||||
# From: https://www.kernel.org/pub/software/scm/git/sha256sums.asc
|
||||
sha256 a8c3b3c7dd9202d0e80f824ceb74b4340b60aa8f1ec4ffdde3e982fa5ae16eab git-2.12.5.tar.xz
|
||||
sha256 6e69b0e9c487e5da52a14d4829f0b6a28b2c18a0bb6fb67c0dc8b5b5658bd532 git-2.16.4.tar.xz
|
||||
sha256 5b2198d1645f767585e8a88ac0499b04472164c0d2da22e75ecf97ef443ab32e COPYING
|
||||
sha256 1922f45d2c49e390032c9c0ba6d7cac904087f7cec51af30c2b2ad022ce0e76a LGPL-2.1
|
||||
|
||||
@@ -4,16 +4,12 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GIT_VERSION = 2.12.5
|
||||
GIT_VERSION = 2.16.4
|
||||
GIT_SOURCE = git-$(GIT_VERSION).tar.xz
|
||||
GIT_SITE = https://www.kernel.org/pub/software/scm/git
|
||||
GIT_LICENSE = GPLv2, LGPLv2.1+
|
||||
GIT_SITE = $(BR2_KERNEL_MIRROR)/software/scm/git
|
||||
GIT_LICENSE = GPL-2.0, LGPL-2.1+
|
||||
GIT_LICENSE_FILES = COPYING LGPL-2.1
|
||||
GIT_DEPENDENCIES = zlib host-gettext
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GETTEXT),y)
|
||||
GIT_DEPENDENCIES += gettext
|
||||
endif
|
||||
GIT_DEPENDENCIES = zlib $(TARGET_NLS_DEPENDENCIES)
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
GIT_DEPENDENCIES += openssl
|
||||
@@ -23,9 +19,13 @@ else
|
||||
GIT_CONF_OPTS += --without-openssl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_PCRE),y)
|
||||
ifeq ($(BR2_PACKAGE_PCRE2),y)
|
||||
GIT_DEPENDENCIES += pcre2
|
||||
GIT_CONF_OPTS += --with-libpcre2
|
||||
else ifeq ($(BR2_PACKAGE_PCRE),y)
|
||||
GIT_DEPENDENCIES += pcre
|
||||
GIT_CONF_OPTS += --with-libpcre
|
||||
GIT_CONF_OPTS += --with-libpcre1
|
||||
GIT_MAKE_OPTS += NO_LIBPCRE1_JIT=1
|
||||
else
|
||||
GIT_CONF_OPTS += --without-libpcre
|
||||
endif
|
||||
@@ -33,7 +33,7 @@ endif
|
||||
ifeq ($(BR2_PACKAGE_LIBCURL),y)
|
||||
GIT_DEPENDENCIES += libcurl
|
||||
GIT_CONF_OPTS += --with-curl
|
||||
GIT_CONF_ENV += \
|
||||
GIT_CONF_ENV += \
|
||||
ac_cv_prog_curl_config=$(STAGING_DIR)/usr/bin/$(LIBCURL_CONFIG_SCRIPTS)
|
||||
else
|
||||
GIT_CONF_OPTS += --without-curl
|
||||
@@ -61,6 +61,12 @@ else
|
||||
GIT_CONF_OPTS += --without-tcltk
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_SYSTEM_ENABLE_NLS),)
|
||||
GIT_MAKE_OPTS += NO_GETTEXT=1
|
||||
endif
|
||||
|
||||
GIT_INSTALL_TARGET_OPTS = $(GIT_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install
|
||||
|
||||
# assume yes for these tests, configure will bail out otherwise
|
||||
# saying error: cannot run test program while cross compiling
|
||||
GIT_CONF_ENV += \
|
||||
|
||||
Reference in New Issue
Block a user