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, 30 Mar 2022 18:45:58
Message-Id: 1648665936.4f29ec192ba3cee33ad5bf9eeb6baa7d1129e773.mgorny@gentoo
1 commit: 4f29ec192ba3cee33ad5bf9eeb6baa7d1129e773
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 30 17:28:02 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 30 18:45:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f29ec19
7
8 dev-util/stripe-mock: Bump to 0.122.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.122.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 956cc9222f9c..1ef255cc24ee 100644
18 --- a/dev-util/stripe-mock/Manifest
19 +++ b/dev-util/stripe-mock/Manifest
20 @@ -1,3 +1,4 @@
21 DIST stripe-mock-0.118.0.tar.gz 651234 BLAKE2B b6651dda1ee23ce0143688458fc695f4f3fbaf8a8320228599033e0907bac611de2cc3dfd9845f3c27b5a1a07864ca6aa744d11029b078c25b73fd0a8cf99cb5 SHA512 3fa18acd747bee7e17f8ddbe02dda0dc38b9d2fe332d3606e44a3ad75b9acb5b34bd04aace875b4c1b67e172656d7032def6dd08b364939cf76e58a5cc736015
22 DIST stripe-mock-0.119.0.tar.gz 659745 BLAKE2B 6db7f4006130388794e0398cc8ea1f38bd24544a2a7a520b7959b4f183a922d904742a774e18fa3da1f595687016e927864cd38334feb4c955fa70693920e8c4 SHA512 e6c38aecd8ff2f8e0dee3605b2590c42c0e4f2e101cdb4a3eee2cece0577266cec16626045a63684b98b8c20984a794c9235378713f7310123578e2773e96cf7
23 DIST stripe-mock-0.121.0.tar.gz 672044 BLAKE2B 72256620a6e7507c041aba79b32bb06329bbd6250fe878da516f1abcb9dbd7ff5205fdc468882ac2331d006f3b92d6bd7683061ace8b0556c6c6898ee936f93f SHA512 680b7abcee0004b08798a79682256feb4d906b62fff6108f556e245207b92ce0fca2e1d9f38f69da06ea6677896692b2e56a24ddbcc189e7b86b89844e3d21b2
24 +DIST stripe-mock-0.122.0.tar.gz 508060 BLAKE2B 961f05948c4e5657b634fe9ebc3910b8b0b02251c0d8a44474253af7119a3de7b4a628d9f40f8113dbadcf723b6614ae790eb71a354e4d711ed341f117382d39 SHA512 a867e6b92b30fc6ae447d9ab58729b255a68889b6509e6856a63c1c112610566ce37e4566127984c623588295808db8f4adfb8ba66c7afd5d7d585b5abc03ed0
25
26 diff --git a/dev-util/stripe-mock/stripe-mock-0.122.0.ebuild b/dev-util/stripe-mock/stripe-mock-0.122.0.ebuild
27 new file mode 100644
28 index 000000000000..586567a061dc
29 --- /dev/null
30 +++ b/dev-util/stripe-mock/stripe-mock-0.122.0.ebuild
31 @@ -0,0 +1,27 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit go-module
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 +
43 +LICENSE="MIT ISC BSD-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +src_compile() {
48 + emake build
49 +}
50 +
51 +src_test() {
52 + emake test
53 +}
54 +
55 +src_install() {
56 + dobin stripe-mock
57 + einstalldocs
58 +}