Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] krita: update to 5.1.3
@ 2022-12-06  3:32 hervyqa
  2022-12-06  5:06 ` [PR PATCH] [Updated] " hervyqa
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: hervyqa @ 2022-12-06  3:32 UTC (permalink / raw)
  To: ml

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

There is a new pull request by hervyqa against master on the void-packages repository

https://github.com/hervyqa/void-packages krita
https://github.com/void-linux/void-packages/pull/40923

krita: update to 5.1.3
#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)

A patch file from https://github.com/void-linux/void-packages/pull/40923.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-krita-40923.patch --]
[-- Type: text/x-diff, Size: 1086 bytes --]

From 0cce12648e2eccc2b9d0d9a51dab9b4839a48f71 Mon Sep 17 00:00:00 2001
From: Hervy Qurrotul Ainur Rozi <hervyqa@proton.me>
Date: Wed, 16 Nov 2022 10:41:31 +0700
Subject: [PATCH] krita: update to 5.1.3

---
 srcpkgs/krita/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 0ad47a7fb9ef..b8a2a11443b2 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
-version=5.0.8
-revision=2
+version=5.1.3
+revision=1
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules gettext pkg-config python3
@@ -22,7 +22,7 @@ maintainer="John <me@johnnynator.dev>"
 license="GPL-3.0-only"
 homepage="https://krita.org/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.xz"
-checksum=4c221a3c7bbbb8d3297ffe9032c8946cbd835623f22b27f08f617aaa4e496083
+checksum=896e6455baf1110b3572340e164fc80651bbc72f7149c2276fafcc08ac94d8cc
 python_version=3
 replaces="calligra-krita>=0"
 make_check=no

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

* Re: [PR PATCH] [Updated] krita: update to 5.1.3
  2022-12-06  3:32 [PR PATCH] krita: update to 5.1.3 hervyqa
@ 2022-12-06  5:06 ` hervyqa
  2022-12-06  5:16 ` hervyqa
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: hervyqa @ 2022-12-06  5:06 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by hervyqa against master on the void-packages repository

https://github.com/hervyqa/void-packages krita
https://github.com/void-linux/void-packages/pull/40923

krita: update to 5.1.3
#### Testing the changes
- I tested the changes in this PR: **NO**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)

A patch file from https://github.com/void-linux/void-packages/pull/40923.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-krita-40923.patch --]
[-- Type: text/x-diff, Size: 4041 bytes --]

From b77d213e8a25115567dd9c95c315f5e8e44ba92c Mon Sep 17 00:00:00 2001
From: Hervy Qurrotul Ainur Rozi <hervyqa@proton.me>
Date: Tue, 6 Dec 2022 12:05:32 +0700
Subject: [PATCH 1/2] openexr: update to 3.1.5

---
 srcpkgs/openexr/patches/musl-_fpstate.patch   | 21 -------------------
 .../openexr/patches/pkgconfig-prefix.patch    | 10 ++++++---
 srcpkgs/openexr/template                      |  6 +++---
 3 files changed, 10 insertions(+), 27 deletions(-)
 delete mode 100644 srcpkgs/openexr/patches/musl-_fpstate.patch

diff --git a/srcpkgs/openexr/patches/musl-_fpstate.patch b/srcpkgs/openexr/patches/musl-_fpstate.patch
deleted file mode 100644
index 0584598bb38f..000000000000
--- a/srcpkgs/openexr/patches/musl-_fpstate.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- a/IlmBase/IexMath/IexMathFpu.cpp	2019-12-01 15:42:08.143387128 +0100
-+++ b/IlmBase/IexMath/IexMathFpu.cpp	2019-12-01 15:43:02.402389927 +0100
-@@ -281,10 +281,18 @@
- inline void
- restoreControlRegs (const ucontext_t & ucon, bool clearExceptions)
- {
-+#if defined(__GLIBC__) || defined(__i386__)
-     setCw ((ucon.uc_mcontext.fpregs->cw & cwRestoreMask) | cwRestoreVal);
-+#else
-+    setCw ((ucon.uc_mcontext.fpregs->cwd & cwRestoreMask) | cwRestoreVal);
-+#endif
-     
-     _fpstate * kfp = reinterpret_cast<_fpstate *> (ucon.uc_mcontext.fpregs);
-+#if defined(__GLIBC__) || defined(__i386__)
-     setMxcsr (kfp->magic == 0 ? kfp->mxcsr : 0, clearExceptions);
-+#else
-+    setMxcsr (kfp->mxcsr, clearExceptions);
-+#endif
- }
- 
- #endif
diff --git a/srcpkgs/openexr/patches/pkgconfig-prefix.patch b/srcpkgs/openexr/patches/pkgconfig-prefix.patch
index d28d9a6e33d9..e24b7b4ff872 100644
--- a/srcpkgs/openexr/patches/pkgconfig-prefix.patch
+++ b/srcpkgs/openexr/patches/pkgconfig-prefix.patch
@@ -1,6 +1,10 @@
---- a/OpenEXR/OpenEXR.pc.in	2019-09-18 03:02:06.000000000 +0200
-+++ b/OpenEXR/OpenEXR.pc.in	2019-12-01 17:30:08.680721453 +0100
-@@ -6,8 +6,8 @@
+diff --git a/cmake/OpenEXR.pc.in b/cmake/OpenEXR.pc.in
+index 24741b7..802903c 100644
+--- a/cmake/OpenEXR.pc.in
++++ b/cmake/OpenEXR.pc.in
+@@ -4,10 +4,10 @@
+ ##
+ 
  prefix=@prefix@
 -exec_prefix=@exec_prefix@
 -libdir=@libdir@
diff --git a/srcpkgs/openexr/template b/srcpkgs/openexr/template
index 3f1b59753c1b..2ca91b373316 100644
--- a/srcpkgs/openexr/template
+++ b/srcpkgs/openexr/template
@@ -1,7 +1,7 @@
 # Template file for 'openexr'
 pkgname=openexr
-version=2.4.1
-revision=2
+version=3.1.5
+revision=1
 build_style=cmake
 build_helper="qemu"
 hostmakedepends="pkg-config"
@@ -11,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
 homepage="https://www.openexr.com/"
 distfiles="https://github.com/openexr/openexr/archive/v${version}.tar.gz>${pkgname}-${version}.tar.gz"
-checksum=3ebbe9a8e67edb4a25890b98c598e9fe23b10f96d1416d6a3ff0732e99d001c1
+checksum=93925805c1fc4f8162b35f0ae109c4a75344e6decae5a240afdfce25f8a433ec
 
 pre_configure() {
 	if [ "$CROSS_BUILD" ]; then

From 7655e472953514d490488e16d2da9323e70e129e Mon Sep 17 00:00:00 2001
From: Hervy Qurrotul Ainur Rozi <hervyqa@proton.me>
Date: Tue, 6 Dec 2022 12:05:43 +0700
Subject: [PATCH 2/2] krita: update to 5.1.3

---
 srcpkgs/krita/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template
index 0ad47a7fb9ef..b8a2a11443b2 100644
--- a/srcpkgs/krita/template
+++ b/srcpkgs/krita/template
@@ -1,7 +1,7 @@
 # Template file for 'krita'
 pkgname=krita
-version=5.0.8
-revision=2
+version=5.1.3
+revision=1
 build_style=cmake
 configure_args="-Wno-dev -DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules gettext pkg-config python3
@@ -22,7 +22,7 @@ maintainer="John <me@johnnynator.dev>"
 license="GPL-3.0-only"
 homepage="https://krita.org/"
 distfiles="${KDE_SITE}/krita/${version}/krita-${version}.tar.xz"
-checksum=4c221a3c7bbbb8d3297ffe9032c8946cbd835623f22b27f08f617aaa4e496083
+checksum=896e6455baf1110b3572340e164fc80651bbc72f7149c2276fafcc08ac94d8cc
 python_version=3
 replaces="calligra-krita>=0"
 make_check=no

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

* Re: krita: update to 5.1.3
  2022-12-06  3:32 [PR PATCH] krita: update to 5.1.3 hervyqa
  2022-12-06  5:06 ` [PR PATCH] [Updated] " hervyqa
@ 2022-12-06  5:16 ` hervyqa
  2022-12-06 15:20 ` classabbyamp
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: hervyqa @ 2022-12-06  5:16 UTC (permalink / raw)
  To: ml

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

New comment by hervyqa on void-packages repository

https://github.com/void-linux/void-packages/pull/40923#issuecomment-1338776958

Comment:
latest krita requires latest openexr too but i don't know how to fix it. :)

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

* Re: krita: update to 5.1.3
  2022-12-06  3:32 [PR PATCH] krita: update to 5.1.3 hervyqa
  2022-12-06  5:06 ` [PR PATCH] [Updated] " hervyqa
  2022-12-06  5:16 ` hervyqa
@ 2022-12-06 15:20 ` classabbyamp
  2023-03-07  2:07 ` github-actions
  2023-03-22  1:54 ` [PR PATCH] [Closed]: " github-actions
  4 siblings, 0 replies; 6+ messages in thread
From: classabbyamp @ 2022-12-06 15:20 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/40923#issuecomment-1339543627

Comment:
read the error... it says it's trying and failing to get the submodules

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

* Re: krita: update to 5.1.3
  2022-12-06  3:32 [PR PATCH] krita: update to 5.1.3 hervyqa
                   ` (2 preceding siblings ...)
  2022-12-06 15:20 ` classabbyamp
@ 2023-03-07  2:07 ` github-actions
  2023-03-22  1:54 ` [PR PATCH] [Closed]: " github-actions
  4 siblings, 0 replies; 6+ messages in thread
From: github-actions @ 2023-03-07  2:07 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/40923#issuecomment-1457386199

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Closed]: krita: update to 5.1.3
  2022-12-06  3:32 [PR PATCH] krita: update to 5.1.3 hervyqa
                   ` (3 preceding siblings ...)
  2023-03-07  2:07 ` github-actions
@ 2023-03-22  1:54 ` github-actions
  4 siblings, 0 replies; 6+ messages in thread
From: github-actions @ 2023-03-22  1:54 UTC (permalink / raw)
  To: ml

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

There's a closed pull request on the void-packages repository

krita: update to 5.1.3
https://github.com/void-linux/void-packages/pull/40923

Description:
#### Testing the changes
- I tested the changes in this PR: **NO**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)

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

end of thread, other threads:[~2023-03-22  1:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-06  3:32 [PR PATCH] krita: update to 5.1.3 hervyqa
2022-12-06  5:06 ` [PR PATCH] [Updated] " hervyqa
2022-12-06  5:16 ` hervyqa
2022-12-06 15:20 ` classabbyamp
2023-03-07  2:07 ` github-actions
2023-03-22  1:54 ` [PR PATCH] [Closed]: " github-actions

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 NNTP newsgroup(s).