summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-02-03 07:47:54 +0100
committerMichał Górny <mgorny@gentoo.org>2023-02-03 08:19:15 +0100
commitcdf166a0088e9dfb649c7d130aad4b6b3c9a5391 (patch)
tree9e7e53f92e6795307c7339e22ba6aa1df8166f17 /dev-util/stripe-mock
parentdev-python/tld: Bump to 0.12.7 (diff)
downloadgentoo-cdf166a0088e9dfb649c7d130aad4b6b3c9a5391.tar.gz
gentoo-cdf166a0088e9dfb649c7d130aad4b6b3c9a5391.tar.bz2
gentoo-cdf166a0088e9dfb649c7d130aad4b6b3c9a5391.zip
dev-util/stripe-mock: Bump to 0.151.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-util/stripe-mock')
-rw-r--r--dev-util/stripe-mock/Manifest1
-rw-r--r--dev-util/stripe-mock/stripe-mock-0.151.0.ebuild27
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-util/stripe-mock/Manifest b/dev-util/stripe-mock/Manifest
index 4388cd578438..3e1821e15fb8 100644
--- a/dev-util/stripe-mock/Manifest
+++ b/dev-util/stripe-mock/Manifest
@@ -1,2 +1,3 @@
DIST stripe-mock-0.149.0.tar.gz 564059 BLAKE2B 8012431b1c4671ccdbe71950013008bed54b87baf962c370869b184441fbd72c338d078331078db4b0eeaadfb7b82438a22c5b1afb433ba66f5302496d4991b4 SHA512 e3364b09d11be2ef1545fca446d6648ff0ee4e85b4ebdcdea7a864fc85a6fa397a4eacc3ba47c971a32b62d6092eb32f66fca530f5fabab31932fee5a677edb6
DIST stripe-mock-0.150.0.tar.gz 564931 BLAKE2B dc67d9c0547d68d70bb096ca7fc498521fa2778ada7175a94c52e0e767cf0f516e0e5ac0b6c45deca1023012d14026c1589e8e5426407e048da535d53ac1063e SHA512 adce6a9e094bd0271328130462fae8b4bf3a19b864395d1ade667ff9df72d2cfa90d0243043905f34023bf0919115709f8e51eb4d502a6f7f547a1afc1ed0a41
+DIST stripe-mock-0.151.0.tar.gz 571906 BLAKE2B 3cd9bdf28b608506b649f2f93270ad7ea130afec9dd0e707537b588ce5ad7b7f16b51cfc10b7c3005552e2a8fe895ca2753d1136b04be1730602514110f96853 SHA512 a492be91e1e77b13862dc02d2520b958e3c12ed06318d02d642eca9dec6044b2685ac50982a421d798d615ed59da947eac0ffc2f3cc900a435ac1eb0a941a9c5
diff --git a/dev-util/stripe-mock/stripe-mock-0.151.0.ebuild b/dev-util/stripe-mock/stripe-mock-0.151.0.ebuild
new file mode 100644
index 000000000000..ca0f4e60efa7
--- /dev/null
+++ b/dev-util/stripe-mock/stripe-mock-0.151.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Mock HTTP server that responds like the real Stripe API"
+HOMEPAGE="https://github.com/stripe/stripe-mock/"
+SRC_URI="https://github.com/stripe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT ISC BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+src_compile() {
+ emake build
+}
+
+src_test() {
+ emake test
+}
+
+src_install() {
+ dobin stripe-mock
+ einstalldocs
+}