diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-02-23 01:41:25 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-02-23 01:46:33 +0100 |
commit | 8fc67b2ca46188da42ebf6fbd64c3d64ebdb7ef1 (patch) | |
tree | 0e6c0449619970b73c6273bb7dac4869f09d34d1 /dev-util/stripe-mock | |
parent | dev-python/watchdog: Bump to 2.0.2 (diff) | |
download | gentoo-8fc67b2ca46188da42ebf6fbd64c3d64ebdb7ef1.tar.gz gentoo-8fc67b2ca46188da42ebf6fbd64c3d64ebdb7ef1.tar.bz2 gentoo-8fc67b2ca46188da42ebf6fbd64c3d64ebdb7ef1.zip |
dev-util/stripe-mock: Bump to 0.103.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-util/stripe-mock')
-rw-r--r-- | dev-util/stripe-mock/Manifest | 1 | ||||
-rw-r--r-- | dev-util/stripe-mock/stripe-mock-0.103.0.ebuild | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/dev-util/stripe-mock/Manifest b/dev-util/stripe-mock/Manifest index cfcdb066f9a9..1bfae59e4291 100644 --- a/dev-util/stripe-mock/Manifest +++ b/dev-util/stripe-mock/Manifest @@ -1,3 +1,4 @@ DIST stripe-mock-0.102.0.tar.gz 555895 BLAKE2B 60062d92b58b0e65727675a2744ca15daa5029f5a1d0f5a25f41de32ad6268adea75e9562d2ed7f9b45995bf48773296cfbcd83f3b0091b5bdb7b3860c856bd6 SHA512 8c3e3b9cf1dd5eeac790458b7ce7fdbf79b956e478ea022d12ccd3840f099912c2e43db0ea44e6dd9e2bdc10fe6212f55e192ee0337fa94e48a4b40334215fe8 +DIST stripe-mock-0.103.0.tar.gz 567107 BLAKE2B 76dbc6bbb1d62ea68c30291fea894e563a426790c8928e7bc5a444eca8d48c8bcc23067459c1a249449af305a6809c70168918543087a1ef5e38cf7609421a7c SHA512 65ec61ccf94d1931389c4a16288dfac4d820a6fdf641cad1028347dfcb298aa4370d97d2dd4e468e17b8a702ce6b7611213b0707f1d5e37cd20aec46772e6a9c DIST stripe-mock-0.79.0.tar.gz 462829 BLAKE2B 7cb1365f3fabe4ad286b7f80bc4e1ef25764c86b090aacd543239ab35626271638fe5bde7131431cf233115451ba1c9e9df53a69ff9948c5e04965a67ed5038a SHA512 46f6900eb2d8ee37b1f8dc9a0603ee6182cc70889f92c2d9a8a976670211b2f37feb33d53d51364a05a91c130c4358cff3e0b15dfe61a7619132ef568266c27e DIST stripe-mock-0.88.0.tar.gz 504374 BLAKE2B 2414de64ebfd1ed4842fc85e77e940da4b08cc647abebc25259d402db23bf010ab69c9660ad80ad3428f27df4036e706051fa44dcee0d2c0f6e1f089994d31d5 SHA512 eb33249ff0c135d1e74bdfaf5d7ad04b1d7ff05d1472e30d55eb819f06795ec7a05ffe73e90b0dfdd3ebcb54f0fdfa6c0ecd1158ca22abc044e1c2e212984517 diff --git a/dev-util/stripe-mock/stripe-mock-0.103.0.ebuild b/dev-util/stripe-mock/stripe-mock-0.103.0.ebuild new file mode 100644 index 000000000000..05a7220e34b0 --- /dev/null +++ b/dev-util/stripe-mock/stripe-mock-0.103.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +EGO_SRC="github.com/stripe/stripe-mock" +EGO_PN=${EGO_SRC}/... +inherit golang-build golang-vcs-snapshot + +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" +KEYWORDS="~amd64 ~x86" + +LICENSE="MIT ISC BSD-2" +SLOT="0" + +src_install() { + golang-build_src_install + dobin bin/stripe-mock + rm -rf "${D}$(get_golibdir_gopath)" || die +} |