Date: Thu, 22 Oct 2020 20:43:09 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> 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 Message-ID: <202010222043.09MKh9gw067642@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010222043.09MKh9gw067642>