emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#57032: closed ([PATCH] gnu: packages: Add spng.)


From: GNU bug Tracking System
Subject: bug#57032: closed ([PATCH] gnu: packages: Add spng.)
Date: Fri, 12 Aug 2022 09:14:01 +0000

Your message dated Fri, 12 Aug 2022 11:13:06 +0200
with message-id <87mtc9zuxp.fsf@gnu.org>
and subject line Re: bug#57032: [PATCH] gnu: packages: Add spng.
has caused the debbugs.gnu.org bug report #57032,
regarding [PATCH] gnu: packages: Add spng.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
57032: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57032
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: packages: Add spng. Date: Sun, 7 Aug 2022 12:29:03 +0100
* gnu/packages/image.scm (spng): New variable.
---
 gnu/packages/image.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 1b88c7be83..9c132ced05 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -33,6 +33,7 @@
 ;;; Copyright © 2021 Nicolò Balzarotti <nicolo@nixo.xyz>
 ;;; Copyright © 2021 Alexandr Vityazev <avityazev@posteo.org>
 ;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
+;;; Copyright © 2022 ( <paren@disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2445,3 +2446,28 @@ (define-public phockup
 have creation date information will be placed in a folder called
 @file{unknown}.")
     (license license:expat)))
+
+(define-public spng
+  (package
+   (name "spng")
+   (version "0.7.2")
+   (source (origin
+            (method git-fetch)
+            (uri (git-reference
+                  (url "https://github.com/randy408/libspng";)
+                  (commit (string-append "v" version))))
+            (file-name (git-file-name name version))
+            (sha256
+             (base32
+              "0src9ii9w9afz2vgridn9r38pa6888myk28x2bjw0ynw5xcd62hs"))))
+   (build-system meson-build-system)
+   (inputs (list zlib))
+   (native-inputs (list libpng))
+   (home-page "https://libspng.org";)
+   (synopsis "Simple PNG loading library")
+   (description
+    "@code{libspng} is a simple C library for loading Portable Network
+Graphics (PNGs), intended as an easy-to-use replacement for @code{libpng}.")
+   (license license:bsd-2)
+   ;; Supports SSE on x86-64 and NEON on AArch64.
+   (properties '((tunable? . #t)))))
-- 
2.37.1




--- End Message ---
--- Begin Message --- Subject: Re: bug#57032: [PATCH] gnu: packages: Add spng. Date: Fri, 12 Aug 2022 11:13:06 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux)
> * gnu/packages/image.scm (spng): New variable.

Pushed, thanks!

Mathieu


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]