unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#61728] [PATCH] gnu: flatbuffers: Update to 23.1.21
@ 2023-02-23  9:15 Andy Tai
  2023-03-02  3:24 ` 宋文武 via Guix-patches via
  2023-03-02  8:09 ` [bug#61728] [PATCH v2] gnu: Add flatbuffers-next Andy Tai
  0 siblings, 2 replies; 5+ messages in thread
From: Andy Tai @ 2023-02-23  9:15 UTC (permalink / raw)
  To: 61728; +Cc: Andy Tai

* gnu/packages/serialization.scm (flatbuffers): Update to 23.1.21
---
 gnu/packages/serialization.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 8ab1efd311..1bf4d357f4 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -670,7 +670,7 @@ (define-public python-cbor
 (define-public flatbuffers
   (package
     (name "flatbuffers")
-    (version "2.0.0")
+    (version "23.1.21")
     (source
       (origin
         (method git-fetch)
@@ -680,7 +680,7 @@ (define-public flatbuffers
         (file-name (git-file-name name version))
         (sha256
          (base32
-          "1zbf6bdpps8369r1ql00irxrp58jnalycc8jcapb8iqg654vlfz8"))))
+          "1z3a6l8g2y53i5xzraswfs2i0i3kk52zv7nzc2q3fgisbyiri3pz"))))
     (build-system cmake-build-system)
     (arguments
      '(#:build-type "Release"

base-commit: 31735e0ccfbc61905eb8558c14747bfcaea9b50f
prerequisite-patch-id: 5c2c505e1fefe02b0b8fe068d673dcc8fcc8b246
prerequisite-patch-id: b3de9e1babefba1a1903b848f185b9f8bcb224f4
-- 
2.39.1





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#61728] [PATCH] gnu: flatbuffers: Update to 23.1.21
  2023-02-23  9:15 [bug#61728] [PATCH] gnu: flatbuffers: Update to 23.1.21 Andy Tai
@ 2023-03-02  3:24 ` 宋文武 via Guix-patches via
  2023-03-02  6:39   ` Andy Tai
  2023-03-02  8:09 ` [bug#61728] [PATCH v2] gnu: Add flatbuffers-next Andy Tai
  1 sibling, 1 reply; 5+ messages in thread
From: 宋文武 via Guix-patches via @ 2023-03-02  3:24 UTC (permalink / raw)
  To: Andy Tai; +Cc: 61728

Andy Tai <atai@atai.org> writes:

> * gnu/packages/serialization.scm (flatbuffers): Update to 23.1.21

Hello, this will broke tensorflow-lite@2.5.0, kodi@19.5 not tested.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#61728] [PATCH] gnu: flatbuffers: Update to 23.1.21
  2023-03-02  3:24 ` 宋文武 via Guix-patches via
@ 2023-03-02  6:39   ` Andy Tai
  0 siblings, 0 replies; 5+ messages in thread
From: Andy Tai @ 2023-03-02  6:39 UTC (permalink / raw)
  To: 宋文武; +Cc: 61728

odd... flatbuffer has incompatibility in later versions?   will try to
figure out what happens here.

On Wed, Mar 1, 2023 at 7:23 PM 宋文武 <iyzsong@envs.net> wrote:
>
> Andy Tai <atai@atai.org> writes:
>
> > * gnu/packages/serialization.scm (flatbuffers): Update to 23.1.21
>
> Hello, this will broke tensorflow-lite@2.5.0, kodi@19.5 not tested.



-- 
Andy Tai, atai@atai.org, Skype: licheng.tai, Line: andy_tai, WeChat: andytai1010
Year 2023 民國112年
自動的精神力是信仰與覺悟
自動的行為力是勞動與技能




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#61728] [PATCH v2] gnu: Add flatbuffers-next
  2023-02-23  9:15 [bug#61728] [PATCH] gnu: flatbuffers: Update to 23.1.21 Andy Tai
  2023-03-02  3:24 ` 宋文武 via Guix-patches via
@ 2023-03-02  8:09 ` Andy Tai
  2023-03-05 21:45   ` bug#61728: [PATCH] gnu: flatbuffers: Update to 23.1.21 Ludovic Courtès
  1 sibling, 1 reply; 5+ messages in thread
From: Andy Tai @ 2023-03-02  8:09 UTC (permalink / raw)
  To: 61728, iyzsong; +Cc: Andy Tai

* gnu/packages/serialization.scm (flatbuffers-next): New variable
as flatbuffers@2.0.0 is depended on by tensorflow-lite so we cannot
just upgrade directly, so adding current release flatbuffers@23.1.21
as "next" for flatbuffers
---
 gnu/packages/serialization.scm | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 8ab1efd311..5b8f02b184 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -699,6 +699,22 @@ (define-public flatbuffers
 game development and other performance-critical applications.")
     (license license:asl2.0)))
 
+(define-public flatbuffers-next
+  (package
+    (inherit flatbuffers)
+    (name "flatbuffers-next")
+    (version "23.1.21")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/google/flatbuffers")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1z3a6l8g2y53i5xzraswfs2i0i3kk52zv7nzc2q3fgisbyiri3pz"))))))
+
+
 (define-public python-feather-format
   (package
     (name "python-feather-format")

base-commit: ef7df2ca7bb212455f1d6bbef5bbf7b1ac5a189d
prerequisite-patch-id: 5c2c505e1fefe02b0b8fe068d673dcc8fcc8b246
prerequisite-patch-id: b3de9e1babefba1a1903b848f185b9f8bcb224f4
prerequisite-patch-id: d827e9c76e13bae69214ec1b674b0f6bfc4bfb34
prerequisite-patch-id: f2fc0529e4a54e1947db12df9ee6b2151b64a4b4
prerequisite-patch-id: 3ffc80c780ae73c5dc5574880c13ce173171bf41
-- 
2.39.1





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#61728: [PATCH] gnu: flatbuffers: Update to 23.1.21
  2023-03-02  8:09 ` [bug#61728] [PATCH v2] gnu: Add flatbuffers-next Andy Tai
@ 2023-03-05 21:45   ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2023-03-05 21:45 UTC (permalink / raw)
  To: Andy Tai; +Cc: 61728-done, iyzsong

Hi Andy,

Andy Tai <atai@atai.org> skribis:

> * gnu/packages/serialization.scm (flatbuffers-next): New variable
> as flatbuffers@2.0.0 is depended on by tensorflow-lite so we cannot
> just upgrade directly, so adding current release flatbuffers@23.1.21
> as "next" for flatbuffers
> ---
>  gnu/packages/serialization.scm | 16 ++++++++++++++++
>  1 file changed, 16 insertions(+)
>
> diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
> index 8ab1efd311..5b8f02b184 100644
> --- a/gnu/packages/serialization.scm
> +++ b/gnu/packages/serialization.scm
> @@ -699,6 +699,22 @@ (define-public flatbuffers
>  game development and other performance-critical applications.")
>      (license license:asl2.0)))
>  
> +(define-public flatbuffers-next
> +  (package
> +    (inherit flatbuffers)
> +    (name "flatbuffers-next")

Applied, but I kept the package name “flatbuffers” (the variable name is
fine).

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-03-05 21:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-23  9:15 [bug#61728] [PATCH] gnu: flatbuffers: Update to 23.1.21 Andy Tai
2023-03-02  3:24 ` 宋文武 via Guix-patches via
2023-03-02  6:39   ` Andy Tai
2023-03-02  8:09 ` [bug#61728] [PATCH v2] gnu: Add flatbuffers-next Andy Tai
2023-03-05 21:45   ` bug#61728: [PATCH] gnu: flatbuffers: Update to 23.1.21 Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).