unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#51338] OpenShot 2.6.1 update
@ 2021-10-22 19:16 Leo Famulari
  2021-10-22 19:17 ` [bug#51338] [PATCH 1/4] gnu: libopenshot-audio: Update to 0.2.2 Leo Famulari
  2021-10-25 11:47 ` [bug#51338] OpenShot 2.6.1 update Efraim Flashner
  0 siblings, 2 replies; 8+ messages in thread
From: Leo Famulari @ 2021-10-22 19:16 UTC (permalink / raw)
  To: 51338

These patches update OpenShot to 2.6.1.




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

* [bug#51338] [PATCH 1/4] gnu: libopenshot-audio: Update to 0.2.2.
  2021-10-22 19:16 [bug#51338] OpenShot 2.6.1 update Leo Famulari
@ 2021-10-22 19:17 ` Leo Famulari
  2021-10-22 19:17   ` [bug#51338] [PATCH 2/4] gnu: libopenshot: Update to 0.2.7 Leo Famulari
                     ` (2 more replies)
  2021-10-25 11:47 ` [bug#51338] OpenShot 2.6.1 update Efraim Flashner
  1 sibling, 3 replies; 8+ messages in thread
From: Leo Famulari @ 2021-10-22 19:17 UTC (permalink / raw)
  To: 51338

* gnu/packages/audio.scm (libopenshot-audio): Update to 0.2.2.
---
 gnu/packages/audio.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index faf106fc68..e71dedb0ba 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -4698,7 +4698,7 @@ (define-public libfdk
 (define-public libopenshot-audio
   (package
     (name "libopenshot-audio")
-    (version "0.2.0")
+    (version "0.2.2")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -4707,7 +4707,7 @@ (define-public libopenshot-audio
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "13if0m5mvlqly8gmbhschzb9papkgp3yqivklhb949dhy16m8zgf"))))
+                "03dygh85riljk7dpn5a5a0d22a2kz45fs13gzwqgnbzzr1k17p2y"))))
     (build-system cmake-build-system)
     (inputs
      `(("alsa-lib" ,alsa-lib)
-- 
2.33.1





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

* [bug#51338] [PATCH 2/4] gnu: libopenshot: Update to 0.2.7.
  2021-10-22 19:17 ` [bug#51338] [PATCH 1/4] gnu: libopenshot-audio: Update to 0.2.2 Leo Famulari
@ 2021-10-22 19:17   ` Leo Famulari
  2021-10-22 19:17   ` [bug#51338] [PATCH 3/4] gnu: OpenShot: Update to 2.6.1 Leo Famulari
  2021-10-22 19:17   ` [bug#51338] [PATCH 4/4] gnu: Remove FFmpeg 4.3 Leo Famulari
  2 siblings, 0 replies; 8+ messages in thread
From: Leo Famulari @ 2021-10-22 19:17 UTC (permalink / raw)
  To: 51338

* gnu/packages/video.scm (libopenshot): Update to 0.2.7.
[origin]: Adjust snippet to upstream changes.
[inputs]: Add alsa-lib and zlib.
[propagated-inputs]: Replace ffmpeg-4.3 with ffmpeg.
---
 gnu/packages/video.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index d2a2a08ee3..168c16492a 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4589,7 +4589,7 @@ (define-public vidstab
 (define-public libopenshot
   (package
     (name "libopenshot")
-    (version "0.2.5")
+    (version "0.2.7")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -4598,11 +4598,11 @@ (define-public libopenshot
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1mxjkgjmjzgf628y3rscc6rqf55hxgjpmvwxlncfk1216i5xskwp"))
+                "0i9bsn8gklm1mvj60l3d3xrxdgy8svpxjfqcwsr308j5zjn30pv8"))
               (modules '((guix build utils)))
               (snippet '(begin
                           ;; Allow overriding of the python installation dir
-                          (substitute* "src/bindings/python/CMakeLists.txt"
+                          (substitute* "bindings/python/CMakeLists.txt"
                             (("(SET\\(PYTHON_MODULE_PATH.*)\\)" _ set)
                              (string-append set " CACHE PATH "
                                             "\"Python bindings directory\")")))
@@ -4614,11 +4614,12 @@ (define-public libopenshot
        ("python" ,python)
        ("swig" ,swig)
        ("unittest++" ,unittest-cpp)))
+    (inputs
+     `(("alsa-lib" ,alsa-lib)
+       ("zlib" ,zlib)))
     (propagated-inputs                  ;all referenced in installed headers
      `(("cppzmq" ,cppzmq)
-       ;; libopenshot doesn't yet build with ffmpeg 4.4 (see:
-       ;; https://github.com/OpenShot/libopenshot/issues/676).
-       ("ffmpeg" ,ffmpeg-4.3)
+       ("ffmpeg" ,ffmpeg)
        ("imagemagick" ,imagemagick)
        ("jsoncpp" ,jsoncpp)
        ("libopenshot-audio" ,libopenshot-audio)
-- 
2.33.1





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

* [bug#51338] [PATCH 3/4] gnu: OpenShot: Update to 2.6.1.
  2021-10-22 19:17 ` [bug#51338] [PATCH 1/4] gnu: libopenshot-audio: Update to 0.2.2 Leo Famulari
  2021-10-22 19:17   ` [bug#51338] [PATCH 2/4] gnu: libopenshot: Update to 0.2.7 Leo Famulari
@ 2021-10-22 19:17   ` Leo Famulari
  2021-10-22 19:17   ` [bug#51338] [PATCH 4/4] gnu: Remove FFmpeg 4.3 Leo Famulari
  2 siblings, 0 replies; 8+ messages in thread
From: Leo Famulari @ 2021-10-22 19:17 UTC (permalink / raw)
  To: 51338

* gnu/packages/video.scm (openshot): Update to 2.6.1.
[arguments]: Add a 'fix-symbolic-link' phase to work around a broken symlink.
---
 gnu/packages/video.scm | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 168c16492a..6587ac41f3 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4654,7 +4654,7 @@ (define-public libopenshot
 (define-public openshot
   (package
     (name "openshot")
-    (version "2.5.1")
+    (version "2.6.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -4663,7 +4663,7 @@ (define-public openshot
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0qc5i0ay6j2wab1whl41sjb71cj02pg6y79drf7asrprq8b2rmfq"))
+                "0pa8iwl217503bjlqg2zlrw5lxyq5hvxrf5apxrh3843hj1w1myv"))
        (modules '((guix build utils)))
        (snippet
         '(begin
@@ -4699,6 +4699,12 @@ (define-public openshot
                           (("fonts") "share/fonts/truetype")
                           (("[A-Za-z_-]+.ttf") "DejaVuSans.ttf")))
                       #t))
+                  ;; https://github.com/OpenShot/openshot-qt/issues/4502
+                  (add-before 'ensure-no-mtimes-pre-1980 'fix-symbolic-link
+                    (lambda _
+                      (delete-file "images/Humanity/actions/custom/razor_line_with_razor.png")
+                      (symlink "../../../../src/timeline/media/images/razor_line_with_razor.png"
+                               "images/Humanity/actions/custom/razor_line_with_razor.png")))
                   (add-before 'install 'set-tmp-home
                     (lambda _
                       ;; src/classes/info.py "needs" to create several
-- 
2.33.1





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

* [bug#51338] [PATCH 4/4] gnu: Remove FFmpeg 4.3.
  2021-10-22 19:17 ` [bug#51338] [PATCH 1/4] gnu: libopenshot-audio: Update to 0.2.2 Leo Famulari
  2021-10-22 19:17   ` [bug#51338] [PATCH 2/4] gnu: libopenshot: Update to 0.2.7 Leo Famulari
  2021-10-22 19:17   ` [bug#51338] [PATCH 3/4] gnu: OpenShot: Update to 2.6.1 Leo Famulari
@ 2021-10-22 19:17   ` Leo Famulari
  2 siblings, 0 replies; 8+ messages in thread
From: Leo Famulari @ 2021-10-22 19:17 UTC (permalink / raw)
  To: 51338

* gnu/packages/video.scm (ffmpeg-4.3): Remove variable.
---
 gnu/packages/video.scm | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 6587ac41f3..18d19266e2 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1699,17 +1699,6 @@ (define-public ffmpeg
 audio/video codec library.")
     (license license:gpl2+)))
 
-(define-public ffmpeg-4.3
-  (package/inherit ffmpeg
-    (version "4.3.2")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
-                                  version ".tar.xz"))
-              (sha256
-               (base32
-                "1nyd9jlcy0pqnwzi29a7sg50hq37vb0g3f9l16y3q8yh3m7ydr26"))))))
-
 (define-public ffmpeg-3.4
   (package
     (inherit ffmpeg)
-- 
2.33.1





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

* [bug#51338] OpenShot 2.6.1 update
  2021-10-22 19:16 [bug#51338] OpenShot 2.6.1 update Leo Famulari
  2021-10-22 19:17 ` [bug#51338] [PATCH 1/4] gnu: libopenshot-audio: Update to 0.2.2 Leo Famulari
@ 2021-10-25 11:47 ` Efraim Flashner
  2021-11-01 10:08   ` Efraim Flashner
  1 sibling, 1 reply; 8+ messages in thread
From: Efraim Flashner @ 2021-10-25 11:47 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 51338

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

On Fri, Oct 22, 2021 at 03:16:10PM -0400, Leo Famulari wrote:
> These patches update OpenShot to 2.6.1.

I haven't tested it but it looks good.

-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

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

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

* [bug#51338] OpenShot 2.6.1 update
  2021-10-25 11:47 ` [bug#51338] OpenShot 2.6.1 update Efraim Flashner
@ 2021-11-01 10:08   ` Efraim Flashner
  2021-11-01 14:10     ` bug#51338: " Leo Famulari
  0 siblings, 1 reply; 8+ messages in thread
From: Efraim Flashner @ 2021-11-01 10:08 UTC (permalink / raw)
  To: Leo Famulari, 51338

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

On Mon, Oct 25, 2021 at 02:47:26PM +0300, Efraim Flashner wrote:
> On Fri, Oct 22, 2021 at 03:16:10PM -0400, Leo Famulari wrote:
> > These patches update OpenShot to 2.6.1.
> 
> I haven't tested it but it looks good.
> 

Tested out the patches, it all looks good to me. Tested using
enlightenment/wayland, all the icons are still there.

You can also change the 'check phase for openshot to use the #:tests?
flag.


-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

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

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

* bug#51338: OpenShot 2.6.1 update
  2021-11-01 10:08   ` Efraim Flashner
@ 2021-11-01 14:10     ` Leo Famulari
  0 siblings, 0 replies; 8+ messages in thread
From: Leo Famulari @ 2021-11-01 14:10 UTC (permalink / raw)
  To: Efraim Flashner, 51338-done

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

On Mon, Nov 01, 2021 at 12:08:23PM +0200, Efraim Flashner wrote:
> On Mon, Oct 25, 2021 at 02:47:26PM +0300, Efraim Flashner wrote:
> > On Fri, Oct 22, 2021 at 03:16:10PM -0400, Leo Famulari wrote:
> > > These patches update OpenShot to 2.6.1.
> > 
> > I haven't tested it but it looks good.
> > 
> 
> Tested out the patches, it all looks good to me. Tested using
> enlightenment/wayland, all the icons are still there.
> 
> You can also change the 'check phase for openshot to use the #:tests?
> flag.

Thanks for your review! Pushed as 80c0505f166101bbe6d55b8f2314d1a18227b3ee

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

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

end of thread, other threads:[~2021-11-01 14:13 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-22 19:16 [bug#51338] OpenShot 2.6.1 update Leo Famulari
2021-10-22 19:17 ` [bug#51338] [PATCH 1/4] gnu: libopenshot-audio: Update to 0.2.2 Leo Famulari
2021-10-22 19:17   ` [bug#51338] [PATCH 2/4] gnu: libopenshot: Update to 0.2.7 Leo Famulari
2021-10-22 19:17   ` [bug#51338] [PATCH 3/4] gnu: OpenShot: Update to 2.6.1 Leo Famulari
2021-10-22 19:17   ` [bug#51338] [PATCH 4/4] gnu: Remove FFmpeg 4.3 Leo Famulari
2021-10-25 11:47 ` [bug#51338] OpenShot 2.6.1 update Efraim Flashner
2021-11-01 10:08   ` Efraim Flashner
2021-11-01 14:10     ` bug#51338: " Leo Famulari

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