Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Dec 2024 04:45:23 GMT
From:      "Vanilla I. Shu" <vanilla@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 4b142fa9f162 - main - devel/simdjson: update 3.6.2 -> 3.11.3, also reset MAINTAINER to ports@
Message-ID:  <202412220445.4BM4jN3t084200@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by vanilla:

URL: https://cgit.FreeBSD.org/ports/commit/?id=4b142fa9f162a5a64f930c74558627443b4691fc

commit 4b142fa9f162a5a64f930c74558627443b4691fc
Author:     Vanilla I. Shu <vanilla@FreeBSD.org>
AuthorDate: 2024-12-22 04:43:46 +0000
Commit:     Vanilla I. Shu <vanilla@FreeBSD.org>
CommitDate: 2024-12-22 04:45:01 +0000

    devel/simdjson: update 3.6.2 -> 3.11.3, also reset MAINTAINER to ports@
    
    PR:             Älven <alster at vinterdalen.se>
    Approved by:    olevole at olevole.ru
---
 devel/simdjson/Makefile                             | 14 ++++++--------
 devel/simdjson/distinfo                             |  6 +++---
 .../patch-include_simdjson_dom_serialization.h      | 21 ---------------------
 devel/simdjson/files/patch-singleheader_simdjson.h  | 21 ---------------------
 devel/simdjson/pkg-plist                            |  4 ++--
 5 files changed, 11 insertions(+), 55 deletions(-)

diff --git a/devel/simdjson/Makefile b/devel/simdjson/Makefile
index a035cc77293b..ca72eec33a32 100644
--- a/devel/simdjson/Makefile
+++ b/devel/simdjson/Makefile
@@ -1,30 +1,28 @@
 PORTNAME=	simdjson
 DISTVERSIONPREFIX=	v
-DISTVERSION=	3.6.2
-PORTREVISION=	1
+DISTVERSION=	3.11.3
 CATEGORIES=	devel
 
-MAINTAINER=	olevole@olevole.ru
+MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Parsing gigabytes of JSON per second
-WWW=		https://simdjson.org/
+WWW=		https://simdjson.org/ \
+		https://github.com/simdjson/simdjson/
 
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 USES=		cmake:testing compiler:c++17-lang python:test
 USE_GITHUB=	yes
-USE_LDCONFIG=	yes
-
 # Found in dependencies/CMakeLists.txt
 GH_TUPLE=	simdjson:simdjson-data:a5b13ba:simdjson_data/dependencies/.cache/simdjson-data
+USE_LDCONFIG=	yes
 
+CMAKE_ON=		BUILD_SHARED_LIBS
 CMAKE_TESTING_ON=	SIMDJSON_DEVELOPER_MODE
 CMAKE_TESTING_OFF=	SIMDJSON_ALLOW_DOWNLOADS \
 			SIMDJSON_COMPETITION \
 			SIMDJSON_GOOGLE_BENCHMARKS
 
-CMAKE_ON=		BUILD_SHARED_LIBS
-
 CXXFLAGS_i386=		-DSIMDJSON_NO_PORTABILITY_WARNING
 CXXFLAGS_powerpc64=	-mpower8-vector
 
diff --git a/devel/simdjson/distinfo b/devel/simdjson/distinfo
index 12185bd6bbc2..3a30d8ad8ae1 100644
--- a/devel/simdjson/distinfo
+++ b/devel/simdjson/distinfo
@@ -1,5 +1,5 @@
-TIMESTAMP = 1701464484
-SHA256 (simdjson-simdjson-v3.6.2_GH0.tar.gz) = 6932172c1066b64d123f9db8a5183fa11e07f3e9fb87c39101683dca08fd884a
-SIZE (simdjson-simdjson-v3.6.2_GH0.tar.gz) = 2299822
+TIMESTAMP = 1734786399
+SHA256 (simdjson-simdjson-v3.11.3_GH0.tar.gz) = eeb10661047e476aa3b535d14a32af95690691778d7afe0630a344654ff9759a
+SIZE (simdjson-simdjson-v3.11.3_GH0.tar.gz) = 2705509
 SHA256 (simdjson-simdjson-data-a5b13ba_GH0.tar.gz) = ecac9f00c960381e132632e44063f385c6513283305ccd6794c24590d561bbc9
 SIZE (simdjson-simdjson-data-a5b13ba_GH0.tar.gz) = 6639897
diff --git a/devel/simdjson/files/patch-include_simdjson_dom_serialization.h b/devel/simdjson/files/patch-include_simdjson_dom_serialization.h
deleted file mode 100644
index 09dc68e86977..000000000000
--- a/devel/simdjson/files/patch-include_simdjson_dom_serialization.h
+++ /dev/null
@@ -1,21 +0,0 @@
---- include/simdjson/dom/serialization.h.orig	2023-12-01 18:56:12 UTC
-+++ include/simdjson/dom/serialization.h
-@@ -57,15 +57,15 @@ class base_formatter { (public)
-   simdjson_inline void one_char(char c);
- 
-   simdjson_inline void call_print_newline() {
--      this->print_newline();
-+      static_cast<formatter*>(this)->print_newline();
-   }
- 
-   simdjson_inline void call_print_indents(size_t depth) {
--      this->print_indents(depth);
-+      static_cast<formatter*>(this)->print_indents(depth);
-   }
- 
-   simdjson_inline void call_print_space() {
--      this->print_space();
-+      static_cast<formatter*>(this)->print_space();
-   }
- 
- protected:
diff --git a/devel/simdjson/files/patch-singleheader_simdjson.h b/devel/simdjson/files/patch-singleheader_simdjson.h
deleted file mode 100644
index e41f85236f17..000000000000
--- a/devel/simdjson/files/patch-singleheader_simdjson.h
+++ /dev/null
@@ -1,21 +0,0 @@
---- singleheader/simdjson.h.orig	2023-12-01 18:56:12 UTC
-+++ singleheader/simdjson.h
-@@ -6153,15 +6153,15 @@ class base_formatter { (public)
-   simdjson_inline void one_char(char c);
- 
-   simdjson_inline void call_print_newline() {
--      this->print_newline();
-+      static_cast<formatter*>(this)->print_newline();
-   }
- 
-   simdjson_inline void call_print_indents(size_t depth) {
--      this->print_indents(depth);
-+      static_cast<formatter*>(this)->print_indents(depth);
-   }
- 
-   simdjson_inline void call_print_space() {
--      this->print_space();
-+      static_cast<formatter*>(this)->print_space();
-   }
- 
- protected:
diff --git a/devel/simdjson/pkg-plist b/devel/simdjson/pkg-plist
index 3fcbf6b7919b..dbc7e84fd1ce 100644
--- a/devel/simdjson/pkg-plist
+++ b/devel/simdjson/pkg-plist
@@ -4,6 +4,6 @@ lib/cmake/simdjson/simdjson-config.cmake
 lib/cmake/simdjson/simdjsonTargets-%%CMAKE_BUILD_TYPE%%.cmake
 lib/cmake/simdjson/simdjsonTargets.cmake
 lib/libsimdjson.so
-lib/libsimdjson.so.19
-lib/libsimdjson.so.19.0.0
+lib/libsimdjson.so.24
+lib/libsimdjson.so.24.0.0
 libdata/pkgconfig/simdjson.pc



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202412220445.4BM4jN3t084200>