unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#69938] [PATCH] gnu: opencv: Update to 4.9.0
@ 2024-03-22  5:11 Andy Tai
  2024-03-22 15:42 ` Christopher Baines
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Andy Tai @ 2024-03-22  5:11 UTC (permalink / raw)
  To: 69938; +Cc: Andy Tai

* gnu/packages/image-processing.scm (opencv): Update to 4.9.0

Change-Id: I982256730e33b418491ba2b9238c0e532cb9a7a9
---
 gnu/packages/image-processing.scm | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm
index 98a3d0396d..479d43fd70 100644
--- a/gnu/packages/image-processing.scm
+++ b/gnu/packages/image-processing.scm
@@ -494,7 +494,7 @@ (define-public vtk-7
 (define-public opencv
   (package
     (name "opencv")
-    (version "4.8.1")
+    (version "4.9.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -519,7 +519,6 @@ (define-public opencv
                                 "libjpeg"
                                 "libjpeg-turbo"
                                 "libpng"
-                                "libtengine"
                                 "libtiff"
                                 "libwebp"
                                 "openexr"
@@ -534,7 +533,7 @@ (define-public opencv
                   (for-each delete-file (find-files "." "\\.jar$"))))
               (sha256
                (base32
-                "1alvfqacbmrn7s6rbx0r150fg0lmsg13s887gn289vdawgrd7k04"))))
+                "1s3d2bzf74biz18flb33533dfx3j31305ddh4gzgvg55hpr1zp55"))))
     (build-system cmake-build-system)
     (arguments
      `(#:configure-flags
@@ -717,7 +716,7 @@ (define-public opencv
            (file-name (git-file-name "opencv_extra" version))
            (sha256
             (base32
-             "11y9b35j74gg4gqll4v366qmhvjkcqml45khiajd8zsk1fraf70l"))))
+             "1x095sgc0fkl8zzpxlswpnmxkf80cvzab1ddcq792dys5qm2s1x4"))))
        ("opencv-contrib"
         ,(origin
            (method git-fetch)
@@ -726,7 +725,7 @@ (define-public opencv
            (file-name (git-file-name "opencv_contrib" version))
            (sha256
             (base32
-             "16crcca9r4y4rby0dqdhc06qi84hjk6qxy2sql2dhh35hfs856rr"))))))
+             "17xrvzllbcrprxn6c0g4x25i2wa7yqa0ycv177wah3if9s30dgib"))))))
     (inputs
      (list eigen
            ffmpeg-4

base-commit: 69951a61a1d8f1f2135ea2dc836738be282b97bc
-- 
2.34.1





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

* [bug#69938] [PATCH] gnu: opencv: Update to 4.9.0
  2024-03-22  5:11 [bug#69938] [PATCH] gnu: opencv: Update to 4.9.0 Andy Tai
@ 2024-03-22 15:42 ` Christopher Baines
  2024-03-25  4:50 ` [bug#69938] [PATCH v2] " Andy Tai
  2024-03-25 18:09 ` [bug#69938] passes Guix QA Andy Tai
  2 siblings, 0 replies; 5+ messages in thread
From: Christopher Baines @ 2024-03-22 15:42 UTC (permalink / raw)
  To: Andy Tai; +Cc: 69938

[-- Attachment #1: Type: text/plain, Size: 1051 bytes --]


Andy Tai <atai@atai.org> writes:

> * gnu/packages/image-processing.scm (opencv): Update to 4.9.0
>
> Change-Id: I982256730e33b418491ba2b9238c0e532cb9a7a9
> ---
>  gnu/packages/image-processing.scm | 9 ++++-----
>  1 file changed, 4 insertions(+), 5 deletions(-)
>
> diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm
> index 98a3d0396d..479d43fd70 100644
> --- a/gnu/packages/image-processing.scm
> +++ b/gnu/packages/image-processing.scm
> @@ -494,7 +494,7 @@ (define-public vtk-7
>  (define-public opencv
>    (package
>      (name "opencv")
> -    (version "4.8.1")
> +    (version "4.9.0")
>      (source (origin
>                (method git-fetch)
>                (uri (git-reference
> @@ -519,7 +519,6 @@ (define-public opencv
>                                  "libjpeg"
>                                  "libjpeg-turbo"
>                                  "libpng"
> -                                "libtengine"

It would be good to have something in the commit message about why
you're making this change.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

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

* [bug#69938] [PATCH v2] gnu: opencv: Update to 4.9.0.
  2024-03-22  5:11 [bug#69938] [PATCH] gnu: opencv: Update to 4.9.0 Andy Tai
  2024-03-22 15:42 ` Christopher Baines
@ 2024-03-25  4:50 ` Andy Tai
  2024-03-25 21:10   ` Christopher Baines
  2024-03-25 18:09 ` [bug#69938] passes Guix QA Andy Tai
  2 siblings, 1 reply; 5+ messages in thread
From: Andy Tai @ 2024-03-25  4:50 UTC (permalink / raw)
  To: 69938; +Cc: Andy Tai

* gnu/packages/image-processing.scm (opencv): Update to 4.9.0.
  [source]: Remove non-existent "libtengine" from 3rdParty
  drectory list to be deleted.

Change-Id: I982256730e33b418491ba2b9238c0e532cb9a7a9
---
 gnu/packages/image-processing.scm | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm
index 52287ad951..ce54caba57 100644
--- a/gnu/packages/image-processing.scm
+++ b/gnu/packages/image-processing.scm
@@ -494,7 +494,7 @@ (define-public vtk-7
 (define-public opencv
   (package
     (name "opencv")
-    (version "4.8.1")
+    (version "4.9.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -519,7 +519,6 @@ (define-public opencv
                                 "libjpeg"
                                 "libjpeg-turbo"
                                 "libpng"
-                                "libtengine"
                                 "libtiff"
                                 "libwebp"
                                 "openexr"
@@ -534,7 +533,7 @@ (define-public opencv
                   (for-each delete-file (find-files "." "\\.jar$"))))
               (sha256
                (base32
-                "1alvfqacbmrn7s6rbx0r150fg0lmsg13s887gn289vdawgrd7k04"))))
+                "1s3d2bzf74biz18flb33533dfx3j31305ddh4gzgvg55hpr1zp55"))))
     (build-system cmake-build-system)
     (arguments
      `(#:configure-flags
@@ -717,7 +716,7 @@ (define-public opencv
            (file-name (git-file-name "opencv_extra" version))
            (sha256
             (base32
-             "11y9b35j74gg4gqll4v366qmhvjkcqml45khiajd8zsk1fraf70l"))))
+             "1x095sgc0fkl8zzpxlswpnmxkf80cvzab1ddcq792dys5qm2s1x4"))))
        ("opencv-contrib"
         ,(origin
            (method git-fetch)
@@ -726,7 +725,7 @@ (define-public opencv
            (file-name (git-file-name "opencv_contrib" version))
            (sha256
             (base32
-             "16crcca9r4y4rby0dqdhc06qi84hjk6qxy2sql2dhh35hfs856rr"))))))
+             "17xrvzllbcrprxn6c0g4x25i2wa7yqa0ycv177wah3if9s30dgib"))))))
     (inputs
      (list eigen
            ffmpeg-4

base-commit: a6fc564bcc32ba599fc701f340c2d59c47bb225b
-- 
2.34.1





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

* [bug#69938] passes Guix QA
  2024-03-22  5:11 [bug#69938] [PATCH] gnu: opencv: Update to 4.9.0 Andy Tai
  2024-03-22 15:42 ` Christopher Baines
  2024-03-25  4:50 ` [bug#69938] [PATCH v2] " Andy Tai
@ 2024-03-25 18:09 ` Andy Tai
  2 siblings, 0 replies; 5+ messages in thread
From: Andy Tai @ 2024-03-25 18:09 UTC (permalink / raw)
  To: 69938

patch passes Guix QA:
https://issues.guix.gnu.org/69938




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

* [bug#69938] [PATCH v2] gnu: opencv: Update to 4.9.0.
  2024-03-25  4:50 ` [bug#69938] [PATCH v2] " Andy Tai
@ 2024-03-25 21:10   ` Christopher Baines
  0 siblings, 0 replies; 5+ messages in thread
From: Christopher Baines @ 2024-03-25 21:10 UTC (permalink / raw)
  To: Andy Tai; +Cc: 69938, 69938-done

[-- Attachment #1: Type: text/plain, Size: 447 bytes --]


Andy Tai <atai@atai.org> writes:

> * gnu/packages/image-processing.scm (opencv): Update to 4.9.0.
>   [source]: Remove non-existent "libtengine" from 3rdParty
>   drectory list to be deleted.
>
> Change-Id: I982256730e33b418491ba2b9238c0e532cb9a7a9
> ---
>  gnu/packages/image-processing.scm | 9 ++++-----
>  1 file changed, 4 insertions(+), 5 deletions(-)

Thanks, I've pushed this to master as
82fe02130e5bb09c4c2d6aa36071caa8ee973f09.

Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

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

end of thread, other threads:[~2024-03-25 21:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-22  5:11 [bug#69938] [PATCH] gnu: opencv: Update to 4.9.0 Andy Tai
2024-03-22 15:42 ` Christopher Baines
2024-03-25  4:50 ` [bug#69938] [PATCH v2] " Andy Tai
2024-03-25 21:10   ` Christopher Baines
2024-03-25 18:09 ` [bug#69938] passes Guix QA Andy Tai

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).