From owner-svn-ports-head@FreeBSD.ORG Tue Mar 26 20:24:14 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2E097CA9; Tue, 26 Mar 2013 20:24:14 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 114D8CF7; Tue, 26 Mar 2013 20:24:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2QKODWn098285; Tue, 26 Mar 2013 20:24:13 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2QKODH6098277; Tue, 26 Mar 2013 20:24:13 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201303262024.r2QKODH6098277@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Tue, 26 Mar 2013 20:24:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r315323 - in head/security: . py-python-registry X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Mar 2013 20:24:14 -0000 Author: rm Date: Tue Mar 26 20:24:12 2013 New Revision: 315323 URL: http://svnweb.freebsd.org/changeset/ports/315323 Log: python-registry was originally written by Willi Ballenthin, a forensicator who wanted to access the contents of the Windows Registry from his Linux laptop. python-registry currently provides read-only access to Windows Registry files, such as NTUSER.DAT, userdiff, and SOFTWARE. The interface is two-fold: a high-level interface suitable for most tasks, and a low level set of parsing objects and methods which may be used for advanced study of the Windows Registry. python-registry is written in pure Python, making it portable across all major platforms. WWW: http://www.williballenthin.com/registry/ PR: 173141 Submitted by: Antoine Brodin Added: head/security/py-python-registry/ head/security/py-python-registry/Makefile (contents, props changed) head/security/py-python-registry/distinfo (contents, props changed) head/security/py-python-registry/pkg-descr (contents, props changed) head/security/py-python-registry/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Mar 26 18:38:10 2013 (r315322) +++ head/security/Makefile Tue Mar 26 20:24:12 2013 (r315323) @@ -768,6 +768,7 @@ SUBDIR += py-pylibacl SUBDIR += py-pyme SUBDIR += py-pysha3 + SUBDIR += py-python-registry SUBDIR += py-rsa SUBDIR += py-ssh SUBDIR += py-sslstrip Added: head/security/py-python-registry/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python-registry/Makefile Tue Mar 26 20:24:12 2013 (r315323) @@ -0,0 +1,38 @@ +# Created by: Antoine Brodin +# $FreeBSD$ + +PORTNAME= python-registry +PORTVERSION= 0.2.5 +CATEGORIES= security devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Read access to Windows Registry files + +LICENSE= AL2 + +USE_GITHUB= yes +GH_ACCOUNT= williballenthin +GH_TAGNAME= v${PORTVERSION} +GH_COMMIT= 8ea7e05 + +USE_PYTHON= -2.7 +USE_PYDISTUTILS= yes + +.include + +post-patch: + ${REINPLACE_CMD} -e 's|0.2.4.1|${PORTVERSION}|' ${WRKSRC}/Registry/__init__.py + ${REINPLACE_CMD} -i '' -e 's|/usr/bin/python|${PYTHON_CMD}|' ${WRKSRC}/samples/* + +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.txt ${WRKSRC}/documentation/* ${DOCSDIR} +.endif +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/samples/* ${EXAMPLESDIR} +.endif + +.include Added: head/security/py-python-registry/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python-registry/distinfo Tue Mar 26 20:24:12 2013 (r315323) @@ -0,0 +1,2 @@ +SHA256 (python-registry-0.2.5.tar.gz) = d882fbb5a5608b0ba092362ada3a99753d8b3c184f9811fcbe386a0e708d7faa +SIZE (python-registry-0.2.5.tar.gz) = 133259 Added: head/security/py-python-registry/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python-registry/pkg-descr Tue Mar 26 20:24:12 2013 (r315323) @@ -0,0 +1,10 @@ +python-registry was originally written by Willi Ballenthin, a forensicator who +wanted to access the contents of the Windows Registry from his Linux laptop. +python-registry currently provides read-only access to Windows Registry files, +such as NTUSER.DAT, userdiff, and SOFTWARE. The interface is two-fold: a +high-level interface suitable for most tasks, and a low level set of parsing +objects and methods which may be used for advanced study of the Windows +Registry. python-registry is written in pure Python, making it portable across +all major platforms. + +WWW: http://www.williballenthin.com/registry/ Added: head/security/py-python-registry/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python-registry/pkg-plist Tue Mar 26 20:24:12 2013 (r315323) @@ -0,0 +1,23 @@ +%%PYTHON_SITELIBDIR%%/Registry/Registry.py +%%PYTHON_SITELIBDIR%%/Registry/Registry.pyc +%%PYTHON_SITELIBDIR%%/Registry/Registry.pyo +%%PYTHON_SITELIBDIR%%/Registry/RegistryParse.py +%%PYTHON_SITELIBDIR%%/Registry/RegistryParse.pyc +%%PYTHON_SITELIBDIR%%/Registry/RegistryParse.pyo +%%PYTHON_SITELIBDIR%%/Registry/__init__.py +%%PYTHON_SITELIBDIR%%/Registry/__init__.pyc +%%PYTHON_SITELIBDIR%%/Registry/__init__.pyo +@dirrm %%PYTHON_SITELIBDIR%%/Registry +%%PORTDOCS%%%%DOCSDIR%%/README.txt +%%PORTDOCS%%%%DOCSDIR%%/TheWindowsNTRegistryFileFormat.pdf +%%PORTDOCS%%%%DOCSDIR%%/WinReg.txt +%%PORTDOCS%%%%DOCSDIR%%/registry.html +%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/findkey.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/printall.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/regfetch.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/regview.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/shellbags.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/shelltypes.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/timeline.py +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%