From owner-svn-ports-all@freebsd.org Wed Jan 11 10:51:55 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB5C0CAB8BB; Wed, 11 Jan 2017 10:51:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8446F1E42; Wed, 11 Jan 2017 10:51:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0BAps9I019891; Wed, 11 Jan 2017 10:51:54 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0BAps5n019887; Wed, 11 Jan 2017 10:51:54 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201701111051.v0BAps5n019887@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 11 Jan 2017 10:51:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431171 - in head/devel: . py-rubymarshal X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jan 2017 10:51:55 -0000 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 +# $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 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