Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Jun 2015 17:03:40 +0000 (UTC)
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r389078 - in head/converters: . py-rencode
Message-ID:  <201506101703.t5AH3ed1037114@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jkim
Date: Wed Jun 10 17:03:39 2015
New Revision: 389078
URL: https://svnweb.freebsd.org/changeset/ports/389078

Log:
  The rencode module is similar to bencode from the BitTorrent project.
  For complex, heterogeneous data structures with many small elements,
  r-encodings take up significantly less space than b-encodings.
  
  This version of rencode is a complete rewrite in Cython to attempt to
  increase the performance over the pure Python module written by Petru
  Paler, Connelly Barnes et al.  Later, it was forked, enhanced, and
  bundled with Deluge.  Now, it is re-packaged and distributed by Xpra.
  
  WWW: https://github.com/aresch/rencode

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

Modified: head/converters/Makefile
==============================================================================
--- head/converters/Makefile	Wed Jun 10 17:01:03 2015	(r389077)
+++ head/converters/Makefile	Wed Jun 10 17:03:39 2015	(r389078)
@@ -141,6 +141,7 @@
     SUBDIR += py-bsdconv
     SUBDIR += py-iconv
     SUBDIR += py-pisa
+    SUBDIR += py-rencode
     SUBDIR += py-unidecode
     SUBDIR += py-zfec
     SUBDIR += rcctools

Added: head/converters/py-rencode/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/py-rencode/Makefile	Wed Jun 10 17:03:39 2015	(r389078)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	rencode
+PORTVERSION=	1.0.3
+CATEGORIES=	converters devel python
+MASTER_SITES=	https://www.xpra.org/src/
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	ports@FreeBSD.org
+COMMENT=	R-encoding and r-decoding implementation
+
+LICENSE=	GPLv3
+
+BUILD_DEPENDS=	cython:${PORTSDIR}/lang/cython
+
+USE_PYTHON=	autoplist distutils
+USES=		python tar:xz
+
+.include <bsd.port.mk>

Added: head/converters/py-rencode/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/py-rencode/distinfo	Wed Jun 10 17:03:39 2015	(r389078)
@@ -0,0 +1,2 @@
+SHA256 (rencode-1.0.3.tar.xz) = f0e48d55b5fd6c5998416fa4220d51f91008aef72560ec351dd35b3872d0b9a9
+SIZE (rencode-1.0.3.tar.xz) = 21184

Added: head/converters/py-rencode/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/py-rencode/pkg-descr	Wed Jun 10 17:03:39 2015	(r389078)
@@ -0,0 +1,10 @@
+The rencode module is similar to bencode from the BitTorrent project.
+For complex, heterogeneous data structures with many small elements,
+r-encodings take up significantly less space than b-encodings.
+
+This version of rencode is a complete rewrite in Cython to attempt to
+increase the performance over the pure Python module written by Petru
+Paler, Connelly Barnes et al.  Later, it was forked, enhanced, and
+bundled with Deluge.  Now, it is re-packaged and distributed by Xpra.
+
+WWW: https://github.com/aresch/rencode



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