Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/stripe-mock/
Date: Thu, 28 Mar 2019 23:12:53
Message-Id: 1553814749.1b43b8d1a8edc9efef65814410e0bbd2426ee1f8.monsieurp@gentoo
1 commit: 1b43b8d1a8edc9efef65814410e0bbd2426ee1f8
2 Author: Michael Seifert <m.seifert <AT> digitalernachschub <DOT> de>
3 AuthorDate: Fri Mar 8 09:57:24 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 28 23:12:29 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b43b8d1
7
8 dev-util/stripe-mock: version bump to v0.47.0.
9
10 Closes: https://bugs.gentoo.org/679754
11 Signed-off-by: Michael Seifert <m.seifert <AT> digitalernachschub.de>
12 Closes: https://github.com/gentoo/gentoo/pull/11299
13 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
14
15 dev-util/stripe-mock/Manifest | 1 +
16 dev-util/stripe-mock/stripe-mock-0.47.0.ebuild | 22 ++++++++++++++++++++++
17 2 files changed, 23 insertions(+)
18
19 diff --git a/dev-util/stripe-mock/Manifest b/dev-util/stripe-mock/Manifest
20 index 74581965fda..ae782b36612 100644
21 --- a/dev-util/stripe-mock/Manifest
22 +++ b/dev-util/stripe-mock/Manifest
23 @@ -1 +1,2 @@
24 DIST stripe-mock-0.34.1.tar.gz 340357 BLAKE2B 127d39b01bbd883141c75e63dc5e0b8834dbc86f375058768072b3de75d3f9e3fabebdfdd9d872c51ad52fec3e2057ae342887c25b496b987d64652c93b204bd SHA512 c9e35867c44bd7d127f91d0f668d39ff67ca9bb2937428f808122555360a77b91f9f5d5648478dc2c4fc04a7b9195fed0a927868fdd22b852022ae2fe0f1e695
25 +DIST stripe-mock-0.47.0.tar.gz 371383 BLAKE2B 0d619e62c9d071cd0706f0deeab5cb659d994f02df87fc638e319b346cda83548bec9a6068814b7c17a8f62e8f9c2206003bd62f66f844e8f38ee96b10f099fe SHA512 b387556526eea8b02fb3df74b345f5447bc81d7cc9e7f9fe9cd59dfdef7895bd31c882bc3c96c6815c69cc1e1fc3bed8390beb107ecfeb79e69aba4bc115a17e
26
27 diff --git a/dev-util/stripe-mock/stripe-mock-0.47.0.ebuild b/dev-util/stripe-mock/stripe-mock-0.47.0.ebuild
28 new file mode 100644
29 index 00000000000..466e59347a0
30 --- /dev/null
31 +++ b/dev-util/stripe-mock/stripe-mock-0.47.0.ebuild
32 @@ -0,0 +1,22 @@
33 +# Copyright 1999-2019 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +EGO_SRC="github.com/stripe/stripe-mock"
39 +EGO_PN=${EGO_SRC}/...
40 +inherit golang-build golang-vcs-snapshot
41 +
42 +DESCRIPTION="Mock HTTP server that responds like the real Stripe API"
43 +HOMEPAGE="https://github.com/stripe/stripe-mock"
44 +SRC_URI="https://github.com/stripe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +
50 +src_install() {
51 + golang-build_src_install
52 + dobin bin/stripe-mock
53 + rm -rf "${D%/}$(get_golibdir_gopath)" || die
54 +}