Index: head/devel/libgit2-glib/Makefile =================================================================== --- head/devel/libgit2-glib/Makefile (revision 492653) +++ head/devel/libgit2-glib/Makefile (revision 492654) @@ -1,29 +1,30 @@ # Created by: Gustau Perez # $FreeBSD$ # Also update devel/libgit2, devel/rubygem-rugged, devel/py-pygit2 PORTNAME= libgit2-glib PORTVERSION= 0.27.7 +PORTREVISION= 1 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome MAINTAINER= gnome@FreeBSD.org COMMENT= Glib wrapper library around the libgit2 git access library LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= vapigen:lang/vala LIB_DEPENDS= libgit2.so:devel/libgit2 USES= compiler:c11 gnome localbase \ meson pkgconfig python:3.4+,build tar:xz USE_GNOME= glib20 introspection USE_LDCONFIG= yes INSTALLS_ICONS= yes MESON_ARGS= -Dpython=false BINARY_ALIAS= python3=${PYTHON_VERSION} .include Index: head/devel/libgit2-glib/files/patch-libgit2-glib_ggit-branch-enumerator.c =================================================================== --- head/devel/libgit2-glib/files/patch-libgit2-glib_ggit-branch-enumerator.c (nonexistent) +++ head/devel/libgit2-glib/files/patch-libgit2-glib_ggit-branch-enumerator.c (revision 492654) @@ -0,0 +1,17 @@ +From 75e405a41f5b4954bc253168acbf12b8b4136871 Mon Sep 17 00:00:00 2001 +From: Christian Hergert +Date: Mon, 28 Jan 2019 14:52:38 -0800 +Subject: [PATCH] branch-enumerator: fix missing struct field init + +This needs to be set to NULL so that it is not accidentially freed during +a call to ggit_branch_enumerator_next(). +--- libgit2-glib/ggit-branch-enumerator.c.orig 2018-11-04 01:51:54 UTC ++++ libgit2-glib/ggit-branch-enumerator.c +@@ -19,6 +19,7 @@ _ggit_branch_enumerator_wrap (git_branch_iterator *ite + ret = g_slice_new (GgitBranchEnumerator); + ret->ref_count = 1; + ret->iterator = iter; ++ ret->ref = NULL; + + return ret; + } Property changes on: head/devel/libgit2-glib/files/patch-libgit2-glib_ggit-branch-enumerator.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property