[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/71: gnu: julia-zstd-jll: Move to (gnu packages julia-jll).
From: |
guix-commits |
Subject: |
08/71: gnu: julia-zstd-jll: Move to (gnu packages julia-jll). |
Date: |
Sun, 30 May 2021 05:57:31 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 4a1d456a99948b75be078146b44b6e89880b9bc4
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun May 30 10:36:55 2021 +0300
gnu: julia-zstd-jll: Move to (gnu packages julia-jll).
* gnu/packages/julia-xyz.scm (julia-zstd-jll): Move to ...
* gnu/packages/julia-jll.scm: ... here.
---
gnu/packages/julia-jll.scm | 38 ++++++++++++++++++++++++++++++++++++++
gnu/packages/julia-xyz.scm | 40 ----------------------------------------
2 files changed, 38 insertions(+), 40 deletions(-)
diff --git a/gnu/packages/julia-jll.scm b/gnu/packages/julia-jll.scm
index 9d6d692..15a1808 100644
--- a/gnu/packages/julia-jll.scm
+++ b/gnu/packages/julia-jll.scm
@@ -318,3 +318,41 @@ build tree Yggdrasil.")
(synopsis "Zlib library wrappers")
(description "This package provides a wrapper for Zlib.")
(license license:expat)))
+
+(define-public julia-zstd-jll
+ (package
+ (name "julia-zstd-jll")
+ (version "1.5.0+0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaBinaryWrappers/Zstd_jll.jl")
+ (commit (string-append "Zstd-v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "15g5wsvga4p9bjmx97xqwqdnfzfbwfl6c4a9iaphcncwgcrnw6y6"))))
+ (build-system julia-build-system)
+ (arguments
+ '(#:tests? #f ; no runtests
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'override-binary-path
+ (lambda* (#:key inputs #:allow-other-keys)
+ (map
+ (lambda (wrapper)
+ (substitute* wrapper
+ (("generate_wrapper_header.*")
+ (string-append
+ "generate_wrapper_header(\"Zstd\", \""
+ (assoc-ref inputs "zstd:lib") "\")\n"))))
+ ;; There's a Julia file for each platform, override them all
+ (find-files "src/wrappers/" "\\.jl$")))))))
+ (inputs
+ `(("zstd:lib" ,zstd "lib")))
+ (propagated-inputs
+ `(("julia-jllwrappers" ,julia-jllwrappers)))
+ (home-page "https://github.com/JuliaBinaryWrappers/Zstd_jll.jl")
+ (synopsis "Zstd library wrappers")
+ (description "This package provides a wrapper for the zstd library.")
+ (license license:expat)))
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 3eabf7a..3b73b43 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -23,7 +23,6 @@
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system julia)
- #:use-module (gnu packages compression)
#:use-module (gnu packages image)
#:use-module (gnu packages imagemagick)
#:use-module (gnu packages julia-jll))
@@ -1772,45 +1771,6 @@ useful in order to support @code{VersionNumber}
comparisons applied to
archives in Julia.")
(license license:expat)))
-(define-public julia-zstd-jll
- (package
- (name "julia-zstd-jll")
- (version "1.5.0+0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/JuliaBinaryWrappers/Zstd_jll.jl")
- (commit (string-append "Zstd-v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "15g5wsvga4p9bjmx97xqwqdnfzfbwfl6c4a9iaphcncwgcrnw6y6"))))
- (build-system julia-build-system)
- (arguments
- '(#:tests? #f ; no runtests
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'override-binary-path
- (lambda* (#:key inputs #:allow-other-keys)
- (map
- (lambda (wrapper)
- (substitute* wrapper
- (("generate_wrapper_header.*")
- (string-append
- "generate_wrapper_header(\"Zstd\", \""
- (assoc-ref inputs "zstd:lib") "\")\n"))))
- ;; There's a Julia file for each platform, override them all
- (find-files "src/wrappers/" "\\.jl$")))))))
- (inputs
- `(("zstd:lib" ,zstd "lib")))
- (propagated-inputs
- `(("julia-jllwrappers" ,julia-jllwrappers)))
- (home-page "https://github.com/JuliaBinaryWrappers/Zstd_jll.jl")
- (synopsis "Zstd library wrappers")
- (description "This package provides a wrapper for the zstd library.")
- (license license:expat)))
-
(define-public julia-zygoterules
(package
(name "julia-zygoterules")
- branch master updated (c00b176 -> 9d6bf9a), guix-commits, 2021/05/30
- 01/71: gnu: julia-jllwrappers: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 02/71: gnu: julia-compilersupportlibraries-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 03/71: gnu: julia-gumbo-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 04/71: gnu: julia-jpegturbo-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 05/71: gnu: julia-mbedtls-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 06/71: gnu: julia-openspecfun-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 07/71: gnu: julia-zlib-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 09/71: gnu: julia-libpng-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 12/71: gnu: Add julia-x264-jll., guix-commits, 2021/05/30
- 08/71: gnu: julia-zstd-jll: Move to (gnu packages julia-jll).,
guix-commits <=
- 11/71: gnu: julia-imagemagick-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 14/71: gnu: Add julia-fribidi-jll., guix-commits, 2021/05/30
- 17/71: gnu: Add julia-lame-jll., guix-commits, 2021/05/30
- 19/71: gnu: Add julia-libvorbis-jll., guix-commits, 2021/05/30
- 10/71: gnu: julia-libtiff-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 13/71: gnu: Add julia-bzip2-jll., guix-commits, 2021/05/30
- 15/71: gnu: Add julia-freetype2-jll., guix-commits, 2021/05/30
- 16/71: gnu: Add julia-libfdk-aac-jll., guix-commits, 2021/05/30
- 18/71: gnu: Add julia-ogg-jll., guix-commits, 2021/05/30
- 20/71: gnu: Add julia-x265-jll., guix-commits, 2021/05/30