From owner-svn-ports-all@freebsd.org Wed Jul 8 18:56:10 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5666836A552; Wed, 8 Jul 2020 18:56:10 +0000 (UTC) (envelope-from sunpoet@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4B27n372dDz4Rs1; Wed, 8 Jul 2020 18:56:07 +0000 (UTC) (envelope-from sunpoet@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 BC62824CBB; Wed, 8 Jul 2020 18:56:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 068Iu6Tr057882; Wed, 8 Jul 2020 18:56:06 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 068Iu6vK057879; Wed, 8 Jul 2020 18:56:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202007081856.068Iu6vK057879@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 8 Jul 2020 18:56:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r541523 - head/devel/avro-cpp X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/avro-cpp X-SVN-Commit-Revision: 541523 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.33 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, 08 Jul 2020 18:56:10 -0000 Author: sunpoet Date: Wed Jul 8 18:56:05 2020 New Revision: 541523 URL: https://svnweb.freebsd.org/changeset/ports/541523 Log: Update to 1.10.0 Changes: https://github.com/apache/avro/releases Modified: head/devel/avro-cpp/Makefile head/devel/avro-cpp/distinfo head/devel/avro-cpp/pkg-plist Modified: head/devel/avro-cpp/Makefile ============================================================================== --- head/devel/avro-cpp/Makefile Wed Jul 8 18:56:00 2020 (r541522) +++ head/devel/avro-cpp/Makefile Wed Jul 8 18:56:05 2020 (r541523) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= avro -PORTVERSION= 1.9.2 +PORTVERSION= 1.10.0 DISTVERSIONPREFIX= release- CATEGORIES= devel PKGNAMESUFFIX= -cpp @@ -13,7 +13,8 @@ COMMENT= C++ library for Apache Avro LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -LIB_DEPENDS= libboost_regex.so:devel/boost-libs +LIB_DEPENDS= libboost_regex.so:devel/boost-libs \ + libsnappy.so:archivers/snappy USES= cmake compiler:c++11-lang @@ -21,10 +22,12 @@ USE_CXXSTD= c++11 USE_LDCONFIG= yes WRKSRC_SUBDIR= lang/c++ +PLIST_SUB= PORTVERSION=${PORTVERSION} + GH_ACCOUNT= apache USE_GITHUB= yes -post-patch: - @${REINPLACE_CMD} -e 's|$${AVRO_VERSION_MAJOR}.\($${AVRO_VERSION_MINOR}\)|\1|' ${WRKSRC}/CMakeLists.txt +post-install: + ${LN} -s libavrocpp.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/libavrocpp.so.1 .include Modified: head/devel/avro-cpp/distinfo ============================================================================== --- head/devel/avro-cpp/distinfo Wed Jul 8 18:56:00 2020 (r541522) +++ head/devel/avro-cpp/distinfo Wed Jul 8 18:56:05 2020 (r541523) @@ -1,3 +1,3 @@ -TIMESTAMP = 1581594048 -SHA256 (apache-avro-release-1.9.2_GH0.tar.gz) = a79d0369f00272071989727e3ad08993d02815cd7e1180d058b8609d56e30aea -SIZE (apache-avro-release-1.9.2_GH0.tar.gz) = 1872298 +TIMESTAMP = 1594117143 +SHA256 (apache-avro-release-1.10.0_GH0.tar.gz) = 50ceefe582193ef8a92a8891bac1520df778f5c260f2ba68f4c9ae41417e3777 +SIZE (apache-avro-release-1.10.0_GH0.tar.gz) = 1899570 Modified: head/devel/avro-cpp/pkg-plist ============================================================================== --- head/devel/avro-cpp/pkg-plist Wed Jul 8 18:56:00 2020 (r541522) +++ head/devel/avro-cpp/pkg-plist Wed Jul 8 18:56:05 2020 (r541523) @@ -38,5 +38,6 @@ include/avro/buffer/BufferStreambuf.hh include/avro/buffer/detail/BufferDetail.hh include/avro/buffer/detail/BufferDetailIterator.hh lib/libavrocpp.so -lib/libavrocpp.so.0 +lib/libavrocpp.so.1 +lib/libavrocpp.so.%%PORTVERSION%% lib/libavrocpp_s.a