Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/s/
Date: Fri, 27 May 2022 22:37:34
Message-Id: 1653691048.96e9d5b44d41830848a939bd1a1ff0a41a9626b0.xgqt@gentoo
1 commit: 96e9d5b44d41830848a939bd1a1ff0a41a9626b0
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 27 22:35:33 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 22:37:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96e9d5b4
7
8 app-emacs/s: enable tests
9
10 + small formatting changes
11
12 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
13
14 app-emacs/s/{s-1.12.0.ebuild => s-1.12.0-r1.ebuild} | 8 ++++++--
15 1 file changed, 6 insertions(+), 2 deletions(-)
16
17 diff --git a/app-emacs/s/s-1.12.0.ebuild b/app-emacs/s/s-1.12.0-r1.ebuild
18 similarity index 82%
19 rename from app-emacs/s/s-1.12.0.ebuild
20 rename to app-emacs/s/s-1.12.0-r1.ebuild
21 index 4fa563b1814e..7c91889d847b 100644
22 --- a/app-emacs/s/s-1.12.0.ebuild
23 +++ b/app-emacs/s/s-1.12.0-r1.ebuild
24 @@ -8,11 +8,15 @@ inherit elisp
25 DESCRIPTION="The long lost Emacs string manipulation library"
26 HOMEPAGE="https://github.com/magnars/s.el"
27 SRC_URI="https://github.com/magnars/s.el/archive/${PV}.tar.gz -> ${P}.tar.gz"
28 +S="${WORKDIR}"/s.el-${PV}
29
30 LICENSE="GPL-3+"
31 SLOT="0"
32 KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
33
34 -S="${WORKDIR}/s.el-${PV}"
35 +DOCS=( README.md )
36 SITEFILE="50${PN}-gentoo.el"
37 -DOCS="README.md"
38 +
39 +src_test() {
40 + sh run-tests.sh || die
41 +}