From owner-svn-ports-all@freebsd.org Fri Mar 1 08:08:17 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 3146E1515E18; Fri, 1 Mar 2019 08:08:17 +0000 (UTC) (envelope-from tobik@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 A753C68218; Fri, 1 Mar 2019 08:08:16 +0000 (UTC) (envelope-from tobik@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 9A1B219DC0; Fri, 1 Mar 2019 08:08:16 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x2188GnM044617; Fri, 1 Mar 2019 08:08:16 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x2188Erj044609; Fri, 1 Mar 2019 08:08:14 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201903010808.x2188Erj044609@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 1 Mar 2019 08:08:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494242 - in head: devel/libxs devel/xeus net-p2p/monero-cli net/cppzmq net/libzmq3 net/libzmq4 net/openpgm X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head: devel/libxs devel/xeus net-p2p/monero-cli net/cppzmq net/libzmq3 net/libzmq4 net/openpgm X-SVN-Commit-Revision: 494242 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A753C68218 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.85 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.85)[-0.851,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: Fri, 01 Mar 2019 08:08:17 -0000 Author: tobik Date: Fri Mar 1 08:08:14 2019 New Revision: 494242 URL: https://svnweb.freebsd.org/changeset/ports/494242 Log: net/openpgm: Do not add -I to non-existing directory in openpgm-5.2.pc foo/lib/pgm-5.2/include does not exist, so applications using strict compiler flags will fail to build due to this. Here this breaks devel/xeus build after r491260 [1]: CMake Error in CMakeLists.txt: Imported target "cppzmq" includes non-existent path "/usr/local/lib/pgm-5.2/include" in its INTERFACE_INCLUDE_DIRECTORIES. Possible reasons include: * The path was deleted, renamed, or moved to another location. * An install or uninstall procedure did not complete successfully. * The installation package was faulty and references files it does not provide. - Bump revisions of all net/openpgm consumers - Unbreak devel/xeus [1] http://beefy9.nyi.freebsd.org/data/112amd64-default/491532/logs/errors/xeus-0.18.1.log PR: 230575 Modified: head/devel/libxs/Makefile head/devel/xeus/Makefile head/net-p2p/monero-cli/Makefile head/net/cppzmq/Makefile head/net/libzmq3/Makefile head/net/libzmq4/Makefile head/net/openpgm/Makefile head/net/openpgm/distinfo Modified: head/devel/libxs/Makefile ============================================================================== --- head/devel/libxs/Makefile Fri Mar 1 06:51:46 2019 (r494241) +++ head/devel/libxs/Makefile Fri Mar 1 08:08:14 2019 (r494242) @@ -4,7 +4,7 @@ PORTNAME= libxs PORTVERSION= 1.2.0 DISTVERSIONPREFIX= v -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel MAINTAINER= ports@FreeBSD.org Modified: head/devel/xeus/Makefile ============================================================================== --- head/devel/xeus/Makefile Fri Mar 1 06:51:46 2019 (r494241) +++ head/devel/xeus/Makefile Fri Mar 1 08:08:14 2019 (r494242) @@ -10,8 +10,6 @@ COMMENT= C++ implementation of the Jupyter kernel prot LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN= fails to configure - BUILD_DEPENDS= cppzmq>0:net/cppzmq \ nlohmann-json>0:devel/nlohmann-json \ xtl-quant-stack>0:devel/xtl-quant-stack Modified: head/net-p2p/monero-cli/Makefile ============================================================================== --- head/net-p2p/monero-cli/Makefile Fri Mar 1 06:51:46 2019 (r494241) +++ head/net-p2p/monero-cli/Makefile Fri Mar 1 08:08:14 2019 (r494242) @@ -5,6 +5,7 @@ PORTNAME= monero-cli # To build from an arbitrary git commit comment PORTVERSION and PORTREVISION (if present) PORTVERSION= 0.14.0.0 DISTVERSIONPREFIX= v +PORTREVISION= 1 # and uncomment the following two lines #PORTVERSION= 0 #PKGNAMESUFFIX= -git-HEAD Modified: head/net/cppzmq/Makefile ============================================================================== --- head/net/cppzmq/Makefile Fri Mar 1 06:51:46 2019 (r494241) +++ head/net/cppzmq/Makefile Fri Mar 1 08:08:14 2019 (r494242) @@ -3,7 +3,7 @@ PORTNAME= cppzmq PORTVERSION= 4.3.0 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= v CATEGORIES= net Modified: head/net/libzmq3/Makefile ============================================================================== --- head/net/libzmq3/Makefile Fri Mar 1 06:51:46 2019 (r494241) +++ head/net/libzmq3/Makefile Fri Mar 1 08:08:14 2019 (r494242) @@ -2,6 +2,7 @@ PORTNAME= libzmq3 PORTVERSION= 3.2.5 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://download.zeromq.org/ DISTNAME= zeromq-${DISTVERSION} Modified: head/net/libzmq4/Makefile ============================================================================== --- head/net/libzmq4/Makefile Fri Mar 1 06:51:46 2019 (r494241) +++ head/net/libzmq4/Makefile Fri Mar 1 08:08:14 2019 (r494242) @@ -3,6 +3,7 @@ PORTNAME= libzmq4 DISTVERSIONPREFIX= v DISTVERSION= 4.3.1 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= https://github.com/zeromq/libzmq/releases/download/${DISTVERSIONFULL}/ DISTNAME= zeromq-${DISTVERSION} Modified: head/net/openpgm/Makefile ============================================================================== --- head/net/openpgm/Makefile Fri Mar 1 06:51:46 2019 (r494241) +++ head/net/openpgm/Makefile Fri Mar 1 08:08:14 2019 (r494242) @@ -4,8 +4,11 @@ PORTNAME= openpgm DISTVERSIONPREFIX= release- DISTVERSION= 5-2-122 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net devel + +PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ +PATCHFILES= ee25ff3d13f2639b4c3a42125e79f77f921c3320.patch:-p3 MAINTAINER= ports@FreeBSD.org COMMENT= Implementation of the PGM reliable multicast protocol Modified: head/net/openpgm/distinfo ============================================================================== --- head/net/openpgm/distinfo Fri Mar 1 06:51:46 2019 (r494241) +++ head/net/openpgm/distinfo Fri Mar 1 08:08:14 2019 (r494242) @@ -1,3 +1,5 @@ -TIMESTAMP = 1474186140 +TIMESTAMP = 1551424949 SHA256 (steve-o-openpgm-release-5-2-122_GH0.tar.gz) = acc1545fd8060aa66b17327110e2859e451cfc685ebd3b2211619728e3471b66 SIZE (steve-o-openpgm-release-5-2-122_GH0.tar.gz) = 583469 +SHA256 (ee25ff3d13f2639b4c3a42125e79f77f921c3320.patch) = 4a9fc7fbb6e73e325639a895cd19c1ac6918b575f715c057caa01f826de40114 +SIZE (ee25ff3d13f2639b4c3a42125e79f77f921c3320.patch) = 990