[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
313/401: gnu: go-github-com-hebcal-hebcal-go: Move to golang-xyz.
From: |
guix-commits |
Subject: |
313/401: gnu: go-github-com-hebcal-hebcal-go: Move to golang-xyz. |
Date: |
Thu, 26 Dec 2024 19:31:17 -0500 (EST) |
sharlatan pushed a commit to branch go-team
in repository guix.
commit 12c2c45733f78570504da21986c111359a32531d
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sun Dec 22 16:31:15 2024 +0000
gnu: go-github-com-hebcal-hebcal-go: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-hebcal-hebcal-go): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.
* gnu/packages/calendar.scm: Add golang-xyz.
Change-Id: I8e5c5dce15e12e0ce38004be79d7bfe75ad9d2ab
---
gnu/packages/calendar.scm | 1 +
gnu/packages/golang-xyz.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
gnu/packages/golang.scm | 44 --------------------------------------------
3 files changed, 44 insertions(+), 44 deletions(-)
diff --git a/gnu/packages/calendar.scm b/gnu/packages/calendar.scm
index 6717db867f..e2e828b3d0 100644
--- a/gnu/packages/calendar.scm
+++ b/gnu/packages/calendar.scm
@@ -50,6 +50,7 @@
#:use-module (gnu packages glib)
#:use-module (gnu packages gnome)
#:use-module (gnu packages golang)
+ #:use-module (gnu packages golang-xyz)
#:use-module (gnu packages gtk)
#:use-module (gnu packages icu4c)
#:use-module (gnu packages perl)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index a72ef33264..fc31f8eb0c 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -5046,6 +5046,49 @@ Die) day numbers.")
"Hebcal's hdate package converts between Hebrew and Gregorian dates.")
(license license:gpl2)))
+(define-public go-github-com-hebcal-hebcal-go
+ (package
+ (name "go-github-com-hebcal-hebcal-go")
+ (version "0.9.31")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hebcal/hebcal-go")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1vccmjb4g8g8x733a45g78lz25k2a0avsq4zvlp94varssk8wj1q"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "github.com/hebcal/hebcal-go"
+ ;; Source-only package
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Source-only package
+ (delete 'build))))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (propagated-inputs
+ (list go-github-com-dustin-go-humanize
+ go-github-com-hebcal-gematriya
+ go-github-com-hebcal-greg
+ go-github-com-hebcal-hdate
+ go-github-com-nathan-osman-go-sunrise))
+ (home-page "https://github.com/hebcal/hebcal-go")
+ (synopsis "Go library for the Hebcal perpetual Jewish calendar")
+ (description
+ "This package provides a library for conversion between Hebrew and
+Gregorian dates, and generation of lists of Jewish holidays for a given year.
+Shabbat and holiday candle lighting and havdalah times are approximated based
+on location.
+
+Torah readings, Daf Yomi, and counting of the Omer can also be specified.
+Algorithms are included to calculate yahrzeits, birthdays, and
+anniversaries.")
+ (license license:gpl2+)))
+
(define-public go-github-com-hhrutter-tiff
(package
(name "go-github-com-hhrutter-tiff")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 057a399e29..f7cd32030b 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -2607,50 +2607,6 @@ sunset times from geographical coordinates and a date.")
Hebrew letters.")
(license license:bsd-2))))
-(define-public go-github-com-hebcal-hebcal-go
- (package
- (name "go-github-com-hebcal-hebcal-go")
- (version "0.9.31")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/hebcal/hebcal-go")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1vccmjb4g8g8x733a45g78lz25k2a0avsq4zvlp94varssk8wj1q"))))
- (build-system go-build-system)
- (arguments
- (list #:import-path "github.com/hebcal/hebcal-go"
- ;; Source-only package
- #:tests? #f
- #:phases
- #~(modify-phases %standard-phases
- ;; Source-only package
- (delete 'build))))
- (native-inputs
- (list go-github-com-stretchr-testify))
- (propagated-inputs
- (list go-github-com-dustin-go-humanize
- go-github-com-hebcal-gematriya
- go-github-com-hebcal-greg
- go-github-com-hebcal-hdate
- go-github-com-nathan-osman-go-sunrise))
- (home-page "https://github.com/hebcal/hebcal-go")
- (synopsis "Go library for the Hebcal perpetual Jewish calendar")
- (description
- "This package provides a library for conversion between Hebrew
-and Gregorian dates, and generation of lists of Jewish holidays for
-a given year. Shabbat and holiday candle lighting and havdalah times
-are approximated based on location.
-
-Torah readings, Daf Yomi, and counting of the Omer can also be
-specified. Algorithms are included to calculate yahrzeits, birthdays,
-and anniversaries.")
- (license license:gpl2+)))
-
(define-public go-gopkg.in-tomb.v2
(let ((commit "d5d1b5820637886def9eef33e03a27a9f166942c")
(revision "0"))
- 296/401: gnu: Add go-rsc-io-pdf., (continued)
- 296/401: gnu: Add go-rsc-io-pdf., guix-commits, 2024/12/26
- 295/401: gnu: Add go-github-com-gliderlabs-ssh., guix-commits, 2024/12/26
- 302/401: gnu: go-github-com-hanwen-fuse: Rename variable., guix-commits, 2024/12/26
- 301/401: gnu: go-github-com-hanwen-fuse: Move to golang-xyz., guix-commits, 2024/12/26
- 297/401: gnu: Add go-golang-org-x-arch., guix-commits, 2024/12/26
- 304/401: gnu: go-go-opentelemetry-io-otel-sdk: Fix build., guix-commits, 2024/12/26
- 309/401: gnu: go-pprof: Disable tests, fix build., guix-commits, 2024/12/26
- 306/401: gnu: Add go-go-opentelemetry-io-otel-log., guix-commits, 2024/12/26
- 307/401: gnu: Add go-go-opentelemetry-io-otel-sdk-log., guix-commits, 2024/12/26
- 314/401: gnu: go-github-com-hebcal-hebcal-go: Enable tests., guix-commits, 2024/12/26
- 313/401: gnu: go-github-com-hebcal-hebcal-go: Move to golang-xyz.,
guix-commits <=
- 316/401: gnu: Add go-github-com-pborman-getopt-v2., guix-commits, 2024/12/26
- 317/401: gnu: hebcal: Update to 5.8.7., guix-commits, 2024/12/26
- 333/401: gnu: go-github-com-zeebo-blake3: Delete submodule., guix-commits, 2024/12/26
- 340/401: gnu: go-gopkg-in-errgo-fmt-errors: Enable tests., guix-commits, 2024/12/26
- 330/401: gnu: go-github-com-spf13-viper: Fix build., guix-commits, 2024/12/26
- 337/401: gnu: go-github-com-bits-and-blooms-bloom-v3: Move to golang-xyz., guix-commits, 2024/12/26
- 322/401: gnu: go-github-com-jbenet-go-context: Update to 0.0.0-20150711004518-d14ea06fba99., guix-commits, 2024/12/26
- 332/401: gnu: go-github-com-cretz-bine: Fix tests., guix-commits, 2024/12/26
- 320/401: gnu: go-github-com-gogo-protobuf: Enable tests., guix-commits, 2024/12/26
- 347/401: gnu: go-github.com-nsf-termbox-go: Update to 1.1.1., guix-commits, 2024/12/26