mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
3d9a815d9c
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>
45 lines
1.5 KiB
Makefile
45 lines
1.5 KiB
Makefile
PORTNAME= picard
|
|
PORTVERSION= 2.8.5
|
|
PORTREVISION= 2
|
|
CATEGORIES= audio python
|
|
MASTER_SITES= http://ftp.musicbrainz.org/pub/musicbrainz/picard/ \
|
|
ftp://ftp.musicbrainz.org/pub/musicbrainz/picard/ \
|
|
http://ftp.osuosl.org/pub/musicbrainz/picard/
|
|
|
|
MAINTAINER= jhale@FreeBSD.org
|
|
COMMENT= Next generation MusicBrainz Tagger
|
|
WWW= https://picard.musicbrainz.org/
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING.txt
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}discid>=1.0:audio/py-discid@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}mutagen>=1.37:audio/py-mutagen@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}dateutil>=2.7:devel/py-dateutil@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}fasteners>=0.14:devel/py-fasteners@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}yaml>=5.1:devel/py-yaml@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}markdown>=3.2:textproc/py-markdown@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pyjwt>=2.0:www/py-pyjwt@${PY_FLAVOR}
|
|
|
|
USES= gettext pyqt:5 python desktop-file-utils
|
|
USE_LOCALE= en_US.UTF-8
|
|
USE_PYQT= pyqt5:run sip
|
|
USE_PYTHON= autoplist distutils noflavors
|
|
|
|
CONFLICTS_INSTALL= picard-tools py*-python-picard # bin/picard
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-release-${DISTVERSION}
|
|
|
|
OPTIONS_DEFINE= ACOUSTID PLUGINS
|
|
OPTIONS_DEFAULT= PLUGINS
|
|
|
|
ACOUSTID_RUN_DEPENDS= fpcalc:audio/chromaprint
|
|
|
|
PLUGINS_DESC= Install various plugins to extend functionality
|
|
PLUGINS_RUN_DEPENDS= picard-plugins>=2.0:audio/picard-plugins
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/picard/util/_astrcmp*.so
|
|
|
|
.include <bsd.port.mk>
|