mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
Tests require a lot of external dependencies that aren't available through portage; disable tests until these are merged. Closes: https://bugs.gentoo.org/783924 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Brian Kubisiak <brian@kubisiak.com>
25 lines
550 B
Bash
25 lines
550 B
Bash
# Copyright 2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit elisp
|
|
|
|
DESCRIPTION="On the fly syntax checking for GNU Emacs"
|
|
HOMEPAGE="https://www.flycheck.org/en/latest/"
|
|
SRC_URI="https://github.com/flycheck/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
BDEPEND="app-emacs/dash"
|
|
RDEPEND="${BDEPEND}"
|
|
|
|
SITEFILE="50${PN}-gentoo.el"
|
|
DOCS="README.md"
|
|
|
|
# Running tests requires a lot of external dependencies that don't exist in
|
|
# portage
|
|
RESTRICT=test
|