Index: head/security/py-rekall/Makefile =================================================================== --- head/security/py-rekall/Makefile (revision 470796) +++ head/security/py-rekall/Makefile (revision 470797) @@ -1,27 +1,36 @@ # Created by: antoine@FreeBSD.org # $FreeBSD$ PORTNAME= rekall -PORTVERSION= 1.6.0 -PORTREVISION= 1 +DISTVERSION= 1.7.2rc1 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= antoine@FreeBSD.org COMMENT= Memory forensics analysis framework LICENSE= GPLv2 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}rekall-core>=1.5.0.p:security/py-rekall-core@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}ipython>=5.0.0:devel/ipython@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}rekall_lib>=1.7.1:security/py-rekall_lib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}rekall-core>=1.7.1:security/py-rekall-core@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ipython>=5.0.0:devel/ipython@${PY_FLAVOR} NO_ARCH= yes -USES= python:2.7 zip +USES= python shebangfix zip USE_PYTHON= distutils autoplist + +python_OLD_CMD= python +SHEBANG_FILES= tools/devel/autopep8.sh \ + tools/devel/presubmit.sh \ + tools/linux/lmap/tools/fix_versions.py \ + tools/profiles/unpack_kdbg_kit.py \ + tools/testing/tap.py \ + tools/testing/test_suite.py \ + tools/windows/winpmem/winpmem.py .include PYDISTUTILS_INSTALLARGS+=--install-data ${DATADIR} .include Index: head/security/py-rekall/distinfo =================================================================== --- head/security/py-rekall/distinfo (revision 470796) +++ head/security/py-rekall/distinfo (revision 470797) @@ -1,3 +1,3 @@ -TIMESTAMP = 1478337079 -SHA256 (rekall-1.6.0.zip) = 261cbc31c4f1eb91b8e2cefb7a5bbfe547539b091d58ff7d91f181494ae0af8a -SIZE (rekall-1.6.0.zip) = 301230 +TIMESTAMP = 1517735306 +SHA256 (rekall-1.7.2rc1.zip) = 08134cd142203130c8d09e6e52114b4f5e17211bc9993d507ce4a69b5aa2e072 +SIZE (rekall-1.7.2rc1.zip) = 1733715 Index: head/security/py-rekall/files/patch-setup.py =================================================================== --- head/security/py-rekall/files/patch-setup.py (revision 470796) +++ head/security/py-rekall/files/patch-setup.py (revision 470797) @@ -1,12 +1,20 @@ ---- setup.py.orig 2016-11-03 22:17:38 UTC +--- setup.py.orig 2017-11-05 21:24:44 UTC +++ setup.py -@@ -80,7 +80,8 @@ def find_data_files(source): +@@ -82,7 +82,8 @@ def find_data_files(source): result = [] for directory, _, files in os.walk(source): files = [os.path.join(directory, x) for x in files] - result.append((directory, files)) + if files: + result.append((directory, files)) return result +@@ -95,7 +96,6 @@ commands = dict( + # This requires an exact version to ensure that installing the meta package + # pulls in tested dependencies. + install_requires = [ +- "rekall-agent >= 1.7.0rc1, < 1.8", + "rekall-lib >= 1.7.0rc1, < 1.8", + "rekall-core >= 1.7.0rc1, < 1.8", + "ipython >= 5.0.0, < 7.0",