Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/pfsyntax/
Date: Sat, 04 Nov 2017 22:56:55
Message-Id: 1509836208.ad1cc56d2074a234cffa37e9e3268649cfda9ad6.monsieurp@gentoo
1 commit: ad1cc56d2074a234cffa37e9e3268649cfda9ad6
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 4 22:56:02 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 4 22:56:48 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad1cc56d
7
8 app-vim/pfsyntax: new ebuild.
9
10 Plugin to add Packet Filter syntax file highlighting to Vim.
11
12 Closes: https://bugs.gentoo.org/279943
13 Package-Manager: Portage-2.3.8, Repoman-2.3.3
14
15 app-vim/pfsyntax/Manifest | 1 +
16 app-vim/pfsyntax/metadata.xml | 8 ++++++++
17 app-vim/pfsyntax/pfsyntax-1.3.ebuild | 16 ++++++++++++++++
18 3 files changed, 25 insertions(+)
19
20 diff --git a/app-vim/pfsyntax/Manifest b/app-vim/pfsyntax/Manifest
21 new file mode 100644
22 index 00000000000..a4e1283219f
23 --- /dev/null
24 +++ b/app-vim/pfsyntax/Manifest
25 @@ -0,0 +1 @@
26 +DIST pfsyntax-1.3.tar.gz 1540 SHA256 4a30e8292b5fba503d0fdb5e9e083a9dd47f917126a89318e21ff0e24333038e SHA512 6967cee9a039f405a4b42a44678d5c632eb93ef48486c03a6929991d31ac03677cba4223f49c14e6c9d73b15db9469b3fa3c0f2586b4994d25634d0885121c5b WHIRLPOOL 0c83df168e0263398f17695ebcb2e7d9fde1358b1d2d24b64ee3b803ef540366aabab817ec9973fce52e1b7713f9fbc5a36a7074d3c155290c6bc60e0ba0fe08
27
28 diff --git a/app-vim/pfsyntax/metadata.xml b/app-vim/pfsyntax/metadata.xml
29 new file mode 100644
30 index 00000000000..84f8f1cf6bc
31 --- /dev/null
32 +++ b/app-vim/pfsyntax/metadata.xml
33 @@ -0,0 +1,8 @@
34 +<?xml version="1.0" encoding="UTF-8"?>
35 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 +<pkgmetadata>
37 + <maintainer type="project">
38 + <email>vim@g.o</email>
39 + <name>Gentoo Vim Project</name>
40 + </maintainer>
41 +</pkgmetadata>
42
43 diff --git a/app-vim/pfsyntax/pfsyntax-1.3.ebuild b/app-vim/pfsyntax/pfsyntax-1.3.ebuild
44 new file mode 100644
45 index 00000000000..734f5d50372
46 --- /dev/null
47 +++ b/app-vim/pfsyntax/pfsyntax-1.3.ebuild
48 @@ -0,0 +1,16 @@
49 +# Copyright 1999-2017 Gentoo Foundation
50 +# Distributed under the terms of the GNU General Public License v2
51 +
52 +EAPI=6
53 +
54 +inherit vim-plugin
55 +
56 +MY_PN="pf.vim"
57 +
58 +DESCRIPTION="vim plugin: pf syntax highlighting for vim"
59 +HOMEPAGE="https://github.com/vim-scripts/pf.vim"
60 +SRC_URI="https://github.com/vim-scripts/pf.vim/archive/${PV}.tar.gz -> ${P}.tar.gz"
61 +LICENSE="vim"
62 +KEYWORDS="~amd64 ~x86"
63 +
64 +S="${WORKDIR}/${MY_PN}-${PV}"