From owner-svn-ports-head@freebsd.org Sun Feb 25 05:32:48 2018 Return-Path: Delivered-To: svn-ports-head@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 55B72F07607; Sun, 25 Feb 2018 05:32:48 +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 7CA7E6B7EE; Sun, 25 Feb 2018 05:32:46 +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 ADCCD78A; Sun, 25 Feb 2018 05:32:46 +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 w1P5WkQ8064653; Sun, 25 Feb 2018 05:32:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1P5WkbC064650; Sun, 25 Feb 2018 05:32:46 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802250532.w1P5WkbC064650@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, 25 Feb 2018 05:32:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462914 - head/devel/py-memory_profiler X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-memory_profiler X-SVN-Commit-Revision: 462914 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, 25 Feb 2018 05:32:48 -0000 Author: sunpoet Date: Sun Feb 25 05:32:46 2018 New Revision: 462914 URL: https://svnweb.freebsd.org/changeset/ports/462914 Log: Update to 0.52.0 - Update COMMENT - Update LICENSE - Add LICENSE_FILE - Remove PSUTIL option: psutil is no longer optional - Allow concurrent installation (USE_PYTHON=concurrent) - Update pkg-descr - Add PyPI as primary WWW - Update WWW - Take maintainership Changes: https://github.com/pythonprofilers/memory_profiler/commits/master Modified: head/devel/py-memory_profiler/Makefile head/devel/py-memory_profiler/distinfo head/devel/py-memory_profiler/pkg-descr Modified: head/devel/py-memory_profiler/Makefile ============================================================================== --- head/devel/py-memory_profiler/Makefile Sun Feb 25 05:32:40 2018 (r462913) +++ head/devel/py-memory_profiler/Makefile Sun Feb 25 05:32:46 2018 (r462914) @@ -2,24 +2,21 @@ # $FreeBSD$ PORTNAME= memory_profiler -PORTVERSION= 0.47 +PORTVERSION= 0.52.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org -COMMENT= Line-by-line and process memory consumption analysis +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Module for monitoring memory usage of a python program -LICENSE= BSD2CLAUSE +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING -OPTIONS_DEFINE= PSUTIL -OPTIONS_DEFAULT= PSUTIL +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psutil>=0:sysutils/py-psutil@${FLAVOR} -PSUTIL_DESC= Use psutil for better performance -PSUTIL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psutil>1.0.0:sysutils/py-psutil@${FLAVOR} - USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes .include Modified: head/devel/py-memory_profiler/distinfo ============================================================================== --- head/devel/py-memory_profiler/distinfo Sun Feb 25 05:32:40 2018 (r462913) +++ head/devel/py-memory_profiler/distinfo Sun Feb 25 05:32:46 2018 (r462914) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496505442 -SHA256 (memory_profiler-0.47.tar.gz) = e992f2a341a5332dad1ad4a008eeac7cfe78c7ea4abdf7535a3e7e79093328cb -SIZE (memory_profiler-0.47.tar.gz) = 33725 +TIMESTAMP = 1519498699 +SHA256 (memory_profiler-0.52.0.tar.gz) = e38627e66ca787f56ad2898699e07cb7ae2049a7dc075d535367cd882c417b9a +SIZE (memory_profiler-0.52.0.tar.gz) = 35288 Modified: head/devel/py-memory_profiler/pkg-descr ============================================================================== --- head/devel/py-memory_profiler/pkg-descr Sun Feb 25 05:32:40 2018 (r462913) +++ head/devel/py-memory_profiler/pkg-descr Sun Feb 25 05:32:46 2018 (r462914) @@ -1,6 +1,6 @@ -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 -programs. It is a pure python module and has the psutil module as optional -(but highly recommended) dependencies. +This is a python module for monitoring memory consumption of a process as well +as line-by-line analysis of memory consumption for python programs. It is a pure +python module which depends on the psutil module. -WWW: https://github.com/fabianp/memory_profiler/ +WWW: https://pypi.python.org/pypi/memory_profiler +WWW: https://github.com/pythonprofilers/memory_profiler