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/webapi/
Date: Mon, 04 Jun 2018 21:58:56
Message-Id: 1528149524.19221e7c91412bb81acd751b70dce215ad35e245.monsieurp@gentoo
1 commit: 19221e7c91412bb81acd751b70dce215ad35e245
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 4 21:58:30 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 4 21:58:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19221e7c
7
8 app-vim/webapi: version bump.
9
10 Closes: https://bugs.gentoo.org/657318
11 Package-Manager: Portage-2.3.24, Repoman-2.3.6
12
13 app-vim/webapi/Manifest | 1 +
14 app-vim/webapi/webapi-0.3.ebuild | 21 +++++++++++++++++++++
15 2 files changed, 22 insertions(+)
16
17 diff --git a/app-vim/webapi/Manifest b/app-vim/webapi/Manifest
18 index 44209c6ad58..7b3249b6689 100644
19 --- a/app-vim/webapi/Manifest
20 +++ b/app-vim/webapi/Manifest
21 @@ -1 +1,2 @@
22 DIST webapi-0.2.tar.bz2 20690 BLAKE2B 5438a88c94f77cbe5ce2a79b11c4da31199cc071b35a22fc78b01c9f4c1195d830353639ca05d3c95182fe3ae5c177cddec9d6acd0b2de198a3f77de5e1ad92f SHA512 ca513053c361041bfaeeea11a0bb70c8e6e011985dc5ba801c654f919dd7d94304b6ff475ce49525909b575e7cc0d9233b56cab2326adc6a689e05c5faf4a3da
23 +DIST webapi-0.3.tar.gz 26388 BLAKE2B 878e9f760f9940b81647359fb8779d6386b4bd2d2190c77f2ef886a12a6d293f6f0e5829e05fe98e0c842cb927186f9e4a02dcddcdfe99d5e13d52ae43e7f775 SHA512 215516872a32f8d967a9bff6d13916d6571399184728c422babf486152fc4c3f57aa4a7fa7591d7205d4b2dd99138c36796d1f2d186d494d74cf5dd2fa7cdec8
24
25 diff --git a/app-vim/webapi/webapi-0.3.ebuild b/app-vim/webapi/webapi-0.3.ebuild
26 new file mode 100644
27 index 00000000000..7a9673e4e75
28 --- /dev/null
29 +++ b/app-vim/webapi/webapi-0.3.ebuild
30 @@ -0,0 +1,21 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit vim-plugin
37 +
38 +DESCRIPTION="vim plugin: interface to Web APIs"
39 +HOMEPAGE="https://github.com/mattn/webapi-vim"
40 +SRC_URI="https://github.com/mattn/${PN}-vim/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +LICENSE="BSD"
42 +KEYWORDS="~amd64 ~x86 ~x64-macos"
43 +
44 +RDEPEND="net-misc/curl"
45 +
46 +S="${WORKDIR}/${PN}-vim-${PV}"
47 +
48 +src_prepare() {
49 + default
50 + rm -v Makefile || die
51 +}