1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
From: =?utf-8?q?Jeremy_B=C3=ADcha?= <jeremy.bicha@canonical.com>
Date: Thu, 25 Jan 2024 20:54:24 -0500
Subject: Don't build obsolete libraries
Gbp-Dch: obsolete.patch
---
Rakefile | 4 ----
extconf.rb | 6 ++++++
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/Rakefile b/Rakefile
index f405631..73a2a98 100644
--- a/Rakefile
+++ b/Rakefile
@@ -47,10 +47,6 @@ default_packages = [
"adwaita",
"atk",
"cairo-gobject",
- "clutter",
- "clutter-gdk",
- "clutter-gstreamer",
- "clutter-gtk",
"gdk3",
"gdk4",
"gdk_pixbuf2",
diff --git a/extconf.rb b/extconf.rb
index 0ccf625..7a6c178 100644
--- a/extconf.rb
+++ b/extconf.rb
@@ -26,6 +26,12 @@ prior_libs = [
]
unsupported_libraries = [
+ "clutter",
+ "clutter-gdk",
+ "clutter-gstreamer",
+ "clutter-gtk",
+ "vte",
+ "vte3",
]
#
|