diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-08-11 18:18:51 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-08-11 18:41:39 +0200 |
commit | a186dfcbcaf5136132cb4326770b6617369d0a77 (patch) | |
tree | 45d51245845f05400cea19b241abba15f57a5a32 /app-emacs/eglot | |
parent | app-emacs/eglot: drop old 1.11 (diff) | |
download | gentoo-a186dfcbcaf5136132cb4326770b6617369d0a77.tar.gz gentoo-a186dfcbcaf5136132cb4326770b6617369d0a77.tar.bz2 gentoo-a186dfcbcaf5136132cb4326770b6617369d0a77.zip |
app-emacs/eglot: drop old 1.13
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/eglot')
-rw-r--r-- | app-emacs/eglot/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/eglot/eglot-1.13.ebuild | 44 |
2 files changed, 0 insertions, 45 deletions
diff --git a/app-emacs/eglot/Manifest b/app-emacs/eglot/Manifest index 98ec51100478..fac0edacfbfc 100644 --- a/app-emacs/eglot/Manifest +++ b/app-emacs/eglot/Manifest @@ -1,2 +1 @@ -DIST eglot-1.13.tar.gz 303750 BLAKE2B ecd2efe5fcf2d0d8229336f01ced60f882cfb3e4a0a8af6bcd9f5da0e5cdc6d247634960de50fe46cd4fdac32ea83cd3b506fd025f109c684cb468a60969cbc4 SHA512 43e659213e8f2cedd0ecbd0a2bb1b475de37083577845574adb8bb61d20d0c72b8fc291689e1654c00156f8b2c03d29fc327f7adbac0eb0c5f88d851583f28b8 DIST eglot-1.15.tar.gz 305200 BLAKE2B e9bb3f10dc9aac803f9b1184f489d76bd217b279d398c67a403c887298ec3e73e30a359a7e31af9c298b8778a2cdf916e9f40495ab3d01216a12fb38aed4d83b SHA512 871d56404c08baa490488d6027645f7ba0252faee7d006ade4e29890abb2e70a3f1715114c852721db7991bdece29266d920bbef6da0eb2ea2f37b842f411ac2 diff --git a/app-emacs/eglot/eglot-1.13.ebuild b/app-emacs/eglot/eglot-1.13.ebuild deleted file mode 100644 index 918d33824648..000000000000 --- a/app-emacs/eglot/eglot-1.13.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -NEED_EMACS=26.3 - -inherit elisp - -DESCRIPTION="A minimal Emacs LSP client" -HOMEPAGE="https://github.com/joaotavora/eglot/ - https://elpa.gnu.org/packages/eglot.html" - -if [[ ${PV} == *9999* ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/joaotavora/${PN}.git" -else - if [[ ${PV} == 1.13 ]] ; then - COMMIT=563d01ab6d4a2f92f38bf92e9702014191031343 - SRC_URI="https://github.com/joaotavora/${PN}/archive/${COMMIT}.tar.gz - -> ${P}.tar.gz" - S="${WORKDIR}"/${PN}-${COMMIT} - else - SRC_URI="https://github.com/joaotavora/${PV}/archive/${PV}.tar.gz - -> ${P}.tar.gz" - fi - KEYWORDS="~amd64" -fi - -LICENSE="GPL-3" -SLOT="0" -RESTRICT="test" - -RDEPEND="app-emacs/external-completion" -BDEPEND="${RDEPEND}" - -SITEFILE="50${PN}-gentoo.el" - -src_install() { - rm eglot-tests.el* || die - - elisp-make-autoload-file "${S}"/${PN}-autoload.el "${S}"/ - elisp_src_install -} |