dev-util/stripe-mock: Bump to 0.202.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-07-23 16:13:42 +02:00
parent 978f8a9f7f
commit e0425ac1b8
2 changed files with 28 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST stripe-mock-0.201.0.tar.gz 2131646 BLAKE2B 74792c9f4fa4a7c389466e69a0b39fee40e6f2d909be90278c8efb5c3d52a70560b981e5259a1372792b29cda7abc8715ab46a74c21f0ad2e55b0c039e2264c1 SHA512 25081afea5bda9fa1fe4053173f4abef43caae2e441bc81aebe6e9a1f6e6f038b014fde610a8c7760a53feb7bae758f245249c24b74c6dd101d39f1234a73d23
DIST stripe-mock-0.202.0.tar.gz 2131661 BLAKE2B 9ed3feafd01d263aec256c65894509d80f3427025bdf111450db8b940e5298d2d4b39f4f5bb48fac707567b152f183e472e307e183073a9b5475cd721261b085 SHA512 32314f7bc07915f78f7008e79f891d65b05f8ff3e25a6eca1d087f4a744549c59bf0a1dcd690e36e0c45173a686f5e8f7b30de2f285e4ab6ff0c74e77d53735c

View File

@@ -0,0 +1,27 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=9
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 ~arm64 ~x86"
src_compile() {
emake build
}
src_test() {
emake test
}
src_install() {
dobin stripe-mock
einstalldocs
}