all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#69527] [PATCH 1/2] gnu: Add go-github-com-hhrutter-lzw.
  2024-03-03 16:57 [bug#69527] [PATCH 0/2] gnu: Add go-github-com-hhrutter-tiff Troy Figiel
@ 2024-03-03 16:35 ` Troy Figiel
  2024-03-03 16:54 ` [bug#69527] [PATCH v2 2/2] gnu: Add go-github-com-hhrutter-tiff Troy Figiel
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Troy Figiel @ 2024-03-03 16:35 UTC (permalink / raw)
  To: 69527

* gnu/packages/golang-xyz.scm (go-github-com-hhrutter-lzw): New variable.
---
 gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index e68948e495..a0004244a4 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -686,6 +686,29 @@ (define-public go-github-com-gabriel-vasile-mimetype
 @end itemize")
     (license license:expat)))
 
+(define-public go-github-com-hhrutter-lzw
+  (package
+    (name "go-github-com-hhrutter-lzw")
+    (version "1.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/hhrutter/lzw")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1n13qhf8ih08jzm10wprdvjy56ylmy6fhakyqrddm6nszf397wch"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/hhrutter/lzw"))
+    (home-page "https://github.com/hhrutter/lzw")
+    (synopsis "Extended version of @code{compress/lzw}")
+    (description "This package is an enhanced version of @code{compress/lzw}
+in the standard library and supports GIF, TIFF and PDF.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-jinzhu-copier
   (package
     (name "go-github-com-jinzhu-copier")
-- 
2.42.0





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#69527] [PATCH 2/2] gnu: Add go-github-com-hhrutter-tiff.
  2024-03-03 16:57 [bug#69527] [PATCH 0/2] gnu: Add go-github-com-hhrutter-tiff Troy Figiel
  2024-03-03 16:35 ` [bug#69527] [PATCH 1/2] gnu: Add go-github-com-hhrutter-lzw Troy Figiel
  2024-03-03 16:54 ` [bug#69527] [PATCH v2 2/2] gnu: Add go-github-com-hhrutter-tiff Troy Figiel
@ 2024-03-03 16:54 ` Troy Figiel
  2024-03-03 20:54 ` [bug#69527] [PATCH v2 1/2] gnu: Add go-github-com-hhrutter-lzw Troy Figiel
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Troy Figiel @ 2024-03-03 16:54 UTC (permalink / raw)
  To: 69527

* gnu/packages/golang-xyz.scm (go-github-com-hhrutter-tiff): New variable.
---
 gnu/packages/golang-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index a0004244a4..e39eaa541a 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -709,6 +709,36 @@ (define-public go-github-com-hhrutter-lzw
 in the standard library and supports GIF, TIFF and PDF.")
     (license license:bsd-3)))
 
+(define-public go-github-com-hhrutter-tiff
+  (package
+    (name "go-github-com-hhrutter-tiff")
+    (version "1.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/hhrutter/tiff")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "09fzgvxwkd34izbfd26ln8vdbhc4j9gxpar3s7h9h125psrjvg0k"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/hhrutter/tiff"))
+    (propagated-inputs (list go-golang-org-x-image go-github-com-hhrutter-lzw))
+    (home-page "https://github.com/hhrutter/tiff")
+    (synopsis "Extended version of @code{golang.org/x/image/tiff}")
+    (description "This package is an enhanced version of the
+@code{golang.org/x/image/tiff} library featuring:
+
+@itemize
+@item Read support for CCITT Group3/4 compressed images.
+@item Read/write support for LZW compressed images.
+@item Read/write support for the CMYK color model.
+@end itemize")
+    (license license:bsd-3)))
+
 (define-public go-github-com-jinzhu-copier
   (package
     (name "go-github-com-jinzhu-copier")
-- 
2.42.0





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#69527] [PATCH v2 2/2] gnu: Add go-github-com-hhrutter-tiff.
  2024-03-03 16:57 [bug#69527] [PATCH 0/2] gnu: Add go-github-com-hhrutter-tiff Troy Figiel
  2024-03-03 16:35 ` [bug#69527] [PATCH 1/2] gnu: Add go-github-com-hhrutter-lzw Troy Figiel
@ 2024-03-03 16:54 ` Troy Figiel
  2024-03-03 16:54 ` [bug#69527] [PATCH " Troy Figiel
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Troy Figiel @ 2024-03-03 16:54 UTC (permalink / raw)
  To: 69527

* gnu/packages/golang-xyz.scm (go-github-com-hhrutter-tiff): New variable.
---
 gnu/packages/golang-xyz.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index e68948e495..e8260cffcf 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -15,6 +15,7 @@
 ;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
 ;;; Copyright © 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
 ;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
+;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -686,6 +687,36 @@ (define-public go-github-com-gabriel-vasile-mimetype
 @end itemize")
     (license license:expat)))
 
+(define-public go-github-com-hhrutter-tiff
+  (package
+    (name "go-github-com-hhrutter-tiff")
+    (version "1.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/hhrutter/tiff")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "09fzgvxwkd34izbfd26ln8vdbhc4j9gxpar3s7h9h125psrjvg0k"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/hhrutter/tiff"))
+    (propagated-inputs (list go-golang-org-x-image go-github-com-hhrutter-lzw))
+    (home-page "https://github.com/hhrutter/tiff")
+    (synopsis "Extended version of @code{golang.org/x/image/tiff}")
+    (description "This package is an enhanced version of the
+@code{golang.org/x/image/tiff} library featuring:
+
+@itemize
+@item Read support for CCITT Group3/4 compressed images.
+@item Read/write support for LZW compressed images.
+@item Read/write support for the CMYK color model.
+@end itemize")
+    (license license:bsd-3)))
+
 (define-public go-github-com-jinzhu-copier
   (package
     (name "go-github-com-jinzhu-copier")
-- 
2.42.0





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#69527] [PATCH 0/2] gnu: Add go-github-com-hhrutter-tiff.
@ 2024-03-03 16:57 Troy Figiel
  2024-03-03 16:35 ` [bug#69527] [PATCH 1/2] gnu: Add go-github-com-hhrutter-lzw Troy Figiel
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Troy Figiel @ 2024-03-03 16:57 UTC (permalink / raw)
  To: 69527

This patch series adds go-github-com-hhrutter-tiff and its dependency go-github-com-hhrutter-lzw.

Troy Figiel (2):
  gnu: Add go-github-com-hhrutter-lzw.
  gnu: Add go-github-com-hhrutter-tiff.

 gnu/packages/golang-xyz.scm | 53 +++++++++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)


base-commit: f00f56514d90ebba5d9e08ec786c8118e437097c
-- 
2.42.0





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#69527] [PATCH v2 1/2] gnu: Add go-github-com-hhrutter-lzw.
  2024-03-03 16:57 [bug#69527] [PATCH 0/2] gnu: Add go-github-com-hhrutter-tiff Troy Figiel
                   ` (2 preceding siblings ...)
  2024-03-03 16:54 ` [bug#69527] [PATCH " Troy Figiel
@ 2024-03-03 20:54 ` Troy Figiel
  2024-03-03 20:58 ` [bug#69527] [PATCH v2 0/2] gnu: Add go-github-com-hhrutter-tiff Troy Figiel
  2024-03-06 23:59 ` bug#69527: [PATCH " Sharlatan Hellseher
  5 siblings, 0 replies; 7+ messages in thread
From: Troy Figiel @ 2024-03-03 20:54 UTC (permalink / raw)
  To: 69527

* gnu/packages/golang-compression.scm (go-github-com-hhrutter-lzw): New variable.
---
 gnu/packages/golang-compression.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang-compression.scm b/gnu/packages/golang-compression.scm
index 568fdd12b9..031ff54f8a 100644
--- a/gnu/packages/golang-compression.scm
+++ b/gnu/packages/golang-compression.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2022 Sharlatan Hellseher <sharlatanus@gmail.com>
+;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -84,6 +85,30 @@ (define-public go-github-com-golang-snappy
 compression format.")
     (license license:bsd-3)))
 
+(define-public go-github-com-hhrutter-lzw
+  (package
+    (name "go-github-com-hhrutter-lzw")
+    (version "1.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/hhrutter/lzw")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1n13qhf8ih08jzm10wprdvjy56ylmy6fhakyqrddm6nszf397wch"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/hhrutter/lzw"))
+    (home-page "https://github.com/hhrutter/lzw")
+    (synopsis "Extended version of @code{compress/lzw}")
+    (description
+     "This package provides an enhanced version of the @code{compress/lzw}
+library included in the stdlib, and supports GIF, TIFF and PDF.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-klauspost-compress
   (package
     (name "go-github-com-klauspost-compress")

base-commit: f00f56514d90ebba5d9e08ec786c8118e437097c
-- 
2.42.0





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#69527] [PATCH v2 0/2] gnu: Add go-github-com-hhrutter-tiff.
  2024-03-03 16:57 [bug#69527] [PATCH 0/2] gnu: Add go-github-com-hhrutter-tiff Troy Figiel
                   ` (3 preceding siblings ...)
  2024-03-03 20:54 ` [bug#69527] [PATCH v2 1/2] gnu: Add go-github-com-hhrutter-lzw Troy Figiel
@ 2024-03-03 20:58 ` Troy Figiel
  2024-03-06 23:59 ` bug#69527: [PATCH " Sharlatan Hellseher
  5 siblings, 0 replies; 7+ messages in thread
From: Troy Figiel @ 2024-03-03 20:58 UTC (permalink / raw)
  To: 69527

golang-compression.scm is a better location for
go-github-com-hhrutter-lzw. Copyrights have also been added.

Troy Figiel (2):
  gnu: Add go-github-com-hhrutter-lzw.
  gnu: Add go-github-com-hhrutter-tiff.

 gnu/packages/golang-compression.scm | 26 ++++++++++++++++++++++++
 gnu/packages/golang-xyz.scm         | 31 +++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)


base-commit: f00f56514d90ebba5d9e08ec786c8118e437097c
-- 
2.42.0





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#69527: [PATCH 0/2] gnu: Add go-github-com-hhrutter-tiff.
  2024-03-03 16:57 [bug#69527] [PATCH 0/2] gnu: Add go-github-com-hhrutter-tiff Troy Figiel
                   ` (4 preceding siblings ...)
  2024-03-03 20:58 ` [bug#69527] [PATCH v2 0/2] gnu: Add go-github-com-hhrutter-tiff Troy Figiel
@ 2024-03-06 23:59 ` Sharlatan Hellseher
  5 siblings, 0 replies; 7+ messages in thread
From: Sharlatan Hellseher @ 2024-03-06 23:59 UTC (permalink / raw)
  To: 69527-done

[-- Attachment #1: Type: text/plain, Size: 54 bytes --]


Pushed as 1583fe7e24..da582bcf50 to master.

--
Oleg

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-03-07  0:00 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-03 16:57 [bug#69527] [PATCH 0/2] gnu: Add go-github-com-hhrutter-tiff Troy Figiel
2024-03-03 16:35 ` [bug#69527] [PATCH 1/2] gnu: Add go-github-com-hhrutter-lzw Troy Figiel
2024-03-03 16:54 ` [bug#69527] [PATCH v2 2/2] gnu: Add go-github-com-hhrutter-tiff Troy Figiel
2024-03-03 16:54 ` [bug#69527] [PATCH " Troy Figiel
2024-03-03 20:54 ` [bug#69527] [PATCH v2 1/2] gnu: Add go-github-com-hhrutter-lzw Troy Figiel
2024-03-03 20:58 ` [bug#69527] [PATCH v2 0/2] gnu: Add go-github-com-hhrutter-tiff Troy Figiel
2024-03-06 23:59 ` bug#69527: [PATCH " Sharlatan Hellseher

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.