pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/textproc/rapidjson



Module Name:    pkgsrc
Committed By:   markd
Date:           Sun Dec 21 09:00:30 UTC 2025

Modified Files:
        pkgsrc/textproc/rapidjson: Makefile PLIST distinfo
Removed Files:
        pkgsrc/textproc/rapidjson/patches: patch-CMakeLists.txt
            patch-include_rapidjson_document.h

Log Message:
rapidjson: update to 1.1.0.20250205

rapidjson hasn't tagged a release since 2016, but some packages are now
relying on more recent features so update to a recent arbitrary tag.
Use the same tag that OpenBSD currently uses.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/textproc/rapidjson/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/rapidjson/PLIST
cvs rdiff -u -r1.5 -r1.6 pkgsrc/textproc/rapidjson/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/textproc/rapidjson/patches/patch-CMakeLists.txt
cvs rdiff -u -r1.2 -r0 \
    pkgsrc/textproc/rapidjson/patches/patch-include_rapidjson_document.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/rapidjson/Makefile
diff -u pkgsrc/textproc/rapidjson/Makefile:1.13 pkgsrc/textproc/rapidjson/Makefile:1.14
--- pkgsrc/textproc/rapidjson/Makefile:1.13     Mon Aug 11 12:04:14 2025
+++ pkgsrc/textproc/rapidjson/Makefile  Sun Dec 21 09:00:30 2025
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.13 2025/08/11 12:04:14 wiz Exp $
+# $NetBSD: Makefile,v 1.14 2025/12/21 09:00:30 markd Exp $
 
-DISTNAME=      rapidjson-1.1.0
-PKGREVISION=   2
+DISTNAME=      rapidjson-1.1.0.20250205
 CATEGORIES=    textproc
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=Tencent/}
-GITHUB_TAG=    v${PKGVERSION_NOREV}
+GITHUB_TAG=    24b5e7a8b27f42fa16b96fc70aade9106cf7102f
 
 MAINTAINER=    minskim%NetBSD.org@localhost
 HOMEPAGE=      https://rapidjson.org/
@@ -22,7 +21,6 @@ PKGCONFIG_OVERRIDE+=  RapidJSON.pc.in
 BUILDLINK_TRANSFORM+=  rm:-march=native rm:-Werror
 
 post-install:
-       rm ${DESTDIR}${PREFIX}/include/rapidjson/*.orig
        rm ${DESTDIR}${PREFIX}/share/doc/RapidJSON/examples/CMakeLists.txt.orig
 
 .include "../../devel/cmake/build.mk"

Index: pkgsrc/textproc/rapidjson/PLIST
diff -u pkgsrc/textproc/rapidjson/PLIST:1.1 pkgsrc/textproc/rapidjson/PLIST:1.2
--- pkgsrc/textproc/rapidjson/PLIST:1.1 Sun Nov 26 23:37:18 2017
+++ pkgsrc/textproc/rapidjson/PLIST     Sun Dec 21 09:00:30 2025
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.1 2017/11/26 23:37:18 minskim Exp $
+@comment $NetBSD: PLIST,v 1.2 2025/12/21 09:00:30 markd Exp $
 include/rapidjson/allocators.h
+include/rapidjson/cursorstreamwrapper.h
 include/rapidjson/document.h
 include/rapidjson/encodedstream.h
 include/rapidjson/encodings.h
@@ -9,6 +10,7 @@ include/rapidjson/filereadstream.h
 include/rapidjson/filewritestream.h
 include/rapidjson/fwd.h
 include/rapidjson/internal/biginteger.h
+include/rapidjson/internal/clzll.h
 include/rapidjson/internal/diyfp.h
 include/rapidjson/internal/dtoa.h
 include/rapidjson/internal/ieee754.h
@@ -33,16 +35,22 @@ include/rapidjson/reader.h
 include/rapidjson/schema.h
 include/rapidjson/stream.h
 include/rapidjson/stringbuffer.h
+include/rapidjson/uri.h
 include/rapidjson/writer.h
+lib/cmake/RapidJSON/RapidJSON-targets.cmake
 lib/cmake/RapidJSON/RapidJSONConfig.cmake
 lib/cmake/RapidJSON/RapidJSONConfigVersion.cmake
 lib/pkgconfig/RapidJSON.pc
 share/doc/RapidJSON/examples/CMakeLists.txt
+share/doc/RapidJSON/examples/archiver/archiver.cpp
+share/doc/RapidJSON/examples/archiver/archiver.h
+share/doc/RapidJSON/examples/archiver/archivertest.cpp
 share/doc/RapidJSON/examples/capitalize/capitalize.cpp
 share/doc/RapidJSON/examples/condense/condense.cpp
 share/doc/RapidJSON/examples/filterkey/filterkey.cpp
 share/doc/RapidJSON/examples/filterkeydom/filterkeydom.cpp
 share/doc/RapidJSON/examples/jsonx/jsonx.cpp
+share/doc/RapidJSON/examples/lookaheadparser/lookaheadparser.cpp
 share/doc/RapidJSON/examples/messagereader/messagereader.cpp
 share/doc/RapidJSON/examples/parsebyparts/parsebyparts.cpp
 share/doc/RapidJSON/examples/pretty/pretty.cpp
@@ -50,7 +58,10 @@ share/doc/RapidJSON/examples/prettyauto/
 share/doc/RapidJSON/examples/schemavalidator/schemavalidator.cpp
 share/doc/RapidJSON/examples/serialize/serialize.cpp
 share/doc/RapidJSON/examples/simpledom/simpledom.cpp
+share/doc/RapidJSON/examples/simplepullreader/simplepullreader.cpp
 share/doc/RapidJSON/examples/simplereader/simplereader.cpp
 share/doc/RapidJSON/examples/simplewriter/simplewriter.cpp
+share/doc/RapidJSON/examples/sortkeys/sortkeys.cpp
+share/doc/RapidJSON/examples/traverseaspointer.cpp
 share/doc/RapidJSON/examples/tutorial/tutorial.cpp
 share/doc/RapidJSON/readme.md

Index: pkgsrc/textproc/rapidjson/distinfo
diff -u pkgsrc/textproc/rapidjson/distinfo:1.5 pkgsrc/textproc/rapidjson/distinfo:1.6
--- pkgsrc/textproc/rapidjson/distinfo:1.5      Mon Aug 11 12:04:14 2025
+++ pkgsrc/textproc/rapidjson/distinfo  Sun Dec 21 09:00:30 2025
@@ -1,8 +1,6 @@
-$NetBSD: distinfo,v 1.5 2025/08/11 12:04:14 wiz Exp $
+$NetBSD: distinfo,v 1.6 2025/12/21 09:00:30 markd Exp $
 
-BLAKE2s (rapidjson-1.1.0.tar.gz) = 2208432721a51dd2a1b7345cb7d80599c63e348ae6d1aa6269bfbcaf6651b3fe
-SHA512 (rapidjson-1.1.0.tar.gz) = 2e82a4bddcd6c4669541f5945c2d240fb1b4fdd6e239200246d3dd50ce98733f0a4f6d3daa56f865d8c88779c036099c52a9ae85d47ad263686b68a88d832dff
-Size (rapidjson-1.1.0.tar.gz) = 1019402 bytes
-SHA1 (patch-CMakeLists.txt) = 66095e409f9ba394fa9a10f6d3c039174e93d071
+BLAKE2s (rapidjson-1.1.0.20250205-24b5e7a8b27f42fa16b96fc70aade9106cf7102f.tar.gz) = 0e32a47adbb9bf6e8cae712d64424baac9df92f19f26903dbf19dc215a92b9db
+SHA512 (rapidjson-1.1.0.20250205-24b5e7a8b27f42fa16b96fc70aade9106cf7102f.tar.gz) = 
50f8723414a6e63eadd45f97be5c44e9fff2d06216c8cc4df802f5bfc2a9416a039f2c69e9bb1882f7e756cd38a7097eea05cab76c739f45805dc41617140799
+Size (rapidjson-1.1.0.20250205-24b5e7a8b27f42fa16b96fc70aade9106cf7102f.tar.gz) = 1116703 bytes
 SHA1 (patch-example_CMakeLists.txt) = c7e1fff4b43c1e027cf49206d30b82b14b08aeb5
-SHA1 (patch-include_rapidjson_document.h) = 419be598d5076ef07f08c6190ba6e47729df4152



Home | Main Index | Thread Index | Old Index