dev-util/stripe-mock: Bump to 0.194.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-04-24 03:24:23 +02:00
parent ed80be088d
commit 5e52f1e184
2 changed files with 28 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST stripe-mock-0.193.0.tar.gz 1833893 BLAKE2B ad0e9428c449f44ee352f82d27e15a9e1449a9ebdc085817ab0d66041341fb3cee97f1b5ce024e0509a4f22bd4c450ce0f54bc1f4fbab916e6db4cec1c1b0dd6 SHA512 e2d11f710c3733fd8b59d9919d88a4e3af35970cc369a368bd8aad84e0a6ee8d8df15949a1ba5abcbb0c12553df5ab27af7dd34d590b6a89fd4d7c2973d26601
DIST stripe-mock-0.194.0.tar.gz 1796494 BLAKE2B d310431c72ad4083a7c128a12df8c6e8398872839060671cc34dede2e31e9cf0ea181a16e16356ebe1e6fcf84bb12ed06d155a7935d3d29ee8633b7e702e2025 SHA512 83f0df7731b7c96597d93b4b6780ba8ea400865b303620189893fd0e3da9c445076f426ecc8cdacf46ebd2751184ef56056d28216bee6b77af3dfb67352cc061

View File

@@ -0,0 +1,27 @@
# Copyright 1999-2025 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 ~arm64 ~x86"
src_compile() {
emake build
}
src_test() {
emake test
}
src_install() {
dobin stripe-mock
einstalldocs
}