[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#26420: [PATCH 2/2] gnu: Add emacs-use-package.
From: |
Ludovic Courtès |
Subject: |
bug#26420: [PATCH 2/2] gnu: Add emacs-use-package. |
Date: |
Mon, 10 Apr 2017 11:10:47 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) |
Arun Isaac <address@hidden> skribis:
> * gnu/packages/emacs.scm (emacs-use-package): New variable.
[...]
> + (arguments
> + `(#:phases
> + (modify-phases %standard-phases
> + ;; tests fail in this release
> + (add-before 'install 'check
> + (lambda _
> + (zero? (system* "emacs" "--batch" "-L" "."
> + "-l" "use-package-tests.el"
> + "-f" "ert-run-tests-batch-and-exit"))
> + #t)))))
Please remove #t as it would hide a failure of the “emacs --batch”
command above.
> + (home-page "https://github.com/jwiegley/use-package")
> + (synopsis "Declaration for simplifying your .emacs")
> + (description "The use-package macro allows you to isolate package
> +configuration in your .emacs file in a way that is both
> +performance-oriented and tidy.")
@file{.emacs} in the synopsis and description.
OK to push with these changes, thank you!
Ludo’.