Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/stripe-mock/
Date: Wed, 19 Jan 2022 22:59:45
Message-Id: 1642633171.cb4ab9c087c85084eb20c720d7540d2e43ecb8b3.mgorny@gentoo
1 commit: cb4ab9c087c85084eb20c720d7540d2e43ecb8b3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 19 22:10:44 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 19 22:59:31 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb4ab9c0
7
8 dev-util/stripe-mock: Bump to 0.117.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-util/stripe-mock/Manifest | 1 +
13 dev-util/stripe-mock/stripe-mock-0.117.0.ebuild | 22 ++++++++++++++++++++++
14 2 files changed, 23 insertions(+)
15
16 diff --git a/dev-util/stripe-mock/Manifest b/dev-util/stripe-mock/Manifest
17 index 83cc7758aa88..c9ffa510b414 100644
18 --- a/dev-util/stripe-mock/Manifest
19 +++ b/dev-util/stripe-mock/Manifest
20 @@ -1 +1,2 @@
21 DIST stripe-mock-0.116.0.tar.gz 631741 BLAKE2B 8b8d3e0db1b0cb9e6f54773ac0a2f340c7a609e147c398b55b3616638163a88e8924d3739150b040eb4068aed142bad7f3de3db3679a8bd111b028286ae0ac68 SHA512 bf6dd3abf0fdf4472047060ed28d6709b9215a7c708e40ee573a7ada4be7af1d68d26000c7f1517b15d04923479f5e5113cc952457e810ca29220284b76dd783
22 +DIST stripe-mock-0.117.0.tar.gz 649146 BLAKE2B c7e51c932f43b012df28cd83a4232e0cf5a4892e60bdf6d6fc5a8e34d1ba480a69b7f86a7bb61eff0509bd22b1ac67e9292daea874aa1a291cac78d1c9b86001 SHA512 2a3b7979180be47bd0ade3f920fc17b5a341e38999cf6492e36a572be4308bc10225b0ba9de0f61d5826b2ae189a2c98f99f89e51235faccadaa00db80dd8d91
23
24 diff --git a/dev-util/stripe-mock/stripe-mock-0.117.0.ebuild b/dev-util/stripe-mock/stripe-mock-0.117.0.ebuild
25 new file mode 100644
26 index 000000000000..0f98e7040d17
27 --- /dev/null
28 +++ b/dev-util/stripe-mock/stripe-mock-0.117.0.ebuild
29 @@ -0,0 +1,22 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +EGO_SRC="github.com/stripe/stripe-mock"
36 +EGO_PN=${EGO_SRC}/...
37 +inherit golang-build golang-vcs-snapshot
38 +
39 +DESCRIPTION="Mock HTTP server that responds like the real Stripe API"
40 +HOMEPAGE="https://github.com/stripe/stripe-mock"
41 +SRC_URI="https://github.com/stripe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +KEYWORDS="~amd64 ~x86"
43 +
44 +LICENSE="MIT ISC BSD-2"
45 +SLOT="0"
46 +
47 +src_install() {
48 + golang-build_src_install
49 + dobin bin/stripe-mock
50 + rm -rf "${D}$(get_golibdir_gopath)" || die
51 +}