Date: Wed, 22 Apr 2020 17:15:44 +0000 (UTC) From: =?UTF-8?Q?Lo=c3=afc_Bartoletti?= <lbartoletti@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r532489 - in head/devel: . simdjson Message-ID: <202004221715.03MHFiEf012987@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <olevole at olevole dot ru> 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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004221715.03MHFiEf012987>