Commit 3d9a815d authored by Rene Ladan's avatar Rene Ladan
Browse files

all: remove explicit versions in USES=python for "3.x+"

The logic in USES=python will automatically convert this to 3.8+ by
itself.

Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.

finance/quickfix: mark BROKEN with PYTHON

libtool: compile:  c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++ -DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable -Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi -Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings -Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x -MT _quickfix_la-QuickfixPython.lo -MD -MP -MF .deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp  -fPIC -DPIC -o .libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean '-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
          ^~~~~~~~~~
1 warning and 1 error generated.

Reviewed by:	portmgr, vishwin, yuri
Differential Revision:	<https://reviews.freebsd.org/D40568>
parent c58ef91e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ MOZILLA_VER?= ${PORTVERSION}
MOZILLA_BIN?=	${PORTNAME}-bin
MOZILLA_EXEC_NAME?=${MOZILLA}
USES+=		compiler:c++17-lang cpe gl gmake gnome iconv localbase perl5 pkgconfig \
			python:3.6+,build desktop-file-utils
			python:build desktop-file-utils
CPE_VENDOR?=mozilla
USE_GL=		gl
USE_GNOME=	cairo gdkpixbuf2 gtk30
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ RUN_DEPENDS= gsettings-desktop-schemas>=3.2.0:devel/gsettings-desktop-schemas \
		at-spi2-core>=2.1.5:accessibility/at-spi2-core

NO_ARCH=	yes
USES=		gettext gmake gnome localbase:ldflags pkgconfig python:3.4+ shebangfix tar:xz
USES=		gettext gmake gnome localbase:ldflags pkgconfig python shebangfix tar:xz
USE_GNOME=	gtk30 pygobject3
GNU_CONFIGURE=	yes
SHEBANG_FILES=	plugins/ipython_view.py
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ LIB_DEPENDS= libclutter-glx-1.0.so:graphics/clutter \
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}atspi>=2.1.91:accessibility/py-atspi@${PY_FLAVOR}

USES=		gettext gl gmake gnome libtool localbase pathfix \
		pkgconfig python:3.3+ shebangfix tar:xz xorg
		pkgconfig python shebangfix tar:xz xorg
USE_GNOME=	cairo gdkpixbuf2 gtk30 intlhack introspection:build libxml2 \
		libxslt:build pygobject3
USE_PYTHON=	py3kplist
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ PORTSCOUT= limitw:1,even

NO_ARCH=	yes
USES=		cpe gettext gmake gnome localbase pathfix pkgconfig \
		python:3.4+ tar:xz
		python tar:xz
USE_GNOME=	gtk30 pygobject3
GNU_CONFIGURE=	yes
CPE_VENDOR=	gnome
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ RUN_DEPENDS= ${LOCALBASE}/libexec/at-spi2-registryd:accessibility/at-spi2-core
CONFLICTS=	at-spi-1.[0-9]*
PORTSCOUT=	limitw:1,even

USES=		gettext gmake gnome localbase pathfix pkgconfig python:3.6+ tar:xz
USES=		gettext gmake gnome localbase pathfix pkgconfig python tar:xz
USE_PYTHON=	flavors py3kplist
USE_GNOME=	intlhack pygobject3
GNU_CONFIGURE=	yes
Loading