gnu: chessx: Update to 1.5.6.
* gnu/packages/games.scm (chessx): Update to 1.5.6. [arguments]: Remove now unneeded build fix. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
29bcfcd813
commit
c19544bc48
1 changed files with 4 additions and 9 deletions
|
@ -51,7 +51,7 @@
|
||||||
;;; Copyright © 2020 Vitaliy Shatrov <D0dyBo0D0dyBo0@protonmail.com>
|
;;; Copyright © 2020 Vitaliy Shatrov <D0dyBo0D0dyBo0@protonmail.com>
|
||||||
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
|
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
|
||||||
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||||
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
|
||||||
;;; Copyright © 2020 Trevor Hass <thass@okstate.edu>
|
;;; Copyright © 2020 Trevor Hass <thass@okstate.edu>
|
||||||
;;; Copyright © 2020, 2021 Leo Prikler <leo.prikler@student.tugraz.at>
|
;;; Copyright © 2020, 2021 Leo Prikler <leo.prikler@student.tugraz.at>
|
||||||
;;; Copyright © 2020 Lu hux <luhux@outlook.com>
|
;;; Copyright © 2020 Lu hux <luhux@outlook.com>
|
||||||
|
@ -11794,14 +11794,14 @@ and chess engines.")
|
||||||
(define-public chessx
|
(define-public chessx
|
||||||
(package
|
(package
|
||||||
(name "chessx")
|
(name "chessx")
|
||||||
(version "1.5.4")
|
(version "1.5.6")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/chessx/chessx/"
|
(uri (string-append "mirror://sourceforge/chessx/chessx/"
|
||||||
version "/chessx-" version ".tgz"))
|
version "/chessx-" version ".tgz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1a3541vl5hp6jllgx998w9kjh9kp3wrl80yfwkxmq1bc5bzsrnz2"))))
|
(base32 "01fjchil2h6ry2ywr0dwjw2g7zd29580cr4c74d5z74h999lp6nh"))))
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("qttools" ,qttools)))
|
`(("qttools" ,qttools)))
|
||||||
|
@ -11819,12 +11819,7 @@ and chess engines.")
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(substitute* "chessx.pro"
|
(substitute* "chessx.pro"
|
||||||
(("\\$\\$\\[QT_INSTALL_BINS\\]/lrelease")
|
(("\\$\\$\\[QT_INSTALL_BINS\\]/lrelease")
|
||||||
(string-append (assoc-ref inputs "qttools") "/bin/lrelease"))
|
(string-append (assoc-ref inputs "qttools") "/bin/lrelease")))
|
||||||
;; Fix missing translations.
|
|
||||||
(("TRANSLATIONS = i18n/chessx_de.ts")
|
|
||||||
"TRANSLATIONS = i18n/chessx_de.ts i18n/chessx_da.ts \\
|
|
||||||
i18n/chessx_fr.ts i18n/chessx_it.ts i18n/chessx_cz.ts i18n/chessx_ru.ts \\
|
|
||||||
i18n/chessx_es.ts"))
|
|
||||||
#t))
|
#t))
|
||||||
(add-after 'fix-paths 'make-qt-deterministic
|
(add-after 'fix-paths 'make-qt-deterministic
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Reference in a new issue