[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/14: gnu: ocaml-pcre: Update to 7.4.1.
From: |
guix-commits |
Subject: |
06/14: gnu: ocaml-pcre: Update to 7.4.1. |
Date: |
Fri, 26 Apr 2019 17:35:57 -0400 (EDT) |
roptat pushed a commit to branch master
in repository guix.
commit 1e8439de270c768a24ae9d65f329a1eae2ea480f
Author: Julien Lepiller <address@hidden>
Date: Fri Apr 26 23:04:53 2019 +0200
gnu: ocaml-pcre: Update to 7.4.1.
* gnu/packages/ocaml.scm (ocaml-pcre): Update to 7.4.1.
[build-system]: Use dune-build-system.
[source]: Use git-fetch.
---
gnu/packages/ocaml.scm | 30 ++++++++++--------------------
1 file changed, 10 insertions(+), 20 deletions(-)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 8a229d0..6e43381 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2323,31 +2323,21 @@ hierarchy of modules.")
(define-public ocaml-pcre
(package
(name "ocaml-pcre")
- (version "7.2.3")
+ (version "7.4.1")
(source (origin
- (method url-fetch)
- (uri (string-append
"https://github.com/mmottl/pcre-ocaml/archive"
- "/v" version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mmottl/pcre-ocaml")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
(base32
- "0rj6dw79px4sj2kq0iss2nzq3rnsn9wivvc0f44wa1mppr6njfb3"))))
- (build-system ocaml-build-system)
+ "11sd8g668h48790lamz0riw9jgnfkaif5qdfa0akcndwa6aj07jf"))))
+ (build-system dune-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'install 'link-lib
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (stubs (string-append out "/lib/ocaml/site-lib/stubslibs"))
- (lib (string-append out "/lib/ocaml/site-lib/pcre")))
- (mkdir-p stubs)
- (symlink (string-append lib "/dllpcre_stubs.so")
- (string-append stubs "/dllpcre_stubs.so")))
- #t)))))
+ `(#:test-target "."))
(native-inputs
- `(("batteries" ,ocaml-batteries)
- ("ocamlbuild" ,ocamlbuild)
+ `(("ocaml-base" ,ocaml-base)
("pcre:bin" ,pcre "bin")))
(propagated-inputs `(("pcre" ,pcre)))
(home-page "https://mmottl.github.io/pcre-ocaml")
- branch master updated (152cbc3 -> cf338cc), guix-commits, 2019/04/26
- 01/14: gnu: ocaml-qcheck: Update to 0.9., guix-commits, 2019/04/26
- 02/14: gnu: ocaml-mtime: Update to 1.1.0., guix-commits, 2019/04/26
- 03/14: gnu: ocaml-topkg: Update to 1.0.0., guix-commits, 2019/04/26
- 07/14: gnu: ocaml-ppx-derivers: Update to 1.2.1., guix-commits, 2019/04/26
- 04/14: gnu: ocaml-zarith: Update to 1.7., guix-commits, 2019/04/26
- 14/14: gnu: ocaml-migrate-parsetree: Add upstream-name., guix-commits, 2019/04/26
- 05/14: gnu: ocaml-stringext: Update to 1.5.0., guix-commits, 2019/04/26
- 12/14: gnu: ocaml-frontc: Add upstream-name., guix-commits, 2019/04/26
- 06/14: gnu: ocaml-pcre: Update to 7.4.1.,
guix-commits <=
- 08/14: gnu: ocaml-compiler-libs: Add upstream name., guix-commits, 2019/04/26
- 10/14: gnu: ocaml-lwt-log: Add upstream-name., guix-commits, 2019/04/26
- 09/14: gnu: ocaml-ppx-tools-versioned: Add upstream-name., guix-commits, 2019/04/26
- 13/14: gnu: ocaml-ppx-expect: Update to 0.12.0., guix-commits, 2019/04/26
- 11/14: gnu: ocaml-ppx-tools: Add upstream-name., guix-commits, 2019/04/26