From owner-svn-ports-branches@freebsd.org Thu Oct 22 20:43:10 2020 Return-Path: Delivered-To: svn-ports-branches@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 DB86542ACD4; Thu, 22 Oct 2020 20:43:10 +0000 (UTC) (envelope-from pkubaj@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4CHK7f5Xcmz4VGl; Thu, 22 Oct 2020 20:43:10 +0000 (UTC) (envelope-from pkubaj@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 897001C8E6; Thu, 22 Oct 2020 20:43:10 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09MKhAwZ067645; Thu, 22 Oct 2020 20:43:10 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09MKh9gw067642; Thu, 22 Oct 2020 20:43:09 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <202010222043.09MKh9gw067642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Thu, 22 Oct 2020 20:43:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r553055 - in branches/2020Q4: deskutils/gnome-clocks graphics/py-scikit-image security/seahorse X-SVN-Group: ports-branches X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: in branches/2020Q4: deskutils/gnome-clocks graphics/py-scikit-image security/seahorse X-SVN-Commit-Revision: 553055 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Oct 2020 20:43:10 -0000 Author: pkubaj Date: Thu Oct 22 20:43:09 2020 New Revision: 553055 URL: https://svnweb.freebsd.org/changeset/ports/553055 Log: MFH: r551624 r551582 r551608 graphics/py-scikit-image: fix build on GCC architectures Use C++11 compiler: cc1plus: error: unrecognized command line option "-std=c++0x" deskutils/gnome-clocks: fix build on GCC architectures Use C11 compiler: /usr/local/include/libhandy-1/hdy-swipe-tracker.h:23: error: redefinition of typedef 'HdySwipeTracker' /usr/local/include/libhandy-1/hdy-types.h:15: error: previous declaration of 'HdySwipeTracker' was here security/seahorse: fix build on GCC architectures Use C99: ../pgp/seahorse-ldap-source.c:1317: error: 'for' loop initial declaration used outside C99 mode Approved by: portmgr (fix build blanket) Modified: branches/2020Q4/deskutils/gnome-clocks/Makefile branches/2020Q4/graphics/py-scikit-image/Makefile branches/2020Q4/security/seahorse/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/deskutils/gnome-clocks/Makefile ============================================================================== --- branches/2020Q4/deskutils/gnome-clocks/Makefile Thu Oct 22 18:03:18 2020 (r553054) +++ branches/2020Q4/deskutils/gnome-clocks/Makefile Thu Oct 22 20:43:09 2020 (r553055) @@ -22,8 +22,8 @@ LIB_DEPENDS= libgeoclue-2.so:net/geoclue \ PORTSCOUT= limitw:1,even -USES= gettext gnome localbase meson pkgconfig python:3.4+,build \ - shebangfix tar:xz +USES= compiler:c11 gettext gnome localbase meson pkgconfig \ + python:3.4+,build shebangfix tar:xz USE_LDCONFIG= yes USE_GNOME= cairo gnomedesktop3 gsound INSTALLS_ICONS= yes Modified: branches/2020Q4/graphics/py-scikit-image/Makefile ============================================================================== --- branches/2020Q4/graphics/py-scikit-image/Makefile Thu Oct 22 18:03:18 2020 (r553054) +++ branches/2020Q4/graphics/py-scikit-image/Makefile Thu Oct 22 20:43:09 2020 (r553055) @@ -24,7 +24,7 @@ RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}PyWavelets>=0.4:math/py-PyWavelets@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}cloudpickle>=0.2.1:devel/py-cloudpickle@${PY_FLAVOR} -USES= cpe python:3.7+ +USES= compiler:c++11-lang cpe python:3.7+ USE_GITHUB= yes USE_PYTHON= autoplist concurrent distutils cython cython_run Modified: branches/2020Q4/security/seahorse/Makefile ============================================================================== --- branches/2020Q4/security/seahorse/Makefile Thu Oct 22 18:03:18 2020 (r553054) +++ branches/2020Q4/security/seahorse/Makefile Thu Oct 22 20:43:09 2020 (r553055) @@ -30,6 +30,7 @@ USE_XORG= sm USE_LDCONFIG= yes USES= gettext gnome localbase:ldflags meson pkgconfig \ python:3.5+,build tar:xz xorg +USE_CSTD= c99 USE_GNOME= gtk30 INSTALLS_ICONS= yes