diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-11-04 23:56:02 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-11-04 23:56:48 +0100 |
commit | ad1cc56d2074a234cffa37e9e3268649cfda9ad6 (patch) | |
tree | 0d48dd63e7bc2e99daf97fac2b1c60575b4a5fcb /app-vim/pfsyntax | |
parent | sys-apps/inxi: Bump to 2.3.43 and add use flags (diff) | |
download | gentoo-ad1cc56d2074a234cffa37e9e3268649cfda9ad6.tar.gz gentoo-ad1cc56d2074a234cffa37e9e3268649cfda9ad6.tar.bz2 gentoo-ad1cc56d2074a234cffa37e9e3268649cfda9ad6.zip |
app-vim/pfsyntax: new ebuild.
Plugin to add Packet Filter syntax file highlighting to Vim.
Closes: https://bugs.gentoo.org/279943
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'app-vim/pfsyntax')
-rw-r--r-- | app-vim/pfsyntax/Manifest | 1 | ||||
-rw-r--r-- | app-vim/pfsyntax/metadata.xml | 8 | ||||
-rw-r--r-- | app-vim/pfsyntax/pfsyntax-1.3.ebuild | 16 |
3 files changed, 25 insertions, 0 deletions
diff --git a/app-vim/pfsyntax/Manifest b/app-vim/pfsyntax/Manifest new file mode 100644 index 000000000000..a4e1283219f7 --- /dev/null +++ b/app-vim/pfsyntax/Manifest @@ -0,0 +1 @@ +DIST pfsyntax-1.3.tar.gz 1540 SHA256 4a30e8292b5fba503d0fdb5e9e083a9dd47f917126a89318e21ff0e24333038e SHA512 6967cee9a039f405a4b42a44678d5c632eb93ef48486c03a6929991d31ac03677cba4223f49c14e6c9d73b15db9469b3fa3c0f2586b4994d25634d0885121c5b WHIRLPOOL 0c83df168e0263398f17695ebcb2e7d9fde1358b1d2d24b64ee3b803ef540366aabab817ec9973fce52e1b7713f9fbc5a36a7074d3c155290c6bc60e0ba0fe08 diff --git a/app-vim/pfsyntax/metadata.xml b/app-vim/pfsyntax/metadata.xml new file mode 100644 index 000000000000..84f8f1cf6bcb --- /dev/null +++ b/app-vim/pfsyntax/metadata.xml @@ -0,0 +1,8 @@ +<?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> +</pkgmetadata> diff --git a/app-vim/pfsyntax/pfsyntax-1.3.ebuild b/app-vim/pfsyntax/pfsyntax-1.3.ebuild new file mode 100644 index 000000000000..734f5d503723 --- /dev/null +++ b/app-vim/pfsyntax/pfsyntax-1.3.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit vim-plugin + +MY_PN="pf.vim" + +DESCRIPTION="vim plugin: pf syntax highlighting for vim" +HOMEPAGE="https://github.com/vim-scripts/pf.vim" +SRC_URI="https://github.com/vim-scripts/pf.vim/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="vim" +KEYWORDS="~amd64 ~x86" + +S="${WORKDIR}/${MY_PN}-${PV}" |