pkgsrc-WIP-changes archive

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

flatbuffers: Upgrade to 25.12.19



Module Name:	pkgsrc-wip
Committed By:	Mayuresh <mayuresh%warunjikar.in@localhost>
Pushed By:	mayuresh
Date:		Tue Jan 13 16:32:26 2026 +0530
Changeset:	8127a08c25fcce28f7df955e275796260f955258

Added Files:
	flatbuffers/COMMIT_MSG
	flatbuffers/DESCR
	flatbuffers/Makefile
	flatbuffers/PLIST
	flatbuffers/buildlink3.mk
	flatbuffers/distinfo

Log Message:
flatbuffers: Upgrade to 25.12.19

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=8127a08c25fcce28f7df955e275796260f955258

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

diffstat:
 flatbuffers/COMMIT_MSG    |  3 +++
 flatbuffers/DESCR         |  4 ++++
 flatbuffers/Makefile      | 21 +++++++++++++++++++++
 flatbuffers/PLIST         | 43 +++++++++++++++++++++++++++++++++++++++++++
 flatbuffers/buildlink3.mk | 12 ++++++++++++
 flatbuffers/distinfo      |  5 +++++
 6 files changed, 88 insertions(+)

diffs:
diff --git a/flatbuffers/COMMIT_MSG b/flatbuffers/COMMIT_MSG
new file mode 100644
index 0000000000..41b2f1e691
--- /dev/null
+++ b/flatbuffers/COMMIT_MSG
@@ -0,0 +1,3 @@
+devel/flatbuffers: Update flatbuffers to 25.12.19
+
+Update prepared in wip by Mayuresh <mayuresh%warunjikar.in@localhost>
diff --git a/flatbuffers/DESCR b/flatbuffers/DESCR
new file mode 100644
index 0000000000..7da81dc8d3
--- /dev/null
+++ b/flatbuffers/DESCR
@@ -0,0 +1,4 @@
+FlatBuffers is an efficient cross platform serialization library for C++, C#,
+C, Go, Java, Kotlin, JavaScript, Lobster, Lua, TypeScript, PHP, Python, Rust
+and Swift. It was originally created at Google for game development and other
+performance-critical applications.
diff --git a/flatbuffers/Makefile b/flatbuffers/Makefile
new file mode 100644
index 0000000000..9a5fa8c101
--- /dev/null
+++ b/flatbuffers/Makefile
@@ -0,0 +1,21 @@
+# $NetBSD$
+
+DISTNAME=	flatbuffers-25.12.19
+CATEGORIES=	devel
+MASTER_SITES=	${MASTER_SITE_GITHUB:=google/}
+GITHUB_TAG=	refs/tags/v${PKGVERSION_NOREV}
+
+MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=	https://github.com/google/flatbuffers/
+COMMENT=	Memory Efficient Serialization Library
+LICENSE=	apache-2.0
+
+WRKSRC=	${WRKDIR}/${DISTNAME}
+
+USE_TOOLS+=	pkg-config
+USE_LANGUAGES=	c++
+
+PKGCONFIG_OVERRIDE+=	CMake/flatbuffers.pc.in
+
+.include "../../devel/cmake/build.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/flatbuffers/PLIST b/flatbuffers/PLIST
new file mode 100644
index 0000000000..ed5d957bb8
--- /dev/null
+++ b/flatbuffers/PLIST
@@ -0,0 +1,43 @@
+@comment $NetBSD$
+bin/flatc
+include/flatbuffers/allocator.h
+include/flatbuffers/array.h
+include/flatbuffers/base.h
+include/flatbuffers/buffer.h
+include/flatbuffers/buffer_ref.h
+include/flatbuffers/code_generator.h
+include/flatbuffers/code_generators.h
+include/flatbuffers/default_allocator.h
+include/flatbuffers/detached_buffer.h
+include/flatbuffers/file_manager.h
+include/flatbuffers/flatbuffer_builder.h
+include/flatbuffers/flatbuffers.h
+include/flatbuffers/flatc.h
+include/flatbuffers/flex_flat_util.h
+include/flatbuffers/flexbuffers.h
+include/flatbuffers/grpc.h
+include/flatbuffers/hash.h
+include/flatbuffers/idl.h
+include/flatbuffers/minireflect.h
+include/flatbuffers/pch/flatc_pch.h
+include/flatbuffers/pch/pch.h
+include/flatbuffers/reflection.h
+include/flatbuffers/reflection_generated.h
+include/flatbuffers/registry.h
+include/flatbuffers/stl_emulation.h
+include/flatbuffers/string.h
+include/flatbuffers/struct.h
+include/flatbuffers/table.h
+include/flatbuffers/util.h
+include/flatbuffers/vector.h
+include/flatbuffers/vector_downward.h
+include/flatbuffers/verifier.h
+lib/cmake/flatbuffers/BuildFlatBuffers.cmake
+lib/cmake/flatbuffers/FlatBuffersTargets-noconfig.cmake
+lib/cmake/flatbuffers/FlatBuffersTargets.cmake
+lib/cmake/flatbuffers/FlatcTargets-noconfig.cmake
+lib/cmake/flatbuffers/FlatcTargets.cmake
+lib/cmake/flatbuffers/flatbuffers-config-version.cmake
+lib/cmake/flatbuffers/flatbuffers-config.cmake
+lib/libflatbuffers.a
+lib/pkgconfig/flatbuffers.pc
diff --git a/flatbuffers/buildlink3.mk b/flatbuffers/buildlink3.mk
new file mode 100644
index 0000000000..bc22ff450a
--- /dev/null
+++ b/flatbuffers/buildlink3.mk
@@ -0,0 +1,12 @@
+# $NetBSD$
+
+BUILDLINK_TREE+=	flatbuffers
+
+.if !defined(FLATBUFFERS_BUILDLINK3_MK)
+FLATBUFFERS_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.flatbuffers+=	flatbuffers>=25.12.19
+BUILDLINK_PKGSRCDIR.flatbuffers?=	../../wip/flatbuffers
+.endif	# FLATBUFFERS_BUILDLINK3_MK
+
+BUILDLINK_TREE+=	-flatbuffers
diff --git a/flatbuffers/distinfo b/flatbuffers/distinfo
new file mode 100644
index 0000000000..c771b0106c
--- /dev/null
+++ b/flatbuffers/distinfo
@@ -0,0 +1,5 @@
+$NetBSD$
+
+BLAKE2s (flatbuffers-25.12.19.tar.gz) = 7239f59ac2965994605ca20b48ae86c4b444023b3fd7c3f656fda7786d7be86f
+SHA512 (flatbuffers-25.12.19.tar.gz) = 808c77536fbfb1c8a1145506873a2b4e5cb508e48bf35f8502a2d1349b64e7581bfe7ff2f587b3edb2642cc885c60c0170a8875fad245240a1288057f4c07a42
+Size (flatbuffers-25.12.19.tar.gz) = 2355743 bytes


Home | Main Index | Thread Index | Old Index