From owner-svn-ports-head@freebsd.org Wed Jun 22 15:02:02 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA244B725C6; Wed, 22 Jun 2016 15:02:02 +0000 (UTC) (envelope-from jbeich@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 mx1.freebsd.org (Postfix) with ESMTPS id A865B1479; Wed, 22 Jun 2016 15:02:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5MF210U053320; Wed, 22 Jun 2016 15:02:01 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5MF21bE053316; Wed, 22 Jun 2016 15:02:01 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201606221502.u5MF21bE053316@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 22 Jun 2016 15:02:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417310 - in head/security: . eschalot 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.22 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: Wed, 22 Jun 2016 15:02:03 -0000 Author: jbeich Date: Wed Jun 22 15:02:01 2016 New Revision: 417310 URL: https://svnweb.freebsd.org/changeset/ports/417310 Log: security/eschalot: add new port PR: 210378 Submitted by: yuri@rawbw.com Echalot is a TOR hidden service name generator, it allows one to produce a (partially) customized vanity .onion address using a brute-force method. https://github.com/ReclaimYourPrivacy/eschalot Added: head/security/eschalot/ head/security/eschalot/Makefile (contents, props changed) head/security/eschalot/distinfo (contents, props changed) head/security/eschalot/pkg-descr (contents, props changed) Modified: head/security/Makefile (contents, props changed) Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Jun 22 14:50:07 2016 (r417309) +++ head/security/Makefile Wed Jun 22 15:02:01 2016 (r417310) @@ -121,6 +121,7 @@ SUBDIR += elixir-jose SUBDIR += erlang-jose SUBDIR += erlang-p1tls + SUBDIR += eschalot SUBDIR += esteidfirefoxplugin SUBDIR += expiretable SUBDIR += f-prot Added: head/security/eschalot/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/eschalot/Makefile Wed Jun 22 15:02:01 2016 (r417310) @@ -0,0 +1,29 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= eschalot +PORTVERSION= 1.2.0 +CATEGORIES= security + +MAINTAINER= yuri@rawbw.com +COMMENT= Vanity onion address generator for Tor + +LICENSE= PD +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= ReclaimYourPrivacy +GH_TAGNAME= e9e085e + +USES= gmake +USE_OPENSSL= yes +MAKE_ENV= INSTALL="${INSTALL_PROGRAM}" +MAKE_ARGS= PREFIX="${STAGEDIR}${PREFIX}" +TEST_TARGET= test + +PLIST_FILES= bin/eschalot bin/worgen + +post-patch: + @${REINPLACE_CMD} -e '/CFLAGS.*-O2/d' ${WRKSRC}/Makefile + +.include Added: head/security/eschalot/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/eschalot/distinfo Wed Jun 22 15:02:01 2016 (r417310) @@ -0,0 +1,3 @@ +TIMESTAMP = 1466278972 +SHA256 (ReclaimYourPrivacy-eschalot-1.2.0-e9e085e_GH0.tar.gz) = e811f45dd1d69cb34bf0736900c875e3dac6be3231c12440ae05638cac9ba24f +SIZE (ReclaimYourPrivacy-eschalot-1.2.0-e9e085e_GH0.tar.gz) = 241996 Added: head/security/eschalot/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/eschalot/pkg-descr Wed Jun 22 15:02:01 2016 (r417310) @@ -0,0 +1,4 @@ +Echalot is a TOR hidden service name generator, it allows one to produce +a (partially) customized vanity .onion address using a brute-force method. + +WWW: https://github.com/ReclaimYourPrivacy/eschalot