diff options
author | Julien Roy <julien@jroy.ca> | 2024-04-13 13:28:08 -0400 |
---|---|---|
committer | Julien Roy <julien@jroy.ca> | 2024-04-13 13:28:08 -0400 |
commit | e4c3436be518d11b38f943c73e03905d0bfb57b0 (patch) | |
tree | f788c76441033bffd2961115545231d8644a8ea0 /dev-python | |
parent | bf380e9c463774dc88db7969c39dd6b71ce6561e (diff) | |
download | MrRoy-Overlay-e4c3436be518d11b38f943c73e03905d0bfb57b0.tar.gz MrRoy-Overlay-e4c3436be518d11b38f943c73e03905d0bfb57b0.tar.bz2 MrRoy-Overlay-e4c3436be518d11b38f943c73e03905d0bfb57b0.zip |
dev-python/emailthreads: new package, add 0.1.3
Signed-off-by: Julien Roy <julien@jroy.ca>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/emailthreads/Manifest | 1 | ||||
-rw-r--r-- | dev-python/emailthreads/emailthreads-0.1.3.ebuild | 22 | ||||
-rw-r--r-- | dev-python/emailthreads/metadata.xml | 19 |
3 files changed, 42 insertions, 0 deletions
diff --git a/dev-python/emailthreads/Manifest b/dev-python/emailthreads/Manifest new file mode 100644 index 0000000..78d7fef --- /dev/null +++ b/dev-python/emailthreads/Manifest @@ -0,0 +1 @@ +DIST emailthreads-0.1.3.gh.tar.gz 25137 BLAKE2B fa23b219dc1d27eb5f7afd6a7afb4d28a0942290ebcc5bdd1e6070901a579479e19132a918dff363100e408cfe428d4fc6e9dceb0cc94af5a9bdfc2244b5ef54 SHA512 a8b8c374704ddf934897a50034da1ebf2dabf221a7e64735be9524088931a02697facc40ef08250f2148c4ea22b8a2f76139eea82d0d7474f822aaac3dee2666 diff --git a/dev-python/emailthreads/emailthreads-0.1.3.ebuild b/dev-python/emailthreads/emailthreads-0.1.3.ebuild new file mode 100644 index 0000000..4a02155 --- /dev/null +++ b/dev-python/emailthreads/emailthreads-0.1.3.ebuild @@ -0,0 +1,22 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="Parses email threads into conversation trees" +HOMEPAGE="https://github.com/emersion/python-emailthreads" +SRC_URI="https://github.com/emersion/python-${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" +S="${WORKDIR}/python-${PN}-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="" +DEPEND="${RDEPEND}" + +distutils_enable_tests setup.py diff --git a/dev-python/emailthreads/metadata.xml b/dev-python/emailthreads/metadata.xml new file mode 100644 index 0000000..36831f6 --- /dev/null +++ b/dev-python/emailthreads/metadata.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>julien@jroy.ca</email> + <name>Julien Roy</name> + </maintainer> + <longdescription>Python library to parse and format email threads. Give it a list of emails that are part of the same thread and it'll build a tree of responses to the original message.</longdescription> + <upstream> + <maintainer> + <name>Simon Ser</name> + <email>contact@emersion.fr</email> + </maintainer> + <changelog>https://github.com/emersion/python-emailthreads/releases</changelog> + <bugs-to>https://github.com/emersion/python-emailthreads/issues</bugs-to> + <remote-id type="github">emersion/python-emailthreads</remote-id> + <remote-id type="pypi">emailthreads</remote-id> + </upstream> +</pkgmetadata> |