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, 01 Jul 2022 06:54:02
Message-Id: 1656658430.96f730231a47b64aec3b2579428090c4a640b1d0.mgorny@gentoo
1 commit: 96f730231a47b64aec3b2579428090c4a640b1d0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 1 04:13:01 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 1 06:53:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96f73023
7
8 dev-util/stripe-mock: Bump to 0.136.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.136.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 de1ed7542e04..ebdf3a7239ac 100644
18 --- a/dev-util/stripe-mock/Manifest
19 +++ b/dev-util/stripe-mock/Manifest
20 @@ -1,2 +1,3 @@
21 DIST stripe-mock-0.130.0.tar.gz 572453 BLAKE2B b97a1b54f4da158140e91abf68c8b476f18d7e96ea96587cd6a54be451776e5066a0dfc2da6c4b7234e08315b646d395f21099b8e30f20b9bce1b3c90f03c199 SHA512 7796ce75a77cf84c475cb8b957b76280ef7ba616dbfdabe2b6fbc4af135c0068777e0acc5f7a0c058a930988f66ae9d08c69a71cf119fadd9a79f210dddf7be5
22 DIST stripe-mock-0.135.0.tar.gz 581001 BLAKE2B 7e7b129b5080cca742b1ce08b1a3443f74af23bad3cf09915a7b697f08c4ecb3d0801bd0a1498746cbd5a1f1e4bd4b4fc182f7f4cf0fb39b6db7067c4f8b5a88 SHA512 276dd5f063a1f318349d87314e76f6d6a00f4e694bd7be0f3de8f85195c196d43cf9f17128b156e75b90502ce897835953d5c425684ce7176a3977d4ea0a477e
23 +DIST stripe-mock-0.136.0.tar.gz 581986 BLAKE2B 6ee65d8beeec0bff9a97fd0963d0509c0174be49f7bffacbc2e5ba36c3d1711ccebb4c2acb377b9dba32688e8b8f9a4b4f80e5d88b23d6bc1d1f8cc48d0ddd93 SHA512 f5bc97739158e32382ebfc9c06b7db3a1b42e66821210a18dbbb7d36d31d5ee16313a518aaeb9aecfcfb383eb76eb5c05f11e600217f93b5ae10b9de2adc0327
24
25 diff --git a/dev-util/stripe-mock/stripe-mock-0.136.0.ebuild b/dev-util/stripe-mock/stripe-mock-0.136.0.ebuild
26 new file mode 100644
27 index 000000000000..89958510a463
28 --- /dev/null
29 +++ b/dev-util/stripe-mock/stripe-mock-0.136.0.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit go-module
37 +
38 +DESCRIPTION="Mock HTTP server that responds like the real Stripe API"
39 +HOMEPAGE="https://github.com/stripe/stripe-mock/"
40 +SRC_URI="https://github.com/stripe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="MIT ISC BSD-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +src_compile() {
47 + emake build
48 +}
49 +
50 +src_test() {
51 + emake test
52 +}
53 +
54 +src_install() {
55 + dobin stripe-mock
56 + einstalldocs
57 +}