summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2025-07-20 12:43:24 +0200
committerAndreas Enge <andreas@enge.fr>2025-07-20 12:43:24 +0200
commite507899e66b5b274e583671b1bc00d7e6cf8f8c0 (patch)
tree63458bab41bb3a0221b12640456a292bdf85dde7 /gnu
parent2e74b9eb80fb0b597c135c036ef1bde599639d2c (diff)
gnu: flatbuffers: Rename from flatbuffers-next.
* gnu/packages/serialization.scm (flatbuffers-next): Rename to... (flatbuffers): ...this. (flatbuffers-23.1, go-github-com-google-flatbuffers): Adapt references. * gnu/packages/kodi.scm (kodi): Adapt reference. * gnu/packages/machine-learning.scm (python-pytorch): Adapt reference. Change-Id: Ibac4837f6bec0a11e1afc146fddcec72001eab8f
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/kodi.scm2
-rw-r--r--gnu/packages/machine-learning.scm2
-rw-r--r--gnu/packages/serialization.scm8
3 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/kodi.scm b/gnu/packages/kodi.scm
index 064f0001993..6e2c2c9a5ec 100644
--- a/gnu/packages/kodi.scm
+++ b/gnu/packages/kodi.scm
@@ -436,7 +436,7 @@ secondary errors.")
436 eudev 436 eudev
437 ffmpeg 437 ffmpeg
438 flac 438 flac
439 flatbuffers-next 439 flatbuffers
440 fmt 440 fmt
441 fontconfig 441 fontconfig
442 freetype 442 freetype
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index 6fc46107206..7ad25e80c65 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -5304,7 +5304,7 @@ PyTorch.")
5304 clog 5304 clog
5305 cpp-httplib 5305 cpp-httplib
5306 eigen 5306 eigen
5307 flatbuffers-next 5307 flatbuffers
5308 fmt 5308 fmt
5309 fp16 5309 fp16
5310 fxdiv 5310 fxdiv
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 47fde870208..89d362c52f3 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -952,7 +952,7 @@ to generate and parse. The two primary functions are @code{cbor.loads} and
952@code{cbor.dumps}.") 952@code{cbor.dumps}.")
953 (license license:asl2.0))) 953 (license license:asl2.0)))
954 954
955(define-public flatbuffers-next 955(define-public flatbuffers
956 (package 956 (package
957 (name "flatbuffers") 957 (name "flatbuffers")
958 (version "24.12.23") 958 (version "24.12.23")
@@ -986,7 +986,7 @@ game development and other performance-critical applications.")
986(define-public flatbuffers-23.1 986(define-public flatbuffers-23.1
987 ;; needed explicitly by tensorflow-lite 2.13.1 987 ;; needed explicitly by tensorflow-lite 2.13.1
988 (package 988 (package
989 (inherit flatbuffers-next) 989 (inherit flatbuffers)
990 (version "23.1.21") 990 (version "23.1.21")
991 (source (origin 991 (source (origin
992 (method git-fetch) 992 (method git-fetch)
@@ -998,12 +998,12 @@ game development and other performance-critical applications.")
998 (base32 998 (base32
999 "1z3a6l8g2y53i5xzraswfs2i0i3kk52zv7nzc2q3fgisbyiri3pz")))) 999 "1z3a6l8g2y53i5xzraswfs2i0i3kk52zv7nzc2q3fgisbyiri3pz"))))
1000 (arguments 1000 (arguments
1001 (substitute-keyword-arguments (package-arguments flatbuffers-next) 1001 (substitute-keyword-arguments (package-arguments flatbuffers)
1002 ((#:configure-flags flags #~'()) 1002 ((#:configure-flags flags #~'())
1003 #~(append #$flags '("-DCMAKE_POSITION_INDEPENDENT_CODE=ON"))))))) 1003 #~(append #$flags '("-DCMAKE_POSITION_INDEPENDENT_CODE=ON")))))))
1004 1004
1005(define-public go-github-com-google-flatbuffers 1005(define-public go-github-com-google-flatbuffers
1006 (package/inherit flatbuffers-next 1006 (package/inherit flatbuffers
1007 (name "go-github-com-google-flatbuffers") 1007 (name "go-github-com-google-flatbuffers")
1008 (build-system go-build-system) 1008 (build-system go-build-system)
1009 (arguments 1009 (arguments