diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-04-17 09:45:53 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-04-17 10:38:55 +0200 |
commit | 22ec81886e5b41cb10d1a091df06da6efddb810c (patch) | |
tree | 9b2f5ca9ca7e139e249e848a94e44fc71f0b5148 /dev-util | |
parent | dev-python/google-auth: Bump to 2.6.5 (diff) | |
download | gentoo-22ec81886e5b41cb10d1a091df06da6efddb810c.tar.gz gentoo-22ec81886e5b41cb10d1a091df06da6efddb810c.tar.bz2 gentoo-22ec81886e5b41cb10d1a091df06da6efddb810c.zip |
dev-util/stripe-mock: Bump to 0.123.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/stripe-mock/Manifest | 1 | ||||
-rw-r--r-- | dev-util/stripe-mock/stripe-mock-0.123.0.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-util/stripe-mock/Manifest b/dev-util/stripe-mock/Manifest index 1ef255cc24ee..6054dbaba073 100644 --- a/dev-util/stripe-mock/Manifest +++ b/dev-util/stripe-mock/Manifest @@ -2,3 +2,4 @@ DIST stripe-mock-0.118.0.tar.gz 651234 BLAKE2B b6651dda1ee23ce0143688458fc695f4f DIST stripe-mock-0.119.0.tar.gz 659745 BLAKE2B 6db7f4006130388794e0398cc8ea1f38bd24544a2a7a520b7959b4f183a922d904742a774e18fa3da1f595687016e927864cd38334feb4c955fa70693920e8c4 SHA512 e6c38aecd8ff2f8e0dee3605b2590c42c0e4f2e101cdb4a3eee2cece0577266cec16626045a63684b98b8c20984a794c9235378713f7310123578e2773e96cf7 DIST stripe-mock-0.121.0.tar.gz 672044 BLAKE2B 72256620a6e7507c041aba79b32bb06329bbd6250fe878da516f1abcb9dbd7ff5205fdc468882ac2331d006f3b92d6bd7683061ace8b0556c6c6898ee936f93f SHA512 680b7abcee0004b08798a79682256feb4d906b62fff6108f556e245207b92ce0fca2e1d9f38f69da06ea6677896692b2e56a24ddbcc189e7b86b89844e3d21b2 DIST stripe-mock-0.122.0.tar.gz 508060 BLAKE2B 961f05948c4e5657b634fe9ebc3910b8b0b02251c0d8a44474253af7119a3de7b4a628d9f40f8113dbadcf723b6614ae790eb71a354e4d711ed341f117382d39 SHA512 a867e6b92b30fc6ae447d9ab58729b255a68889b6509e6856a63c1c112610566ce37e4566127984c623588295808db8f4adfb8ba66c7afd5d7d585b5abc03ed0 +DIST stripe-mock-0.123.0.tar.gz 518660 BLAKE2B 01d988e9d08a055046637c037e9401bf09b7c351536920aeab79e2b8abc0f7ac4c1b1df57b98e8038619c6cd0c247ecff1009215c8760686f14c85264ec4d746 SHA512 164b6cea95b2bc9a6858d9069e0353338027d9d6dbc5433f7fa24e8e20993b6740e6f21c844264dd0798dceb7b948e8583e84469880e7f594744f910f5e9b459 diff --git a/dev-util/stripe-mock/stripe-mock-0.123.0.ebuild b/dev-util/stripe-mock/stripe-mock-0.123.0.ebuild new file mode 100644 index 000000000000..586567a061dc --- /dev/null +++ b/dev-util/stripe-mock/stripe-mock-0.123.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2022 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 +} |