Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Mar 2026 14:22:21 +0000
From:      Don Lewis <truckman@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Cc:        Olivier Duchateau <duchateau.olivier@gmail.com>
Subject:   git: 1bec0b7745b7 - main - devel/foundry: new port
Message-ID:  <69c9359d.266ac.38b85568@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by truckman:

URL: https://cgit.FreeBSD.org/ports/commit/?id=1bec0b7745b78e10ebb7983c02221f1dd6963959

commit 1bec0b7745b78e10ebb7983c02221f1dd6963959
Author:     Olivier Duchateau <duchateau.olivier@gmail.com>
AuthorDate: 2026-03-29 10:50:09 +0000
Commit:     Don Lewis <truckman@FreeBSD.org>
CommitDate: 2026-03-29 14:20:15 +0000

    devel/foundry: new port
    
    Foundry provides a platform for developer tools in GNOME
    
    Foundry is a command line tool for creating applications, libraries,
    and tools from the command line. It has robust integration with SDKs,
    documentation, language servers, and more.
    
    Add USE_LDCONFIG=yes to please portlint. (truckman)
    
    PR:             294102
---
 devel/Makefile                                     |   1 +
 devel/foundry/Makefile                             |  52 +++++
 devel/foundry/distinfo                             |   3 +
 .../patch-libfoundry-gtk_foundry-gtk.gresource.xml |  22 ++
 .../foundry/files/patch-libfoundry_foundry-init.c  |  20 ++
 devel/foundry/files/patch-libfoundry_meson.build   |  18 ++
 .../patch-libfoundry_platform_foundry-os-info.c    |  11 +
 devel/foundry/files/patch-meson.build              |  11 +
 .../patch-plugins_cmake_plugin-cmake-build-addin.c |  11 +
 ...s_host-sdk_plugin-host-documentation-provider.c |  15 ++
 devel/foundry/pkg-descr                            |   3 +
 devel/foundry/pkg-plist                            | 246 +++++++++++++++++++++
 12 files changed, 413 insertions(+)

diff --git a/devel/Makefile b/devel/Makefile
index 774b5d707726..d3b108ca8728 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -731,6 +731,7 @@
     SUBDIR += fortytwo-encore
     SUBDIR += fossil
     SUBDIR += fossology-nomos-standalone
+    SUBDIR += foundry
     SUBDIR += fp16
     SUBDIR += fpp
     SUBDIR += freebsd-gcc12
diff --git a/devel/foundry/Makefile b/devel/foundry/Makefile
new file mode 100644
index 000000000000..d2459e11e1e4
--- /dev/null
+++ b/devel/foundry/Makefile
@@ -0,0 +1,52 @@
+PORTNAME=	foundry
+PORTVERSION=	1.0.1
+CATEGORIES=	devel gnome
+MASTER_SITES=	GNOME
+DIST_SUBDIR=	gnome
+
+MAINTAINER=	gnome@FreeBSD.org
+COMMENT=	Framework to develop applications from command line
+WWW=		https://gitlab.gnome.org/GNOME/foundry
+
+LICENSE=	LGPL21+
+
+LIB_DEPENDS=	libgom-1.0.so:databases/gom \
+		libdex-1.so:devel/libdex \
+		libjson-glib-1.0.so:devel/json-glib \
+		libpeas-2.so:devel/libpeas \
+		libtemplate_glib-1.0.so:devel/template-glib \
+		libgit2.so:devel/libgit2 \
+		libssh2.so:security/libssh2 \
+		libcmark.so:textproc/cmark \
+		libspelling-1.so:x11-toolkits/libspelling \
+		libeditorconfig.so:editors/editorconfig-core-c
+
+USES=		compiler:c11 gettext-tools gnome meson pkgconfig tar:xz
+USE_GNOME=	glib20 gtk40 gtksourceview5 introspection:build \
+		libxml2 vte3
+GLIB_SCHEMAS=	app.devsuite.foundry.ctags.gschema.xml \
+		app.devsuite.foundry.gschema.xml \
+		app.devsuite.foundry.lsp.gschema.xml \
+		app.devsuite.foundry.network.gschema.xml \
+		app.devsuite.foundry.project.gschema.xml \
+		app.devsuite.foundry.run.gschema.xml \
+		app.devsuite.foundry.terminal.gschema.xml \
+		app.devsuite.foundry.text.gschema.xml
+USE_LDCONFIG=	yes
+
+MESON_ARGS=	-Dgnome_sdk_version=47.10 \
+		-Dfeature-flatpak=false \
+		-Dfeature-llm=false \
+		-Dwebkit=false \
+		-Dplugin-qemu=false \
+		-Dplugin-dub=false \
+		-Dplugin-gradle=false
+
+PORTSCOUT=	limit:^1\.0\.
+
+post-patch:
+	${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
+		${WRKSRC}/plugins/cmake/plugin-cmake-build-addin.c \
+		${WRKSRC}/plugins/fallbacks/host-sdk/plugin-host-documentation-provider.c
+
+.include <bsd.port.mk>
diff --git a/devel/foundry/distinfo b/devel/foundry/distinfo
new file mode 100644
index 000000000000..0be8c48d3ff2
--- /dev/null
+++ b/devel/foundry/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1774709939
+SHA256 (gnome/foundry-1.0.1.tar.xz) = c0768906feb34dd58199e28544739ea217bbd7883e58f24f12322986bc899339
+SIZE (gnome/foundry-1.0.1.tar.xz) = 703672
diff --git a/devel/foundry/files/patch-libfoundry-gtk_foundry-gtk.gresource.xml b/devel/foundry/files/patch-libfoundry-gtk_foundry-gtk.gresource.xml
new file mode 100644
index 000000000000..a4c4c85ef971
--- /dev/null
+++ b/devel/foundry/files/patch-libfoundry-gtk_foundry-gtk.gresource.xml
@@ -0,0 +1,22 @@
+Same build failure as x11/ptyxis
+
+--- libfoundry-gtk/foundry-gtk.gresource.xml.orig	2025-10-28 23:23:12 UTC
++++ libfoundry-gtk/foundry-gtk.gresource.xml
+@@ -35,7 +35,6 @@
+     <file>terminal/palettes/C64.palette</file>
+     <file>terminal/palettes/Cai.palette</file>
+     <file>terminal/palettes/campbell.palette</file>
+-    <file>terminal/palettes/Catppuccin Frappé.palette</file>
+     <file>terminal/palettes/Catppuccin Latte.palette</file>
+     <file>terminal/palettes/Catppuccin Macchiato.palette</file>
+     <file>terminal/palettes/Catppuccin Mocha.palette</file>
+@@ -179,9 +178,6 @@
+     <file>terminal/palettes/Red Sands.palette</file>
+     <file>terminal/palettes/Relaxed.palette</file>
+     <file>terminal/palettes/Rippedcasts.palette</file>
+-    <file>terminal/palettes/Rosé Pine Dawn.palette</file>
+-    <file>terminal/palettes/Rosé Pine Moon.palette</file>
+-    <file>terminal/palettes/Rosé Pine.palette</file>
+     <file>terminal/palettes/Royal.palette</file>
+     <file>terminal/palettes/rxvt.palette</file>
+     <file>terminal/palettes/Sat.palette</file>
diff --git a/devel/foundry/files/patch-libfoundry_foundry-init.c b/devel/foundry/files/patch-libfoundry_foundry-init.c
new file mode 100644
index 000000000000..2505ea7214e8
--- /dev/null
+++ b/devel/foundry/files/patch-libfoundry_foundry-init.c
@@ -0,0 +1,20 @@
+--- libfoundry/foundry-init.c.orig	2025-10-28 23:23:12 UTC
++++ libfoundry/foundry-init.c
+@@ -23,7 +23,6 @@
+ #include <glib/gi18n-lib.h>
+ #include <libdex.h>
+ #include <libpeas.h>
+-#include <sysprof-capture.h>
+ 
+ #include <json-glib/json-glib.h>
+ 
+@@ -188,9 +187,4 @@ foundry_trace_function (const gchar *func,
+                         gint64       begin_time_usec,
+                         gint64       end_time_usec)
+ {
+-  sysprof_collector_mark (begin_time_usec * 1000L,
+-                          (end_time_usec - begin_time_usec) * 1000L,
+-                          "tracing",
+-                          "call",
+-                          func);
+ }
diff --git a/devel/foundry/files/patch-libfoundry_meson.build b/devel/foundry/files/patch-libfoundry_meson.build
new file mode 100644
index 000000000000..914aa407ab49
--- /dev/null
+++ b/devel/foundry/files/patch-libfoundry_meson.build
@@ -0,0 +1,18 @@
+--- libfoundry/meson.build.orig	2025-10-28 23:23:12 UTC
++++ libfoundry/meson.build
+@@ -85,7 +85,6 @@ foundry_deps = [
+   dex_dep,
+   json_dep,
+   peas_dep,
+-  sysprof_dep,
+   libeggbitset_static_dep,
+ ]
+ 
+@@ -174,6 +173,6 @@ configure_file(
+          output: 'libfoundry-config.h',
+   configuration: libfoundry_config_conf,
+         install: true,
+-    install_dir: get_option('libdir') / 'libfoundry-@0@'.format(api_version) / 'include',
++    install_dir: get_option('includedir') / 'libfoundry-@0@'.format(api_version)
+ )
+ 
diff --git a/devel/foundry/files/patch-libfoundry_platform_foundry-os-info.c b/devel/foundry/files/patch-libfoundry_platform_foundry-os-info.c
new file mode 100644
index 000000000000..86b57e863895
--- /dev/null
+++ b/devel/foundry/files/patch-libfoundry_platform_foundry-os-info.c
@@ -0,0 +1,11 @@
+--- libfoundry/platform/foundry-os-info.c.orig	2025-10-28 23:23:12 UTC
++++ libfoundry/platform/foundry-os-info.c
+@@ -60,7 +60,7 @@ foundry_get_os_info (const char *key_name)
+   if (g_once_init_enter (&initialized))
+     {
+       if (g_file_test ("/.flatpak-info", G_FILE_TEST_EXISTS))
+-        g_file_get_contents ("/var/run/host/os-release", &os_release_data, &os_release_len, NULL);
++        g_file_get_contents ("/var/run/os-release", &os_release_data, &os_release_len, NULL);
+       g_once_init_leave (&initialized, TRUE);
+     }
+ 
diff --git a/devel/foundry/files/patch-meson.build b/devel/foundry/files/patch-meson.build
new file mode 100644
index 000000000000..777917703448
--- /dev/null
+++ b/devel/foundry/files/patch-meson.build
@@ -0,0 +1,11 @@
+--- meson.build.orig	2025-10-28 23:23:12 UTC
++++ meson.build
+@@ -59,8 +59,6 @@ peas_dep = dependency('libpeas-2', version: peas_req)
+ peas_req = '>= @0@'.format(peas_req_version)
+ peas_dep = dependency('libpeas-2', version: peas_req)
+ 
+-sysprof_dep = dependency('sysprof-capture-4')
+-
+ project_c_args = []
+ test_c_args = [
+   '-Wcast-align',
diff --git a/devel/foundry/files/patch-plugins_cmake_plugin-cmake-build-addin.c b/devel/foundry/files/patch-plugins_cmake_plugin-cmake-build-addin.c
new file mode 100644
index 000000000000..7270293207b1
--- /dev/null
+++ b/devel/foundry/files/patch-plugins_cmake_plugin-cmake-build-addin.c
@@ -0,0 +1,11 @@
+--- plugins/cmake/plugin-cmake-build-addin.c.orig	2025-10-28 23:23:12 UTC
++++ plugins/cmake/plugin-cmake-build-addin.c
+@@ -103,7 +103,7 @@ plugin_cmake_build_addin_load (FoundryBuildAddin *buil
+ 
+   /* DESTDIR= will get set anyway so use something typical */
+   if (prefix == NULL)
+-    prefix = g_strdup ("/usr");
++    prefix = g_strdup ("%%LOCALBASE%%");
+ 
+   /* TODO: Determine CMakeLists.txt location instead of expecting it
+    * at the root of the project. We might defer this to FoundryConfig
diff --git a/devel/foundry/files/patch-plugins_fallbacks_host-sdk_plugin-host-documentation-provider.c b/devel/foundry/files/patch-plugins_fallbacks_host-sdk_plugin-host-documentation-provider.c
new file mode 100644
index 000000000000..efc7ed93b7f1
--- /dev/null
+++ b/devel/foundry/files/patch-plugins_fallbacks_host-sdk_plugin-host-documentation-provider.c
@@ -0,0 +1,15 @@
+--- plugins/fallbacks/host-sdk/plugin-host-documentation-provider.c.orig	2025-10-28 23:23:12 UTC
++++ plugins/fallbacks/host-sdk/plugin-host-documentation-provider.c
+@@ -52,9 +52,9 @@ plugin_host_documentation_provider_load_fiber (gpointe
+       g_autoptr(FoundryDocumentationRoot) root = NULL;
+       g_autoptr(GListStore) directories = g_list_store_new (G_TYPE_FILE);
+       g_autoptr(GIcon) icon = g_themed_icon_new (os_icon ? os_icon : "go-home-symbolic");
+-      g_autofree char *doc = plugin_host_sdk_build_filename (PLUGIN_HOST_SDK (sdk), "usr", "share", "doc", NULL);
+-      g_autofree char *gtk_doc = plugin_host_sdk_build_filename (PLUGIN_HOST_SDK (sdk), "usr", "share", "gtk-doc", "html", NULL);
+-      g_autofree char *devhelp = plugin_host_sdk_build_filename (PLUGIN_HOST_SDK (sdk), "usr", "share", "devhelp", "books", NULL);
++      g_autofree char *doc = plugin_host_sdk_build_filename (PLUGIN_HOST_SDK (sdk), "%%LOCALBASE%%", "share", "doc", NULL);
++      g_autofree char *gtk_doc = plugin_host_sdk_build_filename (PLUGIN_HOST_SDK (sdk), "%%LOCALBASE%%", "share", "gtk-doc", "html", NULL);
++      g_autofree char *devhelp = plugin_host_sdk_build_filename (PLUGIN_HOST_SDK (sdk), "%%LOCALBASE%%", "share", "devhelp", "books", NULL);
+       g_autofree char *user_doc = g_build_filename (g_get_user_data_dir (), "doc", NULL);
+       g_autofree char *user_gtk_doc = g_build_filename (g_get_user_data_dir (), "gtk-doc", "html", NULL);
+       g_autofree char *user_devhelp = g_build_filename (g_get_user_data_dir (), "devhelp", "books", NULL);
diff --git a/devel/foundry/pkg-descr b/devel/foundry/pkg-descr
new file mode 100644
index 000000000000..0b12f3bef403
--- /dev/null
+++ b/devel/foundry/pkg-descr
@@ -0,0 +1,3 @@
+Foundry is a command line tool for creating applications, libraries,
+and tools from the command line. It has robust integration with SDKs,
+documentation, language servers, and more.
diff --git a/devel/foundry/pkg-plist b/devel/foundry/pkg-plist
new file mode 100644
index 000000000000..d042c7e53dd7
--- /dev/null
+++ b/devel/foundry/pkg-plist
@@ -0,0 +1,246 @@
+bin/foundry
+include/libfoundry-1/foundry-action-muxer.h
+include/libfoundry-1/foundry-auth-provider.h
+include/libfoundry-1/foundry-build-addin.h
+include/libfoundry-1/foundry-build-flags.h
+include/libfoundry-1/foundry-build-manager.h
+include/libfoundry-1/foundry-build-pipeline.h
+include/libfoundry-1/foundry-build-progress.h
+include/libfoundry-1/foundry-build-stage.h
+include/libfoundry-1/foundry-build-target.h
+include/libfoundry-1/foundry-cli-command-tree.h
+include/libfoundry-1/foundry-cli-command.h
+include/libfoundry-1/foundry-code-action.h
+include/libfoundry-1/foundry-code-template.h
+include/libfoundry-1/foundry-command-line.h
+include/libfoundry-1/foundry-command-manager.h
+include/libfoundry-1/foundry-command-provider.h
+include/libfoundry-1/foundry-command-stage.h
+include/libfoundry-1/foundry-command.h
+include/libfoundry-1/foundry-compile-commands.h
+include/libfoundry-1/foundry-completion-proposal.h
+include/libfoundry-1/foundry-completion-provider.h
+include/libfoundry-1/foundry-completion-request.h
+include/libfoundry-1/foundry-config-manager.h
+include/libfoundry-1/foundry-config-provider.h
+include/libfoundry-1/foundry-config.h
+include/libfoundry-1/foundry-context.h
+include/libfoundry-1/foundry-contextual.h
+include/libfoundry-1/foundry-dbus-service.h
+include/libfoundry-1/foundry-debug.h
+include/libfoundry-1/foundry-debugger-breakpoint.h
+include/libfoundry-1/foundry-debugger-countpoint.h
+include/libfoundry-1/foundry-debugger-event.h
+include/libfoundry-1/foundry-debugger-instruction.h
+include/libfoundry-1/foundry-debugger-manager.h
+include/libfoundry-1/foundry-debugger-mapped-region.h
+include/libfoundry-1/foundry-debugger-module.h
+include/libfoundry-1/foundry-debugger-provider.h
+include/libfoundry-1/foundry-debugger-source.h
+include/libfoundry-1/foundry-debugger-stack-frame.h
+include/libfoundry-1/foundry-debugger-stop-event.h
+include/libfoundry-1/foundry-debugger-target-command.h
+include/libfoundry-1/foundry-debugger-target-process.h
+include/libfoundry-1/foundry-debugger-target-remote.h
+include/libfoundry-1/foundry-debugger-target.h
+include/libfoundry-1/foundry-debugger-thread-group.h
+include/libfoundry-1/foundry-debugger-thread.h
+include/libfoundry-1/foundry-debugger-trap-params.h
+include/libfoundry-1/foundry-debugger-trap.h
+include/libfoundry-1/foundry-debugger-variable.h
+include/libfoundry-1/foundry-debugger-watchpoint.h
+include/libfoundry-1/foundry-debugger.h
+include/libfoundry-1/foundry-dependency-manager.h
+include/libfoundry-1/foundry-dependency-provider.h
+include/libfoundry-1/foundry-dependency.h
+include/libfoundry-1/foundry-deploy-strategy.h
+include/libfoundry-1/foundry-device-chassis.h
+include/libfoundry-1/foundry-device-info.h
+include/libfoundry-1/foundry-device-manager.h
+include/libfoundry-1/foundry-device-provider.h
+include/libfoundry-1/foundry-device.h
+include/libfoundry-1/foundry-diagnostic-builder.h
+include/libfoundry-1/foundry-diagnostic-manager.h
+include/libfoundry-1/foundry-diagnostic-provider.h
+include/libfoundry-1/foundry-diagnostic-range.h
+include/libfoundry-1/foundry-diagnostic-tool.h
+include/libfoundry-1/foundry-diagnostic.h
+include/libfoundry-1/foundry-directory-item.h
+include/libfoundry-1/foundry-directory-listing.h
+include/libfoundry-1/foundry-directory-reaper.h
+include/libfoundry-1/foundry-documentation-bundle.h
+include/libfoundry-1/foundry-documentation-manager.h
+include/libfoundry-1/foundry-documentation-matches.h
+include/libfoundry-1/foundry-documentation-provider.h
+include/libfoundry-1/foundry-documentation-query.h
+include/libfoundry-1/foundry-documentation-root.h
+include/libfoundry-1/foundry-documentation.h
+include/libfoundry-1/foundry-extension-set.h
+include/libfoundry-1/foundry-extension.h
+include/libfoundry-1/foundry-file-manager.h
+include/libfoundry-1/foundry-file-monitor-event.h
+include/libfoundry-1/foundry-file-monitor.h
+include/libfoundry-1/foundry-file.h
+include/libfoundry-1/foundry-git-blame.h
+include/libfoundry-1/foundry-git-branch.h
+include/libfoundry-1/foundry-git-cloner.h
+include/libfoundry-1/foundry-git-commit.h
+include/libfoundry-1/foundry-git-delta.h
+include/libfoundry-1/foundry-git-diff.h
+include/libfoundry-1/foundry-git-file.h
+include/libfoundry-1/foundry-git-reference.h
+include/libfoundry-1/foundry-git-remote.h
+include/libfoundry-1/foundry-git-signature.h
+include/libfoundry-1/foundry-git-stats.h
+include/libfoundry-1/foundry-git-status-entry.h
+include/libfoundry-1/foundry-git-status-list.h
+include/libfoundry-1/foundry-git-tag.h
+include/libfoundry-1/foundry-git-tree.h
+include/libfoundry-1/foundry-git-uri.h
+include/libfoundry-1/foundry-git-vcs.h
+include/libfoundry-1/foundry-hover-provider.h
+include/libfoundry-1/foundry-inhibitor.h
+include/libfoundry-1/foundry-init.h
+include/libfoundry-1/foundry-input-choice.h
+include/libfoundry-1/foundry-input-combo.h
+include/libfoundry-1/foundry-input-file.h
+include/libfoundry-1/foundry-input-font.h
+include/libfoundry-1/foundry-input-group.h
+include/libfoundry-1/foundry-input-password.h
+include/libfoundry-1/foundry-input-spin.h
+include/libfoundry-1/foundry-input-switch.h
+include/libfoundry-1/foundry-input-text.h
+include/libfoundry-1/foundry-input-validator-delegate.h
+include/libfoundry-1/foundry-input-validator-regex.h
+include/libfoundry-1/foundry-input-validator.h
+include/libfoundry-1/foundry-input.h
+include/libfoundry-1/foundry-json-node.h
+include/libfoundry-1/foundry-json.h
+include/libfoundry-1/foundry-language-guesser.h
+include/libfoundry-1/foundry-language.h
+include/libfoundry-1/foundry-license.h
+include/libfoundry-1/foundry-linked-pipeline-stage.h
+include/libfoundry-1/foundry-local-device.h
+include/libfoundry-1/foundry-log-manager.h
+include/libfoundry-1/foundry-log-message.h
+include/libfoundry-1/foundry-lsp-client.h
+include/libfoundry-1/foundry-lsp-completion-proposal.h
+include/libfoundry-1/foundry-lsp-completion-provider.h
+include/libfoundry-1/foundry-lsp-manager.h
+include/libfoundry-1/foundry-lsp-provider.h
+include/libfoundry-1/foundry-lsp-server.h
+include/libfoundry-1/foundry-markup.h
+include/libfoundry-1/foundry-model-manager.h
+include/libfoundry-1/foundry-no-vcs.h
+include/libfoundry-1/foundry-on-type-diagnostics.h
+include/libfoundry-1/foundry-on-type-formatter.h
+include/libfoundry-1/foundry-operation-manager.h
+include/libfoundry-1/foundry-operation.h
+include/libfoundry-1/foundry-os-info.h
+include/libfoundry-1/foundry-path-cache.h
+include/libfoundry-1/foundry-path.h
+include/libfoundry-1/foundry-plugin-build-addin.h
+include/libfoundry-1/foundry-plugin-lsp-provider.h
+include/libfoundry-1/foundry-plugin-manager.h
+include/libfoundry-1/foundry-plugin.h
+include/libfoundry-1/foundry-process-launcher.h
+include/libfoundry-1/foundry-project-template.h
+include/libfoundry-1/foundry-pty-diagnostics.h
+include/libfoundry-1/foundry-rename-provider.h
+include/libfoundry-1/foundry-run-manager.h
+include/libfoundry-1/foundry-run-tool.h
+include/libfoundry-1/foundry-sdk-manager.h
+include/libfoundry-1/foundry-sdk-provider.h
+include/libfoundry-1/foundry-sdk.h
+include/libfoundry-1/foundry-search-manager.h
+include/libfoundry-1/foundry-search-path.h
+include/libfoundry-1/foundry-search-provider.h
+include/libfoundry-1/foundry-search-request.h
+include/libfoundry-1/foundry-search-result.h
+include/libfoundry-1/foundry-service.h
+include/libfoundry-1/foundry-settings.h
+include/libfoundry-1/foundry-shell.h
+include/libfoundry-1/foundry-simple-text-buffer.h
+include/libfoundry-1/foundry-subprocess.h
+include/libfoundry-1/foundry-symbol-provider.h
+include/libfoundry-1/foundry-symbol.h
+include/libfoundry-1/foundry-template-manager.h
+include/libfoundry-1/foundry-template-output.h
+include/libfoundry-1/foundry-template-provider.h
+include/libfoundry-1/foundry-template.h
+include/libfoundry-1/foundry-terminal-launcher.h
+include/libfoundry-1/foundry-test-manager.h
+include/libfoundry-1/foundry-test-provider.h
+include/libfoundry-1/foundry-test.h
+include/libfoundry-1/foundry-text-buffer-provider.h
+include/libfoundry-1/foundry-text-buffer.h
+include/libfoundry-1/foundry-text-document-addin.h
+include/libfoundry-1/foundry-text-document.h
+include/libfoundry-1/foundry-text-edit.h
+include/libfoundry-1/foundry-text-formatter.h
+include/libfoundry-1/foundry-text-iter.h
+include/libfoundry-1/foundry-text-manager.h
+include/libfoundry-1/foundry-text-settings-provider.h
+include/libfoundry-1/foundry-text-settings.h
+include/libfoundry-1/foundry-triplet.h
+include/libfoundry-1/foundry-tty-auth-provider.h
+include/libfoundry-1/foundry-tweak-info.h
+include/libfoundry-1/foundry-tweak-manager.h
+include/libfoundry-1/foundry-tweak-provider.h
+include/libfoundry-1/foundry-tweak.h
+include/libfoundry-1/foundry-types.h
+include/libfoundry-1/foundry-unix-fd-map.h
+include/libfoundry-1/foundry-util.h
+include/libfoundry-1/foundry-vcs-blame.h
+include/libfoundry-1/foundry-vcs-branch.h
+include/libfoundry-1/foundry-vcs-commit.h
+include/libfoundry-1/foundry-vcs-delta.h
+include/libfoundry-1/foundry-vcs-diff.h
+include/libfoundry-1/foundry-vcs-file.h
+include/libfoundry-1/foundry-vcs-line-changes.h
+include/libfoundry-1/foundry-vcs-manager.h
+include/libfoundry-1/foundry-vcs-provider.h
+include/libfoundry-1/foundry-vcs-reference.h
+include/libfoundry-1/foundry-vcs-remote.h
+include/libfoundry-1/foundry-vcs-signature.h
+include/libfoundry-1/foundry-vcs-stats.h
+include/libfoundry-1/foundry-vcs-tag.h
+include/libfoundry-1/foundry-vcs-tree.h
+include/libfoundry-1/foundry-vcs.h
+include/libfoundry-1/foundry-version-macros.h
+include/libfoundry-1/foundry-version.h
+include/libfoundry-1/foundry.h
+include/libfoundry-1/libfoundry-config.h
+include/libfoundry-gtk-1/foundry-changes-gutter-renderer.h
+include/libfoundry-gtk-1/foundry-diagnostics-gutter-renderer.h
+include/libfoundry-gtk-1/foundry-gtk-init.h
+include/libfoundry-gtk-1/foundry-gtk.h
+include/libfoundry-gtk-1/foundry-markup-view.h
+include/libfoundry-gtk-1/foundry-menu-manager.h
+include/libfoundry-gtk-1/foundry-menu-proxy.h
+include/libfoundry-gtk-1/foundry-shortcut-bundle.h
+include/libfoundry-gtk-1/foundry-shortcut-info.h
+include/libfoundry-gtk-1/foundry-shortcut-manager.h
+include/libfoundry-gtk-1/foundry-shortcut-observer.h
+include/libfoundry-gtk-1/foundry-shortcut-provider.h
+include/libfoundry-gtk-1/foundry-source-buffer.h
+include/libfoundry-gtk-1/foundry-source-view-addin.h
+include/libfoundry-gtk-1/foundry-source-view.h
+include/libfoundry-gtk-1/foundry-terminal-palette-set.h
+include/libfoundry-gtk-1/foundry-terminal-palette.h
+include/libfoundry-gtk-1/foundry-terminal.h
+lib/girepository-1.0/Foundry-1.typelib
+lib/girepository-1.0/FoundryGtk-1.typelib
+lib/libfoundry-1.so
+lib/libfoundry-1.so.1
+lib/libfoundry-1.so.1.0.0
+lib/libfoundry-gtk-1.so
+lib/libfoundry-gtk-1.so.1
+lib/libfoundry-gtk-1.so.1.0.0
+libdata/pkgconfig/libfoundry-1.pc
+libdata/pkgconfig/libfoundry-gtk-1.pc
+share/bash-completion/completions/foundry
+%%DATADIR%%/language-defaults
+share/gir-1.0/Foundry-1.gir
+share/gir-1.0/FoundryGtk-1.gir
+share/metainfo/app.devsuite.Foundry.metainfo.xml


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69c9359d.266ac.38b85568>