summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2024-02-16 18:10:03 +0100
committerMaciej Barć <xgqt@gentoo.org>2024-02-17 00:13:32 +0100
commitcf5c0eac2ef44df546c936c3304e33f89194bc8a (patch)
treec72271caec6df70682df81c9d1c8f08cb43c0a58
parentapp-emacs/transient: drop old 0.5.0 (diff)
downloadgentoo-cf5c0eac2ef44df546c936c3304e33f89194bc8a.tar.gz
gentoo-cf5c0eac2ef44df546c936c3304e33f89194bc8a.tar.bz2
gentoo-cf5c0eac2ef44df546c936c3304e33f89194bc8a.zip
app-emacs/transient: drop old 0.5.2
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
-rw-r--r--app-emacs/transient/Manifest1
-rw-r--r--app-emacs/transient/transient-0.5.2.ebuild42
2 files changed, 0 insertions, 43 deletions
diff --git a/app-emacs/transient/Manifest b/app-emacs/transient/Manifest
index f722493e2e29..438afd037634 100644
--- a/app-emacs/transient/Manifest
+++ b/app-emacs/transient/Manifest
@@ -1,2 +1 @@
-DIST transient-0.5.2.tar.gz 133643 BLAKE2B 765d78c9c5bd756ff82a4857477350def4fc52a55e53f9f8b21e065a853d5ff4eacaa8507d30e4fb39ccb91a966cf71c06b5e5f3248768d1bc8476d67ef560c2 SHA512 d8cf45b302a960659ee6d306d71d32d4e8e614deca8033afe5e644f48f36fcb885e0cd9acf307b2e1ba2d3c99a32ca73cd7a0cd6ab78f8e3442fe4b01e3b04b8
DIST transient-0.5.3.tar.gz 133756 BLAKE2B 4dfe8df4ec72328f1227fb4f885345709e5686854d5caf8c103ef6081b4a6858de29f33292d7a06acdf0c5f608aaaa5311e739122cb10f39e1af9b55d407eb82 SHA512 d6767b36443fdc76703e028613c2bf13de8a55258506091cfc7506e7a2bdb98bd38f387684856a3860201935bdf305c0429716ce250712c5df27cf6d10064bbf
diff --git a/app-emacs/transient/transient-0.5.2.ebuild b/app-emacs/transient/transient-0.5.2.ebuild
deleted file mode 100644
index ab8accfcb76d..000000000000
--- a/app-emacs/transient/transient-0.5.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp
-
-DESCRIPTION="Transient commands abstraction for GNU Emacs"
-HOMEPAGE="https://magit.vc/manual/transient/
- https://github.com/magit/transient/"
-
-if [[ "${PV}" == *9999* ]] ; then
- inherit git-r3
-
- EGIT_REPO_URI="https://github.com/magit/${PN}.git"
-else
- SRC_URI="https://github.com/magit/${PN}/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
-
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-
-DOCS=( CHANGELOG README.org docs/${PN}.org )
-ELISP_TEXINFO="docs/${PN}.texi"
-SITEFILE="50${PN}-gentoo.el"
-
-RDEPEND="
- >=app-emacs/compat-29.1.4.1
-"
-BDEPEND="
- ${RDEPEND}
- sys-apps/texinfo
-"
-
-src_prepare() {
- mv lisp/*.el . || die
-
- default
-}