From owner-svn-ports-all@freebsd.org Tue Feb 19 22:20: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 184F514DBDCC; Tue, 19 Feb 2019 22:20:13 +0000 (UTC) (envelope-from jwb@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 89A4976FF4; Tue, 19 Feb 2019 22:20:12 +0000 (UTC) (envelope-from jwb@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 7D7F924160; Tue, 19 Feb 2019 22:20:12 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1JMKCqH039135; Tue, 19 Feb 2019 22:20:12 GMT (envelope-from jwb@FreeBSD.org) Received: (from jwb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1JMKBXO039131; Tue, 19 Feb 2019 22:20:11 GMT (envelope-from jwb@FreeBSD.org) Message-Id: <201902192220.x1JMKBXO039131@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jwb set sender to jwb@FreeBSD.org using -f From: "Jason W. Bacon" Date: Tue, 19 Feb 2019 22:20:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493397 - in head/biology/pbcopper: . files X-SVN-Group: ports-head X-SVN-Commit-Author: jwb X-SVN-Commit-Paths: in head/biology/pbcopper: . files X-SVN-Commit-Revision: 493397 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 89A4976FF4 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.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,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: Tue, 19 Feb 2019 22:20:13 -0000 Author: jwb Date: Tue Feb 19 22:20:11 2019 New Revision: 493397 URL: https://svnweb.freebsd.org/changeset/ports/493397 Log: biology/pbcopper: Upgrade to 0.4.1 release In preparation for biology/unanimity upgrade Added: head/biology/pbcopper/files/patch-meson__options.txt (contents, props changed) Deleted: head/biology/pbcopper/files/patch-cmake_pbcopper-gitsha1.cmake Modified: head/biology/pbcopper/Makefile head/biology/pbcopper/distinfo head/biology/pbcopper/pkg-plist Modified: head/biology/pbcopper/Makefile ============================================================================== --- head/biology/pbcopper/Makefile Tue Feb 19 22:09:23 2019 (r493396) +++ head/biology/pbcopper/Makefile Tue Feb 19 22:20:11 2019 (r493397) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= pbcopper -DISTVERSION= g20180413 -PORTREVISION= 3 +DISTVERSION= 0.4.1 # Test with biology/unanimity before upgrading! CATEGORIES= biology MAINTAINER= jwb@FreeBSD.org @@ -13,17 +12,17 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libboost_regex.so:devel/boost-libs -USES= cmake compiler:c++14-lang -# Although there are a couple releases, git describe --tags does not work -# so we cannot use the usual USE_GITHUB tools here. +# Meson needs BOOST_ROOT=${LOCALBASE} +# https://github.com/mesonbuild/meson/issues/2239 +USES= compiler:c++14-lang localbase meson +USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= PacificBiosciences -GH_TAGNAME= 17ef457a0dbe1894a8d17af7ddba01a6261bf117 -do-install: - ${INSTALL_DATA} ${BUILD_WRKSRC}/lib/*.a ${STAGEDIR}${PREFIX}/lib - cd ${WRKSRC}/include && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include - ${MV} ${STAGEDIR}${PREFIX}/include/meson.build \ - ${STAGEDIR}${PREFIX}/include/pbcopper +post-install: + ${RLN} ${STAGEDIR}${PREFIX}/lib/libpbcopper.so.${PORTVERSION} \ + ${STAGEDIR}${PREFIX}/lib/libpbcopper.so.0.4 + ${RLN} ${STAGEDIR}${PREFIX}/lib/libpbcopper.so.${PORTVERSION} \ + ${STAGEDIR}${PREFIX}/lib/libpbcopper.so.0 .include Modified: head/biology/pbcopper/distinfo ============================================================================== --- head/biology/pbcopper/distinfo Tue Feb 19 22:09:23 2019 (r493396) +++ head/biology/pbcopper/distinfo Tue Feb 19 22:20:11 2019 (r493397) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524500014 -SHA256 (PacificBiosciences-pbcopper-g20180413-17ef457a0dbe1894a8d17af7ddba01a6261bf117_GH0.tar.gz) = 13f006d53334a0538657e0ba5c6e02f811f1901cd25fce220fc9011726ffe23f -SIZE (PacificBiosciences-pbcopper-g20180413-17ef457a0dbe1894a8d17af7ddba01a6261bf117_GH0.tar.gz) = 3033636 +TIMESTAMP = 1550453144 +SHA256 (PacificBiosciences-pbcopper-0.4.1_GH0.tar.gz) = 4c8daf6c1a6efe3860a16fb5b6111ebe65221423254819f3a68a400d0a984fcd +SIZE (PacificBiosciences-pbcopper-0.4.1_GH0.tar.gz) = 3095846 Added: head/biology/pbcopper/files/patch-meson__options.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/pbcopper/files/patch-meson__options.txt Tue Feb 19 22:20:11 2019 (r493397) @@ -0,0 +1,7 @@ +--- meson_options.txt.orig 2019-02-17 22:34:29 UTC ++++ meson_options.txt +@@ -1,3 +1,3 @@ + option('build-examples', type : 'boolean', value : true, description : 'Build pbcopper examples') + option('build-docs', type : 'boolean', value : false, description : 'Build pbcopper docs') +-option('tests', type : 'boolean', value : true, description : 'Enable dependencies required for testing') ++option('tests', type : 'boolean', value : false, description : 'Enable dependencies required for testing') Modified: head/biology/pbcopper/pkg-plist ============================================================================== --- head/biology/pbcopper/pkg-plist Tue Feb 19 22:09:23 2019 (r493396) +++ head/biology/pbcopper/pkg-plist Tue Feb 19 22:20:11 2019 (r493397) @@ -1,4 +1,5 @@ include/pbcopper/PbcopperConfig.h +include/pbcopper/PbcopperMakeUnique.h include/pbcopper/align/Seed.h include/pbcopper/align/Seeds.h include/pbcopper/align/internal/Seed-inl.h @@ -23,7 +24,6 @@ include/pbcopper/cli/toolcontract/ResolvedToolContract include/pbcopper/cli/toolcontract/ResourceType.h include/pbcopper/cli/toolcontract/Task.h include/pbcopper/cli/toolcontract/TaskType.h -include/pbcopper/cli/toolcontract/internal/Config-inl.h include/pbcopper/cli/toolcontract/internal/Driver-inl.h include/pbcopper/cli/toolcontract/internal/InputFileType-inl.h include/pbcopper/cli/toolcontract/internal/OutputFileType-inl.h @@ -48,7 +48,6 @@ include/pbcopper/json/JSON.h include/pbcopper/json/internal/json.hpp include/pbcopper/logging/Logging.h include/pbcopper/logging/internal/Logging-inl.h -include/pbcopper/meson.build include/pbcopper/parallel/FireAndForget.h include/pbcopper/parallel/WorkQueue.h include/pbcopper/qgram/Index.h @@ -72,4 +71,8 @@ include/pbcopper/utility/internal/FileUtils-inl.h include/pbcopper/utility/internal/Stopwatch-inl.h include/pbcopper/utility/internal/StringUtils-inl.h include/pbcopper/utility/internal/SystemInfo-inl.h -lib/libpbcopper.a +lib/libpbcopper.so +lib/libpbcopper.so.0 +lib/libpbcopper.so.0.4 +lib/libpbcopper.so.0.4.1 +libdata/pkgconfig/pbcopper.pc