From owner-svn-ports-all@freebsd.org Wed Jun 26 18:06:13 2019 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 B3D1B15CE9D5; Wed, 26 Jun 2019 18:06:13 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5B61881A01; Wed, 26 Jun 2019 18:06:13 +0000 (UTC) (envelope-from truckman@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 3811B364A; Wed, 26 Jun 2019 18:06:13 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5QI6D8B000399; Wed, 26 Jun 2019 18:06:13 GMT (envelope-from truckman@FreeBSD.org) Received: (from truckman@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5QI6Cco000397; Wed, 26 Jun 2019 18:06:12 GMT (envelope-from truckman@FreeBSD.org) Message-Id: <201906261806.x5QI6Cco000397@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: truckman set sender to truckman@FreeBSD.org using -f From: Don Lewis Date: Wed, 26 Jun 2019 18:06:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r505176 - in head/devel/protobuf-c: . files X-SVN-Group: ports-head X-SVN-Commit-Author: truckman X-SVN-Commit-Paths: in head/devel/protobuf-c: . files X-SVN-Commit-Revision: 505176 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5B61881A01 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Wed, 26 Jun 2019 18:06:13 -0000 Author: truckman Date: Wed Jun 26 18:06:12 2019 New Revision: 505176 URL: https://svnweb.freebsd.org/changeset/ports/505176 Log: Upgrade devel/protobuf-c to version 1.3.2: [ Robert Edmonds ] * Release 1.3.2. * Use protobuf 3.7.1 in the Travis-CI environment (#368). * Fix test suite build failure on newer versions of protobuf (#369). [ Ilya Lipnitskiy ] * Fix proto3 repeated scalar field default packing behavior (#330, #377). [ Adam Cozzette ] * Fix out-of-bounds read in scan_length_prefixed_data() (#375, #376). [ Jurriaan Bremer ] * Fix -Wdeclaration-after-statement warning in parse_oneof_member() (#360). [ Hayri Ugur Koltuk ] * Fix SIGSEGV in protobuf_c_message_check() on messages with unpopulated oneof members (#358). [ Italo Guerrieri ] * Do not allow tag values of 0 in protobuf messages, as these are not allowed by proto2 or proto3 (#299). The patch for version 1.3.1 is no longer required. Sort Makefile statements to pacify portlint. Reported by: portscout Sponsored by: Farsight Security, Inc. Deleted: head/devel/protobuf-c/files/ Modified: head/devel/protobuf-c/Makefile head/devel/protobuf-c/distinfo Modified: head/devel/protobuf-c/Makefile ============================================================================== --- head/devel/protobuf-c/Makefile Wed Jun 26 17:42:16 2019 (r505175) +++ head/devel/protobuf-c/Makefile Wed Jun 26 18:06:12 2019 (r505176) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= protobuf-c -PORTVERSION= 1.3.1 +PORTVERSION= 1.3.2 DISTVERSIONPREFIX= v -PORTREVISION= 3 CATEGORIES= devel MAINTAINER= truckman@FreeBSD.org @@ -16,9 +15,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= autoreconf compiler:c++11-lang gmake libtool pkgconfig -GNU_CONFIGURE= yes USE_GITHUB= yes USE_LDCONFIG= yes + +GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Modified: head/devel/protobuf-c/distinfo ============================================================================== --- head/devel/protobuf-c/distinfo Wed Jun 26 17:42:16 2019 (r505175) +++ head/devel/protobuf-c/distinfo Wed Jun 26 18:06:12 2019 (r505176) @@ -1,3 +1,3 @@ -TIMESTAMP = 1534315586 -SHA256 (protobuf-c-protobuf-c-v1.3.1_GH0.tar.gz) = 5eeec797d7ff1d4b1e507925a1780fad5dd8dd11163203d8832e5a9f20a79b08 -SIZE (protobuf-c-protobuf-c-v1.3.1_GH0.tar.gz) = 128705 +TIMESTAMP = 1561501851 +SHA256 (protobuf-c-protobuf-c-v1.3.2_GH0.tar.gz) = 5205312e561b75b9d2db671b22f28d67afb5c7d1fef94a6f2d29d775ca4e0519 +SIZE (protobuf-c-protobuf-c-v1.3.2_GH0.tar.gz) = 130176