From owner-svn-ports-all@freebsd.org Tue Jun 5 05:21:50 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 59CBCFD0AB8; Tue, 5 Jun 2018 05:21:50 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C45688049D; Tue, 5 Jun 2018 05:21:49 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8CFAD1817F; Tue, 5 Jun 2018 05:21:49 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w555Lnnc028538; Tue, 5 Jun 2018 05:21:49 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w555Lm4f028533; Tue, 5 Jun 2018 05:21:48 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201806050521.w555Lm4f028533@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Tue, 5 Jun 2018 05:21:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471741 - in head/devel: libgit2 py-pygit2 X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in head/devel: libgit2 py-pygit2 X-SVN-Commit-Revision: 471741 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2018 05:21:50 -0000 Author: mfechner Date: Tue Jun 5 05:21:48 2018 New Revision: 471741 URL: https://svnweb.freebsd.org/changeset/ports/471741 Log: Took maintainer (approved by wg). Security update to 0.27.1. Reviewed by: wg (maintainer), tz (mentor) Approved by: wg (maintainer), tz (mentor) MFH: 2018Q2 Differential Revision: https://reviews.freebsd.org/D15654 Modified: head/devel/libgit2/Makefile head/devel/libgit2/distinfo head/devel/py-pygit2/Makefile head/devel/py-pygit2/distinfo Modified: head/devel/libgit2/Makefile ============================================================================== --- head/devel/libgit2/Makefile Tue Jun 5 00:58:12 2018 (r471740) +++ head/devel/libgit2/Makefile Tue Jun 5 05:21:48 2018 (r471741) @@ -1,12 +1,11 @@ # $FreeBSD$ PORTNAME= libgit2 -PORTVERSION= 0.27.0 -PORTREVISION= 1 +PORTVERSION= 0.27.1 DISTVERSIONPREFIX= v CATEGORIES= devel -MAINTAINER= wg@FreeBSD.org +MAINTAINER= mfechner@FreeBSD.org COMMENT= Portable, pure C implementation of the Git core LICENSE= GPLv2 Modified: head/devel/libgit2/distinfo ============================================================================== --- head/devel/libgit2/distinfo Tue Jun 5 00:58:12 2018 (r471740) +++ head/devel/libgit2/distinfo Tue Jun 5 05:21:48 2018 (r471741) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524466383 -SHA256 (libgit2-libgit2-v0.27.0_GH0.tar.gz) = 545b0458292c786aba334f1bf1c8f73600ae73dd7205a7bb791a187ee48ab8d2 -SIZE (libgit2-libgit2-v0.27.0_GH0.tar.gz) = 4761312 +TIMESTAMP = 1528010397 +SHA256 (libgit2-libgit2-v0.27.1_GH0.tar.gz) = 837b11927bc5f64e7f9ab0376f57cfe3ca5aa52ffd2007ac41184b21124fb086 +SIZE (libgit2-libgit2-v0.27.1_GH0.tar.gz) = 4765926 Modified: head/devel/py-pygit2/Makefile ============================================================================== --- head/devel/py-pygit2/Makefile Tue Jun 5 00:58:12 2018 (r471740) +++ head/devel/py-pygit2/Makefile Tue Jun 5 05:21:48 2018 (r471741) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= pygit2 -PORTVERSION= 0.27.0 +PORTVERSION= 0.27.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= wg@FreeBSD.org +MAINTAINER= mfechner@FreeBSD.org COMMENT= Python bindings for libgit2 LICENSE= GPLv2 Modified: head/devel/py-pygit2/distinfo ============================================================================== --- head/devel/py-pygit2/distinfo Tue Jun 5 00:58:12 2018 (r471740) +++ head/devel/py-pygit2/distinfo Tue Jun 5 05:21:48 2018 (r471741) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524467582 -SHA256 (pygit2-0.27.0.tar.gz) = 6febce4aea72f12ed5a1e7529b91119f21d93cb2ccb3f834eea26af76cc9a4cb -SIZE (pygit2-0.27.0.tar.gz) = 477427 +TIMESTAMP = 1528010741 +SHA256 (pygit2-0.27.1.tar.gz) = 1aa5ba1d59370bda158950ba4849bb6e59f13ac7e6fca5e392bfd873bd2c1cf9 +SIZE (pygit2-0.27.1.tar.gz) = 477820