mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 00:16:22 +01:00
s3tk: new ebuild
This commit is contained in:
parent
d3fa47c227
commit
3caf1acf8a
4 changed files with 73 additions and 0 deletions
1
app-forensics/s3tk/Manifest
Normal file
1
app-forensics/s3tk/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST s3tk-0.2.0.tar.gz 11708 BLAKE2B 201f936e20e15c05e353d4b802547cd3ca0de80b265c0a11cdd49b54a61d22e694148058c5236a9ded09e53cc98632981401f15174e11516738c814eaec1ee6a SHA512 b439ef023eec2a39da995bde9affc27b34227ac67b892adf574dcccd2229b93571115845b857beb44d3b9a98c4fd8314fb860939f583e5fffdffb167e449dcea
|
||||
8
app-forensics/s3tk/metadata.xml
Normal file
8
app-forensics/s3tk/metadata.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>email@linxon.ru</email>
|
||||
<name>Yury Martynov</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
32
app-forensics/s3tk/s3tk-0.2.0.ebuild
Normal file
32
app-forensics/s3tk/s3tk-0.2.0.ebuild
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A security toolkit for Amazon S3"
|
||||
HOMEPAGE="https://github.com/ankane/s3tk"
|
||||
LICENSE="MIT"
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/ankane/s3tk"
|
||||
else
|
||||
SRC_URI="https://github.com/ankane/s3tk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
SLOT=0
|
||||
DOCS=( CHANGELOG.md README.md )
|
||||
|
||||
DEPEND="${PYTHON_DEPS}
|
||||
dev-python/boto3[${PYTHON_USEDEP}]
|
||||
dev-python/clint[${PYTHON_USEDEP}]
|
||||
dev-python/click[${PYTHON_USEDEP}]
|
||||
dev-python/joblib[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]"
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
32
app-forensics/s3tk/s3tk-9999.ebuild
Normal file
32
app-forensics/s3tk/s3tk-9999.ebuild
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A security toolkit for Amazon S3"
|
||||
HOMEPAGE="https://github.com/ankane/s3tk"
|
||||
LICENSE="MIT"
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/ankane/s3tk"
|
||||
else
|
||||
SRC_URI="https://github.com/ankane/s3tk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
SLOT=0
|
||||
DOCS=( CHANGELOG.md README.md )
|
||||
|
||||
DEPEND="${PYTHON_DEPS}
|
||||
dev-python/boto3[${PYTHON_USEDEP}]
|
||||
dev-python/clint[${PYTHON_USEDEP}]
|
||||
dev-python/click[${PYTHON_USEDEP}]
|
||||
dev-python/joblib[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]"
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
Loading…
Reference in a new issue