summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2024-02-16 17:58:31 +0100
committerMaciej Barć <xgqt@gentoo.org>2024-02-17 00:13:28 +0100
commit77bb6d4aeadac3552427b2d9be80ced9d3410ad6 (patch)
treef7c9eca1edbe8d3d1b8360886470b31e735276b0 /app-emacs/magit
parentapp-emacs/macrostep: drop old 0.9.1 (diff)
downloadgentoo-77bb6d4aeadac3552427b2d9be80ced9d3410ad6.tar.gz
gentoo-77bb6d4aeadac3552427b2d9be80ced9d3410ad6.tar.bz2
gentoo-77bb6d4aeadac3552427b2d9be80ced9d3410ad6.zip
app-emacs/magit: drop old 3.3.0-r2
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/magit')
-rw-r--r--app-emacs/magit/magit-3.3.0-r2.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/app-emacs/magit/magit-3.3.0-r2.ebuild b/app-emacs/magit/magit-3.3.0-r2.ebuild
deleted file mode 100644
index 9299f8b8d42f..000000000000
--- a/app-emacs/magit/magit-3.3.0-r2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp
-
-DESCRIPTION="A Git porcelain inside Emacs"
-HOMEPAGE="https://magit.vc/
- https://github.com/magit/magit/"
-
-if [[ ${PV} == *9999* ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/magit/magit.git"
-else
- SRC_URI="https://github.com/magit/magit/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
-fi
-S="${WORKDIR}/${P}/lisp"
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="+libgit" # drop the IUSE default for next upstream release
-
-DOCS=( ../README.md ../Documentation/AUTHORS.md ../Documentation/RelNotes )
-ELISP_TEXINFO="../Documentation/*.texi"
-SITEFILE="50${PN}-gentoo.el"
-
-RDEPEND="
- >=app-emacs/dash-2.19.1
- >=app-emacs/transient-0.3.6
- >=app-emacs/with-editor-3.0.5
- libgit? ( app-emacs/libegit2 )
-"
-BDEPEND="
- ${RDEPEND}
- sys-apps/texinfo
-"
-RDEPEND+="
- >=dev-vcs/git-2.0.0
-"
-
-src_prepare() {
- default
- use libgit || rm magit-libgit.el || die
- echo "(setq magit-version \"${PV}\")" > magit-version.el || die
-}
-
-pkg_postinst() {
- elisp_pkg_postinst
-
- einfo "magit version 3.3.0 dropped necessity of the app-emacs/libegit2 package"
- einfo "magit after 3.3.0 can now use the git executable directly,"
- einfo "if you need the libegit backend, then please add app-emacs/libegit2 to @world"
-}