From owner-svn-ports-head@freebsd.org Wed Apr 22 17:15:45 2020 Return-Path: Delivered-To: svn-ports-head@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 CF7BC2BAF53; Wed, 22 Apr 2020 17:15:45 +0000 (UTC) (envelope-from lbartoletti@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 496nBn56cjz4Whv; Wed, 22 Apr 2020 17:15:45 +0000 (UTC) (envelope-from lbartoletti@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 AADD21E262; Wed, 22 Apr 2020 17:15:45 +0000 (UTC) (envelope-from lbartoletti@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03MHFjnC012992; Wed, 22 Apr 2020 17:15:45 GMT (envelope-from lbartoletti@FreeBSD.org) Received: (from lbartoletti@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03MHFiEf012987; Wed, 22 Apr 2020 17:15:44 GMT (envelope-from lbartoletti@FreeBSD.org) Message-Id: <202004221715.03MHFiEf012987@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lbartoletti set sender to lbartoletti@FreeBSD.org using -f From: =?UTF-8?Q?Lo=c3=afc_Bartoletti?= Date: Wed, 22 Apr 2020 17:15:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r532489 - in head/devel: . simdjson X-SVN-Group: ports-head X-SVN-Commit-Author: lbartoletti X-SVN-Commit-Paths: in head/devel: . simdjson X-SVN-Commit-Revision: 532489 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.29 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 Apr 2020 17:15:45 -0000 Author: lbartoletti Date: Wed Apr 22 17:15:44 2020 New Revision: 532489 URL: https://svnweb.freebsd.org/changeset/ports/532489 Log: [NEW PORT] devel/simdjson: Parsing gigabytes of JSON per second JSON is everywhere on the Internet. Servers spend a lot of time parsing it. The simdjson library uses commonly available SIMD instructions and microparallel algorithms to parse JSON 2.5 times faster than anything else out there. WWW: https://simdjson.org/ NOTA on Current, clang crashes on AMD processors before revision 359826. See: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=245745 PR: 245744 Submitted by: Oleg Ginzburg Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D24505 Added: head/devel/simdjson/ head/devel/simdjson/Makefile (contents, props changed) head/devel/simdjson/distinfo (contents, props changed) head/devel/simdjson/pkg-descr (contents, props changed) head/devel/simdjson/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Apr 22 17:00:18 2020 (r532488) +++ head/devel/Makefile Wed Apr 22 17:15:44 2020 (r532489) @@ -6552,6 +6552,7 @@ SUBDIR += silc-toolkit SUBDIR += silentbob SUBDIR += simavr + SUBDIR += simdjson SUBDIR += simgear SUBDIR += simian SUBDIR += simple_components Added: head/devel/simdjson/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/simdjson/Makefile Wed Apr 22 17:15:44 2020 (r532489) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= simdjson +PORTVERSION= 0.3.1 +DISTVERSIONPREFIX= v +CATEGORIES= devel + +MAINTAINER= olevole@olevole.ru +COMMENT= Parsing gigabytes of JSON per second + +LICENSE= APACHE20 + +BROKEN_i386= does not build (error: unknown type name '__uint128_t') + +USES= cmake +USE_LDCONFIG= yes +USE_GITHUB= yes + +.include Added: head/devel/simdjson/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/simdjson/distinfo Wed Apr 22 17:15:44 2020 (r532489) @@ -0,0 +1,3 @@ +TIMESTAMP = 1587311426 +SHA256 (simdjson-simdjson-v0.3.1_GH0.tar.gz) = 9ae0b77139d6b854fe4d25db5e525762d3f7880f7146329767078397b6ed2f94 +SIZE (simdjson-simdjson-v0.3.1_GH0.tar.gz) = 4017181 Added: head/devel/simdjson/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/simdjson/pkg-descr Wed Apr 22 17:15:44 2020 (r532489) @@ -0,0 +1,6 @@ +JSON is everywhere on the Internet. Servers spend a lot of time parsing it. +The simdjson library uses commonly available SIMD instructions and +microparallel algorithms to parse JSON 2.5 times faster than anything +else out there. + +WWW: https://simdjson.org/ Added: head/devel/simdjson/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/simdjson/pkg-plist Wed Apr 22 17:15:44 2020 (r532489) @@ -0,0 +1,26 @@ +lib/cmake/simdjson/simdjson-config.cmake +lib/cmake/simdjson/simdjson-config-%%CMAKE_BUILD_TYPE%%.cmake +lib/libsimdjson.so.1 +lib/libsimdjson.so +lib/libsimdjson.so.0.3.1 +include/simdjson.h +include/simdjson/jsonioutil.h +include/simdjson/portability.h +include/simdjson/simdjson_version.h +include/simdjson/document_stream.h +include/simdjson/document.h +include/simdjson/inline/padded_string.h +include/simdjson/inline/document.h +include/simdjson/inline/document_stream.h +include/simdjson/inline/error.h +include/simdjson/inline/parsedjson_iterator.h +include/simdjson/internal/jsonformatutils.h +include/simdjson/jsonparser.h +include/simdjson/error.h +include/simdjson/padded_string.h +include/simdjson/common_defs.h +include/simdjson/compiler_check.h +include/simdjson/parsedjson.h +include/simdjson/implementation.h +include/simdjson/parsedjson_iterator.h +include/simdjson/simdjson.h