diff options
author | Richard Freeman <rich0@gentoo.org> | 2021-05-10 13:32:54 -0400 |
---|---|---|
committer | Richard Freeman <rich0@gentoo.org> | 2021-05-10 13:32:54 -0400 |
commit | c74de5f9e7912ccf9667f9c363059e128b5d3e62 (patch) | |
tree | 5a99734d267a07db3377e756c24899190da660c0 /net-misc/s3cmd/s3cmd-2.1.0-r1.ebuild | |
parent | dev-ml/merlin: add dependency (diff) | |
download | gentoo-c74de5f9e7912ccf9667f9c363059e128b5d3e62.tar.gz gentoo-c74de5f9e7912ccf9667f9c363059e128b5d3e62.tar.bz2 gentoo-c74de5f9e7912ccf9667f9c363059e128b5d3e62.zip |
net-misc/s3cmd: fix python 3.9 compat issue
Closes: https://bugs.gentoo.org/789102
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Richard Freeman <rich0@gentoo.org>
Diffstat (limited to 'net-misc/s3cmd/s3cmd-2.1.0-r1.ebuild')
-rw-r--r-- | net-misc/s3cmd/s3cmd-2.1.0-r1.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/net-misc/s3cmd/s3cmd-2.1.0-r1.ebuild b/net-misc/s3cmd/s3cmd-2.1.0-r1.ebuild new file mode 100644 index 000000000000..8fd4a4deed4d --- /dev/null +++ b/net-misc/s3cmd/s3cmd-2.1.0-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_7 python3_8 python3_9 ) +PYTHON_REQ_USE="xml" + +inherit distutils-r1 + +DESCRIPTION="Command line client for Amazon S3" +HOMEPAGE="https://s3tools.org/s3cmd" +SRC_URI="mirror://sourceforge/s3tools/${P/_/-}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~x86 ~amd64-linux ~x64-macos" + +RDEPEND=" + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/python-magic[${PYTHON_USEDEP}]" + +S="${WORKDIR}/${P/_/-}" + +PATCHES=( "${FILESDIR}/${P}-fix-compatibility-with-Python-3.9.patch" ) |