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: Wed, 31 Aug 2022 15:09:57
Message-Id: 1661958590.8731fdfd1550ee9bd3d51e536f00435c24ae6902.xgqt@gentoo
1 commit: 8731fdfd1550ee9bd3d51e536f00435c24ae6902
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 31 14:51:07 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 31 15:09:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8731fdfd
7
8 app-emacs/s: bump to 1.13.0
9
10 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
11
12 app-emacs/s/Manifest | 1 +
13 app-emacs/s/s-1.13.0.ebuild | 22 ++++++++++++++++++++++
14 2 files changed, 23 insertions(+)
15
16 diff --git a/app-emacs/s/Manifest b/app-emacs/s/Manifest
17 index 12ab2a8aeb7e..e24406530477 100644
18 --- a/app-emacs/s/Manifest
19 +++ b/app-emacs/s/Manifest
20 @@ -1 +1,2 @@
21 DIST s-1.12.0.tar.gz 59193 BLAKE2B 89e4c453b6590116a4cc08fc1be73519e6c95586c1e80b37f37d7273232aa707cd030cf74106fdd7eb7f05fe8ebd04253592076573472c3927cc1428b4c029f8 SHA512 036369011295dfde7567ae8bd479be9635de479e8821c3fe117a6c3827bc83492bb91e6ac64d4b20b061da95690f5585ed58f116a2b8c877dceee22153c8c990
22 +DIST s-1.13.0.tar.gz 60783 BLAKE2B 87f15341053924bf82e5b84f53a9f0ffb4713946974fb338f114ff25cb0c54ee6a4cdd6c2283eb089eb6ee85d268717dc2534a2de2bad0c7584f7e3ed941e42b SHA512 537e270256e7187ef470c03a3824f133bd0f3951b8470685cd865b4894710c6659efbdacbe347dcaac8de73d4e3a638cdb0cebdad8da6bf7f9a2f5d106bff1c6
23
24 diff --git a/app-emacs/s/s-1.13.0.ebuild b/app-emacs/s/s-1.13.0.ebuild
25 new file mode 100644
26 index 000000000000..e61a7d55bdba
27 --- /dev/null
28 +++ b/app-emacs/s/s-1.13.0.ebuild
29 @@ -0,0 +1,22 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit elisp
36 +
37 +DESCRIPTION="The long lost Emacs string manipulation library"
38 +HOMEPAGE="https://github.com/magnars/s.el"
39 +SRC_URI="https://github.com/magnars/s.el/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 +S="${WORKDIR}"/s.el-${PV}
41 +
42 +LICENSE="GPL-3+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
45 +
46 +DOCS=( README.md )
47 +SITEFILE="50${PN}-gentoo.el"
48 +
49 +src_test() {
50 + sh run-tests.sh || die
51 +}