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, 14 May 2021 08:14:35
Message-Id: 1620980056.2a1829d61eb0cb53bbb578391d40d91d105fb3c9.mgorny@gentoo
1 commit: 2a1829d61eb0cb53bbb578391d40d91d105fb3c9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 14 07:44:10 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 14 08:14:16 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a1829d6
7
8 dev-util/stripe-mock: Bump to 0.104.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.104.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 aa2eabd2b57..68408cd4b45 100644
18 --- a/dev-util/stripe-mock/Manifest
19 +++ b/dev-util/stripe-mock/Manifest
20 @@ -1 +1,2 @@
21 DIST stripe-mock-0.103.0.tar.gz 567107 BLAKE2B 76dbc6bbb1d62ea68c30291fea894e563a426790c8928e7bc5a444eca8d48c8bcc23067459c1a249449af305a6809c70168918543087a1ef5e38cf7609421a7c SHA512 65ec61ccf94d1931389c4a16288dfac4d820a6fdf641cad1028347dfcb298aa4370d97d2dd4e468e17b8a702ce6b7611213b0707f1d5e37cd20aec46772e6a9c
22 +DIST stripe-mock-0.104.0.tar.gz 574936 BLAKE2B 681dcc2b02f5d4ca946024d1c049e499ce1c05c5a00653ca5a1af25325ce66b651e307df12ac0137fb38478332a8a04fb09ced39afa697a81a4afcc69a1cf314 SHA512 6d9c5fe5e5e83e8721ae441ae15e16594c690360a62934e825627add8acf6d58b0c4f52bd2c6d787c934fe0e974790b35b7c63d02f097647744549626b1708c5
23
24 diff --git a/dev-util/stripe-mock/stripe-mock-0.104.0.ebuild b/dev-util/stripe-mock/stripe-mock-0.104.0.ebuild
25 new file mode 100644
26 index 00000000000..05a7220e34b
27 --- /dev/null
28 +++ b/dev-util/stripe-mock/stripe-mock-0.104.0.ebuild
29 @@ -0,0 +1,22 @@
30 +# Copyright 1999-2021 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 +}