[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/71: gnu: julia-mbedtls-jll: Move to (gnu packages julia-jll).
From: |
guix-commits |
Subject: |
05/71: gnu: julia-mbedtls-jll: Move to (gnu packages julia-jll). |
Date: |
Sun, 30 May 2021 05:57:30 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit e2496a814f8ac4b62b91e05fc9899b9bb85b3ac4
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun May 30 10:29:27 2021 +0300
gnu: julia-mbedtls-jll: Move to (gnu packages julia-jll).
* gnu/packages/julia-xyz.scm (julia-mbedtls-jll): Move to ...
* gnu/packages/julia-jll.scm: ... here.
---
gnu/packages/julia-jll.scm | 41 +++++++++++++++++++++++++++++++++++++++++
gnu/packages/julia-xyz.scm | 43 +------------------------------------------
2 files changed, 42 insertions(+), 42 deletions(-)
diff --git a/gnu/packages/julia-jll.scm b/gnu/packages/julia-jll.scm
index 0357ead..7721686 100644
--- a/gnu/packages/julia-jll.scm
+++ b/gnu/packages/julia-jll.scm
@@ -28,6 +28,7 @@
#:use-module (gnu packages gcc)
#:use-module (gnu packages image)
#:use-module (gnu packages julia)
+ #:use-module (gnu packages tls)
#:use-module (gnu packages web))
;;; TODO: Remove this autogenerated source package
@@ -193,3 +194,43 @@ used in autogenerated packages via
@code{BinaryBuilder.jl}.")
(synopsis "Libjpeg-turbo library wrappers")
(description "This package provides a wrapper for the libjpeg-turbo
library.")
(license license:expat)))
+
+(define-public julia-mbedtls-jll
+ (package
+ (name "julia-mbedtls-jll")
+ ;; version 2.25.0+0 is not compatible with current mbedtls 2.23.0,
+ ;; upgrade this when mbedtls is updated in guix
+ (version "2.24.0+1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaBinaryWrappers/MbedTLS_jll.jl")
+ (commit (string-append "MbedTLS-v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0kk9dlxdh7yms21npgrdfmjbj8q8ng6kdhrzw3jr2d7rp696kp99"))))
+ (build-system julia-build-system)
+ (arguments
+ '(#:tests? #f ; No runtests.jl
+ #: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(\"MbedTLS\", \""
+ (assoc-ref inputs "mbedtls-apache") "\")\n"))))
+ ;; There's a Julia file for each platform, override them all
+ (find-files "src/wrappers/" "\\.jl$"))
+ #t)))))
+ (inputs `(("mbedtls-apache" ,mbedtls-apache)))
+ (propagated-inputs `(("julia-jllwrappers" ,julia-jllwrappers)))
+ (home-page "https://github.com/JuliaBinaryWrappers/MbedTLS_jll.jl")
+ (synopsis "Apache's mbed TLS binary wrappers")
+ (description "This Julia module provides @code{mbed TLS} libraries and
+wrappers.")
+ (license license:expat)))
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 2a49cf5..397e5e5 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -27,8 +27,7 @@
#:use-module (gnu packages image)
#:use-module (gnu packages imagemagick)
#:use-module (gnu packages julia-jll)
- #:use-module (gnu packages maths)
- #:use-module (gnu packages tls))
+ #:use-module (gnu packages maths))
(define-public julia-abstractffts
(package
@@ -1147,46 +1146,6 @@ that let you do deep transformations of code.")
TLS} and cryptography C library for Julia.")
(license license:expat)))
-(define-public julia-mbedtls-jll
- (package
- (name "julia-mbedtls-jll")
- ;; version 2.25.0+0 is not compatible with current mbedtls 2.23.0,
- ;; upgrade this when mbedtls is updated in guix
- (version "2.24.0+1")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/JuliaBinaryWrappers/MbedTLS_jll.jl")
- (commit (string-append "MbedTLS-v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0kk9dlxdh7yms21npgrdfmjbj8q8ng6kdhrzw3jr2d7rp696kp99"))))
- (build-system julia-build-system)
- (arguments
- '(#:tests? #f ; No runtests.jl
- #: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(\"MbedTLS\", \""
- (assoc-ref inputs "mbedtls-apache") "\")\n"))))
- ;; There's a Julia file for each platform, override them all
- (find-files "src/wrappers/" "\\.jl$"))
- #t)))))
- (inputs `(("mbedtls-apache" ,mbedtls-apache)))
- (propagated-inputs `(("julia-jllwrappers" ,julia-jllwrappers)))
- (home-page "https://github.com/JuliaBinaryWrappers/MbedTLS_jll.jl")
- (synopsis "Apache's mbed TLS binary wrappers")
- (description "This Julia module provides @code{mbed TLS} libraries and
-wrappers.")
- (license license:expat)))
-
(define-public julia-msgpack
(package
(name "julia-msgpack")
- 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 <=
- 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, 2021/05/30
- 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