* [bug#52445] [PATCH]: gnu: hcl: Update to 1.0.0
@ 2021-12-12 1:20 Sharlatan Hellseher
2021-12-26 17:53 ` Mathieu Othacehe
2022-01-05 22:43 ` bug#52445: " Ludovic Courtès
0 siblings, 2 replies; 4+ messages in thread
From: Sharlatan Hellseher @ 2021-12-12 1:20 UTC (permalink / raw)
To: 52445
[-- Attachment #1: Type: text/plain, Size: 356 bytes --]
--
… наш разум - превосходная объяснительная машина которая способна
найти смысл почти в чем угодно, истолковать любой феномен, но
совершенно не в состоянии принять мысль о непредсказуемости.
[-- Attachment #2: 0001-gnu-hcl-Update-to-1.0.0.patch --]
[-- Type: text/x-patch, Size: 2832 bytes --]
From 6386303273abb05226785ceae19ba7a70255c2f5 Mon Sep 17 00:00:00 2001
From: Sharlatan Hellseher <sharlatanus@gmail.com>
Date: Sun, 12 Dec 2021 01:02:38 +0000
Subject: [PATCH] gnu: hcl: Update to 1.0.0
* gnu/packages/golang:
Use the latest tag for HCL V1 instead of commit
[native-inputs]: add go-github-com-davecgh-go-spew
---
gnu/packages/golang.scm | 46 ++++++++++++++++++++---------------------
1 file changed, 23 insertions(+), 23 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 699bc49401..d3cbf14ff7 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -2334,31 +2334,31 @@ (define-public go-github-com-tj-docopt
(license license:expat)))
(define-public go-github-com-hashicorp-hcl
- (let ((commit "23c074d0eceb2b8a5bfdbb271ab780cde70f05a8")
- (revision "0"))
- (package
- (name "go-github-com-hashicorp-hcl")
- (version (git-version "0.0.0" revision commit))
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/hashicorp/hcl")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0db4lpqb5m130rmfy3s3gjjf4dxllypmyrzxv6ggqhkmwmc7w4mc"))))
- (build-system go-build-system)
- (arguments
- '(#:tests? #f
- #:import-path "github.com/hashicorp/hcl"))
- (synopsis "Go implementation of HashiCorp Configuration Language")
- (description
- "This package contains the main implementation of the @acronym{HCL,
+ (package
+ (name "go-github-com-hashicorp-hcl")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hashicorp/hcl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/hashicorp/hcl"))
+ (native-inputs
+ `(("go-github-com-davecgh-go-spew" ,go-github-com-davecgh-go-spew)))
+ (synopsis "Go implementation of HashiCorp Configuration Language V1")
+ (description
+ "This package contains the main implementation of the @acronym{HCL,
HashiCorp Configuration Language}. HCL is designed to be a language for
expressing configuration which is easy for both humans and machines to read.")
- (home-page "https://github.com/hashicorp/hcl")
- (license license:mpl2.0))))
+ (home-page "https://github.com/hashicorp/hcl")
+ (license license:mpl2.0)))
(define-public go-github-com-hashicorp-hcl-v2
(package
--
2.34.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#52445] [PATCH]: gnu: hcl: Update to 1.0.0
2021-12-12 1:20 [bug#52445] [PATCH]: gnu: hcl: Update to 1.0.0 Sharlatan Hellseher
@ 2021-12-26 17:53 ` Mathieu Othacehe
2021-12-26 20:32 ` Sharlatan Hellseher
2022-01-05 22:43 ` bug#52445: " Ludovic Courtès
1 sibling, 1 reply; 4+ messages in thread
From: Mathieu Othacehe @ 2021-12-26 17:53 UTC (permalink / raw)
To: Sharlatan Hellseher; +Cc: 52445
Hello,
> + (version "1.0.0")
I cannot find the 1.0.0 release here:
https://github.com/hashicorp/hcl/releases/.
Looks like the 2.11.1 release is out there!
Thanks,
Mathieu
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#52445] [PATCH]: gnu: hcl: Update to 1.0.0
2021-12-26 17:53 ` Mathieu Othacehe
@ 2021-12-26 20:32 ` Sharlatan Hellseher
0 siblings, 0 replies; 4+ messages in thread
From: Sharlatan Hellseher @ 2021-12-26 20:32 UTC (permalink / raw)
To: Mathieu Othacehe; +Cc: 52445
Hi,
It's the latest v1 Release availalbe
Here is a v2 patches https://issues.guix.gnu.org/52444
On Sun, 26 Dec 2021 at 17:53, Mathieu Othacehe <othacehe@gnu.org> wrote:
>
>
> Hello,
>
> > + (version "1.0.0")
>
> I cannot find the 1.0.0 release here:
> https://github.com/hashicorp/hcl/releases/.
>
> Looks like the 2.11.1 release is out there!
>
> Thanks,
>
> Mathieu
--
… наш разум - превосходная объяснительная машина которая способна
найти смысл почти в чем угодно, истолковать любой феномен, но
совершенно не в состоянии принять мысль о непредсказуемости.
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#52445: [PATCH]: gnu: hcl: Update to 1.0.0
2021-12-12 1:20 [bug#52445] [PATCH]: gnu: hcl: Update to 1.0.0 Sharlatan Hellseher
2021-12-26 17:53 ` Mathieu Othacehe
@ 2022-01-05 22:43 ` Ludovic Courtès
1 sibling, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2022-01-05 22:43 UTC (permalink / raw)
To: Sharlatan Hellseher; +Cc: 52445-done
Hi,
Sharlatan Hellseher <sharlatanus@gmail.com> skribis:
> From 6386303273abb05226785ceae19ba7a70255c2f5 Mon Sep 17 00:00:00 2001
> From: Sharlatan Hellseher <sharlatanus@gmail.com>
> Date: Sun, 12 Dec 2021 01:02:38 +0000
> Subject: [PATCH] gnu: hcl: Update to 1.0.0
>
> * gnu/packages/golang:
> Use the latest tag for HCL V1 instead of commit
> [native-inputs]: add go-github-com-davecgh-go-spew
Applied, thanks!
Ludo’.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-01-05 22:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-12 1:20 [bug#52445] [PATCH]: gnu: hcl: Update to 1.0.0 Sharlatan Hellseher
2021-12-26 17:53 ` Mathieu Othacehe
2021-12-26 20:32 ` Sharlatan Hellseher
2022-01-05 22:43 ` bug#52445: " Ludovic Courtès
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).