diff options
author | 2023-05-10 22:12:18 +0200 | |
---|---|---|
committer | 2023-05-10 23:03:19 +0200 | |
commit | 8918c59b6e2de869178ae279598e1383bc118c82 (patch) | |
tree | 8049891ccc07ebc113dbcf9009a3378e967300a6 /app-emacs | |
parent | app-emacs/websocket: drop old 1.12 (diff) | |
download | gentoo-8918c59b6e2de869178ae279598e1383bc118c82.tar.gz gentoo-8918c59b6e2de869178ae279598e1383bc118c82.tar.bz2 gentoo-8918c59b6e2de869178ae279598e1383bc118c82.zip |
app-emacs/websocket: drop old 1.13
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/websocket/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/websocket/websocket-1.13.ebuild | 32 |
2 files changed, 0 insertions, 33 deletions
diff --git a/app-emacs/websocket/Manifest b/app-emacs/websocket/Manifest index 9263bca1966a..2487d5a8929a 100644 --- a/app-emacs/websocket/Manifest +++ b/app-emacs/websocket/Manifest @@ -1,2 +1 @@ -DIST websocket-1.13.tar.gz 27421 BLAKE2B 1098cd1ba294a2829e7c2b14685514ef2a9426742846159a157f9068714a8d21d0cd2b893a1312cae29ae92231a0685e51832e5bc8715c1c20e62854ec5c81eb SHA512 3f4c9131650992be2992ca646268f01eef2407256c517a26940aabb673c13a6741c1e15cf0832e42c9ee7ffbe3e7b5e6532fcd2d4d77e0d9fae0c6d4f2613354 DIST websocket-1.14_p20230305.tar.gz 27340 BLAKE2B 32b55fdff4bed7893d02bcafc67e473442803a492c31e565ec1487dc0e7211e505a517e460ca05f5f1f2d28d0852bced91cfbe9da98bcd6ed1e4598fe6bc4eb6 SHA512 6c4574387f8cae7d17a3a8e618678e9dc8d96d0301f3d20e236dae1820cdb2c7bb49e2f5bfe816670e9bac6a7be24b85f8ec9f8ea2aa248c6b5af302f227ae43 diff --git a/app-emacs/websocket/websocket-1.13.ebuild b/app-emacs/websocket/websocket-1.13.ebuild deleted file mode 100644 index 69b27f249bd7..000000000000 --- a/app-emacs/websocket/websocket-1.13.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit elisp - -DESCRIPTION="A websocket implementation in elisp" -HOMEPAGE="https://github.com/ahyatt/emacs-websocket" -SRC_URI="https://github.com/ahyatt/emacs-${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -S="${WORKDIR}/emacs-${P}" -SITEFILE="50${PN}-gentoo.el" - -src_compile() { - elisp-compile websocket.el -} - -src_test() { - ${EMACS} ${EMACSFLAGS} -L . -l websocket-test \ - -f ert-run-tests-batch-and-exit || die "tests failed" -} - -src_install() { - elisp-install ${PN} websocket.{el,elc} - elisp-site-file-install "${FILESDIR}/${SITEFILE}" - dodoc README.org websocket-functional-test.el testserver.py -} |