commit: ad1cc56d2074a234cffa37e9e3268649cfda9ad6 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org> AuthorDate: Sat Nov 4 22:56:02 2017 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Sat Nov 4 22:56:48 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad1cc56d
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 app-vim/pfsyntax/Manifest | 1 + app-vim/pfsyntax/metadata.xml | 8 ++++++++ app-vim/pfsyntax/pfsyntax-1.3.ebuild | 16 ++++++++++++++++ 3 files changed, 25 insertions(+) diff --git a/app-vim/pfsyntax/Manifest b/app-vim/pfsyntax/Manifest new file mode 100644 index 00000000000..a4e1283219f --- /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 00000000000..84f8f1cf6bc --- /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>v...@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 00000000000..734f5d50372 --- /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}"