1 |
commit: 5170ffe3251d815bf3d8fd730fa72f59f33978c8 |
2 |
Author: Michał Górny <mgorny <AT> gentoo <DOT> org> |
3 |
AuthorDate: Tue Mar 29 07:41:35 2022 +0000 |
4 |
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> |
5 |
CommitDate: Tue Mar 29 08:33:45 2022 +0000 |
6 |
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5170ffe3 |
7 |
|
8 |
dev-util/stripe-mock: Bump to 0.121.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.121.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 32daee41833c..956cc9222f9c 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.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 |
|
25 |
diff --git a/dev-util/stripe-mock/stripe-mock-0.121.0.ebuild b/dev-util/stripe-mock/stripe-mock-0.121.0.ebuild |
26 |
new file mode 100644 |
27 |
index 000000000000..586567a061dc |
28 |
--- /dev/null |
29 |
+++ b/dev-util/stripe-mock/stripe-mock-0.121.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 |
+} |