summaryrefslogtreecommitdiff
path: root/dev-python/imapclient
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-01-18 07:22:48 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-01-18 07:22:48 +0000
commitb1a0e9440714a999635da16e8334121f5e0f74c2 (patch)
tree00fd7a12d2cba7f4f871551f04e152793849343c /dev-python/imapclient
parentf466297be4b0dcaa068033d4f503690e3d639a77 (diff)
downloadbaldeagleos-repo-b1a0e9440714a999635da16e8334121f5e0f74c2.tar.gz
baldeagleos-repo-b1a0e9440714a999635da16e8334121f5e0f74c2.tar.xz
baldeagleos-repo-b1a0e9440714a999635da16e8334121f5e0f74c2.zip
Adding metadata
Diffstat (limited to 'dev-python/imapclient')
-rw-r--r--dev-python/imapclient/Manifest1
-rw-r--r--dev-python/imapclient/imapclient-3.1.0.ebuild32
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/imapclient/Manifest b/dev-python/imapclient/Manifest
index 58df94c4468f..fed2bc40cf60 100644
--- a/dev-python/imapclient/Manifest
+++ b/dev-python/imapclient/Manifest
@@ -1 +1,2 @@
DIST imapclient-3.0.1.gh.tar.gz 93611 BLAKE2B aff08b392cb15d00d66833c7fba1147202ef37ff5f0ad9fb2c6e79daf67126cea00caaacfa6945b53f2e31b7d1525f4043aaacc94b34e695e26cf35b90f25259 SHA512 36c8740a93d137c5648a20cbe6f1260b3c0e9288ac9d776d318212dad9aebcbfd81e2ff78bc172d29abd97f797c3b494375c6614c2b11a239048c9e747b7a509
+DIST imapclient-3.1.0.gh.tar.gz 93612 BLAKE2B a8c929affe8572f65bb6dafefc48ba064f1bb12230da7ada9d7af338ecc3834a6216509c59aeccad7faf47dd167dfc0b383b81988091b6578580a2fa8e3d5b15 SHA512 39e065a1a7df22ce80dfed47ab41e9702d3da4976f23f630e4c7b084c33b0007a24f9120b217478e6cebaa7f482921f2d1284bf3740597efe6db97b709ee6dd8
diff --git a/dev-python/imapclient/imapclient-3.1.0.ebuild b/dev-python/imapclient/imapclient-3.1.0.ebuild
new file mode 100644
index 000000000000..a4d057b3cf40
--- /dev/null
+++ b/dev-python/imapclient/imapclient-3.1.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..14} )
+
+inherit distutils-r1
+
+DESCRIPTION="easy-to-use, pythonic, and complete IMAP client library"
+HOMEPAGE="
+ https://github.com/mjs/imapclient/
+ https://pypi.org/project/IMAPClient/
+"
+SRC_URI="
+ https://github.com/mjs/imapclient/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc examples"
+
+distutils_enable_sphinx doc/src
+distutils_enable_tests unittest
+
+python_install_all() {
+ distutils-r1_python_install_all
+ use examples && dodoc -r examples
+}