boost: Updates package to version 1.83.0
authorCarlos Miguel Ferreira <carlosmf.pt@gmail.com>
Mon, 14 Aug 2023 01:05:52 +0000 (02:05 +0100)
committerRosen Penev <rosenp@gmail.com>
Tue, 15 Aug 2023 01:15:20 +0000 (18:15 -0700)
This commit updates boost to version 1.83.0

A new header-only library is available:
- Compat: A repository of C++11 implementations of standard components
  added in later C++ standards, from Peter Dimov and contributors. [1]

More info about Boost 1.83.0 can be found at the usual place [2].

[1]: https://www.boost.org/doc/libs/1_83_0/libs/compat/doc/html/compat.html
[2]: https://www.boost.org/users/history/version_1_83_0.html

Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
libs/boost/Makefile
libs/boost/patches/010-mips1.patch [deleted file]

index aecf1dc8a8cb4bb522844cc3bdfd14ba340e049f..e1e2f2b025d122084497102e5078ff3e8a6a2fd4 100644 (file)
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=boost
-PKG_VERSION:=1.82.0
-PKG_SOURCE_VERSION:=1_82_0
+PKG_VERSION:=1.83.0
+PKG_SOURCE_VERSION:=1_83_0
 PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)_$(PKG_SOURCE_VERSION).tar.bz2
 PKG_SOURCE_URL:=@SF/$(PKG_NAME)/$(PKG_NAME)/$(PKG_VERSION) https://boostorg.jfrog.io/artifactory/main/release/$(PKG_VERSION)/source/
-PKG_HASH:=a6e1ab9b0860e6a2881dd7b21fe9f737a095e5f33a3a874afc6a345228597ee6
+PKG_HASH:=6478edfe2f3305127cffe8caf73ea0176c53769f4bf1585be237eb30798c3b8e
 
 PKG_MAINTAINER:=Carlos M. Ferreira <carlosmf.pt@gmail.com>
 PKG_LICENSE:=BSL-1.0
@@ -42,7 +42,7 @@ define Package/boost/Default
 endef
 
 define Package/boost/description
-This package provides the Boost v1.82.0 libraries.
+This package provides the Boost v1.83.0 libraries.
 Boost is a set of free, peer-reviewed, portable C++ source libraries.
 
 This package provides the following run-time libraries:
@@ -78,7 +78,7 @@ This package provides the following run-time libraries:
  - wave
 
 There are many more header-only libraries supported by Boost.
-See more at http://www.boost.org/doc/libs/1_82_0/
+See more at http://www.boost.org/doc/libs/1_83_0/
 endef
 
 PKG_BUILD_DEPENDS:=boost/host
diff --git a/libs/boost/patches/010-mips1.patch b/libs/boost/patches/010-mips1.patch
deleted file mode 100644 (file)
index a5ec04d..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
---- a/boostcpp.jam
-+++ b/boostcpp.jam
-@@ -634,7 +634,7 @@ rule address-model ( )
-     return <conditional>@boostcpp.deduce-address-model ;
- }
--local deducable-architectures = arm mips1 power riscv s390x sparc x86 combined ;
-+local deducable-architectures = arm mips power riscv s390x sparc x86 combined ;
- feature.feature deduced-architecture : $(deducable-architectures) : propagated optional composite hidden ;
- for a in $(deducable-architectures)
- {
-@@ -645,10 +645,10 @@ rule deduce-architecture ( properties *
- {
-     local result ;
-     local filtered = [ toolset-properties $(properties) ] ;
--    local names = arm mips1 power riscv s390x sparc x86 combined ;
-+    local names = arm mips power riscv s390x sparc x86 combined ;
-     local idx = [ configure.find-builds "default architecture" : $(filtered)
-         : /boost/architecture//arm
--        : /boost/architecture//mips1
-+        : /boost/architecture//mips
-         : /boost/architecture//power
-         : /boost/architecture//riscv
-         : /boost/architecture//s390x
---- a/libs/atomic/build/atomic-arch-config.jam
-+++ b/libs/atomic/build/atomic-arch-config.jam
-@@ -27,9 +27,9 @@ rule deduce-architecture ( properties *
-         {
-             return arm ;
-         }
--        else if [ configure.builds /boost/architecture//mips1 : $(properties) : "mips1" ]
-+        else if [ configure.builds /boost/architecture//mips : $(properties) : "mips" ]
-         {
--            return mips1 ;
-+            return mips ;
-         }
-         else if [ configure.builds /boost/architecture//power : $(properties) : "power" ]
-         {