aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2018-02-25 13:32:46 +0800
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2018-02-25 13:32:46 +0800
commitfb88a1b23dca24bbdcac2a55e8363d90d7c98141 (patch)
tree52def05d32e8b1af237839374ecc8ac7c571a203 /devel
parent93e437d8ce52c1115c19e773a7e49ec017c618a8 (diff)
downloadfreebsd-ports-gnome-fb88a1b23dca24bbdcac2a55e8363d90d7c98141.tar.gz
freebsd-ports-gnome-fb88a1b23dca24bbdcac2a55e8363d90d7c98141.tar.zst
freebsd-ports-gnome-fb88a1b23dca24bbdcac2a55e8363d90d7c98141.zip
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
Diffstat (limited to 'devel')
-rw-r--r--devel/py-memory_profiler/Makefile17
-rw-r--r--devel/py-memory_profiler/distinfo6
-rw-r--r--devel/py-memory_profiler/pkg-descr10
3 files changed, 15 insertions, 18 deletions
diff --git a/devel/py-memory_profiler/Makefile b/devel/py-memory_profiler/Makefile
index 46bc4601b99c..3084dac3e8d8 100644
--- a/devel/py-memory_profiler/Makefile
+++ b/devel/py-memory_profiler/Makefile
@@ -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
-
-PSUTIL_DESC= Use psutil for better performance
-PSUTIL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psutil>1.0.0:sysutils/py-psutil@${FLAVOR}
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psutil>=0:sysutils/py-psutil@${FLAVOR}
USES= python
-USE_PYTHON= distutils autoplist
+USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>
diff --git a/devel/py-memory_profiler/distinfo b/devel/py-memory_profiler/distinfo
index 5e9bf8184eed..f025a1789b4b 100644
--- a/devel/py-memory_profiler/distinfo
+++ b/devel/py-memory_profiler/distinfo
@@ -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
diff --git a/devel/py-memory_profiler/pkg-descr b/devel/py-memory_profiler/pkg-descr
index 3e5021488dd3..fc010bca9894 100644
--- a/devel/py-memory_profiler/pkg-descr
+++ b/devel/py-memory_profiler/pkg-descr
@@ -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