diff --git a/app-emacs/swift-mode/Manifest b/app-emacs/swift-mode/Manifest index 313c542e15f59..6fe8226b97425 100644 --- a/app-emacs/swift-mode/Manifest +++ b/app-emacs/swift-mode/Manifest @@ -1 +1,2 @@ DIST swift-mode-9.2.0.tar.gz 229216 BLAKE2B 5c19f919919f41ad725f1c5434022eed0be3f2b64b8165d6a9eb84b8a5467cde620f610cab4e303ef00a731f7327512caf1f1b746ab1fbe452534f1577ba6bf6 SHA512 1761639aa7281bbadef68f56dd4276799a72d03c5bb9dafc3fcd7e9f4b819f288e1b7727e3a0839862df7cf6e649549fc4b1be0f922f8a508d9c526f67d92c97 +DIST swift-mode-9.3.0.tar.gz 230772 BLAKE2B 3cc9538d5136ec92c70fd6f6905294a82f9212e4e253159c880b46842875d3bca73b3f02ad1c163a9c2365ef8ecb2c22ea55494bc91322313fcbc4d88feafa7b SHA512 29bcab97a0c688ed245b7e27a9d453069acf64389a66120d5a39b2d4c84b98b1fcb2ebf3a4755b37f87c1dffe8ebe1445459ef6c3df99226d1b0670e7c8d427d diff --git a/app-emacs/swift-mode/swift-mode-9.3.0.ebuild b/app-emacs/swift-mode/swift-mode-9.3.0.ebuild new file mode 100644 index 0000000000000..b3f07a7b6c636 --- /dev/null +++ b/app-emacs/swift-mode/swift-mode-9.3.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Emacs support for Apple's Swift programming language" +HOMEPAGE="https://github.com/swift-emacs/swift-mode/" +SRC_URI="https://github.com/swift-emacs/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +DOCS=( README.md CONTRIBUTING.md ) +SITEFILE="50${PN}-gentoo.el" + +src_test() { + ${EMACS} ${EMACSFLAGS} \ + -L . -L test \ + -l test/swift-mode-test.el \ + -f swift-mode:run-test || die "tests failed" +}