[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/16: gnu: aws-c-compression: Update to 0.2.14.
From: |
guix-commits |
Subject: |
07/16: gnu: aws-c-compression: Update to 0.2.14. |
Date: |
Tue, 16 Nov 2021 11:00:30 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit cff8a12a0a23f09fe1bc0d55f8d7e35ca6054ba0
Author: Greg Hogan <code@greghogan.com>
AuthorDate: Mon Oct 18 17:36:24 2021 +0000
gnu: aws-c-compression: Update to 0.2.14.
* gnu/packages/c.scm (aws-c-compression): Update to 0.2.14.
[arguments]: Fix CMAKE_PREFIX_PATH.
[source]: Remove patch.
* gnu/packages/patches/aws-c-compression-cmake-prefix.patch:
Delete file.
* gnu/local.mk: Remove it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/local.mk | 1 -
gnu/packages/c.scm | 10 ++++++----
gnu/packages/patches/aws-c-compression-cmake-prefix.patch | 13 -------------
3 files changed, 6 insertions(+), 18 deletions(-)
diff --git a/gnu/local.mk b/gnu/local.mk
index 654d7d6..b836172 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -872,7 +872,6 @@ dist_patch_DATA =
\
%D%/packages/patches/awesome-reproducible-png.patch \
%D%/packages/patches/aws-c-auth-cmake-prefix.patch \
%D%/packages/patches/aws-c-auth-disable-networking-tests.patch\
- %D%/packages/patches/aws-c-compression-cmake-prefix.patch \
%D%/packages/patches/aws-c-event-stream-cmake-prefix.patch \
%D%/packages/patches/aws-c-mqtt-cmake-prefix.patch \
%D%/packages/patches/aws-c-s3-cmake-prefix.patch \
diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
index 2b80303..753b145 100644
--- a/gnu/packages/c.scm
+++ b/gnu/packages/c.scm
@@ -750,7 +750,8 @@ specifications.")
(define-public aws-c-compression
(package
(name "aws-c-compression")
- (version "0.2.13")
+ ; Update only when updating aws-crt-cpp.
+ (version "0.2.14")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -759,12 +760,13 @@ specifications.")
(file-name (git-file-name name version))
(sha256
(base32
- "0zqfxi0fdgapfsfgvsindv63pq7vyl1s376qkpv4jgflyb1v6gp5"))
- (patches (search-patches
"aws-c-compression-cmake-prefix.patch"))))
+ "0fs3zhhzxsb9nfcjpvfbcq79hal7si2ia1c09scab9a8m264f4vd"))))
(build-system cmake-build-system)
(arguments
'(#:configure-flags
- '("-DBUILD_SHARED_LIBS=ON")))
+ (list "-DBUILD_SHARED_LIBS=ON"
+ (string-append "-DCMAKE_PREFIX_PATH="
+ (assoc-ref %build-inputs "aws-c-common")))))
(propagated-inputs
`(("aws-c-common" ,aws-c-common)))
(synopsis "Amazon Web Services compression library")
diff --git a/gnu/packages/patches/aws-c-compression-cmake-prefix.patch
b/gnu/packages/patches/aws-c-compression-cmake-prefix.patch
deleted file mode 100644
index eefae19..0000000
--- a/gnu/packages/patches/aws-c-compression-cmake-prefix.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -5,6 +5,10 @@ if (POLICY CMP0069)
- cmake_policy(SET CMP0069 NEW) # Enable LTO/IPO if available in the
compiler, see AwsCFlags
- endif()
-
-+if (DEFINED ENV{CMAKE_PREFIX_PATH})
-+ set(CMAKE_PREFIX_PATH $ENV{CMAKE_PREFIX_PATH})
-+endif()
-+
- if (DEFINED CMAKE_PREFIX_PATH)
- file(TO_CMAKE_PATH "${CMAKE_PREFIX_PATH}" CMAKE_PREFIX_PATH)
- endif()
- branch master updated (0a9a00b -> 7dce1df), guix-commits, 2021/11/16
- 03/16: gnu: aws-c-common: Update to 0.6.11., guix-commits, 2021/11/16
- 10/16: gnu: aws-c-mqtt: Replace patch., guix-commits, 2021/11/16
- 01/16: gnu: guix: Update to 9bbbac6., guix-commits, 2021/11/16
- 06/16: gnu: aws-c-http: Update to 0.6.7., guix-commits, 2021/11/16
- 08/16: gnu: aws-c-auth: Update to 0.6.4., guix-commits, 2021/11/16
- 02/16: gnu: s2n: Update to 1.1.0., guix-commits, 2021/11/16
- 07/16: gnu: aws-c-compression: Update to 0.2.14.,
guix-commits <=
- 15/16: gnu: aws-sdk-cpp: Enable text-to-speech library., guix-commits, 2021/11/16
- 05/16: gnu: aws-c-cal: Update to 0.5.12., guix-commits, 2021/11/16
- 09/16: gnu: aws-c-s3: Update to 0.1.26., guix-commits, 2021/11/16
- 11/16: gnu: aws-crt-cpp: Update to 0.17.1., guix-commits, 2021/11/16
- 16/16: gnu: Add texlive-xifthen., guix-commits, 2021/11/16
- 14/16: gnu: aws-checksums: Replace patch., guix-commits, 2021/11/16
- 13/16: gnu: aws-c-event-stream: Replace patch., guix-commits, 2021/11/16
- 12/16: gnu: aws-sdk-cpp: Update to 1.9.136., guix-commits, 2021/11/16
- 04/16: gnu: aws-c-io: Update to 0.10.9., guix-commits, 2021/11/16