From owner-svn-ports-head@freebsd.org Mon Jan 30 00:09:16 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 2FDF3CC7BD5 for ; Mon, 30 Jan 2017 00:09:16 +0000 (UTC) (envelope-from junchoon@dec.sakura.ne.jp) Received: from dec.sakura.ne.jp (dec.sakura.ne.jp [210.188.226.8]) (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 BBD0E1036; Mon, 30 Jan 2017 00:09:15 +0000 (UTC) (envelope-from junchoon@dec.sakura.ne.jp) Received: from fortune.joker.local (123-48-19-110.dz.commufa.jp [123.48.19.110]) (authenticated bits=0) by dec.sakura.ne.jp (8.15.2/8.15.2/[SAKURA-WEB]/20080708) with ESMTPA id v0TNBN2r022661; Mon, 30 Jan 2017 08:11:23 +0900 (JST) (envelope-from junchoon@dec.sakura.ne.jp) Date: Mon, 30 Jan 2017 08:11:23 +0900 From: Tomoaki AOKI To: svn-ports-head@freebsd.org Cc: sunpoet@FreeBSD.org Subject: Re: svn commit: r432762 - in head: astro/libosmpbf astro/merkaartor audio/clementine-player audio/mixxx audio/mumble audio/murmur devel/php5-pinba devel/pinba_engine devel/protobuf devel/protobuf-c dev... Message-Id: <20170130081123.fc914abeb5ebfec21d617ccf@dec.sakura.ne.jp> Organization: Junchoon corps X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.29; amd64-portbld-freebsd11.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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: Mon, 30 Jan 2017 00:09:16 -0000 At least, japanese/mozc-server needs additional fix, as it depents on libprotobuf.so.11, while some others depends on libprotobuf.so. LIB_DEPENDS= libprotobuf.so.11:devel/protobuf \ If there's no reason to depend on specific version, it should be like below: LIB_DEPENDS= libprotobuf.so:devel/protobuf \ or fixed lile below to chase library version change. LIB_DEPENDS= libprotobuf.so.12:devel/protobuf \ I myself did the second fix, but the first fix would be OK (not tested). I haven't checked all dependencies of devel/protobuf, so there can be some more ports that needs the same fix. > Author: sunpoet > Date: Sun Jan 29 16:04:36 2017 > New Revision: 432762 > URL: https://svnweb.freebsd.org/changeset/ports/432762 > > Log: > Update devel/protobuf to 3.2.0 > > - Bump PORTREVISION for shlib change > > Changes: https://github.com/google/protobuf/releases > > Added: > head/devel/protobuf/files/patch-src-google-protobuf-compiler-plugin.pb.cc (contents, props changed) > head/devel/protobuf/files/patch-src-google-protobuf-compiler-plugin.pb.h (contents, props changed) Modified: head/astro/libosmpbf/Makefile > head/astro/merkaartor/Makefile > head/audio/clementine-player/Makefile > head/audio/mixxx/Makefile > head/audio/mumble/Makefile > head/audio/murmur/Makefile > head/devel/php5-pinba/Makefile > head/devel/pinba_engine/Makefile > head/devel/protobuf-c/Makefile > head/devel/protobuf/Makefile > head/devel/protobuf/distinfo > head/devel/protobuf/pkg-plist > head/devel/tesla/Makefile > head/dns/dnsdist/Makefile > head/dns/powerdns/Makefile > head/games/cockatrice/Makefile > head/games/pink-pony/Makefile > head/games/pokerth/Makefile > head/japanese/mozc-server/Makefile > head/net-im/ricochet/Makefile > head/net-p2p/bitcoin/Makefile > head/net-p2p/litecoin/Makefile > head/net-p2p/namecoin/Makefile > head/net-p2p/zetacoin/Makefile > head/net/mosh/Makefile > head/net/ostinato/Makefile > head/net/spoofer/Makefile > head/security/certificate-transparency/Makefile > head/sysutils/zbackup/Makefile (snip) > Modified: head/japanese/mozc-server/Makefile > ============================================================================== > --- head/japanese/mozc-server/Makefile Sun Jan 29 15:56:47 2017 (r432761) > +++ head/japanese/mozc-server/Makefile Sun Jan 29 16:04:36 2017 (r432762) > @@ -4,6 +4,7 @@ > PORTNAME= mozc > PORTVERSION= 2.20.2677.102.02 > DISTVERSIONPREFIX= v > +PORTREVISION= 1 > CATEGORIES= japanese > > MAINTAINER= hrs at FreeBSD.org (snip) -- Tomoaki AOKI