From owner-svn-ports-head@freebsd.org Fri Apr 20 14:29:12 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15CF3FA82B4; Fri, 20 Apr 2018 14:29:12 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BD59581139; Fri, 20 Apr 2018 14:29:11 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B2C30197E1; Fri, 20 Apr 2018 14:29:11 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3KETBQE055758; Fri, 20 Apr 2018 14:29:11 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3KETBYu055754; Fri, 20 Apr 2018 14:29:11 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201804201429.w3KETBYu055754@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Fri, 20 Apr 2018 14:29:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467826 - in head/net: . py-libfte X-SVN-Group: ports-head X-SVN-Commit-Author: garga X-SVN-Commit-Paths: in head/net: . py-libfte X-SVN-Commit-Revision: 467826 X-SVN-Commit-Repository: ports 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.25 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: Fri, 20 Apr 2018 14:29:12 -0000 Author: garga Date: Fri Apr 20 14:29:11 2018 New Revision: 467826 URL: https://svnweb.freebsd.org/changeset/ports/467826 Log: Add py-libfte 0.1.0, format-Transforming Encryption Library/Toolkit. PR: 227421 Submitted by: egypcio@googlemail.com Differential Revision: https://reviews.freebsd.org/D15028 Added: head/net/py-libfte/ head/net/py-libfte/Makefile (contents, props changed) head/net/py-libfte/distinfo (contents, props changed) head/net/py-libfte/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Fri Apr 20 14:21:25 2018 (r467825) +++ head/net/Makefile Fri Apr 20 14:29:11 2018 (r467826) @@ -1051,6 +1051,7 @@ SUBDIR += py-ldaptor SUBDIR += py-libcloud SUBDIR += py-libdnet + SUBDIR += py-libfte SUBDIR += py-libnet SUBDIR += py-libstorj SUBDIR += py-magic-wormhole Added: head/net/py-libfte/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-libfte/Makefile Fri Apr 20 14:29:11 2018 (r467826) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= libfte +DISTVERSION= 0.1.0 +CATEGORIES= net security python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= egypcio@googlemail.com +COMMENT= Format-Transforming Encryption Library/Toolkit + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= regex2dfa:textproc/regex2dfa \ + ${PYTHON_PKGNAMEPREFIX}pycrypto>=2.6.1:security/py-pycrypto@${FLAVOR} +LIB_DEPENDS= libgmp.so:math/gmp + +USES= localbase python:2.7 +USE_PYTHON= autoplist distutils +USE_GITHUB= yes +GH_ACCOUNT= kpdyer + +# setup.cfg enables inplace, copying extension to final place and breaking +# autoplist +post-extract: + ${RM} ${WRKSRC}/setup.cfg + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/fte/cDFA.so + +.include Added: head/net/py-libfte/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-libfte/distinfo Fri Apr 20 14:29:11 2018 (r467826) @@ -0,0 +1,3 @@ +TIMESTAMP = 1521120861 +SHA256 (kpdyer-libfte-0.1.0_GH0.tar.gz) = 167e5efbe79a344305759fcea7edea98f35085485d042e2e546ed71ce19a9ed5 +SIZE (kpdyer-libfte-0.1.0_GH0.tar.gz) = 31171 Added: head/net/py-libfte/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-libfte/pkg-descr Fri Apr 20 14:29:11 2018 (r467826) @@ -0,0 +1,11 @@ +LibFTE is the first general-purpose library that introduces a unifying framework +for general-purpose development and deployment of FPE or FTE schemes using +formats specified by regular expressions. LibFTE also overcomes some technical +limitations of the prior FTE software. + +Previously, ranking was performed using the Deterministic Finite Automata (DFA) +representation of regular expressions, which means that format-abiding +encryption was feasible only for regular expressions for which the DFA +representation could be built. + +WWW: https://libfte.org/