diff options
author | Mattéo Rossillol‑‑Laruelle <beatussum@protonmail.com> | 2024-07-01 13:20:38 +0200 |
---|---|---|
committer | Eli Schwartz <eschwartz@gentoo.org> | 2024-07-04 00:23:26 -0400 |
commit | b7e9056255dac4b0be41683e56b7ec72e1f0708f (patch) | |
tree | e4ed4e195507db38afb5ce8e8f362badcf32265e /app-shells | |
parent | net-im/signal-desktop-bin: remove 7.13.0 (diff) | |
download | gentoo-b7e9056255dac4b0be41683e56b7ec72e1f0708f.tar.gz gentoo-b7e9056255dac4b0be41683e56b7ec72e1f0708f.tar.bz2 gentoo-b7e9056255dac4b0be41683e56b7ec72e1f0708f.zip |
app-shells/zsh-syntax-highlighting: drop 0.7.1
Signed-off-by: Mattéo Rossillol‑‑Laruelle <beatussum@protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/37384
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/zsh-syntax-highlighting/Manifest | 1 | ||||
-rw-r--r-- | app-shells/zsh-syntax-highlighting/zsh-syntax-highlighting-0.7.1.ebuild | 42 |
2 files changed, 0 insertions, 43 deletions
diff --git a/app-shells/zsh-syntax-highlighting/Manifest b/app-shells/zsh-syntax-highlighting/Manifest index c64266de01fa..e2b72f6c8548 100644 --- a/app-shells/zsh-syntax-highlighting/Manifest +++ b/app-shells/zsh-syntax-highlighting/Manifest @@ -1,2 +1 @@ -DIST zsh-syntax-highlighting-0.7.1.tar.gz 133554 BLAKE2B cd55a0ad69670b25edc4bfa78ad76d1e2ef501deeca3e93adbef0aca305896722b4906d7717be3ad61bc0cf6b6496e217626406e5ff4168ece4b75bffd94bbf0 SHA512 e7e86b88cdac9b9ed5f973823ba8efff99dd720b9ed929f765f9f9266b9d6e147274f5957ceb630d51a660e396fc22e97f10cfbc5cdde941b907f3773bb1ea2b DIST zsh-syntax-highlighting-0.8.0.tar.gz 155914 BLAKE2B bdb95dc825514e2c0ced2a33133967089fdbd851e00874f68497cd5daae2010f5335fb173569f5af6aea65f4e23744076c420ebc957b7bdba325fcec573d3805 SHA512 58593c8bf3fa1476ecf0fceb1fc4eab986a778de657d359a28fe48798e787896fbf2588441c69b017a08227ab44dd46473afb16e0f125aae59cc58004bfa8c2e diff --git a/app-shells/zsh-syntax-highlighting/zsh-syntax-highlighting-0.7.1.ebuild b/app-shells/zsh-syntax-highlighting/zsh-syntax-highlighting-0.7.1.ebuild deleted file mode 100644 index 6dc5114c77c9..000000000000 --- a/app-shells/zsh-syntax-highlighting/zsh-syntax-highlighting-0.7.1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit readme.gentoo-r1 - -if [[ -z ${PV%%*9999} ]]; then - EGIT_REPO_URI="https://github.com/zsh-users/${PN}.git" - inherit git-r3 -else - MY_PV=$(ver_rs 3 -) - SRC_URI="https://github.com/zsh-users/zsh-syntax-highlighting/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm ~arm64 ~riscv x86" - S="${WORKDIR}/${PN}-${MY_PV}" -fi - -DESCRIPTION="Fish shell like syntax highlighting for zsh" -HOMEPAGE="https://github.com/zsh-users/zsh-syntax-highlighting" - -LICENSE="BSD" -SLOT="0" - -RDEPEND="app-shells/zsh" - -DISABLE_AUTOFORMATTING="true" -DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add -. /usr/share/zsh/site-functions/zsh-syntax-highlighting.zsh -at the end of your ~/.zshrc" - -src_prepare() { - sed -i -e 's/COPYING.md//' Makefile || die - default -} - -src_install() { - emake \ - SHARE_DIR="${ED}/usr/share/zsh/site-functions" \ - DOC_DIR="${ED}/usr/share/doc/${PF}" \ - install - readme.gentoo_create_doc -} |