diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 21:03:06 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 21:03:06 +0100 |
commit | 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 (patch) | |
tree | 7681bbd4e8b05407772df40a4bf04cbbc8afc3fa /app-vim/supertab | |
parent | 30a9caf154332f12ca60756e1b75d2f0e3e1822d (diff) |
gentoo resync : 14.07.2018
Diffstat (limited to 'app-vim/supertab')
-rw-r--r-- | app-vim/supertab/Manifest | 3 | ||||
-rw-r--r-- | app-vim/supertab/metadata.xml | 11 | ||||
-rw-r--r-- | app-vim/supertab/supertab-2.1.ebuild | 18 |
3 files changed, 32 insertions, 0 deletions
diff --git a/app-vim/supertab/Manifest b/app-vim/supertab/Manifest new file mode 100644 index 000000000000..a1eb7de1aa13 --- /dev/null +++ b/app-vim/supertab/Manifest @@ -0,0 +1,3 @@ +DIST supertab-2.1.tar.gz 16585 BLAKE2B 8c9adcd1e4cd27ea3c6ef33215287b3f6734ea6dba8ff1ae4852db387c26fadcad9fa9c6ee57800c662d6da815af2e7e91682bbb768b6d15ee661063af30bfa2 SHA512 6daec863968be9aaefecb3388a8626f4ebf1c76899e460463fc64a56f15f743d3eae36b03588b5450a2c49b63ecdec8faf3476eda1a07cc48caf731eff77a592 +EBUILD supertab-2.1.ebuild 507 BLAKE2B f9ffa97068960076ac7a36898cea6f2c88dc29d2a1e9333a1137b1f22edaee6af9486b696a6dd41ecd9852a51c1574eb89f9565182e095de797b116c11ccbebb SHA512 15d1e6f033c7a36c14a99390b28ef9f52cd2555e9293c7e9a90f16565118ce008021fb084d66244453e211b2db5e403ea3884e5707dbebd32f71a4c5e8c1aedb +MISC metadata.xml 341 BLAKE2B 33e39fad500b2aaad60543debd41b6d80d713c6ec168ee2e9eb7edb47f4e3d2c621a5bc2f32b24c27d549d6daeb3213c2a2ce2e81f1e8ba492e789da22d11036 SHA512 e1c44cd31882c2aeaee01a4112c8ba3c6d57bfba3d1b30ee0d1f9726569d4249528b2ea1c2d7b5beeddca28dbf443e1b9bc788381510a4ff8ce56b2788d17425 diff --git a/app-vim/supertab/metadata.xml b/app-vim/supertab/metadata.xml new file mode 100644 index 000000000000..5865f0ad42ec --- /dev/null +++ b/app-vim/supertab/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>vim@gentoo.org</email> + <name>Gentoo Vim Project</name> + </maintainer> + <upstream> + <remote-id type="github">ervandew/supertab</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-vim/supertab/supertab-2.1.ebuild b/app-vim/supertab/supertab-2.1.ebuild new file mode 100644 index 000000000000..6e48c8901b53 --- /dev/null +++ b/app-vim/supertab/supertab-2.1.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="5" + +inherit vim-plugin + +DESCRIPTION="vim plugin: enhanced Tab key functionality" +HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=1643 https://github.com/ervandew/supertab/" +SRC_URI="https://github.com/ervandew/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="BSD" +KEYWORDS="amd64 ~mips ppc x86" + +VIM_PLUGIN_HELPFILES="${PN}.txt" + +src_prepare() { + rm Makefile .gitignore || die +} |