Date: Wed, 11 Jan 2017 10:51:54 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431171 - in head/devel: . py-rubymarshal Message-ID: <201701111051.v0BAps5n019887@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Wed Jan 11 10:51:54 2017 New Revision: 431171 URL: https://svnweb.freebsd.org/changeset/ports/431171 Log: Read and write Ruby-marshalled data. Only basics Ruby data types can be read and written: * `float`, * `bool`, * `int`, * `str` (mapped to `unicode` in Python 2), * `nil` (mapped to `None` in Python), * `array` (mapped to `list`), * `hash` (mapped to `dict`), * symbols and other classes are mapped to specific Python classes. WWW: https://pypi.python.org/pypi/rubymarshal Added: head/devel/py-rubymarshal/ head/devel/py-rubymarshal/Makefile (contents, props changed) head/devel/py-rubymarshal/distinfo (contents, props changed) head/devel/py-rubymarshal/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jan 11 10:26:33 2017 (r431170) +++ head/devel/Makefile Wed Jan 11 10:51:54 2017 (r431171) @@ -4604,6 +4604,7 @@ SUBDIR += py-rtslib-fb SUBDIR += py-ruamel.ordereddict SUBDIR += py-ruamel.yaml + SUBDIR += py-rubymarshal SUBDIR += py-ruledispatch SUBDIR += py-sanetime SUBDIR += py-sarge Added: head/devel/py-rubymarshal/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rubymarshal/Makefile Wed Jan 11 10:51:54 2017 (r431171) @@ -0,0 +1,21 @@ +# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= rubymarshal +PORTVERSION= 1.0.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= Read and write Ruby-marshalled data + +LICENSE= WTFPL +LICENSE_NAME= WTFPL +LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-rubymarshal/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rubymarshal/distinfo Wed Jan 11 10:51:54 2017 (r431171) @@ -0,0 +1,3 @@ +TIMESTAMP = 1484074388 +SHA256 (rubymarshal-1.0.3.tar.gz) = 2227fbfcb5a9b34f603d06f4dd0dc76f84af2b897bdd26fcaa340f8d025b348c +SIZE (rubymarshal-1.0.3.tar.gz) = 9386 Added: head/devel/py-rubymarshal/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rubymarshal/pkg-descr Wed Jan 11 10:51:54 2017 (r431171) @@ -0,0 +1,13 @@ +Read and write Ruby-marshalled data. +Only basics Ruby data types can be read and written: + + * `float`, + * `bool`, + * `int`, + * `str` (mapped to `unicode` in Python 2), + * `nil` (mapped to `None` in Python), + * `array` (mapped to `list`), + * `hash` (mapped to `dict`), + * symbols and other classes are mapped to specific Python classes. + +WWW: https://pypi.python.org/pypi/rubymarshal
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701111051.v0BAps5n019887>