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: Sun, 07 Aug 2022 08:54:34
Message-Id: 1659862175.89242c72d73fb6f81d07194ec743cb37fa450606.mgorny@gentoo
1 commit: 89242c72d73fb6f81d07194ec743cb37fa450606
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 7 08:36:54 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 7 08:49:35 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89242c72
7
8 dev-util/stripe-mock: Bump to 0.141.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.141.0.ebuild | 27 +++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-util/stripe-mock/Manifest b/dev-util/stripe-mock/Manifest
17 index f8c906581693..1a93b39b46de 100644
18 --- a/dev-util/stripe-mock/Manifest
19 +++ b/dev-util/stripe-mock/Manifest
20 @@ -1 +1,2 @@
21 DIST stripe-mock-0.136.0.tar.gz 581986 BLAKE2B 6ee65d8beeec0bff9a97fd0963d0509c0174be49f7bffacbc2e5ba36c3d1711ccebb4c2acb377b9dba32688e8b8f9a4b4f80e5d88b23d6bc1d1f8cc48d0ddd93 SHA512 f5bc97739158e32382ebfc9c06b7db3a1b42e66821210a18dbbb7d36d31d5ee16313a518aaeb9aecfcfb383eb76eb5c05f11e600217f93b5ae10b9de2adc0327
22 +DIST stripe-mock-0.141.0.tar.gz 583884 BLAKE2B bd6e8c19280047fe0aba420aa701e1d7df340d10c1a16f03ae46c690f1c77ea59413f0911c44d71542ef6cc6d8ae7474905b4a997714f1dc30e42b20f8dbe64f SHA512 11083ccb14cba1fdcd629d22ad663c88bd7b0d37274e86f178f7cf0fe789ca3bd52a1f4ab9f2414ecee7590124d69e6a2813221dbfd0d74cc86e454157dbefc5
23
24 diff --git a/dev-util/stripe-mock/stripe-mock-0.141.0.ebuild b/dev-util/stripe-mock/stripe-mock-0.141.0.ebuild
25 new file mode 100644
26 index 000000000000..89958510a463
27 --- /dev/null
28 +++ b/dev-util/stripe-mock/stripe-mock-0.141.0.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit go-module
36 +
37 +DESCRIPTION="Mock HTTP server that responds like the real Stripe API"
38 +HOMEPAGE="https://github.com/stripe/stripe-mock/"
39 +SRC_URI="https://github.com/stripe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="MIT ISC BSD-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +
45 +src_compile() {
46 + emake build
47 +}
48 +
49 +src_test() {
50 + emake test
51 +}
52 +
53 +src_install() {
54 + dobin stripe-mock
55 + einstalldocs
56 +}