Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/s3cmd/
Date: Wed, 13 Oct 2021 16:51:20
Message-Id: 1634143871.ac809cc030b76ef0572db8bf0dcc082ebb777e08.robbat2@gentoo
1 commit: ac809cc030b76ef0572db8bf0dcc082ebb777e08
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 13 16:49:28 2021 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 13 16:51:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac809cc0
7
8 net-misc/s3cmd: bump, contains more Python 3.9 fixes
9
10 Closes: https://bugs.gentoo.org/680444
11 Closes: https://bugs.gentoo.org/809329
12 Acked-by: Richard Freeman <rich0 <AT> gentoo.org>
13 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
14
15 net-misc/s3cmd/Manifest | 1 +
16 net-misc/s3cmd/s3cmd-2.2.0.ebuild | 34 ++++++++++++++++++++++++++++++++++
17 2 files changed, 35 insertions(+)
18
19 diff --git a/net-misc/s3cmd/Manifest b/net-misc/s3cmd/Manifest
20 index 0342ca043bf..0692454bfea 100644
21 --- a/net-misc/s3cmd/Manifest
22 +++ b/net-misc/s3cmd/Manifest
23 @@ -1 +1,2 @@
24 DIST s3cmd-2.1.0.tar.gz 127120 BLAKE2B 4282f616eb7ca97fa0d529a2c5acc1359f88888d182b62e1fa7d3f7401a93852a4e0724363a4c6f0a6520d6aef290d64e1775cb252fc0fbaa4b94762402c381e SHA512 98156218c4379e233185662d29fa4299b4a4e45a0fe143a145f30ff7d03362a4558b5fff5e5da0da850f5cce2c760fcd031bcf5ff7a6bd2c6352259e791d65e6
25 +DIST s3cmd-2.2.0.tar.gz 134390 BLAKE2B d578aa13a7b8599c70dc6daa5d21950331b0b07278479d1f3947e6be78a9bd108c7f8ea6f198fa518dfa6ad44d907d979a29d5d9f1a15e4f73484fcebb118225 SHA512 07b2410554233b435b3476e09fd14354abaa19374cc1211f861147023470599483c18d213a44b5c9aee32d71b5a4bc5d9ce25721fb077cbadfd208d457e13845
26
27 diff --git a/net-misc/s3cmd/s3cmd-2.2.0.ebuild b/net-misc/s3cmd/s3cmd-2.2.0.ebuild
28 new file mode 100644
29 index 00000000000..a43725c2545
30 --- /dev/null
31 +++ b/net-misc/s3cmd/s3cmd-2.2.0.ebuild
32 @@ -0,0 +1,34 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python3_7 python3_8 python3_9 )
39 +PYTHON_REQ_USE="xml"
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Command line client for Amazon S3"
44 +HOMEPAGE="https://s3tools.org/s3cmd"
45 +SRC_URI="mirror://sourceforge/s3tools/${P/_/-}.tar.gz"
46 +
47 +LICENSE="GPL-2"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~ia64 ~x86 ~amd64-linux ~x64-macos"
50 +
51 +RDEPEND="
52 + || (
53 + dev-python/python-magic[${PYTHON_USEDEP}]
54 + sys-apps/file[python,${PYTHON_USEDEP}]
55 + )
56 + dev-python/python-dateutil[${PYTHON_USEDEP}]
57 + "
58 +
59 +S="${WORKDIR}/${P/_/-}"
60 +
61 +PATCHES=( )
62 +
63 +src_install() {
64 + default
65 + rm -rf "${ED}/usr/share/doc/packages/s3cmd/"
66 +}