repo/gentoo:master commit in: app-emacs/s/
Maciej BarÄ <[email protected]> Mon, 03 Aug 2026 11:33:53 +0000 (UTC)
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1785756821.57bf710cc3a3c934c031b2892c2bd2e2bce0f7a1.xgqt@gentoo> |
commit: 57bf710cc3a3c934c031b2892c2bd2e2bce0f7a1
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 3 10:49:58 2026 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Aug 3 11:33:41 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57bf710c
app-emacs/s: bump to 1.13.1
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/s/Manifest | 1 +
app-emacs/s/s-1.13.1.ebuild | 29 +++++++++++++++++++++++++++++
2 files changed, 30 insertions(+)
diff --git a/app-emacs/s/Manifest b/app-emacs/s/Manifest
index f13a0e05227e..bef7b14f1bbf 100644
--- a/app-emacs/s/Manifest
+++ b/app-emacs/s/Manifest
@@ -1 +1,2 @@
DIST s-1.13.0.tar.gz 60783 BLAKE2B 87f15341053924bf82e5b84f53a9f0ffb4713946974fb338f114ff25cb0c54ee6a4cdd6c2283eb089eb6ee85d268717dc2534a2de2bad0c7584f7e3ed941e42b SHA512 537e270256e7187ef470c03a3824f133bd0f3951b8470685cd865b4894710c6659efbdacbe347dcaac8de73d4e3a638cdb0cebdad8da6bf7f9a2f5d106bff1c6
+DIST s-1.13.1.gh.tar.gz 62743 BLAKE2B 828c3d80696e2fc0a4f367440ab99d5d3690e11f8667c279b26edc535b268d0c62e26207d141d1d4420b328be841a2b0de9e561f79fc1e5f264ace131a05b8b2 SHA512 c393d68be5a4762ae1617c33d3e341c47677a231db1ca9f8443543e477a99a29f576c810c1f855bea5c9f178b1019c40bf4ebc6dd62d22a9326fcfd5601c61ef
diff --git a/app-emacs/s/s-1.13.1.ebuild b/app-emacs/s/s-1.13.1.ebuild
new file mode 100644
index 000000000000..65eed727f98f
--- /dev/null
+++ b/app-emacs/s/s-1.13.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=9
+
+inherit elisp
+
+DESCRIPTION="The long lost Emacs string manipulation library"
+HOMEPAGE="https://github.com/magnars/s.el/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/magnars/s.el"
+else
+ SRC_URI="https://github.com/magnars/s.el/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz"
+ S="${WORKDIR}/s.el-${PV}"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+DOCS=( README.md )
+SITEFILE="50${PN}-gentoo.el"
+
+src_test() {
+ edo ./run-tests.sh
+}