add minio-4.0.9 & minio-5.0.1
This commit is contained in:
parent
a356ea2f9f
commit
9a7e63fcec
5
dev-python/minio/Manifest
Normal file
5
dev-python/minio/Manifest
Normal file
@ -0,0 +1,5 @@
|
||||
DIST minio-4.0.9.tar.gz 40845 BLAKE2B fc2317392a1a811cad70e1991d9623bdd51cf8edc04e844b15ed0a6ab8b713fd4ac7b3e577e2a35a5d37f675362a3de9af7bbdf1d6a03b02c0366826ed6af1e9 SHA512 a347b29347a223b710eefc39f3948798c8539f249d845c41bea0e4b213a4c9210fe6a0112b49a37119372e35787bfb7905d744e042ce869fa9ea4b188afc12ff
|
||||
DIST minio-5.0.1.tar.gz 101634 BLAKE2B 7260038b383672dc12b267d40b387ba323f7b2b9dcf8e7f6835c51a35e0ff9e180e4b327d5d843cc11f244375435faef5d4d92724fe92f116cb415ca76c46c29 SHA512 054ab22c77db012c3ef066dd1b1947aab17b3ced5600b333adcac68c28838a3d8b9d03cae029f63f3659702de47b7d739d6a2e1e77dde943b483f986f9f63fa0
|
||||
EBUILD minio-4.0.9.ebuild 750 BLAKE2B 70569abd69bfdd7c39847320f2918b25993a4cf0aca7c8b88136dd8e491e6bd03d49ef5ada2adc204924b4e24310dc2b461a496f2d7abad096d4d54a9bd1c09a SHA512 3731476bcca05429f6a38f1326118d238ce690564d495287ddbfa6e77ec2f8b9370a7c7e56c08e4674651b63d662d42d07c43c2848adddf67de49b0075375843
|
||||
EBUILD minio-5.0.1.ebuild 750 BLAKE2B 70569abd69bfdd7c39847320f2918b25993a4cf0aca7c8b88136dd8e491e6bd03d49ef5ada2adc204924b4e24310dc2b461a496f2d7abad096d4d54a9bd1c09a SHA512 3731476bcca05429f6a38f1326118d238ce690564d495287ddbfa6e77ec2f8b9370a7c7e56c08e4674651b63d662d42d07c43c2848adddf67de49b0075375843
|
||||
MISC metadata.xml 446 BLAKE2B f1f0499648ac3a2915c1bba1a55a5d05fdd24bef4c061dfafe52507ed6b6fddd29e6a4bc2f726c40a0deb151b58d85ab671c52e79c22096890bca2953ff9a729 SHA512 884057f5888e2bd4a616ebf6530f8180728c99b4f59d92101b9998eabf59db8eb28d65744ded3ed14c08821c041a40dc07f96981aab76aeb47d9d9e1b4e096af
|
||||
16
dev-python/minio/metadata.xml
Normal file
16
dev-python/minio/metadata.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer>
|
||||
<email>b@edevau.net</email>
|
||||
<name>Andreas Billmeier</name>
|
||||
</maintainer>
|
||||
<herd>python</herd>
|
||||
<upstream>
|
||||
<remote-id type="pypi">minio</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>dev@min.io</email>
|
||||
<name>MinIO, Inc.</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
30
dev-python/minio/minio-4.0.9.ebuild
Normal file
30
dev-python/minio/minio-4.0.9.ebuild
Normal file
@ -0,0 +1,30 @@
|
||||
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
|
||||
# Distributed under the terms of the GNU General Public License v3.0
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{5,6,7} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="MinIO Python Library for Amazon S3 Compatible Cloud Storage for Python"
|
||||
HOMEPAGE="https://github.com/minio/minio-py https://pypi.org/project/minio/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache License 2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${REDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/nose[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
nosetests --verbose || die
|
||||
py.test -v -v || die
|
||||
}
|
||||
30
dev-python/minio/minio-5.0.1.ebuild
Normal file
30
dev-python/minio/minio-5.0.1.ebuild
Normal file
@ -0,0 +1,30 @@
|
||||
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
|
||||
# Distributed under the terms of the GNU General Public License v3.0
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{5,6,7} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="MinIO Python Library for Amazon S3 Compatible Cloud Storage for Python"
|
||||
HOMEPAGE="https://github.com/minio/minio-py https://pypi.org/project/minio/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache License 2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${REDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/nose[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
nosetests --verbose || die
|
||||
py.test -v -v || die
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user