diff options
Diffstat (limited to 'dev-python/irc')
-rw-r--r-- | dev-python/irc/Manifest | 2 | ||||
-rw-r--r-- | dev-python/irc/irc-20.3.0.ebuild | 45 |
2 files changed, 47 insertions, 0 deletions
diff --git a/dev-python/irc/Manifest b/dev-python/irc/Manifest index ccde644869c8..11d044626c6a 100644 --- a/dev-python/irc/Manifest +++ b/dev-python/irc/Manifest @@ -1,3 +1,5 @@ DIST irc-20.1.0.tar.gz 89157 BLAKE2B 42498e63e1d62a5c2e545f1d0d581bdbc9f49228ec14e523f4add130b903be2a736072b8ad53775a7f16298a7c57761d8c06053570dc01a338491593564b3fd7 SHA512 83a988b5f75c1d55376a140519725749824dbc9f32e6b0e5d3684d9c58973a746ae517441594cfa745edb89a0fbd98ef847e937a620548fed4e344b66a97ad1c +DIST irc-20.3.0.tar.gz 90906 BLAKE2B d26c31f2bfa31d2eb49f658535eb636e8f7d264b7da9211b197e387e18ce5544a5af0ea19455d3611d1338ddec2bb93e928a31f22abeef154151691b37182ce5 SHA512 875f049e96b145ad26a6733aac7b1067fc17ef01023b94024079153dd1dd097eb421ac7d6b062216ce132bd475fe6f2f6adb2f7f2f27bbcbbe4de5c86efedc51 EBUILD irc-20.1.0.ebuild 1076 BLAKE2B 71a54778030ffa61b2164ea778cdaa6e0b51b2839f7f997100749d264ab0adcaa4a98814335a441de2cb693878111c16a2cf1be12b2309322f8be747b4c01723 SHA512 417287da5baa24f24e6c1d40fced23669631aa695b12118f1cf30621d5f0a9d36616905ada047bb36389dd4b4c1c5ca689a2f944293760eb4876ce2f9953562f +EBUILD irc-20.3.0.ebuild 1079 BLAKE2B f8c7985d6da66164ab5b44dafede551daa0da0c0717ede25ec838d39608c4e8e74ee723fafc724f69f021fee4023ddc592cc0abe86e8c2ba52a45ff168db6191 SHA512 5058f93b86e99ffe3d79fe20dca2b172e8c9b1f348e1acba0e70cfa3a910a6fdbdbddd2b2028622ca009d592b27b1dbcb456379abb94a8b82be97913f5308355 MISC metadata.xml 816 BLAKE2B 8390d70debcbbd36f9d4cf9e7bf204f108a3aa04bab4b1b7166e807899c402b94e4aca435df16c80feebe73caffe180846ae4116132111377951663dedd64b68 SHA512 04478d5d9ab60c09105e6594a19957e1aa059489f389918baed7ebd185f31cbe513ebf7816f565e40d42d27477842e2bd92ca17ba845a4a4de2e7a4f71df42a1 diff --git a/dev-python/irc/irc-20.3.0.ebuild b/dev-python/irc/irc-20.3.0.ebuild new file mode 100644 index 000000000000..ac847a36cc29 --- /dev/null +++ b/dev-python/irc/irc-20.3.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="IRC client framework written in Python" +HOMEPAGE=" + https://github.com/jaraco/irc/ + https://pypi.org/project/irc/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" +IUSE="examples" + +RDEPEND=" + dev-python/jaraco-collections[${PYTHON_USEDEP}] + >=dev-python/jaraco-functools-1.20[${PYTHON_USEDEP}] + >=dev-python/jaraco-itertools-1.8[${PYTHON_USEDEP}] + dev-python/jaraco-logging[${PYTHON_USEDEP}] + dev-python/jaraco-stream[${PYTHON_USEDEP}] + dev-python/jaraco-text[${PYTHON_USEDEP}] + dev-python/more-itertools[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + >=dev-python/tempora-1.6[${PYTHON_USEDEP}] +" +BDEPEND=" + >=dev-python/setuptools-scm-3.4.1[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +python_install_all() { + if use examples; then + docompress -x "/usr/share/doc/${PF}/scripts" + dodoc -r scripts + fi + distutils-r1_python_install_all +} |