From owner-svn-ports-head@freebsd.org Tue Jan 14 09:27:23 2020 Return-Path: Delivered-To: svn-ports-head@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 611E7222C8E; Tue, 14 Jan 2020 09:27:23 +0000 (UTC) (envelope-from antoine@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 47xlV31xbYz3Mhb; Tue, 14 Jan 2020 09:27:23 +0000 (UTC) (envelope-from antoine@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 394841B6D4; Tue, 14 Jan 2020 09:27:23 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 00E9RNAd060629; Tue, 14 Jan 2020 09:27:23 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00E9RJXw060609; Tue, 14 Jan 2020 09:27:19 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <202001140927.00E9RJXw060609@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 14 Jan 2020 09:27:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r522998 - in head: Mk/Uses audio/abraca audio/blop-lv2 audio/bs2b-lv2 audio/cpp-xmms2 audio/jalv audio/lvtk audio/nekobee audio/p5-xmms2 audio/patchage audio/raul audio/triceratops-lv2 ... X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head: Mk/Uses audio/abraca audio/blop-lv2 audio/bs2b-lv2 audio/cpp-xmms2 audio/jalv audio/lvtk audio/nekobee audio/p5-xmms2 audio/patchage audio/raul audio/triceratops-lv2 audio/xmms2 benchmarks/gl... X-SVN-Commit-Revision: 522998 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Tue, 14 Jan 2020 09:27:23 -0000 Author: antoine Date: Tue Jan 14 09:27:18 2020 New Revision: 522998 URL: https://svnweb.freebsd.org/changeset/ports/522998 Log: Switch version of python used in USES=waf to default version of python Reviewed by: bapt With hat: portmgr Differential Revision: https://reviews.freebsd.org/D23143 Modified: head/Mk/Uses/waf.mk head/audio/abraca/Makefile head/audio/blop-lv2/Makefile head/audio/bs2b-lv2/Makefile head/audio/cpp-xmms2/Makefile head/audio/jalv/Makefile head/audio/lvtk/Makefile head/audio/nekobee/Makefile head/audio/p5-xmms2/Makefile head/audio/patchage/Makefile head/audio/raul/Makefile head/audio/triceratops-lv2/Makefile head/audio/xmms2/Makefile head/benchmarks/glmark2/Makefile head/devel/cquery/Makefile head/devel/termbox/Makefile head/graphics/webp-pixbuf-loader/Makefile head/net/norm/Makefile head/x11-toolkits/flowcanvas/Makefile head/x11-toolkits/ntk/Makefile Modified: head/Mk/Uses/waf.mk ============================================================================== --- head/Mk/Uses/waf.mk Tue Jan 14 08:57:17 2020 (r522997) +++ head/Mk/Uses/waf.mk Tue Jan 14 09:27:18 2020 (r522998) @@ -22,7 +22,7 @@ IGNORE= Incorrect 'USES+= waf:${waf_ARGS}' waf takes n .endif .if !${USES:Mpython*} -python_ARGS= 2.7,build +python_ARGS= build .include "${USESDIR}/python.mk" .endif Modified: head/audio/abraca/Makefile ============================================================================== --- head/audio/abraca/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/audio/abraca/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -19,7 +19,7 @@ LIB_DEPENDS= libxmmsclient.so:audio/xmms2 \ RUN_DEPENDS= gnome-themes-extra>=3.0.0:x11-themes/gnome-themes-extra \ gnome-icon-theme>=0:misc/gnome-icon-theme -USES= gnome pkgconfig tar:bzip2 waf +USES= gnome pkgconfig python:2.7,build tar:bzip2 waf USE_GNOME= gtk30 intltool MAKE_ARGS= MANDIR=${MANPREFIX}/man Modified: head/audio/blop-lv2/Makefile ============================================================================== --- head/audio/blop-lv2/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/audio/blop-lv2/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= lv2>0:audio/lv2 -USES= waf pkgconfig tar:bz2 +USES= pkgconfig python:2.7,build tar:bz2 waf post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lv2/blop.lv2/*.so Modified: head/audio/bs2b-lv2/Makefile ============================================================================== --- head/audio/bs2b-lv2/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/audio/bs2b-lv2/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -16,7 +16,7 @@ BUILD_DEPENDS= lv2>0:audio/lv2 \ lvtk>0:audio/lvtk LIB_DEPENDS= libbs2b.so:audio/libbs2b -USES= pkgconfig waf +USES= pkgconfig python:2.7,build waf USE_GITHUB= yes GH_ACCOUNT= nilninull GH_PROJECT= ${PORTNAME}-lv2 Modified: head/audio/cpp-xmms2/Makefile ============================================================================== --- head/audio/cpp-xmms2/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/audio/cpp-xmms2/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -12,7 +12,7 @@ BUILD_DEPENDS= ${LOCALBASE}/include/boost/bind.hpp:dev LIB_DEPENDS= libxmmsclient.so:audio/xmms2 MASTERDIR= ${.CURDIR}/../xmms2 -USES= gnome ssl +USES= gnome python:2.7,build ssl USE_LDCONFIG= yes USE_GNOME= glib20 Modified: head/audio/jalv/Makefile ============================================================================== --- head/audio/jalv/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/audio/jalv/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -23,7 +23,7 @@ LIB_DEPENDS= liblilv-0.so:audio/lilv \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 -USES= compiler:c++11-lang gnome pkgconfig qmake:no_configure,no_env \ +USES= compiler:c++11-lang gnome pkgconfig python:2.7,build qmake:no_configure,no_env \ qt:5 tar:bz2 waf CONFIGURE_ARGS= --no-qt4 USE_CXXSTD= c++11 Modified: head/audio/lvtk/Makefile ============================================================================== --- head/audio/lvtk/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/audio/lvtk/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= lv2>0:audio/lv2 \ ${LOCALBASE}/include/gtkmm-2.4/gtkmm.h:x11-toolkits/gtkmm24 -USES= waf pkgconfig +USES= pkgconfig python:2.7,build waf USE_GITHUB= yes GH_TAGNAME= 7c0ffdf Modified: head/audio/nekobee/Makefile ============================================================================== --- head/audio/nekobee/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/audio/nekobee/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -22,7 +22,7 @@ LIB_DEPENDS= libdssialsacompat.so:audio/libdssialsacom USE_GITHUB= yes GH_ACCOUNT= gordonjcp -USES= gnome pkgconfig waf +USES= gnome pkgconfig python:2.7,build waf USE_GNOME= gtk20 CPPFLAGS+= -I${LOCALBASE}/include/dssi -I${LOCALBASE}/include Modified: head/audio/p5-xmms2/Makefile ============================================================================== --- head/audio/p5-xmms2/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/audio/p5-xmms2/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -12,7 +12,7 @@ LIB_DEPENDS+= libxmmsclient.so:audio/xmms2 MASTERDIR= ${.CURDIR}/../xmms2 -USES= perl5 ssl +USES= perl5 python:2.7,build ssl BROKEN_SSL= openssl Modified: head/audio/patchage/Makefile ============================================================================== --- head/audio/patchage/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/audio/patchage/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -25,7 +25,7 @@ LIB_DEPENDS= libjack.so:audio/jack \ libglademm-2.4.so:devel/libglademm24 \ libflowcanvas.so:x11-toolkits/flowcanvas -USES= compiler:c++11-lang gnome pkgconfig tar:bzip2 waf +USES= compiler:c++11-lang gnome pkgconfig python:2.7,build tar:bzip2 waf USE_CXXSTD= c++11 INSTALLS_ICONS= yes CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \ Modified: head/audio/raul/Makefile ============================================================================== --- head/audio/raul/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/audio/raul/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -15,7 +15,7 @@ LICENSE_COMB= dual LIB_DEPENDS= libboost_date_time.so:devel/boost-libs -USES= gnome pkgconfig tar:bzip2 waf +USES= gnome pkgconfig python:2.7,build tar:bzip2 waf USE_GNOME= glib20 USE_LDCONFIG= yes Modified: head/audio/triceratops-lv2/Makefile ============================================================================== --- head/audio/triceratops-lv2/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/audio/triceratops-lv2/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -18,7 +18,7 @@ BUILD_DEPENDS= lv2>0:audio/lv2 LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 -USES= compiler:c++11-lang gnome pkgconfig waf +USES= compiler:c++11-lang gnome pkgconfig python:2.7,build waf USE_GNOME= cairo cairomm gdkpixbuf2 gtk20 gtkmm24 NO_WRKSUBDIR= yes LDFLAGS_i386= -Wl,-znotext Modified: head/audio/xmms2/Makefile ============================================================================== --- head/audio/xmms2/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/audio/xmms2/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -20,7 +20,7 @@ INSTALL_TARGET= install --without-ldconfig .if !defined(XMMS2_SLAVE) USE_GNOME= glib20 -USES+= gnome readline sqlite +USES+= gnome python:2.7,build readline sqlite USE_LDCONFIG= yes Modified: head/benchmarks/glmark2/Makefile ============================================================================== --- head/benchmarks/glmark2/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/benchmarks/glmark2/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -14,7 +14,7 @@ LICENSE= GPLv3 LIB_DEPENDS= libpng.so:graphics/png -USES= gl jpeg localbase:ldflags pkgconfig waf +USES= gl jpeg localbase:ldflags pkgconfig python:2.7,build waf USE_GL= egl gl glesv2 CONFIGURE_ARGS= --with-flavors=x11-gl,x11-glesv2 --no-opt --no-debug Modified: head/devel/cquery/Makefile ============================================================================== --- head/devel/cquery/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/devel/cquery/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -14,7 +14,7 @@ LICENSE= MIT BUILD_DEPENDS= llvm-config${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} LIB_DEPENDS= libclang.so:devel/llvm${LLVM_DEFAULT} -USES= compiler:c++14-lang waf +USES= compiler:c++14-lang python:2.7,build waf USE_GITHUB= yes GH_ACCOUNT= cquery-project Modified: head/devel/termbox/Makefile ============================================================================== --- head/devel/termbox/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/devel/termbox/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -12,7 +12,7 @@ COMMENT= Legacy-free alternative to ncurses LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -USES= waf +USES= python:2.7,build waf USE_GITHUB= yes GH_ACCOUNT= nsf USE_LDCONFIG= yes Modified: head/graphics/webp-pixbuf-loader/Makefile ============================================================================== --- head/graphics/webp-pixbuf-loader/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/graphics/webp-pixbuf-loader/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -11,7 +11,7 @@ LICENSE= LGPL20+ LIB_DEPENDS= libwebp.so:graphics/webp -USES= gnome perl5 pkgconfig waf +USES= gnome perl5 pkgconfig python:2.7,build waf USE_GNOME= gdkpixbuf2 USE_GITHUB= yes GH_ACCOUNT= aruiz Modified: head/net/norm/Makefile ============================================================================== --- head/net/norm/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/net/norm/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -11,7 +11,7 @@ COMMENT= NACK-Oriented Reliable Multicast (NORM) WRKSRC= ${WRKDIR}/norm-${DISTVERSION} -USES= waf tar:tgz libtool +USES= libtool python:2.7,build tar:tgz waf USE_LDCONFIG= yes PLIST_FILES= include/normApi.h lib/libnorm.so lib/libnorm.so.1 \ lib/libnorm.so.1.0.0 Modified: head/x11-toolkits/flowcanvas/Makefile ============================================================================== --- head/x11-toolkits/flowcanvas/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/x11-toolkits/flowcanvas/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -18,7 +18,7 @@ LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ libgnomecanvasmm-2.6.so:graphics/libgnomecanvasmm26 \ libgtkmm-2.4.so:x11-toolkits/gtkmm24 -USES= compiler:c++11-lang pkgconfig tar:bzip2 waf +USES= compiler:c++11-lang pkgconfig python:2.7,build tar:bzip2 waf USE_CXXSTD= c++11 USE_LDCONFIG= yes Modified: head/x11-toolkits/ntk/Makefile ============================================================================== --- head/x11-toolkits/ntk/Makefile Tue Jan 14 08:57:17 2020 (r522997) +++ head/x11-toolkits/ntk/Makefile Tue Jan 14 09:27:18 2020 (r522998) @@ -16,7 +16,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libpng.so:graphics/png -USES= gnome jpeg localbase:ldflags pkgconfig waf xorg +USES= gnome jpeg localbase:ldflags pkgconfig python:2.7,build waf xorg USE_GITHUB= yes GH_ACCOUNT= original-male USE_GNOME= cairo