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/vimclojure/
Date: Thu, 08 Oct 2015 07:58:43
Message-Id: 1444290982.af5bff75b3af9ac8534514899df94e5d8f0f56ce.monsieurp@gentoo
1 commit: af5bff75b3af9ac8534514899df94e5d8f0f56ce
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 8 07:54:46 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 8 07:56:22 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af5bff75
7
8 app-vim/vimclojure: Initial commit. Fixes bug 292301.
9
10 Package-Manager: portage-2.2.20.1
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 app-vim/vimclojure/Manifest | 1 +
14 app-vim/vimclojure/metadata.xml | 8 ++++++++
15 app-vim/vimclojure/vimclojure-2.3.6.ebuild | 30 ++++++++++++++++++++++++++++++
16 3 files changed, 39 insertions(+)
17
18 diff --git a/app-vim/vimclojure/Manifest b/app-vim/vimclojure/Manifest
19 new file mode 100644
20 index 0000000..19d9b16
21 --- /dev/null
22 +++ b/app-vim/vimclojure/Manifest
23 @@ -0,0 +1 @@
24 +DIST 2.3.6.zip 44737 SHA256 7c1a9197e8ed2540c921a4e448c88d784740de891cfe58c57e19e9c5c499cd5b SHA512 daf4f691500c3b901a57849c6f07b500c49f7086e0733921f589e362a53a0d07b99eab7d6ea42f1828822942b294f51a684eec93ebab1797438da4b81199ca9d WHIRLPOOL b908cf86313cdd3521f15c2090cbb9f4f2a8a7c656ff1a152fa3707f62e1c6a49fbf6dcf2d596107e6cb2ab579f9aa3e5aec60d04fc91a8f08396bb813b43481
25
26 diff --git a/app-vim/vimclojure/metadata.xml b/app-vim/vimclojure/metadata.xml
27 new file mode 100644
28 index 0000000..b97972b
29 --- /dev/null
30 +++ b/app-vim/vimclojure/metadata.xml
31 @@ -0,0 +1,8 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <herd>java</herd>
36 + <maintainer>
37 + <email>monsieurp@g.o</email>
38 + </maintainer>
39 +</pkgmetadata>
40
41 diff --git a/app-vim/vimclojure/vimclojure-2.3.6.ebuild b/app-vim/vimclojure/vimclojure-2.3.6.ebuild
42 new file mode 100644
43 index 0000000..52d177f
44 --- /dev/null
45 +++ b/app-vim/vimclojure/vimclojure-2.3.6.ebuild
46 @@ -0,0 +1,30 @@
47 +# Copyright 1999-2015 Gentoo Foundation
48 +# Distributed under the terms of the GNU General Public License v2
49 +# $Id$
50 +
51 +EAPI=5
52 +
53 +inherit vim-plugin
54 +
55 +MY_PN="VimClojure"
56 +
57 +DESCRIPTION="vim plugin: Clojure syntax highlighting, filetype and indent settings"
58 +HOMEPAGE="https://github.com/vim-scripts/VimClojure"
59 +SRC_URI="https://github.com/vim-scripts/${MY_PN}/archive/${PV}.zip"
60 +
61 +SLOT="0"
62 +LICENSE="BSD"
63 +KEYWORDS="~amd64 ~x86"
64 +IUSE=""
65 +S="${WORKDIR}/${MY_PN}-${PV}"
66 +
67 +src_prepare() {
68 + find "${S}" -type f -name \*.bat -exec rm -v {} \; || die
69 +}
70 +
71 +src_install() {
72 + local my_license="doc/LICENSE.txt"
73 + dodoc ${my_license}
74 + rm -v ${my_license} || die
75 + vim-plugin_src_install
76 +}