summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2023-08-11 18:17:14 +0200
committerMaciej Barć <xgqt@gentoo.org>2023-08-11 18:41:37 +0200
commitdd6e33171bd4a4901520e335f2555ee33cbecdb7 (patch)
tree13c94a4e513958d49d9f77ffd6999e333343cb9c /app-emacs/diff-hl/diff-hl-1.9.0.ebuild
parentapp-emacs/dash: drop old 2.19.0 (diff)
downloadgentoo-dd6e33171bd4a4901520e335f2555ee33cbecdb7.tar.gz
gentoo-dd6e33171bd4a4901520e335f2555ee33cbecdb7.tar.bz2
gentoo-dd6e33171bd4a4901520e335f2555ee33cbecdb7.zip
app-emacs/diff-hl: drop old 1.9.0
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/diff-hl/diff-hl-1.9.0.ebuild')
-rw-r--r--app-emacs/diff-hl/diff-hl-1.9.0.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/app-emacs/diff-hl/diff-hl-1.9.0.ebuild b/app-emacs/diff-hl/diff-hl-1.9.0.ebuild
deleted file mode 100644
index c58a061ef648..000000000000
--- a/app-emacs/diff-hl/diff-hl-1.9.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-[[ ${PV} == 1.9.0 ]] && COMMIT=37b00f3bad841e131d69442a89cbebc3041d996b
-
-inherit elisp
-
-DESCRIPTION="Highlight uncommitted changes, jump between and revert them selectively"
-HOMEPAGE="https://github.com/dgutov/diff-hl/"
-SRC_URI="https://github.com/dgutov/${PN}/archive/${COMMIT}.tar.gz
- -> ${P}.tar.gz"
-S="${WORKDIR}"/${PN}-${COMMIT}
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="test? ( dev-vcs/git )"
-
-DOCS=( README.md screenshot{,-dired,-margin}.png )
-SITEFILE="50${PN}-gentoo.el"
-
-src_test() {
- ebegin "Creating a git repository for tests"
- git init "${S}" --initial-branch="master" &&
- git add "${S}" &&
- git config --local user.email "test@test" &&
- git config --local user.name "test" &&
- git commit --message "test" --quiet
- eend $? || die
- emake EMACS="${EMACS} ${EMACSFLAGS}" test
-}