From owner-svn-ports-head@freebsd.org Sun Jan 21 11:54:58 2018 Return-Path: Delivered-To: svn-ports-head@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 96909EC7B0E; Sun, 21 Jan 2018 11:54:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 70A4D68437; Sun, 21 Jan 2018 11:54:58 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ADE0D31BC; Sun, 21 Jan 2018 11:54:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0LBsvfw088799; Sun, 21 Jan 2018 11:54:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0LBsvsf088795; Sun, 21 Jan 2018 11:54:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201801211154.w0LBsvsf088795@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 21 Jan 2018 11:54:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r459590 - in head/devel: . py-dis3 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-dis3 X-SVN-Commit-Revision: 459590 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jan 2018 11:54:58 -0000 Author: sunpoet Date: Sun Jan 21 11:54:56 2018 New Revision: 459590 URL: https://svnweb.freebsd.org/changeset/ports/459590 Log: Add py-dis3 0.1.2 dis3 is a Python 2.7 backport of the dis module from Python 3.5. WWW: https://pypi.python.org/pypi/dis3 WWW: https://github.com/KeyWeeUsr/python-dis3 Added: head/devel/py-dis3/ head/devel/py-dis3/Makefile (contents, props changed) head/devel/py-dis3/distinfo (contents, props changed) head/devel/py-dis3/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jan 21 11:46:47 2018 (r459589) +++ head/devel/Makefile Sun Jan 21 11:54:56 2018 (r459590) @@ -4382,6 +4382,7 @@ SUBDIR += py-diazo SUBDIR += py-dill SUBDIR += py-dirspec + SUBDIR += py-dis3 SUBDIR += py-distorm SUBDIR += py-django-rq SUBDIR += py-django-rq-dashboard Added: head/devel/py-dis3/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-dis3/Makefile Sun Jan 21 11:54:56 2018 (r459590) @@ -0,0 +1,20 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= dis3 +PORTVERSION= 0.1.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Python 2.7 backport of the "dis" module from Python 3.5+ + +LICENSE= MIT PSFL +LICENSE_COMB= dual + +NO_ARCH= yes +USE_PYTHON= autoplist distutils +USES= python:2.7 + +.include Added: head/devel/py-dis3/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-dis3/distinfo Sun Jan 21 11:54:56 2018 (r459590) @@ -0,0 +1,3 @@ +TIMESTAMP = 1516475648 +SHA256 (dis3-0.1.2.tar.gz) = b98e5a9e3d8df54396219c0093fed1454416cec2b74ec15dc63e6a72b3bab94a +SIZE (dis3-0.1.2.tar.gz) = 14466 Added: head/devel/py-dis3/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-dis3/pkg-descr Sun Jan 21 11:54:56 2018 (r459590) @@ -0,0 +1,4 @@ +dis3 is a Python 2.7 backport of the dis module from Python 3.5. + +WWW: https://pypi.python.org/pypi/dis3 +WWW: https://github.com/KeyWeeUsr/python-dis3