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: Fri, 09 Jul 2021 07:26:27
Message-Id: 1625815567.4dce108f71d6ac36ee9888d74b940ef4a271844f.mgorny@gentoo
1 commit: 4dce108f71d6ac36ee9888d74b940ef4a271844f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 9 06:54:58 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 9 07:26:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dce108f
7
8 dev-util/stripe-mock: Bump to 0.109.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.109.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 6e1705b71e6..0c8ce3e95c8 100644
18 --- a/dev-util/stripe-mock/Manifest
19 +++ b/dev-util/stripe-mock/Manifest
20 @@ -3,3 +3,4 @@ DIST stripe-mock-0.104.0.tar.gz 574936 BLAKE2B 681dcc2b02f5d4ca946024d1c049e499c
21 DIST stripe-mock-0.105.0.tar.gz 583483 BLAKE2B 8015699be4cd7a0c6e81c8f89cebe23fadb02904a175fef15c5e1fe156b01b001a03ba4b42ddffd453203142b1108d5981782d23e1369bab61181e0ef3964734 SHA512 539c3315c3e4896584a656fa3157ac69331bdaf2c77b6a7433b8709971e3b248fe89f1df3eab3f3178580847109460b86f975f0a378aef48ca3c29466b076f52
22 DIST stripe-mock-0.106.0.tar.gz 592320 BLAKE2B 2154898ecb13516d11fe5188012829af5618a0520b19d6c3899c976ef719e5ddfe0a1bfe0c6787b9e51c695734d90e2297b8df6abc7d055a8d4df8e747d16b08 SHA512 30d5db6ace639435f0c97ce2ff38c02acdb464a09d5cf59a90ea3892b5f277e05ffb67d068b74739c2cdca3e73b2db74054079335bb28536c57457b46251bd6d
23 DIST stripe-mock-0.107.0.tar.gz 592857 BLAKE2B 6fb58e6c38a04e443adf68bd30dbe16531abede29c104c617bd16f7fd9ce19b38bcd43df2b3fc21e9f8f5cf58a9e6413158f09a0e4746721e29180bfa8e5a26c SHA512 c455f18c242d15e20022fa17a99d4fb33ba93932d6983eb589b4e084b1bd2739a1db837ae70c4043cc4333a5a13ff4f4b16785a9ab014e556901fa975380e90b
24 +DIST stripe-mock-0.109.0.tar.gz 604488 BLAKE2B de84bb5c549628a642c7612b86a5d3266d920e14ba76d7a03055569718cdf05a5ce1d022c645423c11f1ea82849879444c779156bbd59cd91ba89d00176af5eb SHA512 a14d0feb1bd3d191dd184218bb23bb8f7f8fa582a4b66f8dbb8d8c0c028e8757a914cf82ae7b8eaa43be246a3af4fd19744b69d8496816caacb91672fe9b8538
25
26 diff --git a/dev-util/stripe-mock/stripe-mock-0.109.0.ebuild b/dev-util/stripe-mock/stripe-mock-0.109.0.ebuild
27 new file mode 100644
28 index 00000000000..05a7220e34b
29 --- /dev/null
30 +++ b/dev-util/stripe-mock/stripe-mock-0.109.0.ebuild
31 @@ -0,0 +1,22 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +EGO_SRC="github.com/stripe/stripe-mock"
38 +EGO_PN=${EGO_SRC}/...
39 +inherit golang-build golang-vcs-snapshot
40 +
41 +DESCRIPTION="Mock HTTP server that responds like the real Stripe API"
42 +HOMEPAGE="https://github.com/stripe/stripe-mock"
43 +SRC_URI="https://github.com/stripe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +LICENSE="MIT ISC BSD-2"
47 +SLOT="0"
48 +
49 +src_install() {
50 + golang-build_src_install
51 + dobin bin/stripe-mock
52 + rm -rf "${D}$(get_golibdir_gopath)" || die
53 +}