Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Jul 2018 04:25:13 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r475626 - in head/misc: . py-pykml
Message-ID:  <201807290425.w6T4PDsS078254@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sun Jul 29 04:25:13 2018
New Revision: 475626
URL: https://svnweb.freebsd.org/changeset/ports/475626

Log:
  New port: misc/py-pykml: Python KML library, language for encoding, annotating geographic data

Added:
  head/misc/py-pykml/
  head/misc/py-pykml/Makefile   (contents, props changed)
  head/misc/py-pykml/distinfo   (contents, props changed)
  head/misc/py-pykml/pkg-descr   (contents, props changed)
Modified:
  head/misc/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Sun Jul 29 04:21:34 2018	(r475625)
+++ head/misc/Makefile	Sun Jul 29 04:25:13 2018	(r475626)
@@ -425,6 +425,7 @@
     SUBDIR += py-progressbar2
     SUBDIR += py-progressbar231
     SUBDIR += py-pyfiglet
+    SUBDIR += py-pykml
     SUBDIR += py-pyprind
     SUBDIR += py-python-geohash
     SUBDIR += py-python-utils

Added: head/misc/py-pykml/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-pykml/Makefile	Sun Jul 29 04:25:13 2018	(r475626)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	pykml
+DISTVERSION=	0.1.3
+CATEGORIES=	misc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Python KML library, language for encoding, annotating geographic data
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}lxml>=2.2.6:devel/py-lxml@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils concurrent autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/misc/py-pykml/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-pykml/distinfo	Sun Jul 29 04:25:13 2018	(r475626)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1532835706
+SHA256 (pykml-0.1.3.tar.gz) = e1a133e582f0b4652a6b00bac970b446d90580664e5a634a670731c990ff9f05
+SIZE (pykml-0.1.3.tar.gz) = 43925

Added: head/misc/py-pykml/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-pykml/pkg-descr	Sun Jul 29 04:25:13 2018	(r475626)
@@ -0,0 +1,13 @@
+pyKML is a Python package for creating, parsing, manipulating, and validating
+KML, a language for encoding and annotating geographic data.
+
+pyKML is based on the lxml.objectify API which provides a Pythonic API for
+working with XML documents. pyKML adds additional functionality specific to the
+KML language.
+
+KML comes in several flavors. pyKML can be used with KML documents that follow
+the base OGC KML specification, the Google Extensions Namespace, or a
+user-supplied extension to the base KML specification (defined by an XML Schema
+document).
+
+WWW: https://pythonhosted.org/pykml



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807290425.w6T4PDsS078254>