[PATCHES] libxfce4ui: Add gi and customize vendor.

  • Done
  • quality assurance status badge
Details
2 participants
  • L p R n d n
  • Ludovic Courtès
Owner
unassigned
Submitted by
L p R n d n
Severity
normal
L
L
L p R n d n wrote on 2 Sep 2019 16:06
(address . guix-patches@gnu.org)
87blw2dc7h.fsf@lprndn.info
From 2b27a5241957d3cb25a066bebac5c7168e4e8730 Mon Sep 17 00:00:00 2001
From: L p R n d n <guix@lprndn.info>
Date: Sun, 18 Aug 2019 22:35:07 +0200
Subject: [PATCH 08/19] gnu: libxfce4ui: Add gobject-introspection support.

* gnu/packages/xfce.scm (libxfce4ui): Add gobject-introspection to native-inputs.
---
gnu/packages/xfce.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

Toggle diff (16 lines)
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 31a1209167..953d9675d0 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -171,7 +171,8 @@ storage system.")
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)
- ("intltool" ,intltool)))
+ ("intltool" ,intltool)
+ ("gobject-introspection" ,gobject-introspection)))
(propagated-inputs
`(("gtk+-3" ,gtk+) ; required by libxfce4ui-2.pc
;; libxfce4kbd-private-2.pc refers to all these.
--
2.22.0
From 2218da3c69bc58aa9546b62b7e19331cba6e6c46 Mon Sep 17 00:00:00 2001
From: L p R n d n <guix@lprndn.info>
Date: Sun, 18 Aug 2019 22:36:55 +0200
Subject: [PATCH 09/19] gnu: libxfce4ui: Add vendor.

* gnu/packages/xfce.scm (libxfce4ui)[arguments]: Add #:configure-flags.
---
gnu/packages/xfce.scm | 3 +++
1 file changed, 3 insertions(+)

Toggle diff (16 lines)
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 953d9675d0..1a6de2e781 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -169,6 +169,9 @@ storage system.")
(base32
"1npjhznmnckhnylsv3l7p1zvhckhmp9d7vifs8w12kdfmrg0fjf4"))))
(build-system gnu-build-system)
+ (arguments
+ `(#:configure-flags
+ (list "--with-vendor-info=Guix")))
(native-inputs
`(("pkg-config" ,pkg-config)
("intltool" ,intltool)
--
2.22.0
L
L
Ludovic Courtès wrote on 7 Sep 2019 00:28
(name . L p R n d n)(address . guix@lprndn.info)(address . 37274-done@debbugs.gnu.org)
87ftl9awld.fsf@gnu.org
L p R n d n <guix@lprndn.info> skribis:

Toggle quote (7 lines)
>>From 2b27a5241957d3cb25a066bebac5c7168e4e8730 Mon Sep 17 00:00:00 2001
> From: L p R n d n <guix@lprndn.info>
> Date: Sun, 18 Aug 2019 22:35:07 +0200
> Subject: [PATCH 08/19] gnu: libxfce4ui: Add gobject-introspection support.
>
> * gnu/packages/xfce.scm (libxfce4ui): Add gobject-introspection to native-inputs.

[...]

Toggle quote (7 lines)
>>From 2218da3c69bc58aa9546b62b7e19331cba6e6c46 Mon Sep 17 00:00:00 2001
> From: L p R n d n <guix@lprndn.info>
> Date: Sun, 18 Aug 2019 22:36:55 +0200
> Subject: [PATCH 09/19] gnu: libxfce4ui: Add vendor.
>
> * gnu/packages/xfce.scm (libxfce4ui)[arguments]: Add #:configure-flags.

Applied both.

Toggle quote (10 lines)
> --- a/gnu/packages/xfce.scm
> +++ b/gnu/packages/xfce.scm
> @@ -169,6 +169,9 @@ storage system.")
> (base32
> "1npjhznmnckhnylsv3l7p1zvhckhmp9d7vifs8w12kdfmrg0fjf4"))))
> (build-system gnu-build-system)
> + (arguments
> + `(#:configure-flags
> + (list "--with-vendor-info=Guix")))

I changed that to “GNU Guix”. :-)
Closed
?