* [bug#48642] [PATCH] Add kanatest
@ 2021-05-25 7:22 Nicolò Balzarotti
2021-05-25 8:32 ` Xinglu Chen
0 siblings, 1 reply; 5+ messages in thread
From: Nicolò Balzarotti @ 2021-05-25 7:22 UTC (permalink / raw)
To: 48642
[-- Attachment #1: Type: text/plain, Size: 438 bytes --]
Hi guix!
Here's a patch to add kanatest, a learning tool for japanese kana.
guix lint complains about
> URI https://git.code.sf.net/p/kanatest/code not reachable: 404 ("Not
> Found")
but cloning does work, so I don't know if I need to do something in
order to fix it. I had to use git instead of the release tarball as
that is really old (2009), works only with gtk2 and I could not get it
to build.
Thanks!
Nicolò
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-kanatest.patch --]
[-- Type: text/x-patch, Size: 2335 bytes --]
From 7bf9dc833eacaf25a431ac59ff63ed54b87edafc Mon Sep 17 00:00:00 2001
From: nixo <nicolo@nixo.xyz>
Date: Tue, 25 May 2021 09:02:41 +0200
Subject: [PATCH] gnu: Add kanatest.
* gnu/packages/education.scm (kanatest): New variable.
---
gnu/packages/education.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index cd28e35b78..9002187f1e 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -865,6 +865,42 @@ languages and keyboard layouts, and typing statistics are used to dynamically
adjust the level of difficulty.")
(license license:gpl2)))
+(define-public kanatest
+ ;; Latest release tarball is 0.4.8, which is really old and does not build
+ ;; commit on sourceforge are not tagged, we take the latest
+ (let ((commit "860e790a35f547cc96669f805d371a5ba3d8daff"))
+ (package
+ (name "kanatest")
+ (version (string-append "0.4.10." (string-take commit 7)))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.code.sf.net/p/kanatest/code")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0dz63m9p4ggzw0yb309qmgnl664qb5q268vaa3i9v0i8qsl66d78"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("gettext" ,gettext-minimal) ; for msgfmt
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("libxml2" ,libxml2)
+ ("gtk+" ,gtk+)))
+ (synopsis "Hiragana and Katakana simple flashcard tool")
+ (description "Kanatest is a Japanese kana (Hiragana and Katakana) simple
+flashcard tool.
+
+During test the Kanatest displays randomly selected kana char (respecting mode
+and lesson) and waits for user answer expected as romaji equivalent. This
+process continues until all questions will be answered or all questions will
+be answered correctly (depends on options). At the end of test a short info
+about drilling time and correctness ratio is displayed. The results are
+stored and user can review his performance in any time.")
+ (home-page "https://kanatest.sourceforge.io/")
+ (license license:gpl2+))))
+
(define-public anki
(package
(name "anki")
--
2.31.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#48642] [PATCH] Add kanatest
2021-05-25 7:22 [bug#48642] [PATCH] Add kanatest Nicolò Balzarotti
@ 2021-05-25 8:32 ` Xinglu Chen
2021-05-25 8:39 ` Nicolò Balzarotti
0 siblings, 1 reply; 5+ messages in thread
From: Xinglu Chen @ 2021-05-25 8:32 UTC (permalink / raw)
To: Nicolò Balzarotti, 48642
[-- Attachment #1: Type: text/plain, Size: 1868 bytes --]
On Tue, May 25 2021, Nicolò Balzarotti wrote:
> +(define-public kanatest
> + ;; Latest release tarball is 0.4.8, which is really old and does not build
> + ;; commit on sourceforge are not tagged, we take the latest
> + (let ((commit "860e790a35f547cc96669f805d371a5ba3d8daff"))
> + (package
> + (name "kanatest")
> + (version (string-append "0.4.10." (string-take commit 7)))
Use ‘(git-version VERSION REVISION COMMIT)’.
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://git.code.sf.net/p/kanatest/code")
> + (commit commit)))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32 "0dz63m9p4ggzw0yb309qmgnl664qb5q268vaa3i9v0i8qsl66d78"))))
> + (build-system gnu-build-system)
> + (native-inputs
> + `(("gettext" ,gettext-minimal) ; for msgfmt
> + ("pkg-config" ,pkg-config)))
> + (inputs
> + `(("libxml2" ,libxml2)
> + ("gtk+" ,gtk+)))
> + (synopsis "Hiragana and Katakana simple flashcard tool")
> + (description "Kanatest is a Japanese kana (Hiragana and Katakana) simple
> +flashcard tool.
> +
> +During test the Kanatest displays randomly selected kana char (respecting mode
> +and lesson) and waits for user answer expected as romaji equivalent. This
> +process continues until all questions will be answered or all questions will
> +be answered correctly (depends on options). At the end of test a short info
> +about drilling time and correctness ratio is displayed. The results are
> +stored and user can review his performance in any time.")
> + (home-page "https://kanatest.sourceforge.io/")
Nit: ‘home-page’ usually comes before ‘synopsis’.
Otherwise, LGTM! Builds fine as well.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#48642] [PATCH] Add kanatest
2021-05-25 8:32 ` Xinglu Chen
@ 2021-05-25 8:39 ` Nicolò Balzarotti
2021-05-25 9:03 ` Xinglu Chen
2021-05-25 10:12 ` bug#48642: " Nicolas Goaziou
0 siblings, 2 replies; 5+ messages in thread
From: Nicolò Balzarotti @ 2021-05-25 8:39 UTC (permalink / raw)
To: Xinglu Chen, 48642
[-- Attachment #1: Type: text/plain, Size: 926 bytes --]
Hi! Thanks for the fast review!
Xinglu Chen <public@yoctocell.xyz> writes:
> On Tue, May 25 2021, Nicolò Balzarotti wrote:
>
>> +(define-public kanatest
>> + ;; Latest release tarball is 0.4.8, which is really old and does not build
>> + ;; commit on sourceforge are not tagged, we take the latest
>> + (let ((commit "860e790a35f547cc96669f805d371a5ba3d8daff"))
>> + (package
>> + (name "kanatest")
>> + (version (string-append "0.4.10." (string-take commit 7)))
>
> Use ‘(git-version VERSION REVISION COMMIT)’.
>
I added revision "0" along with commit in the let block and used
git-version as suggested.
>> [...]
>> + (home-page "https://kanatest.sourceforge.io/")
>
> Nit: ‘home-page’ usually comes before ‘synopsis’.
>
Moved above!
> Otherwise, LGTM! Builds fine as well.
Thanks, here's version 2 of the patch!
Thanks again for the review,
Nicolò
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: v2-0001-gnu-Add-kanatest.patch --]
[-- Type: text/x-patch, Size: 2351 bytes --]
From e40dcce2eb93a033124fb5bcdb7c0be87e63313c Mon Sep 17 00:00:00 2001
From: nixo <nicolo@nixo.xyz>
Date: Tue, 25 May 2021 09:02:41 +0200
Subject: [PATCH v2] gnu: Add kanatest.
* gnu/packages/education.scm (kanatest): New variable.
---
gnu/packages/education.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index cd28e35b78..266dc89bdd 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -865,6 +865,43 @@ languages and keyboard layouts, and typing statistics are used to dynamically
adjust the level of difficulty.")
(license license:gpl2)))
+(define-public kanatest
+ ;; Latest release tarball is 0.4.8, which is really old and does not build
+ ;; commit on sourceforge are not tagged, we take the latest
+ (let ((commit "860e790a35f547cc96669f805d371a5ba3d8daff")
+ (revision "0"))
+ (package
+ (name "kanatest")
+ (version (git-version "0.4.10" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.code.sf.net/p/kanatest/code")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0dz63m9p4ggzw0yb309qmgnl664qb5q268vaa3i9v0i8qsl66d78"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("gettext" ,gettext-minimal) ; for msgfmt
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("libxml2" ,libxml2)
+ ("gtk+" ,gtk+)))
+ (home-page "https://kanatest.sourceforge.io/")
+ (synopsis "Hiragana and Katakana simple flashcard tool")
+ (description "Kanatest is a Japanese kana (Hiragana and Katakana) simple
+flashcard tool.
+
+During test the Kanatest displays randomly selected kana char (respecting mode
+and lesson) and waits for user answer expected as romaji equivalent. This
+process continues until all questions will be answered or all questions will
+be answered correctly (depends on options). At the end of test a short info
+about drilling time and correctness ratio is displayed. The results are
+stored and user can review his performance in any time.")
+ (license license:gpl2+))))
+
(define-public anki
(package
(name "anki")
--
2.31.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#48642] [PATCH] Add kanatest
2021-05-25 8:39 ` Nicolò Balzarotti
@ 2021-05-25 9:03 ` Xinglu Chen
2021-05-25 10:12 ` bug#48642: " Nicolas Goaziou
1 sibling, 0 replies; 5+ messages in thread
From: Xinglu Chen @ 2021-05-25 9:03 UTC (permalink / raw)
To: Nicolò Balzarotti, 48642
[-- Attachment #1: Type: text/plain, Size: 262 bytes --]
On Tue, May 25 2021, Nicolò Balzarotti wrote:
> Hi! Thanks for the fast review!
>
> [...]
>
> Thanks, here's version 2 of the patch!
>
> Thanks again for the review,
You are welcome! The changes look good, I don’t have commit access,
though.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#48642: [PATCH] Add kanatest
2021-05-25 8:39 ` Nicolò Balzarotti
2021-05-25 9:03 ` Xinglu Chen
@ 2021-05-25 10:12 ` Nicolas Goaziou
1 sibling, 0 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2021-05-25 10:12 UTC (permalink / raw)
To: Nicolò Balzarotti; +Cc: Xinglu Chen, 48642-done
Hello,
Nicolò Balzarotti <anothersms@gmail.com> writes:
> Thanks, here's version 2 of the patch!
I added a copyright line for you and applied the patch. Thank you!
>
> Thanks again for the review,
Indeed, thank you, Xinglu Chen.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-05-25 10:13 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-25 7:22 [bug#48642] [PATCH] Add kanatest Nicolò Balzarotti
2021-05-25 8:32 ` Xinglu Chen
2021-05-25 8:39 ` Nicolò Balzarotti
2021-05-25 9:03 ` Xinglu Chen
2021-05-25 10:12 ` bug#48642: " Nicolas Goaziou
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.