From: Nicolas Goaziou via Guix-patches via <guix-patches@gnu.org>
To: 70024@debbugs.gnu.org
Cc: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Subject: [bug#70024] [PATCH core-updates 3/4] gnu: enchant: Improve package style.
Date: Wed, 27 Mar 2024 10:40:40 +0100 [thread overview]
Message-ID: <aae76331d8f87b500a3ba53ffed29246cc30440b.1711531771.git.mail@nicolasgoaziou.fr> (raw)
In-Reply-To: <cover.1711531771.git.mail@nicolasgoaziou.fr>
* gnu/packages/enchant.scm (enchant)[arguments]: Use G-expressions.
[native-inputs]: Drop input labels.
[description]: Be more informative and less technical.
Change-Id: I908fbbfcdc9f21beb1d6e05eec2dbc154b429831
---
gnu/packages/enchant.scm | 29 ++++++++++++++---------------
1 file changed, 14 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/enchant.scm b/gnu/packages/enchant.scm
index ca44b7c24d..417b5ce2e1 100644
--- a/gnu/packages/enchant.scm
+++ b/gnu/packages/enchant.scm
@@ -32,6 +32,7 @@ (define-module (gnu packages enchant)
#:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages version-control)
+ #:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix download)
@@ -91,29 +92,27 @@ (define-public enchant
"1bn7z8155czgzlnq2n4c915cl1vd3v95h1bghic3szy7c8q94rgm"))))
(build-system gnu-build-system)
(arguments
- '(#:configure-flags '("--disable-static"
- ;; Tests require a relocatable build.
- "--enable-relocatable")))
+ (list
+ #:configure-flags
+ #~(list"--disable-static"
+ ;; Tests require a relocatable build.
+ "--enable-relocatable")))
(inputs
(list aspell hunspell))
(propagated-inputs
;; Required by enchant.pc.
(list glib))
(native-inputs
- `(("glib:bin" ,glib "bin")
- ("groff" ,groff)
- ("pkg-config" ,pkg-config)
- ("unittest-cpp" ,unittest-cpp)))
+ (list `(,glib "bin") groff pkg-config unittest-cpp))
(synopsis "Multi-backend spell-checking library wrapper")
(description
- "On the surface, Enchant appears to be a generic spell checking library.
-Looking closer, you'll see the Enchant is more-or-less a fancy wrapper around
-the dlopen() system call.
-
-Enchant steps in to provide uniformity and conformity on top of these libraries,
-and implement certain features that may be lacking in any individual provider
-library. Everything should \"just work\" for any and every definition of \"just
-working\".")
+ "Enchant is a library---and command-line program---that wraps a number of
+different spelling libraries and programs with a consistent interface. By
+using Enchant, you can use a wide range of spelling libraries, including some
+specialized for particular languages, without needing to program to each
+library's interface. If it's not convenient to call a C library, you can
+access most of Enchant's functionality via the enchant program, which
+communicates over a pipe, like Ispell, and is indeed Ispell-compatible.")
(home-page "https://abiword.github.io/enchant/")
(license lgpl2.1+)))
--
2.41.0
next prev parent reply other threads:[~2024-03-27 9:42 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-27 9:30 [bug#70024] [PATCH core-updates 0/4] Update enchant to 2.6.8; Add Nuspell support Nicolas Goaziou via Guix-patches via
2024-03-27 9:40 ` [bug#70024] [PATCH core-updates 1/4] gnu: unittest-cpp: Fix "Version" setting in ".pc" file Nicolas Goaziou via Guix-patches via
2024-03-27 9:40 ` [bug#70024] [PATCH core-updates 2/4] gnu: enchant: Update to 2.6.8 Nicolas Goaziou via Guix-patches via
2024-03-27 9:40 ` Nicolas Goaziou via Guix-patches via [this message]
2024-03-27 9:40 ` [bug#70024] [PATCH core-updates 4/4] gnu: enchant: Add Nuspell support Nicolas Goaziou via Guix-patches via
2024-04-13 13:57 ` [bug#70024] [PATCH core-updates 0/4] Update enchant to 2.6.8; " Nicolas Goaziou via Guix-patches via
2024-04-17 17:49 ` Maxim Cournoyer
2024-04-18 11:50 ` bug#70024: " Nicolas Goaziou via Guix-patches via
2024-04-19 15:27 ` [bug#70024] " Maxim Cournoyer
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
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aae76331d8f87b500a3ba53ffed29246cc30440b.1711531771.git.mail@nicolasgoaziou.fr \
--to=guix-patches@gnu.org \
--cc=70024@debbugs.gnu.org \
--cc=mail@nicolasgoaziou.fr \
/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 public inbox
https://git.savannah.gnu.org/cgit/guix.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).