all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#38877] [PATCH] gnu: Add xcur2png.
@ 2020-01-02 20:23 Leo Prikler
  2020-01-04  4:32 ` Brett Gilio
  0 siblings, 1 reply; 5+ messages in thread
From: Leo Prikler @ 2020-01-02 20:23 UTC (permalink / raw)
  To: 38877

* gnu/packages/xorg.scm (xcur2png): New variable.
---
 gnu/packages/xorg.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index fda61aff67..1c21a1cf86 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -6425,3 +6425,29 @@ Thai).")
     ;; by simple permissive licenses.  See the 'COPYRIGHT' file.
     (license (list license:gpl2+
                    license:expat))))
+
+(define-public xcur2png
+  (package
+    (name "xcur2png")
+    (version "0.7.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/eworm-de/xcur2png.git")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0858wn2p14bxpv9lvaz2bz1rk6zk0g8zgxf8iy595m8fqv4q2fya"))))
+    (build-system gnu-build-system)
+    (synopsis "Decode X cursors")
+    (description
+     "xcur2png is a program decomposes an X cursor into a set of PNG images and
+a configuration file reusable by xcursorgen.")
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("libpng" ,libpng)
+       ("libxcursor" ,libxcursor)))
+    (home-page "https://github.com/eworm-de/xcur2png")
+    (license license:gpl3+)))
-- 
2.24.1

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

* [bug#38877] [PATCH] gnu: Add xcur2png.
  2020-01-02 20:23 [bug#38877] [PATCH] gnu: Add xcur2png Leo Prikler
@ 2020-01-04  4:32 ` Brett Gilio
  2020-01-04 16:54   ` [bug#38922] " Leo Prikler
  0 siblings, 1 reply; 5+ messages in thread
From: Brett Gilio @ 2020-01-04  4:32 UTC (permalink / raw)
  To: Leo Prikler; +Cc: 38877

Leo Prikler <leo.prikler@student.tugraz.at> writes:

> * gnu/packages/xorg.scm (xcur2png): New variable.
> ---
>  gnu/packages/xorg.scm | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
>
> diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
> index fda61aff67..1c21a1cf86 100644
> --- a/gnu/packages/xorg.scm
> +++ b/gnu/packages/xorg.scm
> @@ -6425,3 +6425,29 @@ Thai).")
>      ;; by simple permissive licenses.  See the 'COPYRIGHT' file.
>      (license (list license:gpl2+
>                     license:expat))))
> +
> +(define-public xcur2png
> +  (package
> +    (name "xcur2png")
> +    (version "0.7.1")
> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                    (url "https://github.com/eworm-de/xcur2png.git")
> +                    (commit version)))
> +              (file-name (git-file-name name version))
> +              (sha256
> +               (base32
> +                "0858wn2p14bxpv9lvaz2bz1rk6zk0g8zgxf8iy595m8fqv4q2fya"))))
> +    (build-system gnu-build-system)
> +    (synopsis "Decode X cursors")
> +    (description
> +     "xcur2png is a program decomposes an X cursor into a set of PNG images and
> +a configuration file reusable by xcursorgen.")
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)))
> +    (inputs
> +     `(("libpng" ,libpng)
> +       ("libxcursor" ,libxcursor)))
> +    (home-page "https://github.com/eworm-de/xcur2png")
> +    (license license:gpl3+)))

Hey Leo! It doesn't really matter all that much, but I am curious about
the ordering of the package declaration. Why did you put the inputs
/after/ the synopsis and description? It's a fine looking package otherwise!

-- 
Brett M. Gilio
GNU Guix, Contributor | GNU Project, Webmaster
[DFC0 C7F7 9EE6 0CA7 AE55 5E19 6722 43C4 A03F 0EEE]
<brettg@gnu.org> <brettg@posteo.net>

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

* [bug#38922] [PATCH] gnu: Add xcur2png
  2020-01-04  4:32 ` Brett Gilio
@ 2020-01-04 16:54   ` Leo Prikler
  2020-01-05  1:06     ` bug#38877: " Nicolas Goaziou
  2020-01-06  9:25     ` bug#38922: " Brett Gilio
  0 siblings, 2 replies; 5+ messages in thread
From: Leo Prikler @ 2020-01-04 16:54 UTC (permalink / raw)
  To: 38922; +Cc: 38877

* gnu/packages/xorg.scm (xcur2png): New variable.
---
 gnu/packages/xorg.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index fda61aff67..63a84bb2ef 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -6425,3 +6425,29 @@ Thai).")
     ;; by simple permissive licenses.  See the 'COPYRIGHT' file.
     (license (list license:gpl2+
                    license:expat))))
+
+(define-public xcur2png
+  (package
+    (name "xcur2png")
+    (version "0.7.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/eworm-de/xcur2png.git")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0858wn2p14bxpv9lvaz2bz1rk6zk0g8zgxf8iy595m8fqv4q2fya"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("libpng" ,libpng)
+       ("libxcursor" ,libxcursor)))
+    (synopsis "Decode X cursors")
+    (description
+     "xcur2png is a program decomposes an X cursor into a set of PNG images and
+a configuration file reusable by xcursorgen.")
+    (home-page "https://github.com/eworm-de/xcur2png")
+    (license license:gpl3+)))
-- 
2.24.1

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

* bug#38877: [PATCH] gnu: Add xcur2png
  2020-01-04 16:54   ` [bug#38922] " Leo Prikler
@ 2020-01-05  1:06     ` Nicolas Goaziou
  2020-01-06  9:25     ` bug#38922: " Brett Gilio
  1 sibling, 0 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2020-01-05  1:06 UTC (permalink / raw)
  To: Leo Prikler; +Cc: 38877-done

Hello,

Leo Prikler <leo.prikler@student.tugraz.at> writes:

> * gnu/packages/xorg.scm (xcur2png): New variable.

Applied. I also added a copyright line for you.

Thank you!

Regards,

-- 
Nicolas Goaziou

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

* bug#38922: [PATCH] gnu: Add xcur2png
  2020-01-04 16:54   ` [bug#38922] " Leo Prikler
  2020-01-05  1:06     ` bug#38877: " Nicolas Goaziou
@ 2020-01-06  9:25     ` Brett Gilio
  1 sibling, 0 replies; 5+ messages in thread
From: Brett Gilio @ 2020-01-06  9:25 UTC (permalink / raw)
  To: Leo Prikler, mail; +Cc: 38877-done, 38922-done

This package was signed-off by Nicolas Goaziou (cc) with commit
fe0686864dc57ecdda7ecbb318d2618ac46169ae.

Closing, thanks!

-- 
Brett M. Gilio
GNU Guix, Contributor | GNU Project, Webmaster
[DFC0 C7F7 9EE6 0CA7 AE55 5E19 6722 43C4 A03F 0EEE]
<brettg@gnu.org> <brettg@posteo.net>

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

end of thread, other threads:[~2020-01-06  9:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-02 20:23 [bug#38877] [PATCH] gnu: Add xcur2png Leo Prikler
2020-01-04  4:32 ` Brett Gilio
2020-01-04 16:54   ` [bug#38922] " Leo Prikler
2020-01-05  1:06     ` bug#38877: " Nicolas Goaziou
2020-01-06  9:25     ` bug#38922: " Brett Gilio

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.