From owner-svn-ports-head@freebsd.org Sun Mar 20 18:12:24 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 53A43AD6111; Sun, 20 Mar 2016 18:12:24 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD60AB5C; Sun, 20 Mar 2016 18:12:23 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2KICMix014288; Sun, 20 Mar 2016 18:12:22 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2KICMYk014286; Sun, 20 Mar 2016 18:12:22 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201603201812.u2KICMYk014286@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Sun, 20 Mar 2016 18:12:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411470 - in head/devel/gitg: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2016 18:12:25 -0000 Author: rm Date: Sun Mar 20 18:12:22 2016 New Revision: 411470 URL: https://svnweb.freebsd.org/changeset/ports/411470 Log: devel/gitg: fix build - add missing dependency upon security/libsecret - add upstream patch to fix build with libgit2 0.24.x Added: head/devel/gitg/files/patch-libgitg_gitg-remote.vala (contents, props changed) Modified: head/devel/gitg/Makefile Modified: head/devel/gitg/Makefile ============================================================================== --- head/devel/gitg/Makefile Sun Mar 20 17:41:59 2016 (r411469) +++ head/devel/gitg/Makefile Sun Mar 20 18:12:22 2016 (r411470) @@ -16,7 +16,8 @@ LIB_DEPENDS= libsoup-2.4.so:${PORTSDIR}/ libgee-0.8.so:${PORTSDIR}/devel/libgee \ libgit2-glib-1.0.so:${PORTSDIR}/devel/libgit2-glib \ libpeas-1.0.so:${PORTSDIR}/devel/libpeas \ - libgtkspell3-3.so:${PORTSDIR}/textproc/gtkspell3 + libgtkspell3-3.so:${PORTSDIR}/textproc/gtkspell3 \ + libsecret-1.so:${PORTSDIR}/security/libsecret BUILD_DEPENDS= gsettings-desktop-schemas>=0:${PORTSDIR}/devel/gsettings-desktop-schemas \ valac:${PORTSDIR}/lang/vala RUN_DEPENDS= gsettings-desktop-schemas>=0:${PORTSDIR}/devel/gsettings-desktop-schemas Added: head/devel/gitg/files/patch-libgitg_gitg-remote.vala ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gitg/files/patch-libgitg_gitg-remote.vala Sun Mar 20 18:12:22 2016 (r411470) @@ -0,0 +1,14 @@ +Upstream fix for building against libgit2 0.24. +Should be removed after updating to gitg 3.20.0 + +--- libgitg/gitg-remote.vala.orig 2015-12-15 14:12:13 UTC ++++ libgitg/gitg-remote.vala +@@ -247,7 +247,7 @@ public class Remote : Ggit.Remote + try + { + yield Async.thread(() => { +- base.connect(direction, new Callbacks(this, callbacks, null)); ++ base.connect(direction, new Callbacks(this, callbacks, null), null); + }); + } + catch (Error e)