From owner-svn-ports-all@freebsd.org Thu Sep 26 21:31:49 2019 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 6E74A1350D3; Thu, 26 Sep 2019 21:31:49 +0000 (UTC) (envelope-from madpilot@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 46fSmj2PSmz41DM; Thu, 26 Sep 2019 21:31:49 +0000 (UTC) (envelope-from madpilot@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 35A9C69F8; Thu, 26 Sep 2019 21:31:49 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8QLVmRo069148; Thu, 26 Sep 2019 21:31:48 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8QLVkM7069135; Thu, 26 Sep 2019 21:31:46 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201909262131.x8QLVkM7069135@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 26 Sep 2019 21:31:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512990 - in head: chinese/librime devel/yaml-cpp devel/yaml-cpp/files games/openxcom net-mgmt/openbmp sysutils/cloudabi-utils sysutils/crate sysutils/daggy sysutils/facter www/envoy X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in head: chinese/librime devel/yaml-cpp devel/yaml-cpp/files games/openxcom net-mgmt/openbmp sysutils/cloudabi-utils sysutils/crate sysutils/daggy sysutils/facter www/envoy X-SVN-Commit-Revision: 512990 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.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: Thu, 26 Sep 2019 21:31:49 -0000 Author: madpilot Date: Thu Sep 26 21:31:46 2019 New Revision: 512990 URL: https://svnweb.freebsd.org/changeset/ports/512990 Log: - Update yaml-cpp to 0.6.3 - Removed TEST option since it fails to build. Disable tests unconditionally. - Bump PORTREVISION on dependent ports. I've observed linker errors on startup due to library changes Modified: head/chinese/librime/Makefile head/devel/yaml-cpp/Makefile head/devel/yaml-cpp/distinfo head/devel/yaml-cpp/files/patch-CMakeLists.txt head/devel/yaml-cpp/pkg-plist head/games/openxcom/Makefile head/net-mgmt/openbmp/Makefile head/sysutils/cloudabi-utils/Makefile head/sysutils/crate/Makefile head/sysutils/daggy/Makefile head/sysutils/facter/Makefile head/www/envoy/Makefile Modified: head/chinese/librime/Makefile ============================================================================== --- head/chinese/librime/Makefile Thu Sep 26 21:25:06 2019 (r512989) +++ head/chinese/librime/Makefile Thu Sep 26 21:31:46 2019 (r512990) @@ -3,6 +3,7 @@ PORTNAME= librime PORTVERSION= 1.2.9 +PORTREVISION= 1 DISTVERSIONPREFIX= rime- PORTREVISION= 18 CATEGORIES= chinese textproc Modified: head/devel/yaml-cpp/Makefile ============================================================================== --- head/devel/yaml-cpp/Makefile Thu Sep 26 21:25:06 2019 (r512989) +++ head/devel/yaml-cpp/Makefile Thu Sep 26 21:31:46 2019 (r512990) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= yaml-cpp -PORTVERSION= 0.6.2 -PORTREVISION= 2 +PORTVERSION= 0.6.3 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= devel @@ -15,13 +14,9 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake compiler:c++11-lang USE_LDCONFIG= yes -CMAKE_ARGS+= -DBUILD_SHARED_LIBS:BOOL=ON -DYAML_CPP_BUILD_TOOLS=0 - -OPTIONS_DEFINE= TEST -OPTIONS_SUB= yes - -TEST_CMAKE_BOOL= YAML_CPP_BUILD_TESTS -TEST_CONFLICTS_INSTALL= googletest +CMAKE_ARGS+= -DYAML_BUILD_SHARED_LIBS:BOOL=ON \ + -DYAML_CPP_BUILD_TOOLS=OFF \ + -DYAML_CPP_BUILD_TESTS=OFF USE_GITHUB= yes GH_ACCOUNT= jbeder Modified: head/devel/yaml-cpp/distinfo ============================================================================== --- head/devel/yaml-cpp/distinfo Thu Sep 26 21:25:06 2019 (r512989) +++ head/devel/yaml-cpp/distinfo Thu Sep 26 21:31:46 2019 (r512990) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520322187 -SHA256 (jbeder-yaml-cpp-yaml-cpp-0.6.2_GH0.tar.gz) = e4d8560e163c3d875fd5d9e5542b5fd5bec810febdcba61481fe5fc4e6b1fd05 -SIZE (jbeder-yaml-cpp-yaml-cpp-0.6.2_GH0.tar.gz) = 1396250 +TIMESTAMP = 1569483448 +SHA256 (jbeder-yaml-cpp-yaml-cpp-0.6.3_GH0.tar.gz) = 77ea1b90b3718aa0c324207cb29418f5bced2354c2e483a9523d98c3460af1ed +SIZE (jbeder-yaml-cpp-yaml-cpp-0.6.3_GH0.tar.gz) = 1398768 Modified: head/devel/yaml-cpp/files/patch-CMakeLists.txt ============================================================================== --- head/devel/yaml-cpp/files/patch-CMakeLists.txt Thu Sep 26 21:25:06 2019 (r512989) +++ head/devel/yaml-cpp/files/patch-CMakeLists.txt Thu Sep 26 21:31:46 2019 (r512990) @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2016-01-10 18:11:40 UTC +--- CMakeLists.txt.orig 2019-09-25 16:56:00 UTC +++ CMakeLists.txt -@@ -276,7 +276,7 @@ set_target_properties(yaml-cpp PROPERTIE +@@ -276,7 +276,7 @@ set_target_properties(yaml-cpp PROPERTIES set_target_properties(yaml-cpp PROPERTIES VERSION "${YAML_CPP_VERSION}" @@ -9,12 +9,12 @@ PROJECT_LABEL "yaml-cpp ${LABEL_SUFFIX}" ) -@@ -320,7 +320,7 @@ configure_file(${CMAKE_CURRENT_SOURCE_DI - if(UNIX) - set(PC_FILE ${CMAKE_BINARY_DIR}/yaml-cpp.pc) - configure_file("yaml-cpp.pc.cmake" ${PC_FILE} @ONLY) -- install(FILES ${PC_FILE} DESTINATION ${LIB_INSTALL_DIR}/pkgconfig) -+ install(FILES ${PC_FILE} DESTINATION libdata/pkgconfig) - endif() +@@ -342,7 +342,7 @@ if (YAML_CPP_INSTALL) + if(UNIX) + set(PC_FILE ${CMAKE_BINARY_DIR}/yaml-cpp.pc) + configure_file("yaml-cpp.pc.cmake" ${PC_FILE} @ONLY) +- install(FILES ${PC_FILE} DESTINATION ${LIB_INSTALL_DIR}/pkgconfig) ++ install(FILES ${PC_FILE} DESTINATION libdata/pkgconfig) + endif() - + endif() Modified: head/devel/yaml-cpp/pkg-plist ============================================================================== --- head/devel/yaml-cpp/pkg-plist Thu Sep 26 21:25:06 2019 (r512989) +++ head/devel/yaml-cpp/pkg-plist Thu Sep 26 21:31:46 2019 (r512990) @@ -1,54 +1,3 @@ -%%TEST%%include/gmock/gmock-actions.h -%%TEST%%include/gmock/gmock-cardinalities.h -%%TEST%%include/gmock/gmock-generated-actions.h -%%TEST%%include/gmock/gmock-generated-actions.h.pump -%%TEST%%include/gmock/gmock-generated-function-mockers.h -%%TEST%%include/gmock/gmock-generated-function-mockers.h.pump -%%TEST%%include/gmock/gmock-generated-matchers.h -%%TEST%%include/gmock/gmock-generated-matchers.h.pump -%%TEST%%include/gmock/gmock-generated-nice-strict.h -%%TEST%%include/gmock/gmock-generated-nice-strict.h.pump -%%TEST%%include/gmock/gmock-matchers.h -%%TEST%%include/gmock/gmock-more-actions.h -%%TEST%%include/gmock/gmock-more-matchers.h -%%TEST%%include/gmock/gmock-spec-builders.h -%%TEST%%include/gmock/gmock.h -%%TEST%%include/gmock/internal/custom/gmock-generated-actions.h -%%TEST%%include/gmock/internal/custom/gmock-generated-actions.h.pump -%%TEST%%include/gmock/internal/custom/gmock-matchers.h -%%TEST%%include/gmock/internal/custom/gmock-port.h -%%TEST%%include/gmock/internal/gmock-generated-internal-utils.h -%%TEST%%include/gmock/internal/gmock-generated-internal-utils.h.pump -%%TEST%%include/gmock/internal/gmock-internal-utils.h -%%TEST%%include/gmock/internal/gmock-port.h -%%TEST%%include/gtest/gtest-death-test.h -%%TEST%%include/gtest/gtest-message.h -%%TEST%%include/gtest/gtest-param-test.h -%%TEST%%include/gtest/gtest-param-test.h.pump -%%TEST%%include/gtest/gtest-printers.h -%%TEST%%include/gtest/gtest-spi.h -%%TEST%%include/gtest/gtest-test-part.h -%%TEST%%include/gtest/gtest-typed-test.h -%%TEST%%include/gtest/gtest.h -%%TEST%%include/gtest/gtest_pred_impl.h -%%TEST%%include/gtest/gtest_prod.h -%%TEST%%include/gtest/internal/custom/gtest-port.h -%%TEST%%include/gtest/internal/custom/gtest-printers.h -%%TEST%%include/gtest/internal/custom/gtest.h -%%TEST%%include/gtest/internal/gtest-death-test-internal.h -%%TEST%%include/gtest/internal/gtest-filepath.h -%%TEST%%include/gtest/internal/gtest-internal.h -%%TEST%%include/gtest/internal/gtest-linked_ptr.h -%%TEST%%include/gtest/internal/gtest-param-util-generated.h -%%TEST%%include/gtest/internal/gtest-param-util-generated.h.pump -%%TEST%%include/gtest/internal/gtest-param-util.h -%%TEST%%include/gtest/internal/gtest-port-arch.h -%%TEST%%include/gtest/internal/gtest-port.h -%%TEST%%include/gtest/internal/gtest-string.h -%%TEST%%include/gtest/internal/gtest-tuple.h -%%TEST%%include/gtest/internal/gtest-tuple.h.pump -%%TEST%%include/gtest/internal/gtest-type-util.h -%%TEST%%include/gtest/internal/gtest-type-util.h.pump include/yaml-cpp/anchor.h include/yaml-cpp/binary.h include/yaml-cpp/contrib/anchordict.h @@ -79,7 +28,6 @@ include/yaml-cpp/node/node.h include/yaml-cpp/node/parse.h include/yaml-cpp/node/ptr.h include/yaml-cpp/node/type.h -include/yaml-cpp/noncopyable.h include/yaml-cpp/null.h include/yaml-cpp/ostream_wrapper.h include/yaml-cpp/parser.h @@ -90,11 +38,7 @@ lib/cmake/yaml-cpp/yaml-cpp-config-version.cmake lib/cmake/yaml-cpp/yaml-cpp-config.cmake lib/cmake/yaml-cpp/yaml-cpp-targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/yaml-cpp/yaml-cpp-targets.cmake -%%TEST%%lib/libgmock.so -%%TEST%%lib/libgmock_main.so -%%TEST%%lib/libgtest.so -%%TEST%%lib/libgtest_main.so lib/libyaml-cpp.so lib/libyaml-cpp.so.0 -lib/libyaml-cpp.so.0.6.2 +lib/libyaml-cpp.so.0.6.3 libdata/pkgconfig/yaml-cpp.pc Modified: head/games/openxcom/Makefile ============================================================================== --- head/games/openxcom/Makefile Thu Sep 26 21:25:06 2019 (r512989) +++ head/games/openxcom/Makefile Thu Sep 26 21:31:46 2019 (r512990) @@ -4,7 +4,7 @@ PORTNAME= openxcom PORTVERSION= 1.0 DISTVERSIONPREFIX= v -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= games MAINTAINER= amdmi3@FreeBSD.org Modified: head/net-mgmt/openbmp/Makefile ============================================================================== --- head/net-mgmt/openbmp/Makefile Thu Sep 26 21:25:06 2019 (r512989) +++ head/net-mgmt/openbmp/Makefile Thu Sep 26 21:31:46 2019 (r512990) @@ -4,7 +4,7 @@ PORTNAME= openbmp DISTVERSIONPREFIX= v DISTVERSION= 0.14.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net-mgmt MAINTAINER= pizzamig@FreeBSD.org Modified: head/sysutils/cloudabi-utils/Makefile ============================================================================== --- head/sysutils/cloudabi-utils/Makefile Thu Sep 26 21:25:06 2019 (r512989) +++ head/sysutils/cloudabi-utils/Makefile Thu Sep 26 21:31:46 2019 (r512990) @@ -4,6 +4,7 @@ PORTNAME= cloudabi-utils DISTVERSIONPREFIX= v DISTVERSION= 0.38 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= ed@FreeBSD.org Modified: head/sysutils/crate/Makefile ============================================================================== --- head/sysutils/crate/Makefile Thu Sep 26 21:25:06 2019 (r512989) +++ head/sysutils/crate/Makefile Thu Sep 26 21:31:46 2019 (r512990) @@ -2,6 +2,7 @@ PORTNAME= crate DISTVERSION= 0.1.3 +PORTREVISION= 1 CATEGORIES= sysutils emulators MAINTAINER= yuri@FreeBSD.org Modified: head/sysutils/daggy/Makefile ============================================================================== --- head/sysutils/daggy/Makefile Thu Sep 26 21:25:06 2019 (r512989) +++ head/sysutils/daggy/Makefile Thu Sep 26 21:31:46 2019 (r512990) @@ -2,7 +2,7 @@ PORTNAME= daggy DISTVERSION= 1.1.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MAINTAINER= yuri@FreeBSD.org Modified: head/sysutils/facter/Makefile ============================================================================== --- head/sysutils/facter/Makefile Thu Sep 26 21:25:06 2019 (r512989) +++ head/sysutils/facter/Makefile Thu Sep 26 21:31:46 2019 (r512990) @@ -2,6 +2,7 @@ PORTNAME= facter PORTVERSION= 3.14.4 +PORTREVISION= 1 CATEGORIES?= sysutils MASTER_SITES= https://downloads.puppetlabs.com/facter/ Modified: head/www/envoy/Makefile ============================================================================== --- head/www/envoy/Makefile Thu Sep 26 21:25:06 2019 (r512989) +++ head/www/envoy/Makefile Thu Sep 26 21:31:46 2019 (r512990) @@ -4,7 +4,7 @@ PORTNAME= envoy PORTVERSION= 1.10.0 DISTVERSIONPREFIX= v -PORTREVISION= 4 +PORTREVISION= 1 CATEGORIES= www MAINTAINER= danfe@FreeBSD.org