summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2024-02-16 17:53:56 +0100
committerMaciej Barć <xgqt@gentoo.org>2024-02-17 00:13:26 +0100
commit86484b3023c8e852565a7a77bb8f42a8e8420e99 (patch)
tree4597d883e1d2b0705173c65fd2beba295652818c /app-emacs
parentapp-emacs/helm: drop old 3.9.6 (diff)
downloadgentoo-86484b3023c8e852565a7a77bb8f42a8e8420e99.tar.gz
gentoo-86484b3023c8e852565a7a77bb8f42a8e8420e99.tar.bz2
gentoo-86484b3023c8e852565a7a77bb8f42a8e8420e99.zip
app-emacs/ivy: drop old 0.14.0
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r--app-emacs/ivy/Manifest1
-rw-r--r--app-emacs/ivy/ivy-0.14.0.ebuild49
2 files changed, 0 insertions, 50 deletions
diff --git a/app-emacs/ivy/Manifest b/app-emacs/ivy/Manifest
index 41097db74b88..74a1b19737be 100644
--- a/app-emacs/ivy/Manifest
+++ b/app-emacs/ivy/Manifest
@@ -1,2 +1 @@
-DIST swiper-0.14.0.tar.gz 249820 BLAKE2B 9184e66f910b9f7c401c9a5433b5915c393ece7711858c3f844d8afcbc13fa76039173b2ecd50bbaff586ff7596fd95e46e550a4282763e385f064d2e2103978 SHA512 e87fa2159d1541afdaa08e33584480cbeba75df15235bf57d4c8f6292b91be7e2a316e931c3f4d823da5fbf23d987ded293a433824af04357de231d26adfeeb1
DIST swiper-0.14.2.tar.gz 250059 BLAKE2B 8a5437726c729398a689266d138f271f5f7329f9c58613c4e0cfabd16b99421035c4b522d0ea4c60c0369362cb076bcae05ff4155d33d186172fd0ac2258495d SHA512 e125a3747abc4e6ecc98f539cf5dde11851d6c8a58b8988e165300bce7822fc91257cae09c973bd43435fb08dc24af9a1bd4b3e51083b45654b1605d80973d74
diff --git a/app-emacs/ivy/ivy-0.14.0.ebuild b/app-emacs/ivy/ivy-0.14.0.ebuild
deleted file mode 100644
index 73d043065bff..000000000000
--- a/app-emacs/ivy/ivy-0.14.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp
-
-DESCRIPTION="Generic completion mechanism for Emacs"
-HOMEPAGE="https://github.com/abo-abo/swiper/"
-SRC_URI="https://github.com/abo-abo/swiper/archive/${PV}.tar.gz
- -> swiper-${PV}.tar.gz"
-S="${WORKDIR}"/swiper-${PV}
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-BDEPEND="sys-apps/texinfo"
-
-DOCS=( CONTRIBUTING.org README.md doc/{Changelog,ivy-help,ivy}.org )
-SITEFILE="50${PN}-gentoo.el"
-
-# Main Ivy sources. Swiper, Counsel and Ivy extensions have their own packages.
-IVY_SOURCES=( colir.el ivy{,-overlay,-faces}.el )
-
-src_prepare() {
- elisp_src_prepare
-
- # Wipe "elpa.el" to prevent initialization of the "package" library.
- [[ ! -f elpa.el ]] && die "no \"elpa.el\" found"
- echo "" > elpa.el || die "failed to wipe \"elpa.el\""
-}
-
-src_compile() {
- elisp-compile ${IVY_SOURCES[@]}
- emake -C doc ivy.info
-}
-
-src_test() {
- emake emacs="${EMACS} ${EMACSFLAGS} ${BYTECOMPFLAGS}" test
-}
-
-src_install() {
- elisp-install ${PN} ${IVY_SOURCES[@]} *.elc
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-
- doinfo doc/ivy.info
- einstalldocs
-}