[gnome-builder] flatpak: ignore .Docs for now



commit e872edf04d8162af08096906b2d098e7a4a4f6f9
Author: Christian Hergert <chergert redhat com>
Date:   Thu Mar 14 11:55:00 2019 -0700

    flatpak: ignore .Docs for now
    
    We want this again in the future, but we need to be a bit more
    cafeful about it because we might need to query a remote to
    know if it exists and be lenient about it's failure.

 src/plugins/flatpak/gbp-flatpak-manifest.c | 4 ++++
 1 file changed, 4 insertions(+)
---
diff --git a/src/plugins/flatpak/gbp-flatpak-manifest.c b/src/plugins/flatpak/gbp-flatpak-manifest.c
index c5a8fff6f..faaeae1e6 100644
--- a/src/plugins/flatpak/gbp-flatpak-manifest.c
+++ b/src/plugins/flatpak/gbp-flatpak-manifest.c
@@ -24,6 +24,7 @@
 #include <flatpak/flatpak.h>
 #include <json-glib/json-glib.h>
 
+#include "gbp-flatpak-application-addin.h"
 #include "gbp-flatpak-manifest.h"
 #include "gbp-flatpak-runtime.h"
 #include "gbp-flatpak-util.h"
@@ -1024,8 +1025,11 @@ gbp_flatpak_manifest_get_runtimes (GbpFlatpakManifest *self,
   /* First discover the runtime needed for building */
   g_ptr_array_add (ar, g_strdup_printf ("%s/%s/%s", sdk, for_arch, runtime_version));
 
+#if 0
+  /* XXX: Ignore docs for now, since they aren't reliable */
   /* Now add the documentation SDK so the user can get docs */
   g_ptr_array_add (ar, g_strdup_printf ("%s.Docs/%s/%s", sdk, for_arch, runtime_version));
+#endif
 
   /* Now discover the runtime needed for running */
   g_ptr_array_add (ar, g_strdup_printf ("%s/%s/%s", self->runtime, for_arch, runtime_version));


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]