From owner-svn-ports-head@freebsd.org Fri Feb 15 00:21:43 2019 Return-Path: Delivered-To: svn-ports-head@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 586F814E815B; Fri, 15 Feb 2019 00:21:43 +0000 (UTC) (envelope-from cmt@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 F0C066D06D; Fri, 15 Feb 2019 00:21:42 +0000 (UTC) (envelope-from cmt@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 E6A36EC0A; Fri, 15 Feb 2019 00:21:42 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1F0LgRt006142; Fri, 15 Feb 2019 00:21:42 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1F0LgVt006141; Fri, 15 Feb 2019 00:21:42 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201902150021.x1F0LgVt006141@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Fri, 15 Feb 2019 00:21:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r492962 - head/devel/pyside2/files X-SVN-Group: ports-head X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: head/devel/pyside2/files X-SVN-Commit-Revision: 492962 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: F0C066D06D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.97)[-0.965,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-head@freebsd.org X-Mailman-Version: 2.1.29 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: Fri, 15 Feb 2019 00:21:43 -0000 Author: cmt Date: Fri Feb 15 00:21:42 2019 New Revision: 492962 URL: https://svnweb.freebsd.org/changeset/ports/492962 Log: devel/pyside2: fix dependencies in QtWebEngineWidgets This fixes a failing build on some platforms (reproducable: 11.2 i386). On most platforms, the build succeeded by pure luck only. Reported by: pkg-fallout Added: head/devel/pyside2/files/patch-PySide2_QtWebEngineWidgets_CMakeLists.txt (contents, props changed) Added: head/devel/pyside2/files/patch-PySide2_QtWebEngineWidgets_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pyside2/files/patch-PySide2_QtWebEngineWidgets_CMakeLists.txt Fri Feb 15 00:21:42 2019 (r492962) @@ -0,0 +1,27 @@ +--- PySide2/QtWebEngineWidgets/CMakeLists.txt.orig 2019-02-15 00:09:13 UTC ++++ PySide2/QtWebEngineWidgets/CMakeLists.txt +@@ -25,6 +25,7 @@ set(QtWebEngineWidgets_include_dirs + ${Qt5Widgets_INCLUDE_DIRS} + ${Qt5Network_INCLUDE_DIRS} + ${Qt5WebChannel_INCLUDE_DIRS} ++ ${Qt5WebEngineCore_INCLUDE_DIRS} + ${Qt5WebEngineWidgets_INCLUDE_DIRS} + ${SHIBOKEN_INCLUDE_DIR} + ${libpyside_SOURCE_DIR} +@@ -40,6 +41,7 @@ set(QtWebEngineWidgets_include_dirs + set(QtWebEngineWidgets_libraries pyside2 + ${SHIBOKEN_PYTHON_LIBRARIES} + ${SHIBOKEN_LIBRARY} ++ ${Qt5WebEngineCore_LIBRARIES} + ${Qt5WebEngineWidgets_LIBRARIES} + ${Qt5Network_LIBRARIES} + ${Qt5WebChannel_LIBRARIES} +@@ -47,7 +49,7 @@ set(QtWebEngineWidgets_libraries pyside2 + ${Qt5Gui_LIBRARIES} + ${Qt5Core_LIBRARIES} + ) +-set(QtWebEngineWidgets_deps QtGui QtWidgets QtNetwork QtWebChannel) ++set(QtWebEngineWidgets_deps QtGui QtWidgets QtNetwork QtWebChannel QtWebEngineCore) + create_pyside_module(NAME QtWebEngineWidgets + INCLUDE_DIRS QtWebEngineWidgets_include_dirs + LIBRARIES QtWebEngineWidgets_libraries