From owner-svn-ports-all@freebsd.org Sat Nov 2 15:24:40 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 01B1B1A8DC8; Sat, 2 Nov 2019 15:24:40 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4752sz6Frhz3Jwh; Sat, 2 Nov 2019 15:24:39 +0000 (UTC) (envelope-from yuri@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 9EA1A25633; Sat, 2 Nov 2019 15:24:39 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xA2FOdJO093925; Sat, 2 Nov 2019 15:24:39 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xA2FOcoO093922; Sat, 2 Nov 2019 15:24:38 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201911021524.xA2FOcoO093922@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 2 Nov 2019 15:24:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r516332 - in head/security: . farmhash X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/security: . farmhash X-SVN-Commit-Revision: 516332 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Nov 2019 15:24:40 -0000 Author: yuri Date: Sat Nov 2 15:24:38 2019 New Revision: 516332 URL: https://svnweb.freebsd.org/changeset/ports/516332 Log: New port: security/farmhash: Hash functions for strings and other data Added: head/security/farmhash/ head/security/farmhash/Makefile (contents, props changed) head/security/farmhash/distinfo (contents, props changed) head/security/farmhash/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Nov 2 15:18:26 2019 (r516331) +++ head/security/Makefile Sat Nov 2 15:24:38 2019 (r516332) @@ -149,6 +149,7 @@ SUBDIR += fakebo SUBDIR += fakeident SUBDIR += fakeroot + SUBDIR += farmhash SUBDIR += fbopenssl SUBDIR += fcheck SUBDIR += fcrackzip Added: head/security/farmhash/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/farmhash/Makefile Sat Nov 2 15:24:38 2019 (r516332) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= farmhash +DISTVERSION= g20190513 +CATEGORIES= security + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Hash functions for strings and other data + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= autoreconf compiler:c++11-lib gmake libtool +GNU_CONFIGURE= yes +USE_GITHUB= yes +GH_ACCOUNT= google +GH_TAGNAME= 0d859a8 +USE_LDCONFIG= yes + +INSTALL_TARGET= install-strip + +PLIST_FILES= include/farmhash.h \ + lib/libfarmhash.a \ + lib/libfarmhash.so \ + lib/libfarmhash.so.0 \ + lib/libfarmhash.so.0.0.0 + +OPTIONS_DEFINE= DOCS + +PORTDOCS= * + +.include Added: head/security/farmhash/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/farmhash/distinfo Sat Nov 2 15:24:38 2019 (r516332) @@ -0,0 +1,3 @@ +TIMESTAMP = 1572707837 +SHA256 (google-farmhash-g20190513-0d859a8_GH0.tar.gz) = f6f9cbc12e64dfd7211d2b19f3f6b1470abf3330358178911198012169e5a23b +SIZE (google-farmhash-g20190513-0d859a8_GH0.tar.gz) = 467028 Added: head/security/farmhash/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/farmhash/pkg-descr Sat Nov 2 15:24:38 2019 (r516332) @@ -0,0 +1,3 @@ +FarmHash, a family of hash functions. + +WWW: https://github.com/google/farmhash