View | Details | Raw Unified | Return to bug 228665 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (+32 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	Fiona
4
DISTVERSION=	1.7.11
5
DISTVERSIONSUFFIX=	.post2
6
CATEGORIES=	graphics python
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
10
MAINTAINER=	lbartoletti@tuxfamily.org
11
COMMENT=	OGR's neat and nimble API for Python programmers
12
13
LICENSE=	BSD3CLAUSE
14
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}cligj>=0.4:devel/py-cligj@${FLAVOR} \
16
		${PYTHON_PKGNAMEPREFIX}click-plugins>0:devel/py-click-plugins@${FLAVOR} \
17
		${PYTHON_PKGNAMEPREFIX}six>=1.7:devel/py-six@${FLAVOR} \
18
		${PYTHON_PKGNAMEPREFIX}munch>0:devel/py-munch@${FLAVOR} \
19
		${PYTHON_PKGNAMEPREFIX}Shapely>0:devel/py-shapely@${FLAVOR} \
20
		${PY_ENUM34}
21
LIB_DEPENDS+=	libgdal.so:graphics/gdal
22
23
USES=		python
24
USE_PYTHON=	autoplist distutils cython
25
26
.include <bsd.port.pre.mk>
27
.if ${PYTHON_REL} < 2700
28
RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}ordereddict>0:devel/py-ordereddict@${FLAVOR} \
29
		${PYTHON_PKGNAMEPREFIX}argparse>0:devel/py-argparse@${FLAVOR}
30
.endif
31
32
.include <bsd.port.post.mk>
(-)distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1527878199
2
SHA256 (Fiona-1.7.11.post2.tar.gz) = 5804c6f5f7e02cf1f95ca404c22653dd47d64e4496a0ba7af5a2d6b2051b872a
3
SIZE (Fiona-1.7.11.post2.tar.gz) = 726936
(-)pkg-descr (+9 lines)
Line 0 Link Here
1
Fiona is designed to be simple and dependable. It focuses on reading and 
2
writing data in standard Python IO style and relies upon familiar Python 
3
types and protocols such as files, dictionaries, mappings, and iterators 
4
instead of classes specific to OGR. Fiona can read and write real-world 
5
data using multi-layered GIS formats and zipped virtual file systems and 
6
integrates readily with other Python GIS packages such as pyproj, Rtree, 
7
and Shapely. Fiona is supported only on CPython versions 2.7 and 3.4+.
8
9
WWW: https://pypi.python.org/pypi/fiona

Return to bug 228665