View | Details | Raw Unified | Return to bug 241888
Collapse All | Expand All

(-)/usr/ports/textproc/py-elasticsearch-dsl7/Makefile (+26 lines)
Line 0 Link Here
1
# Created by: Dan Langille <dvl@FreeBSD.org>
2
# $FreeBSD$
3
4
PORTNAME=	elasticsearch-dsl
5
PORTVERSION=	7.1.0
6
CATEGORIES=	textproc python
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
PKGNAMESUFFIX=  7
10
11
MAINTAINER=	jbaggs2016@gmail.com
12
COMMENT=	High level Python client for Elasticsearch
13
14
LICENSE=	APACHE20
15
LICENSE_FILE=	${WRKSRC}/LICENSE
16
17
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${PY_FLAVOR} \
18
		${PYTHON_PKGNAMEPREFIX}elasticsearch7>=7.0.5:textproc/py-elasticsearch7@${PY_FLAVOR} \
19
		${PY_IPADDRESS} \
20
		${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR}
21
22
USES=		python
23
USE_PYTHON=	autoplist concurrent distutils
24
NO_ARCH=	yes
25
26
.include <bsd.port.mk>
(-)/usr/ports/textproc/py-elasticsearch-dsl7/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1573310134
2
SHA256 (elasticsearch-dsl-7.1.0.tar.gz) = 3f860e0304d703f63b458fea3782f09a823ab07da7ee84ae4bff1aa63e22aedb
3
SIZE (elasticsearch-dsl-7.1.0.tar.gz) = 52824
(-)/usr/ports/textproc/py-elasticsearch-dsl7/pkg-descr (+17 lines)
Line 0 Link Here
1
Elasticsearch DSL is a high-level library whose aim is to help with writing
2
and running queries against Elasticsearch. It is built on top of the official
3
low-level client (elasticsearch-py).
4
5
It provides a more convenient and idiomatic way to write and manipulate
6
queries. It stays close to the Elasticsearch JSON DSL, mirroring its terminology
7
and structure. It exposes the whole range of the DSL from Python either directly
8
using defined classes or a queryset-like expressions.
9
10
It also provides an optional wrapper for working with documents as Python
11
objects: defining mappings, retrieving and saving documents, wrapping the
12
document data in user-defined classes.
13
14
To use the other Elasticsearch APIs (eg. cluster health) just use the underlying
15
client.
16
17
WWW: https://pypi.org/project/elasticsearch-dsl/

Return to bug 241888