all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#52965] [PATCH] update xsnow, simplify inputs
@ 2022-01-02 21:15 kiasoc5--- via Guix-patches via
  2022-01-03  3:34 ` bug#52965: " Leo Famulari
  2022-01-04 23:10 ` [bug#52965] kiasoc5--- via Guix-patches via
  0 siblings, 2 replies; 3+ messages in thread
From: kiasoc5--- via Guix-patches via @ 2022-01-02 21:15 UTC (permalink / raw)
  To: 52965

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



[-- Attachment #2: 0001-gnu-xsnow-Update-to-3.4.2.patch --]
[-- Type: text/x-patch, Size: 1669 bytes --]

From cbd6bb2745f33c568ae359f08389b68728866598 Mon Sep 17 00:00:00 2001
From: kiasoc5 <kiasoc5@tutanota.com>
Date: Sun, 2 Jan 2022 16:08:29 -0500
Subject: [PATCH 1/2] gnu: xsnow: Update to 3.4.2.

* gnu/packages/toys.scm (xsnow): Update to 3.4.2.
---
 gnu/packages/toys.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm
index 80928474aa..a7dd2bc50f 100644
--- a/gnu/packages/toys.scm
+++ b/gnu/packages/toys.scm
@@ -228,15 +228,15 @@ (define-public filters
 (define-public xsnow
   (package
     (name "xsnow")
-    (version "2.0.22")
+    (version "3.4.2")
     (source
      (origin
        (method url-fetch)
        (uri (string-append
-             "https://www.ratrabbit.nl/ratrabbit/system/files/xsnow/xsnow-"
+             "https://nav.dl.sourceforge.net/project/xsnow/xsnow-"
              version ".tar.gz"))
        (sha256
-        (base32 "1880643fal6l7bskqbm4zfbr2s719698mkx4pchrxkjpb240sj0z"))))
+        (base32 "17pxc955jgkjan8ax0lw3b3sibw7aikc7p9qbxsp0w7g7jkxf666"))))
     (build-system gnu-build-system)
     (arguments
      '(#:phases
@@ -256,7 +256,7 @@ (define-public xsnow
        ("libxxml2" ,libxml2)))
     (native-inputs
      (list pkg-config))
-    (home-page "https://www.ratrabbit.nl/ratrabbit/content/xsnow/introduction")
+    (home-page "https://www.ratrabbit.nl/ratrabbit/xsnow/index.html")
     (synopsis "Let it snow on the desktop")
     (description "@code{Xsnow} animates snowfall and Santa with reindeer on
 the desktop background.  Additional customizable effects include wind, stars

base-commit: 01ec5efff7cf95cae69493bd4ccfdd21a38770ae
-- 
2.34.1


[-- Attachment #3: 0002-gnu-xsnow-Simplify-inputs.patch --]
[-- Type: text/x-patch, Size: 924 bytes --]

From 39e54183912c29019484fae214a015cb53386fc1 Mon Sep 17 00:00:00 2001
From: kiasoc5 <kiasoc5@tutanota.com>
Date: Sun, 2 Jan 2022 16:09:17 -0500
Subject: [PATCH 2/2] gnu: xsnow: Simplify inputs.

* gnu/packages/toys.scm (xsnow)[inputs]: Remove labels.
---
 gnu/packages/toys.scm | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm
index a7dd2bc50f..a1386d2298 100644
--- a/gnu/packages/toys.scm
+++ b/gnu/packages/toys.scm
@@ -249,11 +249,7 @@ (define-public xsnow
                 (string-append prefix "bin")))
              #t)))))
     (inputs
-     `(("gtk+" ,gtk+)
-       ("libx11" ,libx11)
-       ("libxpm" ,libxpm)
-       ("libxt" ,libxt)
-       ("libxxml2" ,libxml2)))
+     (list gtk+ libx11 libxpm libxt libxml2))
     (native-inputs
      (list pkg-config))
     (home-page "https://www.ratrabbit.nl/ratrabbit/xsnow/index.html")
-- 
2.34.1


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

* bug#52965: [PATCH] update xsnow, simplify inputs
  2022-01-02 21:15 [bug#52965] [PATCH] update xsnow, simplify inputs kiasoc5--- via Guix-patches via
@ 2022-01-03  3:34 ` Leo Famulari
  2022-01-04 23:10 ` [bug#52965] kiasoc5--- via Guix-patches via
  1 sibling, 0 replies; 3+ messages in thread
From: Leo Famulari @ 2022-01-03  3:34 UTC (permalink / raw)
  To: kiasoc5--- via Guix-patches via; +Cc: 52965-done

On Sun, Jan 02, 2022 at 10:15:45PM +0100, kiasoc5--- via Guix-patches via wrote:
> 

> From cbd6bb2745f33c568ae359f08389b68728866598 Mon Sep 17 00:00:00 2001
> From: kiasoc5 <kiasoc5@tutanota.com>
> Date: Sun, 2 Jan 2022 16:08:29 -0500
> Subject: [PATCH 1/2] gnu: xsnow: Update to 3.4.2.
> 
> * gnu/packages/toys.scm (xsnow): Update to 3.4.2.

Thanks!

>         (uri (string-append
> -             "https://www.ratrabbit.nl/ratrabbit/system/files/xsnow/xsnow-"
> +             "https://nav.dl.sourceforge.net/project/xsnow/xsnow-"
>               version ".tar.gz"))

I pushed these patches as cdf050be91b07c03823835df7472b392ec399ecf after
adjusting the source URL to remain on ratrabbit.nl. It seemed more
"correct" to stay with the canonical URL. I hope that's okay.

https://git.savannah.gnu.org/cgit/guix.git/commit/?id=19109f549e70b9ec94dfc3633efebcef5a8df266




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

* [bug#52965]
  2022-01-02 21:15 [bug#52965] [PATCH] update xsnow, simplify inputs kiasoc5--- via Guix-patches via
  2022-01-03  3:34 ` bug#52965: " Leo Famulari
@ 2022-01-04 23:10 ` kiasoc5--- via Guix-patches via
  1 sibling, 0 replies; 3+ messages in thread
From: kiasoc5--- via Guix-patches via @ 2022-01-04 23:10 UTC (permalink / raw)
  To: 52965

That's fine, I put  the sourceforge link at first because all the old versions would be available there but using the home page makes more sense. Thanks!




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

end of thread, other threads:[~2022-01-04 23:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-02 21:15 [bug#52965] [PATCH] update xsnow, simplify inputs kiasoc5--- via Guix-patches via
2022-01-03  3:34 ` bug#52965: " Leo Famulari
2022-01-04 23:10 ` [bug#52965] kiasoc5--- via Guix-patches via

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.