unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: branch master updated: gnu: Add emacs-wucuo.
       [not found] <20210514215234.16230.97447@vcs0.savannah.gnu.org>
@ 2021-05-15 20:58 ` Christopher Baines
  2021-05-15 21:14   ` Mathieu Othacehe
  0 siblings, 1 reply; 3+ messages in thread
From: Christopher Baines @ 2021-05-15 20:58 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 2980 bytes --]


guix-commits@gnu.org writes:

> This is an automated email from the git hooks/post-receive script.
>
> ngz pushed a commit to branch master
> in repository guix.
>
> The following commit(s) were added to refs/heads/master by this push:
>      new bb94429  gnu: Add emacs-wucuo.
> bb94429 is described below
>
> commit bb94429cb776dc658361e9c26f999c9648d0bd86
> Author: Joseph LaFreniere <joseph@lafreniere.xyz>
> AuthorDate: Mon Oct 19 22:21:04 2020 -0500
>
>     gnu: Add emacs-wucuo.
>
>     * gnu/packages/emacs-xyz.scm (emacs-wucuo): New variable.
>
>     Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
> ---
>  gnu/packages/emacs-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
>  1 file changed, 34 insertions(+)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 7b999a9..8d8b3f9 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -131,6 +131,7 @@
>    #:use-module (guix build-system trivial)
>    #:use-module (gnu packages)
>    #:use-module (gnu packages admin)
> +  #:use-module (gnu packages aspell)
>    #:use-module (gnu packages audio)
>    #:use-module (gnu packages bash)
>    #:use-module (gnu packages cmake)
> @@ -9843,6 +9844,39 @@ current frame, disabling the mode line, and adding margins to the buffer that
>  restrict the text width to 80 characters.")
>      (license license:bsd-3)))
>
> +(define-public emacs-wucuo
> +  (package
> +    (name "emacs-wucuo")
> +    (version "0.2.9")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/redguardtoo/wucuo")
> +             (commit "89b99166768afb811c48a7db7c93c02d51a32b09")))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32 "03a6jlbv9axrd9yr0xscq3ni7fipm20ppc51kxy0sn241rplv0pg"))))
> +    (build-system emacs-build-system)
> +    (arguments
> +     `(#:tests? #tn

The n on this line means that this package can't be built, and also
breaks the linter.

I've removed the n in fd2abc2a51e2cc39ac67dcef1d21a8037147e798.

> +       #:test-command '("make" "test")
> +       #:phases (modify-phases %standard-phases
> +                  ;; Set HOME, otherwise tests fail on loading aspell dict.
> +                  (add-before 'check 'set-home
> +                    (lambda _ (setenv "HOME" (getcwd)))))))
> +    (native-inputs
> +     ;; For tests.
> +     `(("aspell" ,aspell)
> +       ("aspell-dict-en" ,aspell-dict-en)))
> +    (home-page "https://github.com/redguardtoo/wucuo")
> +    (synopsis "Fast spell checker for camel case code or plain text")
> +    (description
> +     "Wucuo provides a spell checker on top of either Aspell or Hunspell, and
> +relies on Flyspell internally.  It operates on the current region or buffer,
> +a file, or a complete directory.")
> +    (license license:gpl3+)))
> +
>  (define-public emacs-ido-completing-read+
>    (package
>      (name "emacs-ido-completing-read+")

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: branch master updated: gnu: Add emacs-wucuo.
  2021-05-15 20:58 ` branch master updated: gnu: Add emacs-wucuo Christopher Baines
@ 2021-05-15 21:14   ` Mathieu Othacehe
  2021-05-15 21:31     ` Nicolas Goaziou
  0 siblings, 1 reply; 3+ messages in thread
From: Mathieu Othacehe @ 2021-05-15 21:14 UTC (permalink / raw)
  To: Christopher Baines; +Cc: guix-devel, Nicolas Goaziou


Hello Chris,

> The n on this line means that this package can't be built, and also
> breaks the linter.
>
> I've removed the n in fd2abc2a51e2cc39ac67dcef1d21a8037147e798.

It also broke Cuirass master evaluation.

Thanks for fixing it,

Mathieu


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: branch master updated: gnu: Add emacs-wucuo.
  2021-05-15 21:14   ` Mathieu Othacehe
@ 2021-05-15 21:31     ` Nicolas Goaziou
  0 siblings, 0 replies; 3+ messages in thread
From: Nicolas Goaziou @ 2021-05-15 21:31 UTC (permalink / raw)
  To: Mathieu Othacehe; +Cc: guix-devel

Hello,

Mathieu Othacehe <othacehe@gnu.org> writes:

> Hello Chris,
>
>> The n on this line means that this package can't be built, and also
>> breaks the linter.
>>
>> I've removed the n in fd2abc2a51e2cc39ac67dcef1d21a8037147e798.
>
> It also broke Cuirass master evaluation.

Doh. Sorry, my CTRL key is failing me.

> Thanks for fixing it,

Thanks, indeed!

Regards,
-- 
Nicolas Goaziou


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-05-15 21:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20210514215234.16230.97447@vcs0.savannah.gnu.org>
2021-05-15 20:58 ` branch master updated: gnu: Add emacs-wucuo Christopher Baines
2021-05-15 21:14   ` Mathieu Othacehe
2021-05-15 21:31     ` Nicolas Goaziou

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).