summaryrefslogtreecommitdiff
path: root/app-vim/alternate
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-01-14 01:14:50 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-01-14 01:14:50 +0000
commit94eb99943eafb48140b436b347abaaee77209c01 (patch)
treebb4f0519a6c0880b24c88b1666976a36a464a8df /app-vim/alternate
parenta7ec94f7d22ee22df2e424c1d3f842510b7993aa (diff)
gentoo auto-resync : 14:01:2024 - 01:14:49
Diffstat (limited to 'app-vim/alternate')
-rw-r--r--app-vim/alternate/Manifest1
-rw-r--r--app-vim/alternate/alternate-2.18-r2.ebuild35
2 files changed, 0 insertions, 36 deletions
diff --git a/app-vim/alternate/Manifest b/app-vim/alternate/Manifest
index bbdd545cc6e4..43637d670c0c 100644
--- a/app-vim/alternate/Manifest
+++ b/app-vim/alternate/Manifest
@@ -1,6 +1,5 @@
AUX alternate-2.18-hh-cc-alternation.patch 918 BLAKE2B 0362420f64fdd1607529842d965e4f6bcafa49467e7d6befd9621844f47ff2c1f58e22bd1e1efd5579b6373bd24a0c7974e468cf9edf471a58e964718a25c506 SHA512 b1f524d47785e7482791b56f891e624da2a06739483d0584d080f691eaf89c9a350e708fd1369c41b6f99a263d7395b25572366e0b90b0349230079fbdcea4b9
DIST alternate-2.18.tar.gz 8652 BLAKE2B f6e50d3e1499fb913f7cfa4ff95df180855c7857a700428be1339916aed4513bf77a8da62b75407a6c129f4da3e3bcd00f5caed53d7a939a2eac96a287a11ffe SHA512 d797b99cbe536285d87c5bb14adfcaa3e18611351c8529d9a0755606e766ecc006f19af5cd9b9535f236220dc525bbc27e1280cbb1e3c71f7444cdefd506cefa
DIST alternate.txt 8897 BLAKE2B b2c2ad9e39c98c82592034ddb0db79803f39bdf3c8d55307aecc488855a75c7be508b41a6a6cf9d3f3d0f4e938feb65fdd756040d8e51e0244c9dc6b9fbacd86 SHA512 92b24aef5fe1fb459b4cb85ca780ae20126bc79138ac15dec652c15a89b688d40bedc00bdae8fce912c8805b24b8805e45ddbd9e6b1ec10c20e61eed11d37651
-EBUILD alternate-2.18-r2.ebuild 995 BLAKE2B 96fdeff6a4d502b7c368643cdc3fd8388892003613908f7408b3cc8be896bba3911cd0e129b82006c678c1fb162dd6d197ebc67252d856e9f1cf59142319b720 SHA512 2f4e22cc32f3c1cb80edebcfebef3db3d133bb5f451e043d3d9c25d83f14b579883d0a408486d691d3ce0d4f6f10f54b2e96980c8a585f6226056ca6e66eb365
EBUILD alternate-2.18-r3.ebuild 996 BLAKE2B 9c6894ab2bcdedcefbb6912866558282582d6d5002553af54b861b2b3337d781ae83858a328b214ec70b74c661d464b20cf61ba8618b2f16234413bbbd331180 SHA512 212022a63d6f9cad860ebe84a5185d1eb808acd25c6ba6e066897a7fbc3fb211b143f204c3d83b71258b4d790316acaed5f392a3d0f5e5d838b2783b468b9ce1
MISC metadata.xml 356 BLAKE2B 59691dbd9fb0a93d48a1db7aa96cf080634291181af0b6a338ca58b3b6df0b96e89544b268dd173fe37a39c1989463c9004093d9a75df78520d767548164cc40 SHA512 84b0c4b4ba5613fba4bfe552ddfc4ae32b7638479ae258ab89e1aa811f48dbc8dfb5f54647ec7818aba6cbe13bff492d10e92e44e92d1a105ee231305fea042f
diff --git a/app-vim/alternate/alternate-2.18-r2.ebuild b/app-vim/alternate/alternate-2.18-r2.ebuild
deleted file mode 100644
index 50ccc8cac641..000000000000
--- a/app-vim/alternate/alternate-2.18-r2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: quickly switch between .c and .h files"
-HOMEPAGE="https://github.com/vim-scripts/a.vim https://www.vim.org/scripts/script.php?script_id=31"
-
-SRC_URI="
- https://github.com/vim-scripts/a.vim/archive/${PV}.tar.gz -> ${P}.tar.gz
- https://www.vim.org/scripts/download_script.php?src_id=6347 -> ${PN}.txt"
-
-LICENSE="alternate"
-KEYWORDS="~alpha amd64 ~ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-
-VIM_PLUGIN_HELPTEXT=\
-"This plugin provides a new :A command which will switch between a .c
-file and the associated .h file. There is also :AS to split windows and
-:AV to split windows vertiically."
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"
-
-PATCHES=(
- "${FILESDIR}"/${P}-hh-cc-alternation.patch
-)
-
-S="${WORKDIR}/a.vim-${PV}"
-
-src_prepare() {
- default
- mkdir -p "${S}/doc" || die
- cp "${DISTDIR}/${PN}.txt" "${S}/doc" || die
-}