1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00

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/
This commit is contained in:
Veniamin Gvozdikov 2014-10-09 12:58:55 +00:00
parent 54838288f1
commit 52b5850ca0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=370523
4 changed files with 32 additions and 0 deletions

View File

@ -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

21
devel/py-palm/Makefile Normal file
View File

@ -0,0 +1,21 @@
# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
# $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 <bsd.port.mk>

2
devel/py-palm/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (palm-0.1.7.tar.gz) = 4d6f4cb18ae861ac99c27abb454fdce06a627aa326fb6d8e81ce2c5d0f483ac7
SIZE (palm-0.1.7.tar.gz) = 97062

8
devel/py-palm/pkg-descr Normal file
View File

@ -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/