Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Blender: update to 3.0.1; OpenSubdiv update to 3.4.4
@ 2022-02-22 20:41 Johnnynator
  2022-05-13 23:12 ` hervyqa
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Johnnynator @ 2022-02-22 20:41 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Johnnynator/void-packages blender-3.0.1
https://github.com/void-linux/void-packages/pull/35794

Blender: update to 3.0.1; OpenSubdiv update to 3.4.4
- OpenSubdiv: update to 3.4.4.
- blender: update to 3.0.1.

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**|**briefly**|**NO**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 6be87c62534335b3f73528c2ca3127669f6d0d8c Mon Sep 17 00:00:00 2001
From: John <me@johnnynator.dev>
Date: Tue, 22 Feb 2022 21:27:00 +0100
Subject: [PATCH 1/2] OpenSubdiv: update to 3.4.4.

---
 common/shlibs               |  4 ++--
 srcpkgs/OpenSubdiv-tools    |  1 +
 srcpkgs/OpenSubdiv/template | 15 +++++++++++----
 3 files changed, 14 insertions(+), 6 deletions(-)
 create mode 120000 srcpkgs/OpenSubdiv-tools

diff --git a/common/shlibs b/common/shlibs
index 32befc92d641..5dde99a40872 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3884,8 +3884,8 @@ librdkafka.so.1 librdkafka-1.4.4_3
 librdkafka++.so.1 librdkafka-1.4.4_3
 libraft.so.0 raft-0.9.16_1
 libmdnsd.so.1 libmdnsd-0.9_1
-libosdGPU.so.3.4.3 OpenSubdiv-3.4.3_1
-libosdCPU.so.3.4.3 OpenSubdiv-3.4.3_1
+libosdGPU.so.3.4.4 OpenSubdiv-3.4.4_1
+libosdCPU.so.3.4.4 OpenSubdiv-3.4.4_1
 libdino.so.0 dino-0.1.0_1
 libxmpp-vala.so.0 dino-0.1.0_1
 libqlite.so.0 dino-0.1.0_1
diff --git a/srcpkgs/OpenSubdiv-tools b/srcpkgs/OpenSubdiv-tools
new file mode 120000
index 000000000000..3b6ad59f809a
--- /dev/null
+++ b/srcpkgs/OpenSubdiv-tools
@@ -0,0 +1 @@
+OpenSubdiv
\ No newline at end of file
diff --git a/srcpkgs/OpenSubdiv/template b/srcpkgs/OpenSubdiv/template
index f910373a4e67..78719418341a 100644
--- a/srcpkgs/OpenSubdiv/template
+++ b/srcpkgs/OpenSubdiv/template
@@ -1,12 +1,13 @@
 # Template file for 'OpenSubdiv'
 pkgname=OpenSubdiv
-version=3.4.3
-revision=3
+version=3.4.4
+revision=1
 wrksrc="OpenSubdiv-${version//./_}"
 build_style=cmake
 # TODO: CUDA/OpenCL support
 # NO_GLTESTS: skip tests which require X11 & $DISPLAY environment variable
-configure_args="-DOpenGL_GL_PREFERENCE=GLVND -DNO_GLTESTS=1 -DNO_CUDA=1"
+configure_args="-DOpenGL_GL_PREFERENCE=GLVND -DNO_GLTESTS=1 -DNO_CUDA=1
+ -DNO_TUTORIALS=1"
 makedepends="libXrandr-devel libXinerama-devel libXcursor-devel zlib-devel
  libgomp-devel glfw-devel glew-devel tbb-devel libXxf86vm-devel"
 short_desc="Open-Source subdivision surface library"
@@ -14,7 +15,7 @@ maintainer="John <me@johnnynator.dev>"
 license="Apache-2.0"
 homepage="http://graphics.pixar.com/opensubdiv/docs/intro.html"
 distfiles="https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${version//./_}.tar.gz"
-checksum=7b22eb27d636ab0c1e03722c7a5a5bd4f11664ee65c9b48f341a6d0ce7f36745
+checksum=20d49f80a2b778ad4d01f091ad88d8c2f91cf6c7363940c6213241ce6f1048fb
 
 if [ "$CROSS_BUILD" ]; then
 	hostmakedepends+=" OpenSubdiv"
@@ -26,6 +27,12 @@ if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
 	configure_args+=" -DCMAKE_CXX_STANDARD_LIBRARIES=-latomic"
 fi
 
+OpenSubdiv-tools_package() {
+	short_desc+=" - tools"
+	pkg_install() {
+		vmove usr/bin
+	}
+}
 
 OpenSubdiv-devel_package() {
 	depends="${sourcepkg}>=${version}_${revision}"

From 050ea07d61bd120b68a3989218db8b31392d68b0 Mon Sep 17 00:00:00 2001
From: John <me@johnnynator.dev>
Date: Tue, 22 Feb 2022 21:29:45 +0100
Subject: [PATCH 2/2] blender: update to 3.0.1.

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

diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 91799f04fba5..1e045f16e9f8 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,7 +1,7 @@
 # Template file for 'blender'
 pkgname=blender
-version=3.0.0
-revision=4
+version=3.0.1
+revision=1
 archs="x86_64* ppc64*"
 build_style="cmake"
 pycompile_dirs="/usr/share/blender/${version%.*}/scripts"
@@ -26,7 +26,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-3.0-or-later"
 homepage="https://www.blender.org"
 distfiles="https://download.blender.org/source/blender-${version}.tar.xz"
-checksum=50f0f32bcdf8825a12ba5c8d853b6e6c6b2da65ef01e858ea5900a06cccbf1cb
+checksum=19bb0a96269e0a5c4b5d62b98363836054471c096b83d9755598b25b347d7441
 python_version=3
 CXXFLAGS="-DNDEBUG"
 CFLAGS="$CXXFLAGS"

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

* Re: Blender: update to 3.0.1; OpenSubdiv update to 3.4.4
  2022-02-22 20:41 [PR PATCH] Blender: update to 3.0.1; OpenSubdiv update to 3.4.4 Johnnynator
@ 2022-05-13 23:12 ` hervyqa
  2022-06-08  0:41 ` hervyqa
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: hervyqa @ 2022-05-13 23:12 UTC (permalink / raw)
  To: ml

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

New comment by hervyqa on void-packages repository

https://github.com/void-linux/void-packages/pull/35794#issuecomment-1126569361

Comment:
Support for GMP library #36772

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

* Re: Blender: update to 3.0.1; OpenSubdiv update to 3.4.4
  2022-02-22 20:41 [PR PATCH] Blender: update to 3.0.1; OpenSubdiv update to 3.4.4 Johnnynator
  2022-05-13 23:12 ` hervyqa
@ 2022-06-08  0:41 ` hervyqa
  2022-06-13  1:49 ` hervyqa
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: hervyqa @ 2022-06-08  0:41 UTC (permalink / raw)
  To: ml

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

New comment by hervyqa on void-packages repository

https://github.com/void-linux/void-packages/pull/35794#issuecomment-1149319418

Comment:
Info: blender 3.12 is available.

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

* Re: Blender: update to 3.0.1; OpenSubdiv update to 3.4.4
  2022-02-22 20:41 [PR PATCH] Blender: update to 3.0.1; OpenSubdiv update to 3.4.4 Johnnynator
  2022-05-13 23:12 ` hervyqa
  2022-06-08  0:41 ` hervyqa
@ 2022-06-13  1:49 ` hervyqa
  2022-06-21 18:51 ` biopsin
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: hervyqa @ 2022-06-13  1:49 UTC (permalink / raw)
  To: ml

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

New comment by hervyqa on void-packages repository

https://github.com/void-linux/void-packages/pull/35794#issuecomment-1149319418

Comment:
Info: blender 3.2 is available.

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

* Re: Blender: update to 3.0.1; OpenSubdiv update to 3.4.4
  2022-02-22 20:41 [PR PATCH] Blender: update to 3.0.1; OpenSubdiv update to 3.4.4 Johnnynator
                   ` (2 preceding siblings ...)
  2022-06-13  1:49 ` hervyqa
@ 2022-06-21 18:51 ` biopsin
  2022-09-20  2:14 ` github-actions
  2022-10-05  2:13 ` [PR PATCH] [Closed]: " github-actions
  5 siblings, 0 replies; 7+ messages in thread
From: biopsin @ 2022-06-21 18:51 UTC (permalink / raw)
  To: ml

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

New comment by biopsin on void-packages repository

https://github.com/void-linux/void-packages/pull/35794#issuecomment-1162190288

Comment:
@Johnnynator any chance you could look at issue[#32012](https://github.com/void-linux/void-packages/issues/32012) ,unfortunatly its above my competance

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

* Re: Blender: update to 3.0.1; OpenSubdiv update to 3.4.4
  2022-02-22 20:41 [PR PATCH] Blender: update to 3.0.1; OpenSubdiv update to 3.4.4 Johnnynator
                   ` (3 preceding siblings ...)
  2022-06-21 18:51 ` biopsin
@ 2022-09-20  2:14 ` github-actions
  2022-10-05  2:13 ` [PR PATCH] [Closed]: " github-actions
  5 siblings, 0 replies; 7+ messages in thread
From: github-actions @ 2022-09-20  2:14 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/35794#issuecomment-1251752869

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] 7+ messages in thread

* Re: [PR PATCH] [Closed]: Blender: update to 3.0.1; OpenSubdiv update to 3.4.4
  2022-02-22 20:41 [PR PATCH] Blender: update to 3.0.1; OpenSubdiv update to 3.4.4 Johnnynator
                   ` (4 preceding siblings ...)
  2022-09-20  2:14 ` github-actions
@ 2022-10-05  2:13 ` github-actions
  5 siblings, 0 replies; 7+ messages in thread
From: github-actions @ 2022-10-05  2:13 UTC (permalink / raw)
  To: ml

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

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

Blender: update to 3.0.1; OpenSubdiv update to 3.4.4
https://github.com/void-linux/void-packages/pull/35794

Description:
- OpenSubdiv: update to 3.4.4.
- blender: update to 3.0.1.

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**|**briefly**|**NO**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

end of thread, other threads:[~2022-10-05  2:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-22 20:41 [PR PATCH] Blender: update to 3.0.1; OpenSubdiv update to 3.4.4 Johnnynator
2022-05-13 23:12 ` hervyqa
2022-06-08  0:41 ` hervyqa
2022-06-13  1:49 ` hervyqa
2022-06-21 18:51 ` biopsin
2022-09-20  2:14 ` github-actions
2022-10-05  2:13 ` [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).