package/python-emailproxy: new package

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
[Julien: fix Config.in order found by "make check-package"]
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Bernd Kuhls
2025-03-21 19:20:45 +01:00
committed by Julien Olivain
parent f9a02e7b80
commit 486672da02
5 changed files with 33 additions and 0 deletions

View File

@@ -494,6 +494,7 @@ F: package/privoxy/
F: package/pure-ftpd/
F: package/python-couchdb/
F: package/python-cssutils/
F: package/python-emailproxy/
F: package/python-glslang/
F: package/python-mako/
F: package/python-mwclient/

View File

@@ -1100,6 +1100,7 @@ menu "External python modules"
source "package/python-dtschema/Config.in"
source "package/python-ecdsa/Config.in"
source "package/python-email-validator/Config.in"
source "package/python-emailproxy/Config.in"
source "package/python-engineio/Config.in"
source "package/python-entrypoints/Config.in"
source "package/python-esptool/Config.in"

View File

@@ -0,0 +1,12 @@
config BR2_PACKAGE_PYTHON_EMAILPROXY
bool "python-emailproxy"
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS # python-cryptography
select BR2_PACKAGE_PYTHON_CRYPTOGRAPHY # runtime
select BR2_PACKAGE_PYTHON_PROMPT_TOOLKIT # runtime
select BR2_PACKAGE_PYTHON_PYASYNCORE # runtime
help
An IMAP/POP/SMTP proxy that transparently adds OAuth 2.0
authentication for email clients that don't support this
method.
https://github.com/simonrob/email-oauth2-proxy

View File

@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/emailproxy/json
md5 f216dea4437131103b1d658cfa1a9bc0 emailproxy-2025.3.14.tar.gz
sha256 e406478ed86eca2005ed1e17221358a0c37ddaeccfd991d42d2df93febb279a0 emailproxy-2025.3.14.tar.gz
# Locally computed sha256 checksums
sha256 c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 LICENSE

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-emailproxy
#
################################################################################
PYTHON_EMAILPROXY_VERSION = 2025.3.14
PYTHON_EMAILPROXY_SOURCE = emailproxy-$(PYTHON_EMAILPROXY_VERSION).tar.gz
PYTHON_EMAILPROXY_SITE = https://files.pythonhosted.org/packages/15/b9/b2864ab1da9fdf7409589de99501b227352c9a6b8fa1178660debf0a2ad6
PYTHON_EMAILPROXY_SETUP_TYPE = setuptools
PYTHON_EMAILPROXY_LICENSE = Apache-2.0
PYTHON_EMAILPROXY_LICENSE_FILES = LICENSE
$(eval $(python-package))