all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#73323] [PATCH 00/15] Update aws-sdk-cpp.
@ 2024-09-17 20:15 Greg Hogan
  2024-09-27 22:18 ` bug#73323: " Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Greg Hogan @ 2024-09-17 20:15 UTC (permalink / raw)
  To: 73323; +Cc: Greg Hogan

This patchset successfully builds with the updated version of gcc from
the core-updates merge (an issue caused by the packages' default use of
-Werror). This update also removes the workaround for a certificate
expiration test error.

Greg Hogan (15):
  gnu: s2n: Update to 1.5.1.
  gnu: aws-lc: Update to 1.34.2.
  gnu: aws-c-common: Update to 0.9.27.
  gnu: aws-checksums: Update to 0.1.18.
  gnu: aws-c-cal: Update to 0.7.4.
  gnu: aws-c-io: Update to 0.14.18.
  gnu: aws-c-event-stream: Update to 0.4.3.
  gnu: aws-c-sdkutils: Update to 0.1.19.
  gnu: aws-c-compression: Update to 0.2.19.
  gnu: aws-c-http: Update to 0.8.8.
  gnu: aws-c-auth: Update to 0.7.26.
  gnu: aws-c-s3: Update to 0.6.4.
  gnu: aws-c-mqtt: Update to 0.10.4.
  gnu: aws-crt-cpp: Update to 0.28.2.
  gnu: aws-sdk-cpp: Update to 1.11.402.

 gnu/packages/c.scm   | 55 ++++++++++++++++++++++----------------------
 gnu/packages/cpp.scm |  8 +++----
 gnu/packages/tls.scm | 31 ++++++-------------------
 3 files changed, 38 insertions(+), 56 deletions(-)


base-commit: 034eb1b0b624ccd14ed846f402ce7670e6e3f317
-- 
2.46.0





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#73323: [PATCH 00/15] Update aws-sdk-cpp.
  2024-09-17 20:15 [bug#73323] [PATCH 00/15] Update aws-sdk-cpp Greg Hogan
@ 2024-09-27 22:18 ` Ludovic Courtès
       [not found]   ` <CA+3U0ZkbCxz=Gi83XnA0mCtSVvJg0B4rgvuwgTBtxYHkmZEBhQ@mail.gmail.com>
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2024-09-27 22:18 UTC (permalink / raw)
  To: Greg Hogan; +Cc: 73323-done

Greg Hogan <code@greghogan.com> skribis:

>   gnu: s2n: Update to 1.5.1.
>   gnu: aws-lc: Update to 1.34.2.
>   gnu: aws-c-common: Update to 0.9.27.
>   gnu: aws-checksums: Update to 0.1.18.
>   gnu: aws-c-cal: Update to 0.7.4.
>   gnu: aws-c-io: Update to 0.14.18.
>   gnu: aws-c-event-stream: Update to 0.4.3.
>   gnu: aws-c-sdkutils: Update to 0.1.19.
>   gnu: aws-c-compression: Update to 0.2.19.
>   gnu: aws-c-http: Update to 0.8.8.
>   gnu: aws-c-auth: Update to 0.7.26.
>   gnu: aws-c-s3: Update to 0.6.4.
>   gnu: aws-c-mqtt: Update to 0.10.4.
>   gnu: aws-crt-cpp: Update to 0.28.2.
>   gnu: aws-sdk-cpp: Update to 1.11.402.

Applied, thanks!

> This update also removes the workaround for a certificate expiration
> test error.

Should we update the offending test suite to run under ‘datefudge’ or
similar, so the expiration issue doesn’t lead to a test failure going
forward?

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#73323] [PATCH 00/15] Update aws-sdk-cpp.
       [not found]   ` <CA+3U0ZkbCxz=Gi83XnA0mCtSVvJg0B4rgvuwgTBtxYHkmZEBhQ@mail.gmail.com>
@ 2024-10-01 15:29     ` Ludovic Courtès
  2024-10-01 15:30     ` Ludovic Courtès
  1 sibling, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2024-10-01 15:29 UTC (permalink / raw)
  To: Greg Hogan; +Cc: 73323

Hi,

Greg Hogan <code@greghogan.com> skribis:

> I tested 10 years in the future and submitted a bug report upstream:
>   https://github.com/aws/aws-lc/issues/1889
>
> It's a strange error, not a simple time bomb. The build fails
> somewhere between six and seven years in the future.
>
> So in the case where this bug is resolved and the current package
> definition successfully builds in the future should we still wrap with
> datefudge or libfaketime? Add a comment to run a future test build
> when updating? I prefer the comment since overridden phases are
> unsightly and simply mask the problem.

Generally speaking we should ensure packages can be built regardless of
the value of the system clock, so people can eventually time-machine and
rebuild packages.  When we’re aware of time-dependent behavior, we
should patch it or use libfaketime/datefudge.

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#73323] [PATCH 00/15] Update aws-sdk-cpp.
       [not found]   ` <CA+3U0ZkbCxz=Gi83XnA0mCtSVvJg0B4rgvuwgTBtxYHkmZEBhQ@mail.gmail.com>
  2024-10-01 15:29     ` [bug#73323] " Ludovic Courtès
@ 2024-10-01 15:30     ` Ludovic Courtès
  1 sibling, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2024-10-01 15:30 UTC (permalink / raw)
  To: Greg Hogan; +Cc: 73323

Hi,

Greg Hogan <code@greghogan.com> skribis:

> I tested 10 years in the future and submitted a bug report upstream:
>   https://github.com/aws/aws-lc/issues/1889
>
> It's a strange error, not a simple time bomb. The build fails
> somewhere between six and seven years in the future.
>
> So in the case where this bug is resolved and the current package
> definition successfully builds in the future should we still wrap with
> datefudge or libfaketime? Add a comment to run a future test build
> when updating? I prefer the comment since overridden phases are
> unsightly and simply mask the problem.

Generally speaking we should ensure packages can be built regardless of
the value of the system clock, so people can eventually time-machine and
rebuild packages.  When we’re aware of time-dependent behavior, we
should patch it or use libfaketime/datefudge.

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-10-01 15:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-17 20:15 [bug#73323] [PATCH 00/15] Update aws-sdk-cpp Greg Hogan
2024-09-27 22:18 ` bug#73323: " Ludovic Courtès
     [not found]   ` <CA+3U0ZkbCxz=Gi83XnA0mCtSVvJg0B4rgvuwgTBtxYHkmZEBhQ@mail.gmail.com>
2024-10-01 15:29     ` [bug#73323] " Ludovic Courtès
2024-10-01 15:30     ` Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

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.