r51252 - in /packages/unstable/gnome-builder/debian: changelog control.in rules

pochu at users.alioth.debian.org pochu at users.alioth.debian.org
Fri Oct 7 19:26:59 UTC 2016


Author: pochu
Date: Fri Oct  7 19:26:58 2016
New Revision: 51252

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=51252
Log:
Disable clang plugin on armel, LLVM 3.8 is not available there.

Modified:
    packages/unstable/gnome-builder/debian/changelog
    packages/unstable/gnome-builder/debian/control.in
    packages/unstable/gnome-builder/debian/rules

Modified: packages/unstable/gnome-builder/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gnome-builder/debian/changelog?rev=51252&op=diff
==============================================================================
--- packages/unstable/gnome-builder/debian/changelog	[utf-8] (original)
+++ packages/unstable/gnome-builder/debian/changelog	[utf-8] Fri Oct  7 19:26:58 2016
@@ -1,3 +1,9 @@
+gnome-builder (3.20.4-4) unstable; urgency=medium
+
+  * Disable clang plugin on armel, LLVM 3.8 is not available there.
+
+ -- Emilio Pozuelo Monfort <pochu at debian.org>  Fri, 07 Oct 2016 21:26:41 +0200
+
 gnome-builder (3.20.4-3) unstable; urgency=medium
 
   * Build against vala 0.34.

Modified: packages/unstable/gnome-builder/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gnome-builder/debian/control.in?rev=51252&op=diff
==============================================================================
--- packages/unstable/gnome-builder/debian/control.in	[utf-8] (original)
+++ packages/unstable/gnome-builder/debian/control.in	[utf-8] Fri Oct  7 19:26:58 2016
@@ -12,7 +12,7 @@
                gnome-pkg-tools,
                gobject-introspection (>= 1.47.92),
                intltool,
-               libclang-dev,
+               libclang-dev [!armel],
                libdevhelp-dev (>= 3.20.0),
                libgit2-glib-1.0-dev (>= 0.24.0),
                libgjs-dev (>= 1.42.0),
@@ -26,7 +26,7 @@
                libvte-2.91-dev (>= 0.40.2),
                libwebkit2gtk-4.0-dev (>= 2.8.4),
                libxml2-dev (>= 2.9.0),
-               llvm,
+               llvm [!armel],
                python-gi-dev (>= 3.19.3),
                python3-dev,
                valac (>= 0.34),
@@ -50,7 +50,7 @@
          python3-gi,
          valac-0.34-vapi,
          libvala-0.34-dev,
-         clang,
+         clang [!armel],
          ${gir:Depends},
          ${misc:Depends},
          ${python3:Depends},

Modified: packages/unstable/gnome-builder/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gnome-builder/debian/rules?rev=51252&op=diff
==============================================================================
--- packages/unstable/gnome-builder/debian/rules	[utf-8] (original)
+++ packages/unstable/gnome-builder/debian/rules	[utf-8] Fri Oct  7 19:26:58 2016
@@ -18,6 +18,11 @@
 # package maintainers to append LDFLAGS
 #export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
 
+ifeq (armel,$(DEB_HOST_ARCH))
+ENABLE_CLANG = --disable-clang-plugin
+else
+ENABLE_CLANG = --enable-clang-plugin
+endif
 
 %:
 	dh $@  --with autoreconf,gir,gnome,python3
@@ -26,7 +31,6 @@
 	dh_auto_configure -- --disable-static \
 		--enable-autotools-plugin \
 		--enable-build-tools-plugin \
-		--enable-clang-plugin \
 		--enable-command-bar-plugin \
 		--enable-comment-code-plugin \
 		--enable-contributing-plugin \
@@ -56,7 +60,8 @@
 		--enable-todo-plugin \
 		--enable-vala-pack-plugin \
 		--enable-xdg-app-plugin \
-		--enable-xml-pack-plugin
+		--enable-xml-pack-plugin \
+		$(ENABLE_CLANG)
 
 # force debian/tmp installation for now until we ship
 # more then one binary package, then this can be dropped...




More information about the pkg-gnome-commits mailing list