Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: KataGo-1.13.2
@ 2023-05-31 21:03 jason1987d
  2023-05-31 21:12 ` [PR PATCH] [Updated] " jason1987d
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: jason1987d @ 2023-05-31 21:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jason1987d/void-packages KataGo
https://github.com/void-linux/void-packages/pull/44196

New package: KataGo-1.13.2
#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

#### 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):
  - x86_64
  - x86_64-musl
  - i686
  - armv7l
  - armv7l-musl
  - aarch64
  - aarch64-musl


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

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

From cdac2adeb8f320647f5a52d68fd3f2dc497c2cda Mon Sep 17 00:00:00 2001
From: Jason Manley <jason@jasondavid.tv>
Date: Sat, 19 Nov 2022 12:27:38 -0600
Subject: [PATCH] New package: KataGo-1.13.2

---
 srcpkgs/KataGo-OpenCL/template | 30 ++++++++++++++++++++++++++++++
 srcpkgs/KataGo-eigen/template  | 31 +++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)
 create mode 100644 srcpkgs/KataGo-OpenCL/template
 create mode 100644 srcpkgs/KataGo-eigen/template

diff --git a/srcpkgs/KataGo-OpenCL/template b/srcpkgs/KataGo-OpenCL/template
new file mode 100644
index 000000000000..7bb3c153b2ef
--- /dev/null
+++ b/srcpkgs/KataGo-OpenCL/template
@@ -0,0 +1,30 @@
+# Template file for 'KataGo-OpenCL'
+pkgname=KataGo-OpenCL
+version=1.13.2
+revision=1
+build_wrksrc=cpp
+build_style=cmake
+configure_args="-DUSE_BACKEND=OPENCL -DNO_GIT_REVISION=1"
+makedepends="ocl-icd-devel zlib-devel libzip-devel"
+short_desc="KataGo Go/Weiqi/Baduk analysis engine (OpenCL backend)"
+maintainer="Jason Elswick <jason@jasondavid.tv>"
+license="MIT"
+homepage="https://github.com/lightvector/KataGo/"
+distfiles="https://github.com/lightvector/KataGo/archive/refs/tags/v${version}.tar.gz"
+checksum=f1a5659ff6dcec246f11bd250dcb41f1879dbbd41d4e909ae030954acfebde41
+
+alternatives="katago:katago:/usr/bin/katago-opencl"
+
+if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
+	configure_args+=" -DCMAKE_CXX_STANDARD_LIBRARIES=-latomic"
+	makedepends+=" libatomic-devel"
+fi
+
+do_check() {
+	build/katago runtests
+}
+
+do_install() {
+	vbin build/katago katago-opencl
+	vlicense "${wrksrc}"/LICENSE
+}
diff --git a/srcpkgs/KataGo-eigen/template b/srcpkgs/KataGo-eigen/template
new file mode 100644
index 000000000000..14325244524b
--- /dev/null
+++ b/srcpkgs/KataGo-eigen/template
@@ -0,0 +1,31 @@
+# Template file for 'KataGo-eigen'
+pkgname=KataGo-eigen
+version=1.13.2
+revision=1
+build_wrksrc=cpp
+build_style=cmake
+configure_args="-DUSE_BACKEND=EIGEN -DNO_GIT_REVISION=1"
+make_check_target="check"
+makedepends="zlib-devel libzip-devel eigen"
+short_desc="KataGo Go/Weiqi/Baduk analysis engine (eigen backend)"
+maintainer="Jason Elswick <jason@jasondavid.tv>"
+license="MIT"
+homepage="https://github.com/lightvector/KataGo/"
+distfiles="https://github.com/lightvector/KataGo/archive/refs/tags/v${version}.tar.gz"
+checksum=f1a5659ff6dcec246f11bd250dcb41f1879dbbd41d4e909ae030954acfebde41
+
+alternatives="katago:katago:/usr/bin/katago-eigen"
+
+if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
+	configure_args+=" -DCMAKE_CXX_STANDARD_LIBRARIES=-latomic"
+	makedepends+=" libatomic-devel"
+fi
+
+do_check() {
+	build/katago runtests
+}
+
+do_install() {
+	vbin build/katago katago-eigen
+	vlicense "${wrksrc}"/LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: KataGo-1.13.2
  2023-05-31 21:03 [PR PATCH] New package: KataGo-1.13.2 jason1987d
@ 2023-05-31 21:12 ` jason1987d
  2023-08-31  1:45 ` github-actions
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: jason1987d @ 2023-05-31 21:12 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jason1987d/void-packages KataGo
https://github.com/void-linux/void-packages/pull/44196

New package: KataGo-1.13.2
#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

#### 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):
  - x86_64
  - x86_64-musl
  - i686
  - armv7l
  - armv7l-musl
  - aarch64
  - aarch64-musl


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

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

From 0857fbe84c32e01f0a88714ea72fe856cdfafbda Mon Sep 17 00:00:00 2001
From: Jason Manley <jason@jasondavid.tv>
Date: Sat, 19 Nov 2022 12:27:38 -0600
Subject: [PATCH] New package: KataGo-1.13.2

---
 srcpkgs/KataGo-OpenCL/template | 34 +++++++++++++++++++++++++++++++++
 srcpkgs/KataGo-eigen/template  | 35 ++++++++++++++++++++++++++++++++++
 2 files changed, 69 insertions(+)
 create mode 100644 srcpkgs/KataGo-OpenCL/template
 create mode 100644 srcpkgs/KataGo-eigen/template

diff --git a/srcpkgs/KataGo-OpenCL/template b/srcpkgs/KataGo-OpenCL/template
new file mode 100644
index 000000000000..440e244725ed
--- /dev/null
+++ b/srcpkgs/KataGo-OpenCL/template
@@ -0,0 +1,34 @@
+# Template file for 'KataGo-OpenCL'
+pkgname=KataGo-OpenCL
+version=1.13.2
+revision=1
+build_wrksrc=cpp
+build_style=cmake
+configure_args="-DUSE_BACKEND=OPENCL -DNO_GIT_REVISION=1"
+makedepends="ocl-icd-devel zlib-devel libzip-devel"
+short_desc="KataGo Go/Weiqi/Baduk analysis engine (OpenCL backend)"
+maintainer="Jason Elswick <jason@jasondavid.tv>"
+license="MIT"
+homepage="https://github.com/lightvector/KataGo/"
+distfiles="https://github.com/lightvector/KataGo/archive/refs/tags/v${version}.tar.gz"
+checksum=f1a5659ff6dcec246f11bd250dcb41f1879dbbd41d4e909ae030954acfebde41
+
+alternatives="katago:katago:/usr/bin/katago-opencl"
+
+case "$XBPS_TARGET_MACHINE" in
+	i686*) broken="size_t assert fails" ;;
+esac
+
+if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
+	configure_args+=" -DCMAKE_CXX_STANDARD_LIBRARIES=-latomic"
+	makedepends+=" libatomic-devel"
+fi
+
+do_check() {
+	build/katago runtests
+}
+
+do_install() {
+	vbin build/katago katago-opencl
+	vlicense "${wrksrc}"/LICENSE
+}
diff --git a/srcpkgs/KataGo-eigen/template b/srcpkgs/KataGo-eigen/template
new file mode 100644
index 000000000000..6092cac09cae
--- /dev/null
+++ b/srcpkgs/KataGo-eigen/template
@@ -0,0 +1,35 @@
+# Template file for 'KataGo-eigen'
+pkgname=KataGo-eigen
+version=1.13.2
+revision=1
+build_wrksrc=cpp
+build_style=cmake
+configure_args="-DUSE_BACKEND=EIGEN -DNO_GIT_REVISION=1"
+make_check_target="check"
+makedepends="zlib-devel libzip-devel eigen"
+short_desc="KataGo Go/Weiqi/Baduk analysis engine (eigen backend)"
+maintainer="Jason Elswick <jason@jasondavid.tv>"
+license="MIT"
+homepage="https://github.com/lightvector/KataGo/"
+distfiles="https://github.com/lightvector/KataGo/archive/refs/tags/v${version}.tar.gz"
+checksum=f1a5659ff6dcec246f11bd250dcb41f1879dbbd41d4e909ae030954acfebde41
+
+alternatives="katago:katago:/usr/bin/katago-eigen"
+
+case "$XBPS_TARGET_MACHINE" in
+	i686*) broken="size_t assert fails" ;;
+esac
+
+if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
+	configure_args+=" -DCMAKE_CXX_STANDARD_LIBRARIES=-latomic"
+	makedepends+=" libatomic-devel"
+fi
+
+do_check() {
+	build/katago runtests
+}
+
+do_install() {
+	vbin build/katago katago-eigen
+	vlicense "${wrksrc}"/LICENSE
+}

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

* Re: New package: KataGo-1.13.2
  2023-05-31 21:03 [PR PATCH] New package: KataGo-1.13.2 jason1987d
  2023-05-31 21:12 ` [PR PATCH] [Updated] " jason1987d
@ 2023-08-31  1:45 ` github-actions
  2023-09-15  1:45 ` [PR PATCH] [Closed]: " github-actions
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: github-actions @ 2023-08-31  1:45 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/44196#issuecomment-1700220489

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]: New package: KataGo-1.13.2
  2023-05-31 21:03 [PR PATCH] New package: KataGo-1.13.2 jason1987d
  2023-05-31 21:12 ` [PR PATCH] [Updated] " jason1987d
  2023-08-31  1:45 ` github-actions
@ 2023-09-15  1:45 ` github-actions
  2023-09-17 19:02 ` jason1987d
  2023-12-08 16:36 ` jason1987d
  4 siblings, 0 replies; 6+ messages in thread
From: github-actions @ 2023-09-15  1:45 UTC (permalink / raw)
  To: ml

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

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

New package: KataGo-1.13.2
https://github.com/void-linux/void-packages/pull/44196

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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl
  - armv7l
  - armv7l-musl
  - aarch64
  - aarch64-musl


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

* Re: New package: KataGo-1.13.2
  2023-05-31 21:03 [PR PATCH] New package: KataGo-1.13.2 jason1987d
                   ` (2 preceding siblings ...)
  2023-09-15  1:45 ` [PR PATCH] [Closed]: " github-actions
@ 2023-09-17 19:02 ` jason1987d
  2023-12-08 16:36 ` jason1987d
  4 siblings, 0 replies; 6+ messages in thread
From: jason1987d @ 2023-09-17 19:02 UTC (permalink / raw)
  To: ml

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

New comment by jason1987d on void-packages repository

https://github.com/void-linux/void-packages/pull/44196#issuecomment-1722543308

Comment:
Bump. Is there any particular reason this was ignored?

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

* Re: New package: KataGo-1.13.2
  2023-05-31 21:03 [PR PATCH] New package: KataGo-1.13.2 jason1987d
                   ` (3 preceding siblings ...)
  2023-09-17 19:02 ` jason1987d
@ 2023-12-08 16:36 ` jason1987d
  4 siblings, 0 replies; 6+ messages in thread
From: jason1987d @ 2023-12-08 16:36 UTC (permalink / raw)
  To: ml

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

New comment by jason1987d on void-packages repository

https://github.com/void-linux/void-packages/pull/44196#issuecomment-1722543308

Comment:
Bump. Is there any particular reason this was ignored?

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

end of thread, other threads:[~2023-12-08 16:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-31 21:03 [PR PATCH] New package: KataGo-1.13.2 jason1987d
2023-05-31 21:12 ` [PR PATCH] [Updated] " jason1987d
2023-08-31  1:45 ` github-actions
2023-09-15  1:45 ` [PR PATCH] [Closed]: " github-actions
2023-09-17 19:02 ` jason1987d
2023-12-08 16:36 ` jason1987d

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