commit: 6ba09a115d3664eceb82bf0c949dc43f2b750e86 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org> AuthorDate: Mon Jun 1 09:21:03 2020 +0000 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org> CommitDate: Mon Jun 1 09:21:03 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ba09a11
dev-util/gnome-builder: fix compat with libgit2:0/1.0 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org> .../gnome-builder/files/libgit2-1.0-compat.patch | 26 ++++++++++++++++++++++ .../gnome-builder/gnome-builder-3.34.1-r1.ebuild | 1 + 2 files changed, 27 insertions(+) diff --git a/dev-util/gnome-builder/files/libgit2-1.0-compat.patch b/dev-util/gnome-builder/files/libgit2-1.0-compat.patch new file mode 100644 index 00000000000..3e857eaac93 --- /dev/null +++ b/dev-util/gnome-builder/files/libgit2-1.0-compat.patch @@ -0,0 +1,26 @@ +From 582bf0281358437cc35d96d363f0af81a1b21068 Mon Sep 17 00:00:00 2001 +From: Igor Raits <i.gnatenko.br...@gmail.com> +Date: Tue, 3 Mar 2020 13:17:31 +0100 +Subject: [PATCH] plugins/git: Fix compatibility with libgit2 0.99.x + +Signed-off-by: Igor Raits <i.gnatenko.br...@gmail.com> +--- + src/plugins/git/daemon/ipc-git-repository-impl.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/plugins/git/daemon/ipc-git-repository-impl.c b/src/plugins/git/daemon/ipc-git-repository-impl.c +index abcca5476..f2631945d 100644 +--- a/src/plugins/git/daemon/ipc-git-repository-impl.c ++++ b/src/plugins/git/daemon/ipc-git-repository-impl.c +@@ -34,7 +34,7 @@ + #include "ipc-git-types.h" + #include "ipc-git-util.h" + +-#if LIBGIT2_SOVERSION >= 28 ++#if LIBGIT2_VER_MAJOR > 0 || (LIBGIT2_VER_MAJOR == 0 && LIBGIT2_VER_MINOR >= 28) + G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC (git_buf, git_buf_dispose) + #else + G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC (git_buf, git_buf_free) +-- +2.26.2 + diff --git a/dev-util/gnome-builder/gnome-builder-3.34.1-r1.ebuild b/dev-util/gnome-builder/gnome-builder-3.34.1-r1.ebuild index a46b8a4cacf..a7817290a9e 100644 --- a/dev-util/gnome-builder/gnome-builder-3.34.1-r1.ebuild +++ b/dev-util/gnome-builder/gnome-builder-3.34.1-r1.ebuild @@ -116,6 +116,7 @@ that are currently available with packages include: PATCHES=( "${WORKDIR}/patches" # gnome-builder-3-34 branch 2020-01-22 (commit bf485934b37) + cherry-picked meson link_whole fixes "${FILESDIR}"/${PV}-optional-vala.patch + "${FILESDIR}"/libgit2-1.0-compat.patch ) llvm_check_deps() {