From owner-svn-ports-head@freebsd.org Thu Feb 9 16:37:03 2017 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 6F08ECD8E0E; Thu, 9 Feb 2017 16:37:03 +0000 (UTC) (envelope-from jbeich@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 21E7217A0; Thu, 9 Feb 2017 16:37:03 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v19Gb2sL049711; Thu, 9 Feb 2017 16:37:02 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v19Gb2Wo049709; Thu, 9 Feb 2017 16:37:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201702091637.v19Gb2Wo049709@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 9 Feb 2017 16:37:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433742 - in head/devel/git-cinnabar: . 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.23 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: Thu, 09 Feb 2017 16:37:03 -0000 Author: jbeich Date: Thu Feb 9 16:37:01 2017 New Revision: 433742 URL: https://svnweb.freebsd.org/changeset/ports/433742 Log: devel/git-cinnabar: unbreak after r433740 / 70558fc7a7b0 ../cinnabar-fast-import.c:86:7: error: use of undeclared identifier 'pack_compression_seen'; did you mean 'pack_compression_level'? if (!pack_compression_seen && core_compression_seen) ^~~~~~~~~~~~~~~~~~~~~ pack_compression_level ./cache.h:705:12: note: 'pack_compression_level' declared here extern int pack_compression_level; ^ ../cinnabar-fast-import.c:86:32: error: use of undeclared identifier 'core_compression_seen'; did you mean 'core_compression_level'? if (!pack_compression_seen && core_compression_seen) ^~~~~~~~~~~~~~~~~~~~~ core_compression_level ./cache.h:704:12: note: 'core_compression_level' declared here extern int core_compression_level; ^ Ping to: @glandium (upstream) Added: head/devel/git-cinnabar/files/ head/devel/git-cinnabar/files/patch-cinnabar-fast-import.c (contents, props changed) Modified: head/devel/git-cinnabar/Makefile (contents, props changed) Modified: head/devel/git-cinnabar/Makefile ============================================================================== --- head/devel/git-cinnabar/Makefile Thu Feb 9 16:34:05 2017 (r433741) +++ head/devel/git-cinnabar/Makefile Thu Feb 9 16:37:01 2017 (r433742) @@ -2,6 +2,7 @@ PORTNAME= git-cinnabar DISTVERSION= 0.4.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= jbeich@FreeBSD.org Added: head/devel/git-cinnabar/files/patch-cinnabar-fast-import.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git-cinnabar/files/patch-cinnabar-fast-import.c Thu Feb 9 16:37:01 2017 (r433742) @@ -0,0 +1,14 @@ +Chase https://github.com/git/git/commit/8de7eeb54b6a + +--- cinnabar-fast-import.c.orig 2017-01-18 08:05:01 UTC ++++ cinnabar-fast-import.c +@@ -83,9 +83,6 @@ static void init() + git_pack_config(); + ignore_case = 0; + +- if (!pack_compression_seen && core_compression_seen) +- pack_compression_level = core_compression_level; +- + alloc_objects(object_entry_alloc); + strbuf_init(&command_buf, 0); + atom_table = xcalloc(atom_table_sz, sizeof(struct atom_str*));