all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#29544] FVWM: Update to 2.6.7
@ 2017-12-03  1:07 ng0
  2017-12-03  1:14 ` ng0
  0 siblings, 1 reply; 3+ messages in thread
From: ng0 @ 2017-12-03  1:07 UTC (permalink / raw)
  To: 29544


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

Not tested: Actually starting FVWM 2.6.7.
-- 
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://c.n0.is/ng0_pubkeys/tree/keys
  WWW: https://n0.is

[-- Attachment #1.2: 0001-gnu-fvwm-Update-to-2.6.7.patch --]
[-- Type: text/plain, Size: 2402 bytes --]

From 36609f2892ae6261fc4c6b327e6821cd9e64e8a5 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Wed, 6 Sep 2017 14:20:58 +0000
Subject: [PATCH] gnu: fvwm: Update to 2.6.7.

* gnu/packages/fvwm.scm (fvwm): Update to 2.6.7.
(inputs): Add 'libice', 'libsm', 'libx11', 'libxau', 'libxcb', 'libxdmcp', 'libxfixes',
'libxrandr' and 'libxrender'.
---
 gnu/packages/fvwm.scm | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/fvwm.scm b/gnu/packages/fvwm.scm
index 933820e5f..b8c827349 100644
--- a/gnu/packages/fvwm.scm
+++ b/gnu/packages/fvwm.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
 ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2017 ng0 <ng0@infotropique.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -34,16 +35,15 @@
 (define-public fvwm
   (package
     (name "fvwm")
-    (version "2.6.6")
+    (version "2.6.7")
     (source (origin
               (method url-fetch)
               (uri (string-append
                     "https://github.com/fvwmorg/fvwm/releases/download/"
-                    "version-" (string-join (string-split version #\.) "_")
-                    "/" name "-" version ".tar.gz"))
+                    version "/" name "-" version ".tar.gz"))
               (sha256
                (base32
-                "0b6w0vk6cpqaz0ws3vl4by0mycv33r42a0m806j2h8avy9ghipn5"))))
+                "0wzghjgy65pkn31rgl14fngizw7nbkzbxsfa670xmrndpmd4sr81"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("perl" ,perl)
@@ -51,13 +51,22 @@
        ("xsltproc" ,libxslt)))
     (inputs
      `(("fribidi" ,fribidi)
+       ("libice" ,libice)
        ("libpng" ,libpng)
        ("librsvg" ,librsvg)
+       ("libsm" ,libsm)
+       ("libx11" ,libx11)
+       ("libxau" ,libxau)
+       ("libxcb" ,libxcb)
        ("libxcursor" ,libxcursor)
+       ("libxdmcp" ,libxdmcp)
        ("libxext" ,libxext)
        ("libxft" ,libxft)
+       ("libxfixes" ,libxfixes)
        ("libxinerama" ,libxinerama)
        ("libxpm" ,libxpm)
+       ("libxrandr" ,libxrandr)
+       ("libxrender" ,libxrender)
        ("libxt" ,libxt)
        ("readline" ,readline)))
     (synopsis "Virtual window manager for X11")
-- 
2.15.0


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

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

* [bug#29544] FVWM: Update to 2.6.7
  2017-12-03  1:07 [bug#29544] FVWM: Update to 2.6.7 ng0
@ 2017-12-03  1:14 ` ng0
  2017-12-09  8:08   ` 宋文武
  0 siblings, 1 reply; 3+ messages in thread
From: ng0 @ 2017-12-03  1:14 UTC (permalink / raw)
  To: 29544

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

ng0 transcribed 3.8K bytes:
> Not tested: Actually starting FVWM 2.6.7.

Actually this had two lines.. why the first disappeared,
I have no idea. So there you go again: Tested: Building it.

> -- 
> GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
> GnuPG: https://c.n0.is/ng0_pubkeys/tree/keys
>   WWW: https://n0.is

> From 36609f2892ae6261fc4c6b327e6821cd9e64e8a5 Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@infotropique.org>
> Date: Wed, 6 Sep 2017 14:20:58 +0000
> Subject: [PATCH] gnu: fvwm: Update to 2.6.7.
> 
> * gnu/packages/fvwm.scm (fvwm): Update to 2.6.7.
> (inputs): Add 'libice', 'libsm', 'libx11', 'libxau', 'libxcb', 'libxdmcp', 'libxfixes',
> 'libxrandr' and 'libxrender'.
> ---
>  gnu/packages/fvwm.scm | 17 +++++++++++++----
>  1 file changed, 13 insertions(+), 4 deletions(-)
> 
> diff --git a/gnu/packages/fvwm.scm b/gnu/packages/fvwm.scm
> index 933820e5f..b8c827349 100644
> --- a/gnu/packages/fvwm.scm
> +++ b/gnu/packages/fvwm.scm
> @@ -1,6 +1,7 @@
>  ;;; GNU Guix --- Functional package management for GNU
>  ;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
>  ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
> +;;; Copyright © 2017 ng0 <ng0@infotropique.org>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -34,16 +35,15 @@
>  (define-public fvwm
>    (package
>      (name "fvwm")
> -    (version "2.6.6")
> +    (version "2.6.7")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append
>                      "https://github.com/fvwmorg/fvwm/releases/download/"
> -                    "version-" (string-join (string-split version #\.) "_")
> -                    "/" name "-" version ".tar.gz"))
> +                    version "/" name "-" version ".tar.gz"))
>                (sha256
>                 (base32
> -                "0b6w0vk6cpqaz0ws3vl4by0mycv33r42a0m806j2h8avy9ghipn5"))))
> +                "0wzghjgy65pkn31rgl14fngizw7nbkzbxsfa670xmrndpmd4sr81"))))
>      (build-system gnu-build-system)
>      (native-inputs
>       `(("perl" ,perl)
> @@ -51,13 +51,22 @@
>         ("xsltproc" ,libxslt)))
>      (inputs
>       `(("fribidi" ,fribidi)
> +       ("libice" ,libice)
>         ("libpng" ,libpng)
>         ("librsvg" ,librsvg)
> +       ("libsm" ,libsm)
> +       ("libx11" ,libx11)
> +       ("libxau" ,libxau)
> +       ("libxcb" ,libxcb)
>         ("libxcursor" ,libxcursor)
> +       ("libxdmcp" ,libxdmcp)
>         ("libxext" ,libxext)
>         ("libxft" ,libxft)
> +       ("libxfixes" ,libxfixes)
>         ("libxinerama" ,libxinerama)
>         ("libxpm" ,libxpm)
> +       ("libxrandr" ,libxrandr)
> +       ("libxrender" ,libxrender)
>         ("libxt" ,libxt)
>         ("readline" ,readline)))
>      (synopsis "Virtual window manager for X11")
> -- 
> 2.15.0
> 




-- 
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://c.n0.is/ng0_pubkeys/tree/keys
  WWW: https://n0.is

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

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

* [bug#29544] FVWM: Update to 2.6.7
  2017-12-03  1:14 ` ng0
@ 2017-12-09  8:08   ` 宋文武
  0 siblings, 0 replies; 3+ messages in thread
From: 宋文武 @ 2017-12-09  8:08 UTC (permalink / raw)
  To: ng0; +Cc: 29544

ng0 <ng0@n0.is> writes:

>> From 36609f2892ae6261fc4c6b327e6821cd9e64e8a5 Mon Sep 17 00:00:00 2001
>> From: ng0 <ng0@infotropique.org>
>> Date: Wed, 6 Sep 2017 14:20:58 +0000
>> Subject: [PATCH] gnu: fvwm: Update to 2.6.7.
>>
>> * gnu/packages/fvwm.scm (fvwm): Update to 2.6.7.
>> (inputs): Add 'libice', 'libsm', 'libx11', 'libxau', 'libxcb', 'libxdmcp', 'libxfixes',
>> 'libxrandr' and 'libxrender'.

Pushed without the inputs addition...

I built fvwm twice with those inputs additions and without, then
according to the output of 'guix size', they don't have any difference.
Likely those are propagated by other inputs already, so I leave the
inputs unchanged.

Thanks!

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

end of thread, other threads:[~2017-12-09  8:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-03  1:07 [bug#29544] FVWM: Update to 2.6.7 ng0
2017-12-03  1:14 ` ng0
2017-12-09  8:08   ` 宋文武

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.