Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id DF3C77A1AF for ; Fri, 17 Mar 2017 21:30:37 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 5ABCF855FC; Fri, 17 Mar 2017 21:30:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DD251855F9 for ; Fri, 17 Mar 2017 21:30:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id YXPIpfCB3OsF for ; Fri, 17 Mar 2017 21:30:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5CAC98556B for ; Fri, 17 Mar 2017 21:30:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 58104FBE4; Fri, 17 Mar 2017 21:30:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1489786236122160" MIME-Version: 1.0 Date: Fri, 17 Mar 2017 21:30:36 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/devel/py-line_profiler To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20170317213036.58104FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1489786236122160 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Fri Mar 17 21:30:36 UTC 2017 Added Files: pkgsrc/devel/py-line_profiler: DESCR Makefile PLIST distinfo Log Message: Import py-line_profiler-2.0 line_profiler will profile the time individual lines of code take to execute. The profiler is implemented in C via Cython in order to reduce the overhead of profiling. Also included is the script kernprof, which can be used to conveniently profile Python applications and scripts either with line_profiler or with the function-level profiling tools in the Python standard library. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-line_profiler/DESCR \ pkgsrc/devel/py-line_profiler/Makefile \ pkgsrc/devel/py-line_profiler/PLIST \ pkgsrc/devel/py-line_profiler/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1489786236122160 Content-Disposition: inline Content-Length: 2917 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/py-line_profiler/DESCR diff -u /dev/null pkgsrc/devel/py-line_profiler/DESCR:1.1 --- /dev/null Fri Mar 17 21:30:36 2017 +++ pkgsrc/devel/py-line_profiler/DESCR Fri Mar 17 21:30:35 2017 @@ -0,0 +1,6 @@ +line_profiler will profile the time individual lines of code take to +execute. The profiler is implemented in C via Cython in order to reduce +the overhead of profiling. Also included is the script kernprof, which +can be used to conveniently profile Python applications and scripts +either with line_profiler or with the function-level profiling tools in +the Python standard library. Index: pkgsrc/devel/py-line_profiler/Makefile diff -u /dev/null pkgsrc/devel/py-line_profiler/Makefile:1.1 --- /dev/null Fri Mar 17 21:30:36 2017 +++ pkgsrc/devel/py-line_profiler/Makefile Fri Mar 17 21:30:35 2017 @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1 2017/03/17 21:30:35 minskim Exp $ + +DISTNAME= line_profiler-2.0 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=l/line_profiler/} + +MAINTAINER= minskim@NetBSD.org +HOMEPAGE= https://github.com/rkern/line_profiler +COMMENT= Python line-by-line profiler +LICENSE= modified-bsd + +DEPENDS+= ${PYPKGPREFIX}-ipython>0.13:../../devel/py-ipython + +USE_LANGUAGES= c + +.include "../../lang/python/egg.mk" + +post-install: + ${MV} ${DESTDIR}${PREFIX}/bin/kernprof \ + ${DESTDIR}${PREFIX}/bin/kernprof${PYVERSSUFFIX} + +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-line_profiler/PLIST diff -u /dev/null pkgsrc/devel/py-line_profiler/PLIST:1.1 --- /dev/null Fri Mar 17 21:30:36 2017 +++ pkgsrc/devel/py-line_profiler/PLIST Fri Mar 17 21:30:35 2017 @@ -0,0 +1,15 @@ +@comment $NetBSD: PLIST,v 1.1 2017/03/17 21:30:35 minskim Exp $ +bin/kernprof${PYVERSSUFFIX} +${PYSITELIB}/kernprof.pyo +${PYSITELIB}/kernprof.pyc +${PYSITELIB}/line_profiler.pyo +${PYSITELIB}/line_profiler.pyc +${PYSITELIB}/_line_profiler.so +${PYSITELIB}/kernprof.py +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/line_profiler.py Index: pkgsrc/devel/py-line_profiler/distinfo diff -u /dev/null pkgsrc/devel/py-line_profiler/distinfo:1.1 --- /dev/null Fri Mar 17 21:30:36 2017 +++ pkgsrc/devel/py-line_profiler/distinfo Fri Mar 17 21:30:35 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2017/03/17 21:30:35 minskim Exp $ + +SHA1 (line_profiler-2.0.tar.gz) = 3b09b4d07c7403d9be3d7874b40e2e7da34b1e70 +RMD160 (line_profiler-2.0.tar.gz) = 60e207075905adf868123edf911773fff4d803eb +SHA512 (line_profiler-2.0.tar.gz) = c0335fc69fb47c150fa5555af4f7fdf4b172ca12ee6512e04ba854c4a81f3e6ee5594e484d11c8ea7e9e8048e3f3b8661db52332d4ac645195a0e050acea4ecb +Size (line_profiler-2.0.tar.gz) = 68478 bytes --_----------=_1489786236122160--