GNU bug report logs - #38877
[PATCH] gnu: Add xcur2png.

Previous Next

Package: guix-patches;

Reported by: Leo Prikler <leo.prikler <at> student.tugraz.at>

Date: Thu, 2 Jan 2020 20:24:02 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 38877 in the body.
You can then email your comments to 38877 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#38877; Package guix-patches. (Thu, 02 Jan 2020 20:24:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Leo Prikler <leo.prikler <at> student.tugraz.at>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 02 Jan 2020 20:24:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Leo Prikler <leo.prikler <at> student.tugraz.at>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add xcur2png.
Date: Thu,  2 Jan 2020 21:23:36 +0100
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#38877; Package guix-patches. (Sat, 04 Jan 2020 04:33:02 GMT) Full text and rfc822 format available.

Message #8 received at 38877 <at> debbugs.gnu.org (full text, mbox):

From: Brett Gilio <brettg <at> gnu.org>
To: Leo Prikler <leo.prikler <at> student.tugraz.at>
Cc: 38877 <at> debbugs.gnu.org
Subject: Re: [bug#38877] [PATCH] gnu: Add xcur2png.
Date: Fri, 03 Jan 2020 22:32:31 -0600
Leo Prikler <leo.prikler <at> 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 <at> gnu.org> <brettg <at> posteo.net>




Information forwarded to guix-patches <at> gnu.org:
bug#38877; Package guix-patches. (Sat, 04 Jan 2020 16:55:02 GMT) Full text and rfc822 format available.

Message #11 received at 38877 <at> debbugs.gnu.org (full text, mbox):

From: Leo Prikler <leo.prikler <at> student.tugraz.at>
To: guix-patches <at> gnu.org
Cc: 38877 <at> debbugs.gnu.org
Subject: [PATCH] gnu: Add xcur2png
Date: Sat,  4 Jan 2020 17:54:30 +0100
* 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





Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Sun, 05 Jan 2020 01:07:01 GMT) Full text and rfc822 format available.

Notification sent to Leo Prikler <leo.prikler <at> student.tugraz.at>:
bug acknowledged by developer. (Sun, 05 Jan 2020 01:07:01 GMT) Full text and rfc822 format available.

Message #16 received at 38877-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Leo Prikler <leo.prikler <at> student.tugraz.at>
Cc: 38877-done <at> debbugs.gnu.org
Subject: Re: [bug#38877] [PATCH] gnu: Add xcur2png
Date: Sun, 05 Jan 2020 02:06:26 +0100
Hello,

Leo Prikler <leo.prikler <at> 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




Information forwarded to guix-patches <at> gnu.org:
bug#38877; Package guix-patches. (Mon, 06 Jan 2020 09:26:01 GMT) Full text and rfc822 format available.

Message #19 received at 38877-done <at> debbugs.gnu.org (full text, mbox):

From: Brett Gilio <brettg <at> gnu.org>
To: Leo Prikler <leo.prikler <at> student.tugraz.at>, mail <at> nicolasgoaziou.fr
Cc: 38877-done <at> debbugs.gnu.org, 38922-done <at> debbugs.gnu.org
Subject: Re: [bug#38922] [PATCH] gnu: Add xcur2png
Date: Mon, 06 Jan 2020 03:25:08 -0600
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 <at> gnu.org> <brettg <at> posteo.net>




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 03 Feb 2020 12:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 81 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.