Index: head/security/py-rekall-core/Makefile =================================================================== --- head/security/py-rekall-core/Makefile (revision 417026) +++ head/security/py-rekall-core/Makefile (revision 417027) @@ -1,37 +1,37 @@ # Created by: antoine@FreeBSD.org # $FreeBSD$ PORTNAME= rekall-core -DISTVERSION= 1.5.0.post5 +DISTVERSION= 1.5.1 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= antoine@FreeBSD.org COMMENT= CORE component of the Rekall framework LICENSE= GPLv2 RUN_DEPENDS= cabextract:archivers/cabextract \ ${PYTHON_PKGNAMEPREFIX}PyAFF4>=0.23:security/py-pyaff4 \ ${PYTHON_PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml \ - ${PYTHON_PKGNAMEPREFIX}acora>=1.9:textproc/py-acora \ + ${PYTHON_PKGNAMEPREFIX}acora>=2.0:textproc/py-acora \ ${PYTHON_PKGNAMEPREFIX}arrow>=0.7.0:devel/py-arrow \ - ${PYTHON_PKGNAMEPREFIX}efilter>=1453815385:devel/py-efilter \ + ${PYTHON_PKGNAMEPREFIX}efilter>=1.2,1:devel/py-efilter \ ${PYTHON_PKGNAMEPREFIX}intervaltree>=2.1.0:devel/py-intervaltree \ ${PYTHON_PKGNAMEPREFIX}pycrypto>=2.6.1:security/py-pycrypto \ ${PYTHON_PKGNAMEPREFIX}pyelftools>=0.23:devel/py-pyelftools \ - ${PYTHON_PKGNAMEPREFIX}pytz>=2015.7:devel/py-pytz \ + ${PYTHON_PKGNAMEPREFIX}pytz>=2016.4,1:devel/py-pytz \ ${PYTHON_PKGNAMEPREFIX}capstone>=3.0.4:devel/py-capstone \ ${PYTHON_PKGNAMEPREFIX}yara>=3.4.0:security/py-yara \ ${PYTHON_PKGNAMEPREFIX}sortedcontainers>=1.4.4:devel/py-sortedcontainers \ ${PYTHON_PKGNAMEPREFIX}dateutil>=2.4.2:devel/py-dateutil NO_ARCH= yes USES= python:2.7 zip USE_PYTHON= distutils autoplist post-extract: @${CHMOD} -R a+rX ${WRKSRC} .include Index: head/security/py-rekall-core/distinfo =================================================================== --- head/security/py-rekall-core/distinfo (revision 417026) +++ head/security/py-rekall-core/distinfo (revision 417027) @@ -1,2 +1,3 @@ -SHA256 (rekall-core-1.5.0.post5.zip) = 9de7174702eaab563778c63eed189b5d09a3e7294e34c3df6eca5fd0424d78fc -SIZE (rekall-core-1.5.0.post5.zip) = 1004205 +TIMESTAMP = 1466191431 +SHA256 (rekall-core-1.5.1.zip) = 6d60d294bac406410a96f024642c42effda480e9d76cb4c04016f626c9c4514b +SIZE (rekall-core-1.5.1.zip) = 1013069 Index: head/security/py-rekall-core/files/patch-setup.py =================================================================== --- head/security/py-rekall-core/files/patch-setup.py (revision 417026) +++ head/security/py-rekall-core/files/patch-setup.py (revision 417027) @@ -1,39 +1,39 @@ ---- setup.py.orig 2016-03-28 15:25:48 UTC +--- setup.py.orig 2016-05-23 16:08:02 UTC +++ setup.py @@ -46,23 +46,22 @@ def find_data_files(source): # approach ensures that any Rekall version will always work as tested - even # when external packages are upgraded in an incompatible way. install_requires = [ - "PyAFF4 >= 0.23, < 0.30", - "PyYAML == 3.11", -- "acora == 1.9", -- "argparse == 1.2.1", +- "acora == 2.0", +- "argparse == 1.4.0", - "arrow == 0.7.0", -- "efilter == 1453815385", +- "efilter == 1!1.2", - "intervaltree == 2.1.0", - "pycrypto == 2.6.1", - "pyelftools == 0.23", -- "pytz == 2015.7", +- "pytz == 2016.4", - "rekall-capstone == 3.0.4.post2", - "rekall-yara == 3.4.0.1", - "sortedcontainers == 1.4.4", + "PyAFF4 >= 0.23", + "PyYAML >= 3.11", -+ "acora >= 1.9", ++ "acora >= 2.0", + "arrow >= 0.7.0", -+ "efilter >= 1453815385", ++ "efilter >= 1!1.2", + "intervaltree >= 2.1.0", + "pycrypto >= 2.6.1", + "pyelftools >= 0.23", -+ "pytz >= 2015.7", ++ "pytz >= 2016.4", + "capstone >= 3.0.4", + "yara-python >= 3.4.0", + "sortedcontainers >= 1.4.4", # Version 2.5.0 is broken with pyinstaller. # https://github.com/pyinstaller/pyinstaller/issues/1848 -- "python-dateutil == 2.4.2", -+ "python-dateutil >= 2.4.2", +- "python-dateutil == 2.5.3", ++ "python-dateutil >= 2.5.0", ]