Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 Oct 2014 12:58:56 +0000 (UTC)
From:      Veniamin Gvozdikov <vg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r370523 - in head/devel: . py-palm
Message-ID:  <201410091258.s99CwuFa068722@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: vg
Date: Thu Oct  9 12:58:55 2014
New Revision: 370523
URL: https://svnweb.freebsd.org/changeset/ports/370523
QAT: https://qat.redports.org/buildarchive/r370523/

Log:
  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/

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Oct  9 12:53:42 2014	(r370522)
+++ head/devel/Makefile	Thu Oct  9 12:58:55 2014	(r370523)
@@ -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

Added: head/devel/py-palm/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-palm/Makefile	Thu Oct  9 12:58:55 2014	(r370523)
@@ -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>

Added: head/devel/py-palm/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-palm/distinfo	Thu Oct  9 12:58:55 2014	(r370523)
@@ -0,0 +1,2 @@
+SHA256 (palm-0.1.7.tar.gz) = 4d6f4cb18ae861ac99c27abb454fdce06a627aa326fb6d8e81ce2c5d0f483ac7
+SIZE (palm-0.1.7.tar.gz) = 97062

Added: head/devel/py-palm/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-palm/pkg-descr	Thu Oct  9 12:58:55 2014	(r370523)
@@ -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/



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