From owner-svn-ports-all@freebsd.org Fri Feb 9 14:08:54 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 60D08F069CD; Fri, 9 Feb 2018 14:08:54 +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 E8DDD85783; Fri, 9 Feb 2018 14:08:52 +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 A3A4B25CB8; Fri, 9 Feb 2018 14:08:52 +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 w19E8qtR067952; Fri, 9 Feb 2018 14:08:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w19E8qgW067949; Fri, 9 Feb 2018 14:08:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802091408.w19E8qgW067949@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Feb 2018 14:08:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461312 - head/devel/py-ipdb X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-ipdb X-SVN-Commit-Revision: 461312 X-SVN-Commit-Repository: ports 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.25 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: Fri, 09 Feb 2018 14:08:54 -0000 Author: sunpoet Date: Fri Feb 9 14:08:52 2018 New Revision: 461312 URL: https://svnweb.freebsd.org/changeset/ports/461312 Log: Update to 0.10.3 - Update LICENSE - Allow concurrent installation (USE_PYTHON=concurrent) - Add PyPI as primary WWW - Take maintainership Changes: https://github.com/gotcha/ipdb/blob/master/HISTORY.txt Modified: head/devel/py-ipdb/Makefile head/devel/py-ipdb/distinfo head/devel/py-ipdb/pkg-descr Modified: head/devel/py-ipdb/Makefile ============================================================================== --- head/devel/py-ipdb/Makefile Fri Feb 9 14:08:46 2018 (r461311) +++ head/devel/py-ipdb/Makefile Fri Feb 9 14:08:52 2018 (r461312) @@ -1,22 +1,21 @@ # $FreeBSD$ PORTNAME= ipdb -PORTVERSION= 0.8.1 -PORTREVISION= 1 +PORTVERSION= 0.10.3 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= IPython-enabled pdb -LICENSE= GPLv2+ +LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython>=0.10:devel/ipython@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython>=0.10.2:devel/ipython@${FLAVOR} -USES= python zip -USE_PYTHON= distutils autoplist NO_ARCH= yes +USES= python +USE_PYTHON= autoplist concurrent distutils .include Modified: head/devel/py-ipdb/distinfo ============================================================================== --- head/devel/py-ipdb/distinfo Fri Feb 9 14:08:46 2018 (r461311) +++ head/devel/py-ipdb/distinfo Fri Feb 9 14:08:52 2018 (r461312) @@ -1,2 +1,3 @@ -SHA256 (ipdb-0.8.1.zip) = 1763d1564113f5eb89df77879a8d3213273c4d7ff93dcb37a3070cdf0c34fd7c -SIZE (ipdb-0.8.1.zip) = 20522 +TIMESTAMP = 1517678688 +SHA256 (ipdb-0.10.3.tar.gz) = 9ea256b4280fbe12840fb9dfc3ce498c6c6de03352eca293e4400b0dfbed2b28 +SIZE (ipdb-0.10.3.tar.gz) = 9356 Modified: head/devel/py-ipdb/pkg-descr ============================================================================== --- head/devel/py-ipdb/pkg-descr Fri Feb 9 14:08:46 2018 (r461311) +++ head/devel/py-ipdb/pkg-descr Fri Feb 9 14:08:52 2018 (r461312) @@ -2,4 +2,5 @@ ipdb exports functions to access the IPython debugger, completion, syntax highlighting, better tracebacks, better introspection with the same interface as the pdb module. +WWW: https://pypi.python.org/pypi/ipdb WWW: https://github.com/gotcha/ipdb