Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-jsonnet/
Date: Fri, 03 May 2019 00:58:17
Message-Id: 1556845084.595f2ed23557752144263ebee8d1f05ce0c72dea.chutzpah@gentoo
1 commit: 595f2ed23557752144263ebee8d1f05ce0c72dea
2 Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
3 AuthorDate: Fri May 3 00:56:13 2019 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Fri May 3 00:58:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=595f2ed2
7
8 app-vim/vim-jsonnet: New package
9
10 Copyright: Sony Interactive Entertainment Inc.
11 Package-Manager: Portage-2.3.66, Repoman-2.3.12
12 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
13
14 app-vim/vim-jsonnet/Manifest | 1 +
15 app-vim/vim-jsonnet/metadata.xml | 11 ++++++++++
16 .../vim-jsonnet/vim-jsonnet-0_pre20190502.ebuild | 24 ++++++++++++++++++++++
17 3 files changed, 36 insertions(+)
18
19 diff --git a/app-vim/vim-jsonnet/Manifest b/app-vim/vim-jsonnet/Manifest
20 new file mode 100644
21 index 00000000000..95cd1e8fa86
22 --- /dev/null
23 +++ b/app-vim/vim-jsonnet/Manifest
24 @@ -0,0 +1 @@
25 +DIST vim-jsonnet-0_pre20190502.tar.gz 102599 BLAKE2B 14f9fd72e6791fbd78b3749f860115a9a63137f7dc5e2d1eabae45b777dcebd902c9fa100665e2447ad0d6c8cd4e117beefc2bf16efd98c3382c84a2ebdc3951 SHA512 cac7b41cdd1749eab575cfdd0e897b37f2c842b69ad4a62c355c231d8d93668ab2e9929893bea72697ca512bf40a7768019b28866643025505abc421fbea12ec
26
27 diff --git a/app-vim/vim-jsonnet/metadata.xml b/app-vim/vim-jsonnet/metadata.xml
28 new file mode 100644
29 index 00000000000..81356ad8ead
30 --- /dev/null
31 +++ b/app-vim/vim-jsonnet/metadata.xml
32 @@ -0,0 +1,11 @@
33 +<?xml version="1.0" encoding="UTF-8"?>
34 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
35 +<pkgmetadata>
36 + <maintainer type="person">
37 + <email>chutzpah@g.o</email>
38 + <name>Patrick McLean</name>
39 + </maintainer>
40 + <upstream>
41 + <remote-id type="github">google/vim-jsonnet</remote-id>
42 + </upstream>
43 +</pkgmetadata>
44
45 diff --git a/app-vim/vim-jsonnet/vim-jsonnet-0_pre20190502.ebuild b/app-vim/vim-jsonnet/vim-jsonnet-0_pre20190502.ebuild
46 new file mode 100644
47 index 00000000000..df90ee8b9a4
48 --- /dev/null
49 +++ b/app-vim/vim-jsonnet/vim-jsonnet-0_pre20190502.ebuild
50 @@ -0,0 +1,24 @@
51 +# Copyright 2019 Gentoo Authors
52 +# Distributed under the terms of the GNU General Public License v2
53 +
54 +EAPI=7
55 +
56 +inherit vim-plugin
57 +
58 +COMMIT_HASH="824dcfe76568dba38135332fc4729e2b2c4d9b3a"
59 +
60 +DESCRIPTION="vim plugin: Filetype plugin for dev-lang/jsonnet"
61 +HOMEPAGE="https://github.com/google/vim-jsonnet"
62 +SRC_URI="https://github.com/google/vim-jsonnet/archive/${COMMIT_HASH}.tar.gz -> ${P}.tar.gz"
63 +LICENSE="Apache-2.0"
64 +KEYWORDS="~amd64 ~x86"
65 +
66 +RDEPEND="dev-lang/jsonnet"
67 +
68 +S="${WORKDIR}/${PN}-${COMMIT_HASH}"
69 +
70 +src_prepare() {
71 + default
72 +
73 + rm -f LICENSE .gitignore || die
74 +}