* Update awesome-wm to 4.0
@ 2016-12-26 20:53 ng0
2016-12-26 20:53 ` [PATCH] gnu: awesome: Update " ng0
2016-12-26 21:54 ` Update awesome-wm " ng0
0 siblings, 2 replies; 4+ messages in thread
From: ng0 @ 2016-12-26 20:53 UTC (permalink / raw)
To: guix-devel
I have and will not mention the new download location as it is obvious from reading https://awesomewm.org/download/ ... Update builds okay, I will transfer the patch to my testing computer and see if it turns out to work okay.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] gnu: awesome: Update to 4.0.
2016-12-26 20:53 Update awesome-wm to 4.0 ng0
@ 2016-12-26 20:53 ` ng0
2016-12-27 0:14 ` Leo Famulari
2016-12-26 21:54 ` Update awesome-wm " ng0
1 sibling, 1 reply; 4+ messages in thread
From: ng0 @ 2016-12-26 20:53 UTC (permalink / raw)
To: guix-devel
* gnu/packages/wm.scm (awesome): Update to 4.0.
[source]: Adjust to new upstream location.
[inputs]: Add 'xcb-util-xrm' and 'libxkbcommon' to inputs.
* gnu/packages/patches/awesome-reproducible-png.patch: Update it.
---
gnu/packages/patches/awesome-reproducible-png.patch | 4 ++--
gnu/packages/wm.scm | 12 +++++++-----
2 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/patches/awesome-reproducible-png.patch b/gnu/packages/patches/awesome-reproducible-png.patch
index 0fae65bc7..d8e92c70f 100644
--- a/gnu/packages/patches/awesome-reproducible-png.patch
+++ b/gnu/packages/patches/awesome-reproducible-png.patch
@@ -7,8 +7,8 @@ See <https://wiki.debian.org/ReproducibleBuilds/TimestampsInPNG>.
set(ALL_ICONS ${ALL_ICONS} ${output})
add_custom_command(
-- COMMAND ${CONVERT_EXECUTABLE} ${input} ${ARGN} ${output}
-+ COMMAND ${CONVERT_EXECUTABLE} +set date:create +set date:modify -define png:exclude-chunk=time ${input} ${ARGN} ${output}
+- COMMAND ${CONVERT_EXECUTABLE} ${input} -strip ${ARGN} ${output}
++ COMMAND ${CONVERT_EXECUTABLE} +set date:create +set date:modify -define png:exclude-chunk=time ${input} -strip ${ARGN} ${output}
OUTPUT ${output}
DEPENDS ${input}
VERBATIM)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 46a8c3f87..6713560c5 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -9,7 +9,7 @@
;;; Copyright © 2016 Al McElrath <hello@yrns.org>
;;; Copyright © 2016 Carlo Zancanaro <carlo@zancanaro.id.au>
;;; Copyright © 2016 Ludovic Courtès <ludo@gnu.org>
-;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
+;;; Copyright © 2016 ng0 <ng0@libertad.pw>
;;; Copyright © 2016 doncatnip <gnopap@gmail.com>
;;; Copyright © 2016 Ivan Vilata i Balaguer <ivan@selidor.net>
;;;
@@ -497,15 +497,15 @@ experience.")
(define-public awesome
(package
(name "awesome")
- (version "3.5.9")
+ (version "4.0")
(source
(origin (method url-fetch)
(uri (string-append
- "https://awesome.naquadah.org/download/awesome-"
- version ".tar.xz"))
+ "https://github.com/awesomeWM/awesome-releases/raw/"
+ "master/awesome-" version ".tar.xz"))
(sha256
(base32
- "0kynair1ykr74b39a4gcm2y24viial64337cf26nhlc7azjbby67"))
+ "0czkcz67sab63gf5m2p2pgg05yinjx60hfb9rfyzdkkg28q9f02w"))
(modules '((guix build utils)
(srfi srfi-19)))
(snippet
@@ -538,6 +538,7 @@ experience.")
("libxcb" ,libxcb)
("libxcursor" ,libxcursor)
("libxdg-basedir" ,libxdg-basedir)
+ ("libxkbcommon" ,libxkbcommon)
("lua" ,lua)
("lua-lgi",lua-lgi)
("pango" ,pango)
@@ -547,6 +548,7 @@ experience.")
("xcb-util-image" ,xcb-util-image)
("xcb-util-keysyms" ,xcb-util-keysyms)
("xcb-util-renderutil" ,xcb-util-renderutil)
+ ("xcb-util-xrm" ,xcb-util-xrm)
("xcb-util-wm" ,xcb-util-wm)))
(arguments
`(;; Let compression happen in our 'compress-documentation' phase so that
--
2.11.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: Update awesome-wm to 4.0
2016-12-26 20:53 Update awesome-wm to 4.0 ng0
2016-12-26 20:53 ` [PATCH] gnu: awesome: Update " ng0
@ 2016-12-26 21:54 ` ng0
1 sibling, 0 replies; 4+ messages in thread
From: ng0 @ 2016-12-26 21:54 UTC (permalink / raw)
To: guix-devel
ng0 <ng0@libertad.pw> writes:
> I have and will not mention the new download location as it is obvious from reading https://awesomewm.org/download/ ... Update builds okay, I will transfer the patch to my testing computer and see if it turns out to work okay.
>
>
>
Confirmed working on my testing computer.
--
♥Ⓐ ng0
PGP keys and more: https://n0is.noblogs.org/ http://ng0.chaosnet.org
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] gnu: awesome: Update to 4.0.
2016-12-26 20:53 ` [PATCH] gnu: awesome: Update " ng0
@ 2016-12-27 0:14 ` Leo Famulari
0 siblings, 0 replies; 4+ messages in thread
From: Leo Famulari @ 2016-12-27 0:14 UTC (permalink / raw)
To: ng0; +Cc: guix-devel
On Mon, Dec 26, 2016 at 08:53:40PM +0000, ng0 wrote:
> * gnu/packages/wm.scm (awesome): Update to 4.0.
> [source]: Adjust to new upstream location.
> [inputs]: Add 'xcb-util-xrm' and 'libxkbcommon' to inputs.
> * gnu/packages/patches/awesome-reproducible-png.patch: Update it.
Thanks, pushed!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-12-27 0:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-26 20:53 Update awesome-wm to 4.0 ng0
2016-12-26 20:53 ` [PATCH] gnu: awesome: Update " ng0
2016-12-27 0:14 ` Leo Famulari
2016-12-26 21:54 ` Update awesome-wm " ng0
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.