svn commit: r470786 - in head/devel: . py-rekall-efilter py-rekall-efilter/files
Antoine Brodin
antoine at FreeBSD.org
Thu May 24 15:21:49 UTC 2018
Author: antoine
Date: Thu May 24 15:21:47 2018
New Revision: 470786
URL: https://svnweb.freebsd.org/changeset/ports/470786
Log:
New port: devel/py-rekall-efilter
EFILTER is a general-purpose destructuring and search language implemented in
Python, and suitable for integration with any Python project that requires a
search function for some of its data.
This port has Rekall specific modifications.
WWW: https://github.com/rekall-innovations/efilter
Added:
head/devel/py-rekall-efilter/
head/devel/py-rekall-efilter/Makefile (contents, props changed)
head/devel/py-rekall-efilter/distinfo (contents, props changed)
head/devel/py-rekall-efilter/files/
head/devel/py-rekall-efilter/files/patch-setup.py (contents, props changed)
head/devel/py-rekall-efilter/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Thu May 24 14:55:55 2018 (r470785)
+++ head/devel/Makefile Thu May 24 15:21:47 2018 (r470786)
@@ -4920,6 +4920,7 @@
SUBDIR += py-rcsparse
SUBDIR += py-rebulk
SUBDIR += py-rednose
+ SUBDIR += py-rekall-efilter
SUBDIR += py-repoze.lru
SUBDIR += py-repoze.sphinx.autointerface
SUBDIR += py-repoze.tm2
Added: head/devel/py-rekall-efilter/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-rekall-efilter/Makefile Thu May 24 15:21:47 2018 (r470786)
@@ -0,0 +1,29 @@
+# $FreeBSD$
+
+PORTNAME= rekall-efilter
+PORTVERSION= 1.6.0
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= antoine at FreeBSD.org
+COMMENT= EFILTER query language with Rekall specific modifications
+
+LICENSE= APACHE20
+LICENSE_FILE= ${WRKSRC}/LICENSE.txt
+
+CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}efilter-[0-9]*
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>2:devel/py-dateutil@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}future>=0.16.0:devel/py-future@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}six>=1.4.0:devel/py-six@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}pytz>=2011:devel/py-pytz@${PY_FLAVOR}
+
+NO_ARCH= yes
+USES= python zip
+USE_PYTHON= distutils autoplist
+
+post-extract:
+ @${RM} -r ${WRKSRC}/sample_projects
+
+.include <bsd.port.mk>
Added: head/devel/py-rekall-efilter/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-rekall-efilter/distinfo Thu May 24 15:21:47 2018 (r470786)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1515875658
+SHA256 (rekall-efilter-1.6.0.zip) = a7ed673802aba38719c33a36329176ddb0c539a010f06dcd97550067dd1bf84b
+SIZE (rekall-efilter-1.6.0.zip) = 112157
Added: head/devel/py-rekall-efilter/files/patch-setup.py
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-rekall-efilter/files/patch-setup.py Thu May 24 15:21:47 2018 (r470786)
@@ -0,0 +1,11 @@
+--- setup.py.orig 2017-11-05 17:28:30 UTC
++++ setup.py
+@@ -54,7 +54,7 @@ setup(name="rekall-efilter",
+ package_dir={"efilter": "efilter"},
+ install_requires=[
+ "python-dateutil > 2",
+- "future==0.16.0",
++ "future>=0.16.0",
+ "pytz >= 2011k",
+ "six >= 1.4.0"]
+ )
Added: head/devel/py-rekall-efilter/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-rekall-efilter/pkg-descr Thu May 24 15:21:47 2018 (r470786)
@@ -0,0 +1,6 @@
+EFILTER is a general-purpose destructuring and search language implemented in
+Python, and suitable for integration with any Python project that requires a
+search function for some of its data.
+This port has Rekall specific modifications.
+
+WWW: https://github.com/rekall-innovations/efilter
More information about the svn-ports-head
mailing list