From owner-svn-ports-all@FreeBSD.ORG Tue Feb 11 19:57:49 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96B86B7C; Tue, 11 Feb 2014 19:57:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6A70E1AA5; Tue, 11 Feb 2014 19:57:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1BJvnJN057543; Tue, 11 Feb 2014 19:57:49 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1BJvmx7057540; Tue, 11 Feb 2014 19:57:48 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201402111957.s1BJvmx7057540@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Tue, 11 Feb 2014 19:57:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343806 - head/devel/py-memoryprofiler 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.17 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: Tue, 11 Feb 2014 19:57:49 -0000 Author: rm Date: Tue Feb 11 19:57:48 2014 New Revision: 343806 URL: http://svnweb.freebsd.org/changeset/ports/343806 QAT: https://qat.redports.org/buildarchive/r343806/ Log: - update to 0.30 - clarify license PR: 186659 Submitted by: Johannes Jost Meixner (maintainer) Modified: head/devel/py-memoryprofiler/Makefile head/devel/py-memoryprofiler/distinfo head/devel/py-memoryprofiler/pkg-descr Modified: head/devel/py-memoryprofiler/Makefile ============================================================================== --- head/devel/py-memoryprofiler/Makefile Tue Feb 11 19:57:14 2014 (r343805) +++ head/devel/py-memoryprofiler/Makefile Tue Feb 11 19:57:48 2014 (r343806) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= memoryprofiler -PORTVERSION= 0.30 +PORTVERSION= 0.31 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,7 +11,7 @@ DISTNAME= memory_profiler-${PORTVERSION} MAINTAINER= xmj@chaot.net COMMENT= Line-by-line and process memory consumption analysis -LICENSE= BSD +LICENSE= BSD2CLAUSE OPTIONS_DEFINE= PSUTIL PSUTIL_DESC= Use psutil for better performance @@ -21,7 +21,6 @@ OPTIONSFILE?= ${PORT_DBDIR}/py-${PORTNAM USE_PYTHON= yes USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= memory_profiler PYDISTUTILS_AUTOPLIST= yes .include Modified: head/devel/py-memoryprofiler/distinfo ============================================================================== --- head/devel/py-memoryprofiler/distinfo Tue Feb 11 19:57:14 2014 (r343805) +++ head/devel/py-memoryprofiler/distinfo Tue Feb 11 19:57:48 2014 (r343806) @@ -1,2 +1,2 @@ -SHA256 (memory_profiler-0.30.tar.gz) = 6071f428fa27851efec2bf6be1833567eef986c3dbf8f4571e2acf1a30b031a1 -SIZE (memory_profiler-0.30.tar.gz) = 20112 +SHA256 (memory_profiler-0.31.tar.gz) = b492467608dc1a4594b7b578dc1aab46c1c926731baf293b1f494eeda0a1a35f +SIZE (memory_profiler-0.31.tar.gz) = 21674 Modified: head/devel/py-memoryprofiler/pkg-descr ============================================================================== --- head/devel/py-memoryprofiler/pkg-descr Tue Feb 11 19:57:14 2014 (r343805) +++ head/devel/py-memoryprofiler/pkg-descr Tue Feb 11 19:57:48 2014 (r343806) @@ -1,5 +1,5 @@ memory_profiler is a python module for monitoring memory consumption of a -process as well as line-by-line analysis of memory consumption for python +process as well as line-by-line analysis of memory consumption for python programs. It is a pure python module and has the psutil module as optional (but highly recommended) dependencies.