Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/s3fs/
Date: Wed, 25 Jul 2018 17:29:30
Message-Id: 1532539668.9e37d7271496b9740d37fce7a3785de1a40d1173.monsieurp@gentoo
1 commit: 9e37d7271496b9740d37fce7a3785de1a40d1173
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 23 08:43:36 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 25 17:27:48 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e37d727
7
8 dev-python/s3fs: version bump.
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-python/s3fs/Manifest | 1 +
13 dev-python/s3fs/s3fs-0.1.5.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-python/s3fs/Manifest b/dev-python/s3fs/Manifest
17 index 770ce8b9f8a..7597b9ac3e0 100644
18 --- a/dev-python/s3fs/Manifest
19 +++ b/dev-python/s3fs/Manifest
20 @@ -1 +1,2 @@
21 DIST s3fs-0.1.2.tar.gz 24574 BLAKE2B 2b62202d8ceec078ca93c6da895a81648c83e0fbd764dbcf4cb1a0ce2c2a8a7cd16a3cc5162d095ec1272b52c9da743d8c8d21f5b351e6a4f3d63cbd77d9b43c SHA512 52be23ccb2dd8c63675287895d00fda94adf010ac878ca12e5c8eefa25c7076c000b53bb4d2bb7886550cdd0d226cdf51aeee12f2ad7bac46537f190ba72ec2f
22 +DIST s3fs-0.1.5.tar.gz 27215 BLAKE2B 84f059eafe14a4faf8945c355763d31a49f38c3ae6cb05170dbff0e7ad435f9ea79617fc538d237b565d20a0b11603ea44d9e71339fd40c1ad16ad0af903bbd5 SHA512 5285da6d82de1e68c4cb0fad5a93eeb59fdffba663691d79cafd1b428b60e17fa21e0ff3a50df701cad7f351017cdc538954b0516782e5ddcf6c3d5910f71144
23
24 diff --git a/dev-python/s3fs/s3fs-0.1.5.ebuild b/dev-python/s3fs/s3fs-0.1.5.ebuild
25 new file mode 100644
26 index 00000000000..ffec642e474
27 --- /dev/null
28 +++ b/dev-python/s3fs/s3fs-0.1.5.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Pythonic file interface to S3"
40 +HOMEPAGE="http://s3fs.readthedocs.io/en/latest/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
46 +IUSE="test"
47 +
48 +RDEPEND="
49 + dev-python/boto3[${PYTHON_USEDEP}]"
50 +
51 +DEPEND="
52 + ${RDEPEND}
53 + dev-python/setuptools[${PYTHON_USEDEP}]
54 + test? (
55 + dev-python/moto[${PYTHON_USEDEP}]
56 + dev-python/pytest[${PYTHON_USEDEP}]
57 + )"
58 +
59 +python_test() {
60 + py.test -v || die
61 +}