diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-01-17 09:53:42 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-01-17 09:55:28 +0100 |
commit | e45d7c9a4765850510d846bfede4bfdc75602d60 (patch) | |
tree | 3ae1c14441ecbaefd5ff3dacdf5f1cc324ff4dea /dev-python/imapclient | |
parent | dev-python/python-evdev: Bump to 1.4.0 (diff) | |
download | gentoo-e45d7c9a4765850510d846bfede4bfdc75602d60.tar.gz gentoo-e45d7c9a4765850510d846bfede4bfdc75602d60.tar.bz2 gentoo-e45d7c9a4765850510d846bfede4bfdc75602d60.zip |
dev-python/imapclient: Bump to 2.2.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/imapclient')
-rw-r--r-- | dev-python/imapclient/Manifest | 1 | ||||
-rw-r--r-- | dev-python/imapclient/imapclient-2.2.0.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/imapclient/Manifest b/dev-python/imapclient/Manifest index f0c7713f8662..50295fae8cf1 100644 --- a/dev-python/imapclient/Manifest +++ b/dev-python/imapclient/Manifest @@ -1 +1,2 @@ DIST imapclient-2.1.0.tar.gz 85925 BLAKE2B 9725be7988c4bec105fda73389241e39e6c006bccd8130125b280041d13becd6a71a1832763171daf25dfb4e7b4a7fc86c0a3afa93216c3dc4370b19348c0a5e SHA512 57e5824504f2667cf41ac4983130e16a5ea73ea37f29cdb16295eb725b56eda55db26a12e380acb579ef6b8540d38ae6badac5dd5b644d4419cbe9151f634e70 +DIST imapclient-2.2.0.tar.gz 89505 BLAKE2B 448e8c736cd80f261c50dd7d6fe88498bf988e475f8135bf7079021d0154904741ab8af28c0ede817ec1bd8c7bd329b1c891c24e37c3466d68287afa02d636c7 SHA512 ace8f55e0f7f4dbb9127b2bbf26cce4c12dce40357cf8127aa6e377321d5156f91f913bd4d4ca57bd5b7f0c86ae5d0b7fdf352b74a6edb7d607f46aa45a144a2 diff --git a/dev-python/imapclient/imapclient-2.2.0.ebuild b/dev-python/imapclient/imapclient-2.2.0.ebuild new file mode 100644 index 000000000000..14f71e42f9a5 --- /dev/null +++ b/dev-python/imapclient/imapclient-2.2.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_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="easy-to-use, pythonic, and complete IMAP client library" +HOMEPAGE="https://github.com/mjs/imapclient" +SRC_URI="https://github.com/mjs/imapclient/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" + +distutils_enable_sphinx doc/src +distutils_enable_tests unittest + +python_install_all() { + distutils-r1_python_install_all + use examples && dodoc -r examples +} |