diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-03-19 18:35:20 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-03-19 18:35:20 +0000 |
commit | 810f2cdadf662a6bfaaed425b6ecd216a301cd3d (patch) | |
tree | d1b578ce00d7b8ca78dac3989410f667d8e78c06 /net-misc | |
parent | 1d300fd75dc60cab2ca6e0bb0016b09a4fb7c67a (diff) |
gentoo auto-resync : 19:03:2023 - 18:35:20
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/Manifest.gz | bin | 53967 -> 53959 bytes | |||
-rw-r--r-- | net-misc/s4cmd/Manifest | 2 | ||||
-rw-r--r-- | net-misc/s4cmd/s4cmd-2.1.0-r1.ebuild | 33 |
3 files changed, 35 insertions, 0 deletions
diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz Binary files differindex 062f474937b4..ab3fded99319 100644 --- a/net-misc/Manifest.gz +++ b/net-misc/Manifest.gz diff --git a/net-misc/s4cmd/Manifest b/net-misc/s4cmd/Manifest index aae508aa3e62..7541f00dde52 100644 --- a/net-misc/s4cmd/Manifest +++ b/net-misc/s4cmd/Manifest @@ -1,3 +1,5 @@ +DIST s4cmd-2.1.0-botocore-fix.patch 2449 BLAKE2B 5158ded38f8e3417c090d274063a4eaa4f25cd5005c4bb8793cc639d3d87875f31d87464a8dbb44b5c1690570865cb01a0681f2e92edc46fa549828b91f30a0a SHA512 ea889d069a86a1d1f7f5cf5b1f19a9d0b35527c3db5eecf9202cca742ad4442655169d8688fc4b290a1362a0a794ba8ac44abf697ea7830acf8e48b6c7998ef6 DIST s4cmd-2.1.0.tar.gz 39312 BLAKE2B 9d2d533273543153f2bad69362933315f65c5e70bd45c102e42b1b733989815239ae4d027ac08d658f03263bd9dd75f1f6db802b5f38ed3256da5e7c9f48558c SHA512 05e930e2789ce8ab280dcdb2f08e4162930d946d2ed2e4f1c754c8b875375774779b73729151bd23d9bf3736bc48f7626fe53df66aff71dd11b32e90e9355470 +EBUILD s4cmd-2.1.0-r1.ebuild 801 BLAKE2B 86c4d197eb819439e1c50f0c2508bf13a28ea9fb7cac1e45ea84338a5d1db789bb224bd86ce7bd67b838d7b5ad019202ad519ac593a62f648eeac68814bde724 SHA512 07a4622d550d56ff8292069d35574e5e36b508b64cbb67e25ebf72a3db192df701fbd9dacc9453454d90bb8e8fd3e180c2db78314f2d54c48ff983c9192b092d EBUILD s4cmd-2.1.0.ebuild 660 BLAKE2B 140a7a0270a332711576c7aa280e5f6cadb68bf892e3b884b7987d31e2d42675b847aa616c736821d8b469659bd96412fd5f9f3b1c3564f8cc2b64b7d03e83be SHA512 60e2bbdd89cd6c8b10f6c6134bd56e7832f5788d980dd2f23ea7388f783422688108e17cfa74dee67d18e74cd2c2f0721b81a895fa946c07da7e9d9c097d02ee MISC metadata.xml 217 BLAKE2B fbec54484edc2603e95c90cb231985ef0f5f8d2cd48632ac8a097a4dac165499ff4cc087b1ca9ba6a4368bbb73b3af1ee99622a80df17072e1a340c345a2ee64 SHA512 7d3fc456b183fe7bdea26fb6edce39f702741a762b74cd7d2159a0ba85af50ebc87fbd921c926692a6164d50c9faf6b19680ab96528819bb06aaeac679e42de2 diff --git a/net-misc/s4cmd/s4cmd-2.1.0-r1.ebuild b/net-misc/s4cmd/s4cmd-2.1.0-r1.ebuild new file mode 100644 index 000000000000..6be09aed0ddd --- /dev/null +++ b/net-misc/s4cmd/s4cmd-2.1.0-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_10 ) +PYTHON_REQ_USE="xml(+)" + +inherit distutils-r1 bash-completion-r1 + +DESCRIPTION="Super S3 command line tool" +HOMEPAGE="https://github.com/bloomreach/s4cmd" +SRC_URI="https://github.com/bloomreach/s4cmd/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://github.com/bloomreach/s4cmd/pull/310.patch -> ${P}-botocore-fix.patch " +PATCHES=( + "${DISTDIR}/${P}-botocore-fix.patch" +) + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/boto3[${PYTHON_USEDEP}]" + +S="${WORKDIR}/${P/_/-}" + +src_install() { + distutils-r1_src_install + dobashcomp data/bash-completion/s4cmd + rm -f "${D}"/usr/bin/s4cmd.py +} |