diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-06-21 08:07:10 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-06-21 09:53:34 +0200 |
commit | 157567669bdf40edd1534a5fddeab22f90162581 (patch) | |
tree | c030bf62ee5e925c7e3c0b1dca4e7cb13d4cccd2 | |
parent | dev-python/tempora: Bump to 4.1.1 (diff) | |
download | gentoo-157567669bdf40edd1534a5fddeab22f90162581.tar.gz gentoo-157567669bdf40edd1534a5fddeab22f90162581.tar.bz2 gentoo-157567669bdf40edd1534a5fddeab22f90162581.zip |
dev-python/python-dotenv: Bump to 0.18.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | dev-python/python-dotenv/Manifest | 1 | ||||
-rw-r--r-- | dev-python/python-dotenv/python-dotenv-0.18.0.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/python-dotenv/Manifest b/dev-python/python-dotenv/Manifest index 6593848bcdbf..931b2cfc81fd 100644 --- a/dev-python/python-dotenv/Manifest +++ b/dev-python/python-dotenv/Manifest @@ -1 +1,2 @@ DIST python-dotenv-0.17.1.tar.gz 31608 BLAKE2B fdddfa1c39282ceec03fc1569d9a7d038e91a046a1248dd27af011dc60361f06f5324504d623a6109d783bb3b5ccac7cae758d918b17f5b0c65a1085bda627ea SHA512 42cdca1356ac2ad80884a5bf3ed419d1202d6a54746f7a21dc9c1bc7579383ac5c72e8b708bc33dfea3904228125fe7b3b2190bfe53e8b4767f5223d59050417 +DIST python-dotenv-0.18.0.tar.gz 32242 BLAKE2B 6cbef7ea7278a3114b3eaea2ede0c68e2c6dcc3868f655dbcad9596ea6e1ec0b9f5d183a73fda32e53d348ae23c11ca3f9d2e8eadd974eea4dd13903b9f9c845 SHA512 4b120ee45602ce703ee360fb5af07a8854bcb1ecd9084057e00324b152cf230fa6f065b374b6eebbfb7069b32762624ea61dd5d2fa6ac62cb7e3a2bb6ddfc1ed diff --git a/dev-python/python-dotenv/python-dotenv-0.18.0.ebuild b/dev-python/python-dotenv/python-dotenv-0.18.0.ebuild new file mode 100644 index 000000000000..3fd9aa665e52 --- /dev/null +++ b/dev-python/python-dotenv/python-dotenv-0.18.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..9} ) +inherit distutils-r1 + +DESCRIPTION="Manage .env files" +HOMEPAGE="https://github.com/theskumar/python-dotenv" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~sparc ~x86" + +DEPEND=" + test? ( + >=dev-python/click-5[${PYTHON_USEDEP}] + dev-python/ipython[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + >=dev-python/sh-1.09[${PYTHON_USEDEP}] + )" + +DOCS=( CHANGELOG.md README.md ) + +distutils_enable_tests --install pytest |