From: "Nicolò Balzarotti" <anothersms@gmail.com>
To: 50372@debbugs.gnu.org
Subject: [bug#50372] Add qolibri with its dependency
Date: Sat, 04 Sep 2021 14:50:47 +0200 [thread overview]
Message-ID: <87wnnwijx4.fsf@guix.i-did-not-set--mail-host-address--so-tickle-me> (raw)
[-- Attachment #1: Type: text/plain, Size: 606 bytes --]
Hi guix!
Those two patches add qolibri, a dictionary viewver for the EPWING
format (used by Japanese dictionaries) and libeb, a library used by
qolibri to read those dictionaries.
I could not find an homepage for libeb: AUR and NixOS do not have a
working one (404 and missing), so I added the website where the file can
be downloaded (but the website is in Japanese, if the libeb page was
just moved I could not find it).
Both packages build and guix lint does not complain.
I was not sure about the best place for libeb (maybe it fits better
under cdrom.scm)
Thanks!
Nicolò
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-libeb.patch --]
[-- Type: text/x-patch, Size: 1589 bytes --]
From 0474a605bb952443b94ea1bdd3a681c7d1daf367 Mon Sep 17 00:00:00 2001
From: nixo <nicolo@nixo.xyz>
Date: Sat, 4 Sep 2021 14:15:27 +0200
Subject: [PATCH 1/2] gnu: Add libeb.
* gnu/packages/education.scm (libeb): New variable.
---
gnu/packages/education.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index f0120c8af2..897dd37088 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -1019,6 +1019,32 @@ factoring numbers and simplifying fractions, as well as zapping rocks
floating through space.")
(license license:gpl3+)))
+(define-public libeb
+ (package
+ (name "libeb")
+ (version "4.4.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "ftp://ftp.sra.co.jp/pub/misc/eb/eb-" version ".tar.bz2"))
+ (sha256
+ (base32
+ "0psbdzirazfnn02hp3gsx7xxss9f1brv4ywp6a15ihvggjki1rxb"))))
+ (build-system gnu-build-system)
+ (native-inputs ; Required for building docs
+ `(("perl" ,perl)))
+ (inputs
+ `(("zlib" ,zlib)))
+ (synopsis "C library for accessing Japanese CD-ROM books")
+ (description "The EB library is a library for accessing CD-ROM
+books, which are a common way to distribute electronic dictionaries in
+Japan. It supports the EB, EBG, EBXA, EBXA-C, S-EBXA and EPWING
+formats.")
+ ;; FIXME: I cannot find a real home page
+ (home-page "https://sra.co.jp/")
+ (license license:bsd-3)))
+
(define-public mdk
(package
(name "mdk")
--
2.33.0
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0002-gnu-Add-qolibri.patch --]
[-- Type: text/x-patch, Size: 1801 bytes --]
From 6d8228deb30b4aedfaadf6cda76bbe346a184baa Mon Sep 17 00:00:00 2001
From: nixo <nicolo@nixo.xyz>
Date: Sat, 4 Sep 2021 14:26:17 +0200
Subject: [PATCH 2/2] gnu: Add qolibri.
* gnu/packages/education.scm (qolibri): New variable.
---
gnu/packages/education.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index 897dd37088..2039347ddc 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -1045,6 +1045,40 @@ formats.")
(home-page "https://sra.co.jp/")
(license license:bsd-3)))
+(define-public qolibri
+ (package
+ (name "qolibri")
+ (version "2.1.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url"https://github.com/ludios/qolibri")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "066y7jcq9vg6hnvn7qxckzhd1qkgfzpzhw69nw5psm43qbaca8lg"))))
+ (build-system qt-build-system)
+ (arguments
+ '(#:tests? #f)) ; no test target
+ (native-inputs
+ `(("qttools", qttools)))
+ (inputs
+ `(("libeb" ,libeb)
+ ("qtbase" ,qtbase-5)
+ ("qtmultimedia" ,qtmultimedia)
+ ("qtquickcontrols2" ,qtquickcontrols2)
+ ("qtdeclarative" ,qtdeclarative)
+ ("qtwebchannel" ,qtwebchannel)
+ ("qtwebengine" ,qtwebengine)
+ ("zlib" ,zlib)))
+ (synopsis "EPWING dictionary reader")
+ (description "qolibri is a dictionary viewer for the EPWING dictionary
+format. Most monolingual Japanese dictionaries can only be found in the
+EPWING format.")
+ (home-page "https://github.com/ludios/qolibri")
+ (license license:gpl2)))
+
(define-public mdk
(package
(name "mdk")
--
2.33.0
next reply other threads:[~2021-09-04 12:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-04 12:50 Nicolò Balzarotti [this message]
2021-09-13 20:43 ` bug#50372: Add qolibri with its dependency Nicolas Goaziou
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=87wnnwijx4.fsf@guix.i-did-not-set--mail-host-address--so-tickle-me \
--to=anothersms@gmail.com \
--cc=50372@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.