From 1c144dde6aaaea4407751a0e8b5909237525f2b9 Mon Sep 17 00:00:00 2001 From: apotocki Date: Sun, 5 Jan 2025 18:29:59 +0100 Subject: [PATCH] version 1.87.0 --- README.md | 2 +- boost-iosx.podspec | 2 +- scripts/build.sh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f5d26597..14c97ee5 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ graph_parallel, mpi, python use_frameworks! pod 'boost-iosx', '~> 1.87.0' # or optionally more precisely e.g.: - # pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.87.0.2' + # pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.87.0.3' ``` If you want to use particular boost libraries, specify them as in the following example for log and program_options libraries: ``` diff --git a/boost-iosx.podspec b/boost-iosx.podspec index 2b0d04d2..26e9847e 100644 --- a/boost-iosx.podspec +++ b/boost-iosx.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "boost-iosx" - s.version = "1.87.0.2" + s.version = "1.87.0.3" s.summary = "Boost C++ libraries for macOS, iOS, and visionOS, including both arm64 and x86_64 builds for macOS, Mac Catalyst, iOS Simulator, and visionOS Simulator." s.homepage = "https://github.com/apotocki/boost-iosx" s.license = "Boost Software License" diff --git a/scripts/build.sh b/scripts/build.sh index 35176781..242305d6 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -34,7 +34,7 @@ if [ ! -f "$BUILD_DIR/frameworks.built" ]; then BOOST_ARCHIVE_FILE=$BOOST_NAME.tar.bz2 if [ -f $BOOST_ARCHIVE_FILE ]; then - FILE_HASH=$(sha256sum "$BOOST_ARCHIVE_FILE" | awk '{ print $1 }') + FILE_HASH=$(shasum -a 256 "$BOOST_ARCHIVE_FILE" | awk '{ print $1 }') if [ ! "$FILE_HASH" == "$EXPECTED_HASH" ]; then echo "Wrong archive hash, trying to reload the archive" rm "$BOOST_ARCHIVE_FILE" @@ -57,7 +57,7 @@ if [ ! -f $BOOST_ARCHIVE_FILE ]; then # Check if the download was successful if [ $? -eq 0 ]; then - FILE_HASH=$(sha256sum "$BOOST_ARCHIVE_FILE" | awk '{ print $1 }') + FILE_HASH=$(shasum -a 256 "$BOOST_ARCHIVE_FILE" | awk '{ print $1 }') if [ "$FILE_HASH" == "$EXPECTED_HASH" ]; then [ -d boost ] && rm -rf boost break