[PATCHES] libxfce4util: Add vala and gi support.

  • 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:02
(address . guix-patches@gnu.org)
87k1aqdcdr.fsf@lprndn.info
From 6db4063b2497dcb5366bc43fbdb0e65a67b1d803 Mon Sep 17 00:00:00 2001
From: L p R n d n <guix@lprndn.info>
Date: Sun, 18 Aug 2019 21:34:09 +0200
Subject: [PATCH 03/19] gnu: libxfce4util: Add gobject-introspection support.

* gnu/packages/xfce.scm (libxfce4util): Add gobject-introspection to native-inputs.
---
gnu/packages/xfce.scm | 1 +
1 file changed, 1 insertion(+)

Toggle diff (14 lines)
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index df894b5c9a..aa7a99e95b 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -99,6 +99,7 @@
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)
+ ("gobject-introspection" ,gobject-introspection)
("intltool" ,intltool)))
(propagated-inputs `(("glib" ,glib))) ; required by libxfce4util-1.0.pc
(home-page "https://www.xfce.org/")
--
2.22.0
From 2ce598f7e510570314607ad8e6a9d89013a1def4 Mon Sep 17 00:00:00 2001
From: L p R n d n <guix@lprndn.info>
Date: Tue, 20 Aug 2019 12:17:00 +0200
Subject: [PATCH 04/19] gnu: libxfce4util: Build Vala bindings.

* gnu/packages/xfce.scm (libxfce4util)[native-inputs]: Add vala.
---
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 aa7a99e95b..3417fca282 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -100,7 +100,8 @@
(native-inputs
`(("pkg-config" ,pkg-config)
("gobject-introspection" ,gobject-introspection)
- ("intltool" ,intltool)))
+ ("intltool" ,intltool)
+ ("vala" ,vala)))
(propagated-inputs `(("glib" ,glib))) ; required by libxfce4util-1.0.pc
(home-page "https://www.xfce.org/")
(synopsis "Basic utility library for Xfce")
--
2.22.0
L
L
Ludovic Courtès wrote on 4 Sep 2019 23:40
(name . L p R n d n)(address . guix@lprndn.info)(address . 37271-done@debbugs.gnu.org)
87lfv3zqnn.fsf@gnu.org
L p R n d n <guix@lprndn.info> skribis:

Toggle quote (7 lines)
>>From 6db4063b2497dcb5366bc43fbdb0e65a67b1d803 Mon Sep 17 00:00:00 2001
> From: L p R n d n <guix@lprndn.info>
> Date: Sun, 18 Aug 2019 21:34:09 +0200
> Subject: [PATCH 03/19] gnu: libxfce4util: Add gobject-introspection support.
>
> * gnu/packages/xfce.scm (libxfce4util): Add gobject-introspection to native-inputs.

[...]

Toggle quote (7 lines)
>>From 2ce598f7e510570314607ad8e6a9d89013a1def4 Mon Sep 17 00:00:00 2001
> From: L p R n d n <guix@lprndn.info>
> Date: Tue, 20 Aug 2019 12:17:00 +0200
> Subject: [PATCH 04/19] gnu: libxfce4util: Build Vala bindings.
>
> * gnu/packages/xfce.scm (libxfce4util)[native-inputs]: Add vala.

Applied, thanks!
Closed
?