diff --git a/devel/Makefile b/devel/Makefile index af7243efd9d6..e9b277b9d3d0 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3815,6 +3815,7 @@ SUBDIR += py-optik SUBDIR += py-orbit SUBDIR += py-ordereddict + SUBDIR += py-palm SUBDIR += py-parsedatetime SUBDIR += py-parsing SUBDIR += py-path.py diff --git a/devel/py-palm/Makefile b/devel/py-palm/Makefile new file mode 100644 index 000000000000..27e5b752d223 --- /dev/null +++ b/devel/py-palm/Makefile @@ -0,0 +1,21 @@ +# Created by: Veniamin Gvozdikov +# $FreeBSD$ + +PORTNAME= palm +PORTVERSION= 0.1.7 +CATEGORIES= devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= vg@FreeBSD.org +COMMENT= Protobufs Are Lightweight Messages + +LICENSE= BSD2CLAUSE + +USES= python +USE_PYTHON= autoplist distutils + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHON_LIBDIR}/site-packages/${PORTNAME}/${PORTNAME}.so + +.include diff --git a/devel/py-palm/distinfo b/devel/py-palm/distinfo new file mode 100644 index 000000000000..617357133626 --- /dev/null +++ b/devel/py-palm/distinfo @@ -0,0 +1,2 @@ +SHA256 (palm-0.1.7.tar.gz) = 4d6f4cb18ae861ac99c27abb454fdce06a627aa326fb6d8e81ce2c5d0f483ac7 +SIZE (palm-0.1.7.tar.gz) = 97062 diff --git a/devel/py-palm/pkg-descr b/devel/py-palm/pkg-descr new file mode 100644 index 000000000000..719773dfa2ef --- /dev/null +++ b/devel/py-palm/pkg-descr @@ -0,0 +1,8 @@ +PALM is a library for using Google's protocol buffers in Python. It has +a fast core written in C with a thin Cython binding to Python. The goal +of palm was to make improvements to the Google reference implementation, +namely: + * Make the library significantly faster + * Clean up the API + +WWW: https://github.com/bumptech/palm/