Index: head/security/py-plaso/Makefile =================================================================== --- head/security/py-plaso/Makefile (revision 378240) +++ head/security/py-plaso/Makefile (revision 378241) @@ -1,59 +1,61 @@ # Created by: Antoine Brodin # $FreeBSD$ PORTNAME= plaso PORTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= security python MASTER_SITES= https://googledrive.com/host/0B30H7z4S52FleW5vUHBnblJfcjg/${PORTVERSION}/final/ \ LOCAL/antoine PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= antoine@FreeBSD.org COMMENT= Automatic creation of a super timeline LICENSE= APACHE20 RUN_DEPENDS= hachoir-core>=0:${PORTSDIR}/devel/hachoir-core \ hachoir-metadata>=0:${PORTSDIR}/sysutils/hachoir-metadata \ hachoir-parser>=0:${PORTSDIR}/devel/hachoir-parser \ libesedb>=e:${PORTSDIR}/devel/libesedb \ libevt>=a:${PORTSDIR}/devel/libevt \ libevtx>=a:${PORTSDIR}/devel/libevtx \ libfwsi>=e:${PORTSDIR}/devel/libfwsi \ liblnk>=0:${PORTSDIR}/devel/liblnk \ libmsiecf>=a:${PORTSDIR}/devel/libmsiecf \ libolecf>=a:${PORTSDIR}/devel/libolecf \ libregf>=a:${PORTSDIR}/devel/libregf \ ${PYTHON_PKGNAMEPREFIX}bencode>=0:${PORTSDIR}/converters/py-bencode \ ${PYTHON_PKGNAMEPREFIX}binplist>=0:${PORTSDIR}/devel/py-binplist \ ${PYTHON_PKGNAMEPREFIX}construct>=0:${PORTSDIR}/devel/py-construct \ ${PYTHON_PKGNAMEPREFIX}dateutil>=0:${PORTSDIR}/devel/py-dateutil \ ${PYTHON_PKGNAMEPREFIX}dfvfs>=0:${PORTSDIR}/security/py-dfvfs \ ${PYTHON_PKGNAMEPREFIX}dpkt>=0:${PORTSDIR}/net/py-dpkt \ ${PYTHON_PKGNAMEPREFIX}ipython>=0:${PORTSDIR}/devel/ipython \ ${PYTHON_PKGNAMEPREFIX}parsing>=0:${PORTSDIR}/devel/py-parsing \ ${PYTHON_PKGNAMEPREFIX}protobuf>=0:${PORTSDIR}/devel/py-protobuf \ ${PYTHON_PKGNAMEPREFIX}psutil121>=0:${PORTSDIR}/sysutils/py-psutil121 \ ${PYTHON_PKGNAMEPREFIX}pyelasticsearch>=0:${PORTSDIR}/textproc/py-pyelasticsearch \ ${PYTHON_PKGNAMEPREFIX}pytsk>=0:${PORTSDIR}/sysutils/py-pytsk \ ${PYTHON_PKGNAMEPREFIX}pytz>=0:${PORTSDIR}/devel/py-pytz \ + ${PYTHON_PKGNAMEPREFIX}requests>=0:${PORTSDIR}/www/py-requests \ ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:${PORTSDIR}/databases/py-sqlite3 \ ${PYTHON_PKGNAMEPREFIX}yaml>=0:${PORTSDIR}/devel/py-yaml USES= python:2 USE_PYTHON= distutils autoplist PORTDOCS= ACKNOWLEDGEMENTS AUTHORS README PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/extra/* ${STAGEDIR}${EXAMPLESDIR} # Note: for regression tests set LANG to en_US.UTF-8 .include Index: head/security/py-plaso/files/patch-plaso_output_elastic.py =================================================================== --- head/security/py-plaso/files/patch-plaso_output_elastic.py (nonexistent) +++ head/security/py-plaso/files/patch-plaso_output_elastic.py (revision 378241) @@ -0,0 +1,11 @@ +--- plaso/output/elastic.py.orig 2014-12-20 17:43:35 UTC ++++ plaso/output/elastic.py +@@ -81,6 +81,8 @@ class Elastic(output.LogOutputFormatter) + elastic_port = getattr(config, 'elastic_port', 9200) + self._elastic_db = pyelasticsearch.ElasticSearch( + u'http://{0:s}:{1:d}'.format(elastic_host, elastic_port)) ++ logging.getLogger('elasticsearch.trace').setLevel(logging.WARNING) ++ logging.getLogger('elasticsearch').setLevel(logging.WARNING) + + case_name = getattr(config, 'case_name', u'') + document_type = getattr(config, 'document_type', u'') Property changes on: head/security/py-plaso/files/patch-plaso_output_elastic.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/textproc/py-pyelasticsearch/Makefile =================================================================== --- head/textproc/py-pyelasticsearch/Makefile (revision 378240) +++ head/textproc/py-pyelasticsearch/Makefile (revision 378241) @@ -1,22 +1,23 @@ # Created by: Antoine Brodin # $FreeBSD$ PORTNAME= pyelasticsearch -PORTVERSION= 0.7.1 +PORTVERSION= 1.0 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= antoine@FreeBSD.org COMMENT= Flexible, high-scale API to elasticsearch LICENSE= BSD3CLAUSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}simplejson>=2.1.0:${PORTSDIR}/devel/py-simplejson \ - ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \ - ${PYTHON_PKGNAMEPREFIX}requests>=1.0:${PORTSDIR}/www/py-requests +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}elasticsearch-py>=1.0.0:${PORTSDIR}/textproc/py-elasticsearch-py \ + ${PYTHON_PKGNAMEPREFIX}simplejson>=3.0:${PORTSDIR}/devel/py-simplejson \ + ${PYTHON_PKGNAMEPREFIX}six>=1.4.0:${PORTSDIR}/devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}urllib3>=1.8:${PORTSDIR}/net/py-urllib3 USES= python USE_PYTHON= distutils autoplist .include Index: head/textproc/py-pyelasticsearch/distinfo =================================================================== --- head/textproc/py-pyelasticsearch/distinfo (revision 378240) +++ head/textproc/py-pyelasticsearch/distinfo (revision 378241) @@ -1,2 +1,2 @@ -SHA256 (pyelasticsearch-0.7.1.tar.gz) = df7a7ef0be35a8632f8e0cf53f5c8f7cd7456daa2470bb5a683feeff983d52a8 -SIZE (pyelasticsearch-0.7.1.tar.gz) = 42244 +SHA256 (pyelasticsearch-1.0.tar.gz) = 44ddfb1225054d7d6b1d02e9338e7d4809be94edbe9929a2ec0807d38df993fa +SIZE (pyelasticsearch-1.0.tar.gz) = 42432