GNU bug report logs - #60098
[PATCH core-updates] gnu: boost: Update to 1.81.0.

Previous Next

Package: guix-patches;

Reported by: Greg Hogan <code <at> greghogan.com>

Date: Thu, 15 Dec 2022 18:58:02 UTC

Severity: normal

Tags: patch

Done: Greg Hogan <code <at> greghogan.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 60098 in the body.
You can then email your comments to 60098 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#60098; Package guix-patches. (Thu, 15 Dec 2022 18:58:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Greg Hogan <code <at> greghogan.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 15 Dec 2022 18:58:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: guix-patches <at> gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH core-updates] gnu: boost: Update to 1.81.0.
Date: Thu, 15 Dec 2022 18:57:15 +0000
* gnu/packages/boost.scm (boost): Update to 1.81.0.
[source](patches): Remove old upstream patches.
---
 gnu/packages/boost.scm | 30 ++----------------------------
 1 file changed, 2 insertions(+), 28 deletions(-)

diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index d2b676cc73..a83b1cad8f 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -68,41 +68,15 @@ (define (boost-patch name version hash)
 (define-public boost
   (package
     (name "boost")
-    (version "1.80.0")
+    (version "1.81.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://boostorg.jfrog.io/artifactory/main/release/"
                                   version "/source/boost_"
                                   (version-with-underscores version) ".tar.bz2"))
-              (patches
-               (list (boost-patch
-                      ;; Boost.Filesystem directory iterators may fail to
-                      ;; construct for a network share on Windows prior to 10:
-                      ;; https://github.com/boostorg/filesystem/pull/246,
-                      ;; https://github.com/boostorg/filesystem/issues/245
-                      "0001-filesystem-win-fix-dir-it-net-share.patch" version
-                      "067hhylqkzzdbqzc1hkbpaqmvz248lxqrdhb2yi6iq9qabsik3lk")
-                     (boost-patch
-                      ;; In Boost.Filesystem on Windows, weakly_canonical fails
-                      ;; to process paths that start with the "\\?\" prefix:
-                      ;; https://github.com/boostorg/filesystem/issues/247
-                      "0002-filesystem-fix-weakly-canonical-long-paths.patch" version
-                      "00w3albf8527glclx85p5b2ml3vr06xpwwmfyzg005v1cp8avcpi")
-                     (boost-patch
-                      ;; Boost.Unordered containers are not in a valid state
-                      ;; after moving:
-                      ;; https://github.com/boostorg/unordered/issues/139
-                      "0003-unordered-valid-after-move.patch" version
-                      "0dw839w22cawqawfpsx7j7v9y0x2vn66m732iidpxvdxbjn2kzva")
-                     (boost-patch
-                      ;; Fixed a missing include on POSIX systems that don't
-                      ;; support *at APIs:
-                      ;; https://github.com/boostorg/filesystem/issues/250
-                      "0004-filesystem-posix-fix-no-at-apis-missing-include.patch" version
-                      "09k8k3b1306jkjls12wfghj820n828j6aaxzmcr0wpnjhp8fzi1v")))
               (sha256
                (base32
-                "1h00qp4z5k6lfz310xjwsmqs8fwxi6ngas51169cafz4h9fmc68y"))))
+                "1ylrmxmrh9a7xnvxh3llibr8cw91gi5giwmllc2cmk7v03cyxzki"))))
     (build-system gnu-build-system)
     (inputs
      (append
-- 
2.38.1





Reply sent to Greg Hogan <code <at> greghogan.com>:
You have taken responsibility. (Wed, 19 Apr 2023 15:11:01 GMT) Full text and rfc822 format available.

Notification sent to Greg Hogan <code <at> greghogan.com>:
bug acknowledged by developer. (Wed, 19 Apr 2023 15:11:01 GMT) Full text and rfc822 format available.

Message #10 received at 60098-done <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 60098-done <at> debbugs.gnu.org
Subject: Re: [PATCH core-updates] gnu: boost: Update to 1.81.0.
Date: Wed, 19 Apr 2023 11:10:30 -0400
On Thu, Dec 15, 2022 at 1:57 PM Greg Hogan <code <at> greghogan.com> wrote:
>
> * gnu/packages/boost.scm (boost): Update to 1.81.0.
> [source](patches): Remove old upstream patches.
> ---
>  gnu/packages/boost.scm | 30 ++----------------------------
>  1 file changed, 2 insertions(+), 28 deletions(-)
>
> diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
> index d2b676cc73..a83b1cad8f 100644
> --- a/gnu/packages/boost.scm
> +++ b/gnu/packages/boost.scm
> @@ -68,41 +68,15 @@ (define (boost-patch name version hash)
>  (define-public boost
>    (package
>      (name "boost")
> -    (version "1.80.0")
> +    (version "1.81.0")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append "https://boostorg.jfrog.io/artifactory/main/release/"
>                                    version "/source/boost_"
>                                    (version-with-underscores version) ".tar.bz2"))
> -              (patches
> -               (list (boost-patch
> -                      ;; Boost.Filesystem directory iterators may fail to
> -                      ;; construct for a network share on Windows prior to 10:
> -                      ;; https://github.com/boostorg/filesystem/pull/246,
> -                      ;; https://github.com/boostorg/filesystem/issues/245
> -                      "0001-filesystem-win-fix-dir-it-net-share.patch" version
> -                      "067hhylqkzzdbqzc1hkbpaqmvz248lxqrdhb2yi6iq9qabsik3lk")
> -                     (boost-patch
> -                      ;; In Boost.Filesystem on Windows, weakly_canonical fails
> -                      ;; to process paths that start with the "\\?\" prefix:
> -                      ;; https://github.com/boostorg/filesystem/issues/247
> -                      "0002-filesystem-fix-weakly-canonical-long-paths.patch" version
> -                      "00w3albf8527glclx85p5b2ml3vr06xpwwmfyzg005v1cp8avcpi")
> -                     (boost-patch
> -                      ;; Boost.Unordered containers are not in a valid state
> -                      ;; after moving:
> -                      ;; https://github.com/boostorg/unordered/issues/139
> -                      "0003-unordered-valid-after-move.patch" version
> -                      "0dw839w22cawqawfpsx7j7v9y0x2vn66m732iidpxvdxbjn2kzva")
> -                     (boost-patch
> -                      ;; Fixed a missing include on POSIX systems that don't
> -                      ;; support *at APIs:
> -                      ;; https://github.com/boostorg/filesystem/issues/250
> -                      "0004-filesystem-posix-fix-no-at-apis-missing-include.patch" version
> -                      "09k8k3b1306jkjls12wfghj820n828j6aaxzmcr0wpnjhp8fzi1v")))
>                (sha256
>                 (base32
> -                "1h00qp4z5k6lfz310xjwsmqs8fwxi6ngas51169cafz4h9fmc68y"))))
> +                "1ylrmxmrh9a7xnvxh3llibr8cw91gi5giwmllc2cmk7v03cyxzki"))))
>      (build-system gnu-build-system)
>      (inputs
>       (append
> --
> 2.38.1

Closing as Boost 1.82.0 has been released.
  https://www.boost.org/users/history/version_1_82_0.html




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 18 May 2023 11:24:10 GMT) Full text and rfc822 format available.

This bug report was last modified 342 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.