diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-05-24 13:55:27 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-05-24 14:35:03 +0200 |
commit | d46fdb7e7ebdae95982c771839a09882717fa6d3 (patch) | |
tree | cea13bb570d52db0b56b2097fd381d467979d611 /app-emacs/with-simulated-input/with-simulated-input-3.0.ebuild | |
parent | */*: Rename sourceforge-jp remote-id to osdn (diff) | |
download | gentoo-d46fdb7e7ebdae95982c771839a09882717fa6d3.tar.gz gentoo-d46fdb7e7ebdae95982c771839a09882717fa6d3.tar.bz2 gentoo-d46fdb7e7ebdae95982c771839a09882717fa6d3.zip |
app-emacs/with-simulated-input: new package; add version 3.0
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/with-simulated-input/with-simulated-input-3.0.ebuild')
-rw-r--r-- | app-emacs/with-simulated-input/with-simulated-input-3.0.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app-emacs/with-simulated-input/with-simulated-input-3.0.ebuild b/app-emacs/with-simulated-input/with-simulated-input-3.0.ebuild new file mode 100644 index 000000000000..33361e6ac49a --- /dev/null +++ b/app-emacs/with-simulated-input/with-simulated-input-3.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=24.4 + +inherit elisp + +DESCRIPTION="Emacs Lisp macro to simulate user input non-interactively" +HOMEPAGE="https://github.com/DarwinAwardWinner/with-simulated-input/" +SRC_URI="https://github.com/DarwinAwardWinner/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="GPL-3+" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND="test? ( app-emacs/buttercup )" + +DOCS=( README.md ) +ELISP_REMOVE="tests/test-${PN}.el" # Remove failing tests; 11/49 specs +SITEFILE="50${PN}-gentoo.el" + +src_test() { + buttercup -L . -L tests --traceback full tests || die +} |