diff options
author | Hanno Böck <hanno@gentoo.org> | 2020-09-11 13:16:17 +0200 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2020-09-11 13:16:17 +0200 |
commit | 2db0edb7327ba6e5f12682dc38e29cb10b0e3e90 (patch) | |
tree | 3ab6d358e1576bae446f435ead8eadecbd6285ca /net-mail/postorius | |
parent | net-mail/django-mailman3: Initial commit (diff) | |
download | gentoo-2db0edb7327ba6e5f12682dc38e29cb10b0e3e90.tar.gz gentoo-2db0edb7327ba6e5f12682dc38e29cb10b0e3e90.tar.bz2 gentoo-2db0edb7327ba6e5f12682dc38e29cb10b0e3e90.zip |
net-mail/postorius: Initial commit
Webinterface for mailman 3.
Signed-off-by: Hanno Böck <hanno@gentoo.org>
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Diffstat (limited to 'net-mail/postorius')
-rw-r--r-- | net-mail/postorius/Manifest | 1 | ||||
-rw-r--r-- | net-mail/postorius/metadata.xml | 10 | ||||
-rw-r--r-- | net-mail/postorius/postorius-1.3.3.ebuild | 31 |
3 files changed, 42 insertions, 0 deletions
diff --git a/net-mail/postorius/Manifest b/net-mail/postorius/Manifest new file mode 100644 index 000000000000..fac3606d7c87 --- /dev/null +++ b/net-mail/postorius/Manifest @@ -0,0 +1 @@ +DIST postorius-1.3.3.tar.gz 2704738 BLAKE2B 0ae5a7b3ace1ad7f64eae53156592d0c76a09e358d08edfe1b506717e87df67c669bfab356c203e28c03006f46461a67b4c7222e0e305100e15511a93e3e6a59 SHA512 31d6d6d0dbbe8a57251c81cf8f7d8b80d17dd4aab9f31be684fef26637a4ba81a196d4ab63e7389bd4173a60778a00c83ee440c24f83a1f60b094ccab8cf345a diff --git a/net-mail/postorius/metadata.xml b/net-mail/postorius/metadata.xml new file mode 100644 index 000000000000..557e7cfbec08 --- /dev/null +++ b/net-mail/postorius/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>hanno@gentoo.org</email> + </maintainer> + <upstream> + <remote-id type="pypi">postorius</remote-id> + </upstream> +</pkgmetadata> diff --git a/net-mail/postorius/postorius-1.3.3.ebuild b/net-mail/postorius/postorius-1.3.3.ebuild new file mode 100644 index 000000000000..982ec7b64f7f --- /dev/null +++ b/net-mail/postorius/postorius-1.3.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="A web user interface for GNU Mailman 3" +HOMEPAGE="https://www.list.org" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="net-mail/django-mailman3[${PYTHON_USEDEP}] + dev-python/django[${PYTHON_USEDEP}] + net-mail/mailmanclient[${PYTHON_USEDEP}] + dev-python/readme_renderer[${PYTHON_USEDEP}] + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/vcrpy[${PYTHON_USEDEP}] + dev-python/beautifulsoup[${PYTHON_USEDEP}] + dev-python/isort[${PYTHON_USEDEP}] + )" + +DOCS=( README.rst ) |