unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#38547] [PATCH] gnu: libwnck@2.30.7: Override build system for old release.
@ 2019-12-09 14:36 Miguel Arruga Vivas
  2019-12-09 16:31 ` [bug#38547] [PATCH v2] " Miguel Arruga Vivas
  0 siblings, 1 reply; 3+ messages in thread
From: Miguel Arruga Vivas @ 2019-12-09 14:36 UTC (permalink / raw)
  To: 38547

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

Hi,

After update of libwnck-3 build system, libwnck doesn't build, because
now it is expecting a meson.build.  This breaks other desktops like
XFCE and LXDE.

Best regards,
Miguel

[-- Attachment #2: 0001-gnu-libwnck-2.30.7-Override-build-system-for-old-rel.patch --]
[-- Type: text/x-patch, Size: 874 bytes --]

From ea54a064072e1e18c89c3e148bb289b1b1e302d6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Miguel=20=C3=81ngel=20Arruga=20Vivas?=
 <rosen644835@gmail.com>
Date: Mon, 9 Dec 2019 15:13:41 +0100
Subject: [PATCH] gnu: libwnck@2.30.7: Override build system for old release.

* gnu/packages/gnome.scm (libwnck-2)[build-system]: Override with
gnu-build-system.
---
 gnu/packages/gnome.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 979093277b..5a1b7da740 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -2343,6 +2343,7 @@ Hints specification (EWMH).")
               (sha256
                (base32
                 "15713yl0f8f3p99jzqqfmbicrdswd3vwpx7r3bkf1bgh6d9lvs4b"))))
+    (build-system gnu-build-system)
     (propagated-inputs
      `(("gtk+" ,gtk+-2)
        ("libxres" ,libxres)
-- 
2.23.0


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

* [bug#38547] [PATCH v2] gnu: libwnck@2.30.7: Override build system for old release.
  2019-12-09 14:36 [bug#38547] [PATCH] gnu: libwnck@2.30.7: Override build system for old release Miguel Arruga Vivas
@ 2019-12-09 16:31 ` Miguel Arruga Vivas
  2019-12-10 14:08   ` bug#38547: " Kei Kebreau
  0 siblings, 1 reply; 3+ messages in thread
From: Miguel Arruga Vivas @ 2019-12-09 16:31 UTC (permalink / raw)
  To: 38547

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

Sorry, last patch didn't work as it tries to install files into glib
folder.  This one keeps the native-inputs before d3b406969a.

Best regards,
Miguel

[-- Attachment #2: 0001-gnu-libwnck-2.30.7-Override-build-system-for-old-rel.patch --]
[-- Type: text/x-patch, Size: 967 bytes --]

From 6f345bf43973a1fabd5dceb29aebf3918eb57837 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Miguel=20=C3=81ngel=20Arruga=20Vivas?=
 <rosen644835@gmail.com>
Date: Mon, 9 Dec 2019 15:13:41 +0100
Subject: [PATCH] gnu: libwnck@2.30.7: Override build system for old release.

* gnu/packages/gnome.scm (libwnck-2)[build-system]: Override with
gnu-build-system.
---
 gnu/packages/gnome.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 979093277b..6a9a42dcc8 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -2343,6 +2343,10 @@ Hints specification (EWMH).")
               (sha256
                (base32
                 "15713yl0f8f3p99jzqqfmbicrdswd3vwpx7r3bkf1bgh6d9lvs4b"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("intltool" ,intltool)))
     (propagated-inputs
      `(("gtk+" ,gtk+-2)
        ("libxres" ,libxres)
-- 
2.23.0


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

* bug#38547: [PATCH v2] gnu: libwnck@2.30.7: Override build system for old release.
  2019-12-09 16:31 ` [bug#38547] [PATCH v2] " Miguel Arruga Vivas
@ 2019-12-10 14:08   ` Kei Kebreau
  0 siblings, 0 replies; 3+ messages in thread
From: Kei Kebreau @ 2019-12-10 14:08 UTC (permalink / raw)
  To: Miguel Arruga Vivas; +Cc: 38547-done

Hi Miguel,

Nice catch!  This patch looks good.  I've pushed it with the following
changes to the commit message to make it a bit more descriptive.

> gnu: libwnck@2.30.7: Override build system for old release.
>
> * gnu/packages/gnome.scm (libwnck-2)[build-system]: Override with
> gnu-build-system.

Edited version:

gnu: libwnck-2: Adjust for changes in inherited package.

This is a followup to d3b406969a0916fed8f7dc7c094de9d523ac12c9.

* gnu/packages/gnome.scm (libwnck-2)[build-system]: Override with
gnu-build-system.
[native-inputs]: Add field to exclude GLIB and GOBJECT-INTROSPECTION.

Thanks,
Kei

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

end of thread, other threads:[~2019-12-10 14:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-09 14:36 [bug#38547] [PATCH] gnu: libwnck@2.30.7: Override build system for old release Miguel Arruga Vivas
2019-12-09 16:31 ` [bug#38547] [PATCH v2] " Miguel Arruga Vivas
2019-12-10 14:08   ` bug#38547: " Kei Kebreau

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).