All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/1] package/boost: bump version to 1.73.0
Date: Sun, 14 Jun 2020 18:21:08 +0200	[thread overview]
Message-ID: <20200614162108.GA2346@scaer> (raw)
In-Reply-To: <20200613153509.2471832-1-bernd.kuhls@t-online.de>

Bernd, All,

On 2020-06-13 17:35 +0200, Bernd Kuhls spake thusly:
> Changelog: https://www.boost.org/users/history/version_1_73_0.html
> 
> Removed patch 0004 which was committed upstream:
> https://github.com/boostorg/predef/commit/4bc7cc02eda854e4c8ac73caecfee37717083a6b
> 
> Reformatted hash file.
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Applied to master, thanks.

However, Boost has a tendency to introduce subtle breakage, so please
keep an eye on the autobuilders for such a breakage in the comming days.

Thanks.

Regards,
Yann E. MORIN.

> ---
>  .../0004-add-riscv-endian-detection.patch     | 36 -------------------
>  package/boost/boost.hash                      |  6 ++--
>  package/boost/boost.mk                        |  2 +-
>  3 files changed, 4 insertions(+), 40 deletions(-)
>  delete mode 100644 package/boost/0004-add-riscv-endian-detection.patch
> 
> diff --git a/package/boost/0004-add-riscv-endian-detection.patch b/package/boost/0004-add-riscv-endian-detection.patch
> deleted file mode 100644
> index 879838df3a..0000000000
> --- a/package/boost/0004-add-riscv-endian-detection.patch
> +++ /dev/null
> @@ -1,36 +0,0 @@
> -Add RISC-V endian detection
> -
> -boost/predef/other/endian.h has two ways of detecting the endianess:
> -
> - (1) It includes <endian.h> if BOOST_LIB_C_GNU is defined, and then
> -     use __BYTE_ORDER to decide the endianness.
> -
> - (2) Otherwise, if (1) was not possible for some reason, it uses
> -     architecture defines to decide the endianness.
> -
> -(1) works perfectly fine with glibc toolchains, because
> -BOOST_LIB_C_GNU is defined, but it doesn't work with musl. Due to
> -this, <endian.h> is not included, __BYTE_ORDER is not defined, and
> -method (1) does not work, causing build failures on musl toolchains
> -that don't have explicit handling by architecture name (method 2).
> -
> -So this commit fixes RISC-V musl build by adding support for the
> -__riscv architecture define, to determine that the endianness is
> -little endian.
> -
> -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> -
> -Index: b/boost/predef/other/endian.h
> -===================================================================
> ---- a/boost/predef/other/endian.h
> -+++ b/boost/predef/other/endian.h
> -@@ -127,7 +127,8 @@
> -         defined(__AARCH64EL__) || \
> -         defined(_MIPSEL) || \
> -         defined(__MIPSEL) || \
> --        defined(__MIPSEL__)
> -+        defined(__MIPSEL__) || \
> -+        defined(__riscv)
> - #       undef BOOST_ENDIAN_LITTLE_BYTE
> - #       define BOOST_ENDIAN_LITTLE_BYTE BOOST_VERSION_NUMBER_AVAILABLE
> - #   endif
> diff --git a/package/boost/boost.hash b/package/boost/boost.hash
> index 0348f40461..c94699aa67 100644
> --- a/package/boost/boost.hash
> +++ b/package/boost/boost.hash
> @@ -1,5 +1,5 @@
> -# From http://www.boost.org/users/history/version_1_72_0.html
> -sha256 59c9b274bc451cf91a9ba1dd2c7fdcaf5d60b1b3aa83f2c9fa143417cc660722  boost_1_72_0.tar.bz2
> +# From https://www.boost.org/users/history/version_1_73_0.html
> +sha256  4eb3b8d442b426dc35346235c8733b5ae35ba431690e38c6a8263dce9fcbb402  boost_1_73_0.tar.bz2
>  
>  # Locally computed
> -sha256 c9bff75738922193e67fa726fa225535870d2aa1059f91452c411736284ad566  LICENSE_1_0.txt
> +sha256  c9bff75738922193e67fa726fa225535870d2aa1059f91452c411736284ad566  LICENSE_1_0.txt
> diff --git a/package/boost/boost.mk b/package/boost/boost.mk
> index 2daf7f5a96..ef638fc9df 100644
> --- a/package/boost/boost.mk
> +++ b/package/boost/boost.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -BOOST_VERSION = 1.72.0
> +BOOST_VERSION = 1.73.0
>  BOOST_SOURCE = boost_$(subst .,_,$(BOOST_VERSION)).tar.bz2
>  BOOST_SITE = https://dl.bintray.com/boostorg/release/$(BOOST_VERSION)/source
>  BOOST_INSTALL_STAGING = YES
> -- 
> 2.26.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

      reply	other threads:[~2020-06-14 16:21 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-13 15:35 [Buildroot] [PATCH 1/1] package/boost: bump version to 1.73.0 Bernd Kuhls
2020-06-14 16:21 ` Yann E. MORIN [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200614162108.GA2346@scaer \
    --to=yann.morin.1998@free.fr \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.