mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 15:59:00 -04:00
net-mail/remail: treeclean
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
This commit is contained in:
parent
320d8026f1
commit
8c6cf2e3e0
@ -1 +0,0 @@
|
||||
DIST remail-0.13.tar.gz 54504 BLAKE2B 935120c5a7322abe009849a1c63193b6879aaeeef6daa1abeab0675439874332308209d3e6f5251e69a6fc9785497a723cc87503945ff502acaf4d2a45c7c834 SHA512 cadb41c938da90b2dc48b538767ac922118ab0be32c93a644842f2f72f28ef236a7d4e49518c2e49018bec7ea34488fae50b272d31e952b8dcdba677acc74c1b
|
@ -1,49 +0,0 @@
|
||||
From 914c820b0b16a397f663930e897819a70ea556ae Mon Sep 17 00:00:00 2001
|
||||
From: Kurt Kanzenbach <kurt@kmk-computers.de>
|
||||
Date: Wed, 18 Mar 2020 11:02:33 +0100
|
||||
Subject: [PATCH] remail: Add setup.py
|
||||
|
||||
Make it possible to use setuptools.
|
||||
|
||||
Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
|
||||
---
|
||||
setup.py | 27 +++++++++++++++++++++++++++
|
||||
1 file changed, 27 insertions(+)
|
||||
create mode 100644 setup.py
|
||||
|
||||
diff --git a/setup.py b/setup.py
|
||||
new file mode 100644
|
||||
index 000000000000..fede9d368f0a
|
||||
--- /dev/null
|
||||
+++ b/setup.py
|
||||
@@ -0,0 +1,27 @@
|
||||
+import setuptools
|
||||
+
|
||||
+with open("README.md", "r") as fh:
|
||||
+ long_description = fh.read()
|
||||
+
|
||||
+requires = [ 'flufl-bounce>=3.0', 'M2Crypto>=0.35.2', 'pyinotify>=0.9.6',
|
||||
+ 'python-gnupg>=0.4.5', 'ruamel.yaml>=0.16.5' ]
|
||||
+
|
||||
+setuptools.setup(
|
||||
+ name="remail",
|
||||
+ version="0.13",
|
||||
+ author="Thomas Gleixner",
|
||||
+ author_email="tglx@linutronix.de",
|
||||
+ description="A set of tools for crypted mailing lists",
|
||||
+ long_description=long_description,
|
||||
+ long_description_content_type="text/markdown",
|
||||
+ url="https://git.kernel.org/pub/scm/linux/kernel/git/tglx/remail.git/",
|
||||
+ packages=setuptools.find_packages(),
|
||||
+ scripts=[ 'remail_chkcfg', 'remail_daemon', 'remail_pipe' ],
|
||||
+ classifiers=[
|
||||
+ "Programming Language :: Python :: 3",
|
||||
+ "License :: OSI Approved :: GPLv2 License",
|
||||
+ "Operating System :: OS Independent",
|
||||
+ ],
|
||||
+ python_requires='>=3.6',
|
||||
+ install_requires=requires,
|
||||
+)
|
||||
--
|
||||
2.24.1
|
||||
|
@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>kurt@kmk-computers.de</email>
|
||||
<name>Kurt Kanzenbach</name>
|
||||
</maintainer>
|
||||
<longdescription lang="en">
|
||||
remail is a very simplistic mailing list tool which provides encryption.
|
||||
|
||||
remail reads mail from a maildir, decrypts it with the mailing list private
|
||||
key and re-encrypts it for every enabled subscriber. The resulting mails are
|
||||
delivered to the localhost's SMTP server.
|
||||
|
||||
remail supports S/MIME and PGP on both ends.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
@ -1,36 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
|
||||
inherit distutils-r1 systemd
|
||||
|
||||
DESCRIPTION="A set of tools for crypted mailing lists"
|
||||
HOMEPAGE="https://git.kernel.org/pub/scm/linux/kernel/git/tglx/remail.git/about/"
|
||||
SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/tglx/remail.git/snapshot/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="examples systemd"
|
||||
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
dev-python/flufl-bounce[${PYTHON_USEDEP}]
|
||||
>=dev-python/m2crypto-0.35.2[${PYTHON_USEDEP}]
|
||||
dev-python/pyinotify[${PYTHON_USEDEP}]
|
||||
dev-python/python-gnupg[${PYTHON_USEDEP}]
|
||||
dev-python/ruamel-yaml[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
PATCHES=( "${FILESDIR}/${P}-setup.patch" )
|
||||
|
||||
distutils_enable_sphinx Documentation --no-autodoc
|
||||
|
||||
python_install_all() {
|
||||
distutils-r1_python_install_all
|
||||
|
||||
use examples && dodoc -r Documentation/examples
|
||||
use systemd && systemd_dounit remail.service
|
||||
}
|
@ -28,10 +28,6 @@ dev-python/python-binary-memcached
|
||||
# depends on non-existent dev-java/guava:20
|
||||
dev-java/gradle-hashing
|
||||
|
||||
# Andrew Ammerlaan <andrewammerlaan@gentoo.org> (2022-06-10)
|
||||
# depends on non-existent dev-python/flufl-bounce
|
||||
net-mail/remail
|
||||
|
||||
# Christopher Byrne <salah.coronya@gmail.com> (2022-04-15)
|
||||
# Depends on masked dev-libs/openssl-3.0.*
|
||||
app-crypt/tpm2-openssl
|
||||
|
Loading…
x
Reference in New Issue
Block a user