From: Michael Rohleder <mike@rohleder.de>
To: 60211@debbugs.gnu.org
Cc: Michael Rohleder <mike@rohleder.de>
Subject: [bug#60211] [PATCH] gnu: stockfish: Update to 15.1.
Date: Tue, 20 Dec 2022 01:07:46 +0100 [thread overview]
Message-ID: <20221220000746.10992-1-mike@rohleder.de> (raw)
* gnu/packages/games.scm (stockfish): Update to 15.1.
[arguments]: Renamed phase remove-m-flag to remove-m-flag-and-net-target.
Add removing of the net target in the Makefile, because it wants networking.
---
gnu/packages/games.scm | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 6064dabbaa..e178536087 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -52,7 +52,7 @@
;;; Copyright © 2020 Vitaliy Shatrov <D0dyBo0D0dyBo0@protonmail.com>
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
-;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
+;;; Copyright © 2020, 2021, 2022 Michael Rohleder <mike@rohleder.de>
;;; Copyright © 2020 Trevor Hass <thass@okstate.edu>
;;; Copyright © 2020, 2021 Liliana Marie Prikler <liliana.prikler@gmail.com>
;;; Copyright © 2020 Lu hux <luhux@outlook.com>
@@ -10336,10 +10336,10 @@ (define-public chessx
(license license:gpl2+)))
(define-public stockfish
- (let ((neural-network-revision "6877cd24400e")) ; also update hash below
+ (let ((neural-network-revision "ad9b42354671")) ; also update hash below
(package
(name "stockfish")
- (version "15")
+ (version "15.1")
(source
(origin
(method git-fetch)
@@ -10348,7 +10348,7 @@ (define-public stockfish
(commit (string-append "sf_" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1v19v6qhwbf31wpc3qcih4dvqxwqkh0p426skgjin6ags31hkbmh"))))
+ (base32 "0zmnv8vbhhid73pjyxg56r4ckm887znv4d55br370plm3p5b56xa"))))
(build-system gnu-build-system)
(inputs
`(("neural-network"
@@ -10358,7 +10358,7 @@ (define-public stockfish
neural-network-revision ".nnue"))
(sha256
(base32
- "1qyna598c0v7gdpycc6kpl12h5a2wa50dqray6gv208f80jcsxv8"))))))
+ "11mpdhnsfggldgvmzwmya64pp3fndyppi2fkdf8kfhbi8qsl56xd"))))))
(arguments
`(#:tests? #f
#:make-flags (list "-C" "src"
@@ -10388,11 +10388,13 @@ (define-public stockfish
(copy-file (assoc-ref inputs "neural-network")
(format #f "src/nn-~a.nnue"
,neural-network-revision))))
- ;; Guix doesn't use a multiarch gcc.
- (add-after 'unpack 'remove-m-flag
+ (add-after 'unpack 'remove-m-flag-and-net-target
(lambda _
(substitute* "src/Makefile"
- (("-m\\$\\(bits\\)") "")))))))
+ ;; Guix doesn't use a multiarch gcc.
+ (("-m\\$\\(bits\\)") "")
+ ;; Dont depend on net target.
+ ((": net") ": ")))))))
(synopsis "Strong chess engine")
(description
"Stockfish is a very strong chess engine. It is much stronger than the
--
2.38.1
next reply other threads:[~2022-12-20 0:09 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-20 0:07 Michael Rohleder [this message]
2022-12-22 16:17 ` bug#60211: [PATCH] gnu: stockfish: Update to 15.1 Guillaume Le Vaillant
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221220000746.10992-1-mike@rohleder.de \
--to=mike@rohleder.de \
--cc=60211@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.