From owner-svn-ports-head@FreeBSD.ORG Sat Dec 13 13:26:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA4F9842; Sat, 13 Dec 2014 13:26:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BC09890A; Sat, 13 Dec 2014 13:26:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBDDQRwf068063; Sat, 13 Dec 2014 13:26:27 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBDDQQQi068058; Sat, 13 Dec 2014 13:26:26 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201412131326.sBDDQQQi068058@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 13 Dec 2014 13:26:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374656 - in head/security: . py-pydeep 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.18-1 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: Sat, 13 Dec 2014 13:26:28 -0000 Author: antoine Date: Sat Dec 13 13:26:25 2014 New Revision: 374656 URL: https://svnweb.freebsd.org/changeset/ports/374656 QAT: https://qat.redports.org/buildarchive/r374656/ Log: New port: security/py-pydeep Python bindings for ssdeep WWW: https://github.com/kbandla/pydeep PR: ports/195640 Added: head/security/py-pydeep/ head/security/py-pydeep/Makefile (contents, props changed) head/security/py-pydeep/distinfo (contents, props changed) head/security/py-pydeep/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Dec 13 13:08:53 2014 (r374655) +++ head/security/Makefile Sat Dec 13 13:26:25 2014 (r374656) @@ -801,6 +801,7 @@ SUBDIR += py-pyclamd SUBDIR += py-pycrypto SUBDIR += py-pycryptopp + SUBDIR += py-pydeep SUBDIR += py-pylibacl SUBDIR += py-pyme SUBDIR += py-pyptlib Added: head/security/py-pydeep/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pydeep/Makefile Sat Dec 13 13:26:25 2014 (r374656) @@ -0,0 +1,29 @@ +# Created by: Antoine Brodin +# $FreeBSD$ + +PORTNAME= pydeep +PORTVERSION= 0.2 +CATEGORIES= security devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Python bindings for ssdeep + +LICENSE= BSD3CLAUSE + +LIB_DEPENDS= libfuzzy.so:${PORTSDIR}/security/ssdeep + +USES= python:2 +USE_PYTHON= distutils autoplist + +post-patch: + ${REINPLACE_CMD} 's|libraries = \["fuzzy"],|libraries = ["fuzzy"], \ + include_dirs = ["${LOCALBASE}/include"], \ + library_dirs = ["${LOCALBASE}/lib"],|' \ + ${WRKSRC}/setup.py + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pydeep.so + +.include Added: head/security/py-pydeep/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pydeep/distinfo Sat Dec 13 13:26:25 2014 (r374656) @@ -0,0 +1,2 @@ +SHA256 (pydeep-0.2.tar.gz) = 5caee269f9b38317036cf29877c5229013e422e1086b45b7c720a128c10b14f0 +SIZE (pydeep-0.2.tar.gz) = 1645 Added: head/security/py-pydeep/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pydeep/pkg-descr Sat Dec 13 13:26:25 2014 (r374656) @@ -0,0 +1,3 @@ +Python bindings for ssdeep + +WWW: https://github.com/kbandla/pydeep