mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 18:46:38 -04:00
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>
60 lines
2 KiB
Makefile
60 lines
2 KiB
Makefile
PORTNAME= elasticsearch
|
|
PORTVERSION= 5.5.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= textproc python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
PKGNAMESUFFIX= 5
|
|
|
|
MAINTAINER= elastic@FreeBSD.org
|
|
COMMENT= Official Python low-level client for Elasticsearch
|
|
WWW= https://elasticsearch-py.readthedocs.org/en/master/
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}urllib3>=1.8.2:net/py-urllib3@${PY_FLAVOR}
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.0.0:www/py-requests@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pyaml>0:textproc/py-pyaml@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}coverage>0:devel/py-coverage@${PY_FLAVOR}
|
|
|
|
USES= cpe python
|
|
CPE_VENDOR= elastic
|
|
|
|
USE_GITHUB= yes # tests not packaged with sdist
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
GH_ACCOUNT= elastic
|
|
GH_PROJECT= elasticsearch-py
|
|
GH_TAGNAME= 719a94ab4
|
|
|
|
# Using (5.5.2) commit hash in 5.5.x branch not the 5.5.2 tag
|
|
# because that branch has the module and package name set as
|
|
# 'elastisearch' not 'elasticsearch5'. The reason this is
|
|
# needed (for now) is because:
|
|
#
|
|
# 1) Upstream doesn't package tests with the sdist, so
|
|
# we need USE_GITHUB until they do.
|
|
# 2) This port fetches distfile from the *elastisearch*
|
|
# PyPI package *NOT* the 'elasticsearch5' PyPI package,
|
|
# which has the different internal package name.
|
|
#
|
|
# Upstream made separate (versioned) packages on PyPI
|
|
# available so that they didn't conflict on install.
|
|
# The elasticsearchX python ports should be changed to
|
|
# use these version-specific package names/sources, at
|
|
# which point CONFLICTS can be removed.
|
|
|
|
CONFLICTS= ${PYTHON_PKGNAMEPREFIX}elasticsearch
|
|
|
|
NO_ARCH= yes
|
|
|
|
# All tests pass with or without elasticsearch server running, but without
|
|
# it running, connection errors are displayed. upstream test runs display these
|
|
# errors too. More tests run when elasticsearch server is running.
|
|
|
|
do-test:
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
|
|
|
|
.include <bsd.port.mk>
|