mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-01 02:41:22 +08:00
update to 1.69
update to 1.69 for rblibtorrent
This commit is contained in:
parent
28ee6e688c
commit
4a5fab6120
@ -11,15 +11,15 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=boost
|
PKG_NAME:=boost
|
||||||
PKG_VERSION:=1.68.0
|
PKG_VERSION:=1.69.0
|
||||||
PKG_SOURCE_VERSION:=1_68_0
|
PKG_SOURCE_VERSION:=1_69_0
|
||||||
PKG_RELEASE:=4
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)_$(PKG_SOURCE_VERSION).tar.bz2
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_SOURCE_VERSION).tar.bz2
|
||||||
PKG_SOURCE_URL:=@SF/$(PKG_NAME)/$(PKG_NAME)/$(PKG_VERSION) https://dl.bintray.com/boostorg/release/$(PKG_VERSION)/source/
|
PKG_SOURCE_URL:=@SF/$(PKG_NAME)/$(PKG_NAME)/$(PKG_VERSION) https://dl.bintray.com/boostorg/release/$(PKG_VERSION)/source/
|
||||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)_$(PKG_SOURCE_VERSION)
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)_$(PKG_SOURCE_VERSION)
|
||||||
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)_$(PKG_SOURCE_VERSION)
|
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)_$(PKG_SOURCE_VERSION)
|
||||||
PKG_HASH:=7f6130bc3cf65f56a618888ce9d5ea704fa10b462be126ad053e80e553d6d8b7
|
PKG_HASH:=8f32d4617390d1c2d16f26a27ab60d97807b35440d45891fa340fc2648b04406
|
||||||
PKG_LICENSE:=Boost Software License <http://www.boost.org/users/license.html>
|
PKG_LICENSE:=Boost Software License <http://www.boost.org/users/license.html>
|
||||||
PKG_MAINTAINER:=Carlos M. Ferreira <carlosmf.pt@gmail.com>
|
PKG_MAINTAINER:=Carlos M. Ferreira <carlosmf.pt@gmail.com>
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ define Package/boost/Default
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/boost/description
|
define Package/boost/description
|
||||||
This package provides the Boost v1.68.0 libraries.
|
This package provides the Boost v1.69.0 libraries.
|
||||||
Boost is a set of free, peer-reviewed, portable C++ source libraries.
|
Boost is a set of free, peer-reviewed, portable C++ source libraries.
|
||||||
|
|
||||||
-----------------------------------------------------------------------------
|
-----------------------------------------------------------------------------
|
||||||
@ -76,7 +76,6 @@ This package provides the following run-time libraries:
|
|||||||
- random
|
- random
|
||||||
- regex
|
- regex
|
||||||
- serialization and wserialization
|
- serialization and wserialization
|
||||||
- signals
|
|
||||||
- stackstrace
|
- stackstrace
|
||||||
- system
|
- system
|
||||||
- thread
|
- thread
|
||||||
@ -85,7 +84,7 @@ This package provides the following run-time libraries:
|
|||||||
- wave
|
- wave
|
||||||
|
|
||||||
There are many more header-only libraries supported by Boost.
|
There are many more header-only libraries supported by Boost.
|
||||||
See more at http://www.boost.org/doc/libs/1_67_0/
|
See more at http://www.boost.org/doc/libs/1_69_0/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
PKG_BUILD_DEPENDS:=boost/host PACKAGE_python:python PACKAGE_python3:python3
|
PKG_BUILD_DEPENDS:=boost/host PACKAGE_python:python PACKAGE_python3:python3
|
||||||
@ -129,6 +128,35 @@ define Package/boost/config
|
|||||||
depends on PACKAGE_boost
|
depends on PACKAGE_boost
|
||||||
comment "Boost compilation options."
|
comment "Boost compilation options."
|
||||||
|
|
||||||
|
choice
|
||||||
|
prompt "Compile Visibility."
|
||||||
|
default boost-compile-visibility-hidden
|
||||||
|
help
|
||||||
|
Choose Boost symbols compilation visibility.
|
||||||
|
-> Global:
|
||||||
|
- a.k.a. "default" in gcc documentation. Global symbols are considered public,
|
||||||
|
they are exported from shared libraries and can be redefined by another
|
||||||
|
shared library or executable.
|
||||||
|
-> Protected:
|
||||||
|
- a.k.a. "symbolic". Protected symbols are exported from shared libraries but
|
||||||
|
cannot be redefined by another shared library or executable. This mode is
|
||||||
|
not supported on some platforms, for example OS X.
|
||||||
|
-> Hidden:
|
||||||
|
- Hidden symbols are not exported from shared libraries and cannot be
|
||||||
|
redefined by a different shared library or executable loaded in a process.
|
||||||
|
In this mode, public symbols have to be explicitly marked in the source code
|
||||||
|
to be exported from shared libraries. This is the recommended mode.
|
||||||
|
|
||||||
|
config boost-compile-visibility-global
|
||||||
|
bool "Global"
|
||||||
|
|
||||||
|
config boost-compile-visibility-protected
|
||||||
|
bool "Protected"
|
||||||
|
|
||||||
|
config boost-compile-visibility-hidden
|
||||||
|
bool "Hidden"
|
||||||
|
endchoice
|
||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "Compile Boost libraries."
|
prompt "Compile Boost libraries."
|
||||||
default boost-static-and-shared-libs
|
default boost-static-and-shared-libs
|
||||||
@ -314,7 +342,7 @@ $(eval $(call DefineBoostLibrary,date_time,,))
|
|||||||
$(eval $(call DefineBoostLibrary,fiber,coroutine filesystem,,!boost-fiber-exclude))
|
$(eval $(call DefineBoostLibrary,fiber,coroutine filesystem,,!boost-fiber-exclude))
|
||||||
$(eval $(call DefineBoostLibrary,filesystem,system,))
|
$(eval $(call DefineBoostLibrary,filesystem,system,))
|
||||||
$(eval $(call DefineBoostLibrary,graph,regex,))
|
$(eval $(call DefineBoostLibrary,graph,regex,))
|
||||||
$(eval $(call DefineBoostLibrary,iostreams,,+zlib +liblzma +libbz2))
|
$(eval $(call DefineBoostLibrary,iostreams,,+zlib +liblzma +libbz2 +zstd))
|
||||||
$(eval $(call DefineBoostLibrary,locale,system,$(ICONV_DEPENDS),BUILD_NLS))
|
$(eval $(call DefineBoostLibrary,locale,system,$(ICONV_DEPENDS),BUILD_NLS))
|
||||||
$(eval $(call DefineBoostLibrary,log,system chrono date_time thread filesystem regex,))
|
$(eval $(call DefineBoostLibrary,log,system chrono date_time thread filesystem regex,))
|
||||||
$(eval $(call DefineBoostLibrary,math,,))
|
$(eval $(call DefineBoostLibrary,math,,))
|
||||||
@ -326,7 +354,6 @@ $(eval $(call DefineBoostLibrary,random,system,))
|
|||||||
$(eval $(call DefineBoostLibrary,regex,,))
|
$(eval $(call DefineBoostLibrary,regex,,))
|
||||||
$(eval $(call DefineBoostLibrary,serialization,,))
|
$(eval $(call DefineBoostLibrary,serialization,,))
|
||||||
$(eval $(call DefineBoostLibrary,wserialization,serialization,))
|
$(eval $(call DefineBoostLibrary,wserialization,serialization,))
|
||||||
$(eval $(call DefineBoostLibrary,signals,,))
|
|
||||||
$(eval $(call DefineBoostLibrary,stacktrace,,))
|
$(eval $(call DefineBoostLibrary,stacktrace,,))
|
||||||
$(eval $(call DefineBoostLibrary,system,,))
|
$(eval $(call DefineBoostLibrary,system,,))
|
||||||
$(eval $(call DefineBoostLibrary,thread,system chrono atomic,))
|
$(eval $(call DefineBoostLibrary,thread,system chrono atomic,))
|
||||||
@ -374,6 +401,9 @@ define Build/Compile
|
|||||||
--ignore-site-config \
|
--ignore-site-config \
|
||||||
--toolset=gcc-$(ARCH) abi=$(BOOST_ABI) \
|
--toolset=gcc-$(ARCH) abi=$(BOOST_ABI) \
|
||||||
--disable-long-double \
|
--disable-long-double \
|
||||||
|
$(if $(CONFIG_boost-compile-visibility-global), visibility=global,) \
|
||||||
|
$(if $(CONFIG_boost-compile-visibility-protected), visibility=protected,) \
|
||||||
|
$(if $(CONFIG_boost-compile-visibility-hidden), visibility=hidden,) \
|
||||||
$(if $(CONFIG_boost-variant-release), variant=release,) \
|
$(if $(CONFIG_boost-variant-release), variant=release,) \
|
||||||
$(if $(CONFIG_boost-variant-debug), variant=debug,) \
|
$(if $(CONFIG_boost-variant-debug), variant=debug,) \
|
||||||
$(if $(CONFIG_boost-variant-profile), variant=profile,) \
|
$(if $(CONFIG_boost-variant-profile), variant=profile,) \
|
||||||
@ -470,7 +500,7 @@ define Build/InstallDev
|
|||||||
|
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
# copies all compiled archive and shared object files
|
# copies all compiled archive and shared object files
|
||||||
$(CP) -v $(PKG_INSTALL_DIR)/lib/*.{a,so*} $(1)/usr/lib/
|
$(CP) -v $(PKG_INSTALL_DIR)/lib/*.{a,so*} $(1)/usr/lib/ || :
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Host/Install
|
define Host/Install
|
||||||
|
Loading…
Reference in New Issue
Block a user