[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#72508] [PATCH v2 2/5] gnu: erlang-yamerl: Update to 0.10.0-0.a24f44
From: |
Igor Goryachev |
Subject: |
[bug#72508] [PATCH v2 2/5] gnu: erlang-yamerl: Update to 0.10.0-0.a24f448. |
Date: |
Wed, 7 Aug 2024 19:32:10 +0300 |
* gnu/packages/erlang.scm (erlang-yamerl): Update to 0.10.0-0.a24f448.
Change-Id: Ib279881ff14e6e46ef639c1bcbc53706fa55aef6
---
gnu/packages/erlang.scm | 41 ++++++++++++++++++++++-------------------
1 file changed, 22 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm
index 60d644ab8d..80ec673a56 100644
--- a/gnu/packages/erlang.scm
+++ b/gnu/packages/erlang.scm
@@ -290,26 +290,29 @@ (define-public erlang-cf
(license license:expat)))
(define-public erlang-yamerl
- (package
- (name "erlang-yamerl")
- (version "0.10.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- ;; There are no tests included on Hex.
- (url "https://github.com/yakaz/yamerl")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0if8abgmispcfk7zhd0a5dndzwzbsmqrbyrm5shk375r2dbbwak6"))))
- (build-system rebar-build-system)
- (synopsis "YAML and JSON parser in pure Erlang")
- (description
- "Erlang application to parse YAML 1.1 and YAML 1.2 documents, as well as
+ (let ((commit "a24f448c0a8084f70b751dc38621047e56fb53cc")
+ (revision "0"))
+ (package
+ (name "erlang-yamerl")
+ (version (git-version "0.10.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ ;; There are no tests included on Hex.
+ (url "https://github.com/yakaz/yamerl")
+ ;; Fetching commit which includes Erlang 27+ related fixes.
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1csq0z4igyybjgmrynz4d49ysv437iyd2xzkhifb5x47lpdpfpkq"))))
+ (build-system rebar-build-system)
+ (synopsis "YAML and JSON parser in pure Erlang")
+ (description
+ "Erlang application to parse YAML 1.1 and YAML 1.2 documents, as well as
JSON documents.")
- (home-page "https://hexdocs.pm/yamerl/")
- (license license:bsd-2)))
+ (home-page "https://hexdocs.pm/yamerl/")
+ (license license:bsd-2))))
(define-public erlang-covertool
(package
--
2.45.2
- [bug#72508] [PATCH 0/5] Erlang update to 27.0.1., Igor Goryachev, 2024/08/07
- [bug#72508] [PATCH 2/5] gnu: erlang-yamerl: Update to 0.10.0.a24f448., Igor Goryachev, 2024/08/07
- [bug#72508] [PATCH 5/5] gnu: erlang: Update to 27.0.1., Igor Goryachev, 2024/08/07
- [bug#72508] [PATCH 4/5] gnu: ejabberd: Include jiffy dependence under Erlang 27., Igor Goryachev, 2024/08/07
- [bug#72508] [PATCH 1/5] gnu: erlang-jsx: Fix tests under Erlang 27+., Igor Goryachev, 2024/08/07
- [bug#72508] [PATCH 3/5] gnu: erlang-jose: Relax build options., Igor Goryachev, 2024/08/07
- [bug#72508] [PATCH v2 1/5] gnu: erlang-jsx: Fix tests under Erlang 27+., Igor Goryachev, 2024/08/07
- [bug#72508] [PATCH 0/5] Erlang update to 27.0.1., Andrew Tropin, 2024/08/08