commit: 02540e7b9d22542b5cd9fc439887769113429ffd
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 8 03:12:26 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Dec 8 03:33:22 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02540e7b
dev-python/apprise: Bump to 1.9.6
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/apprise/Manifest | 1 +
dev-python/apprise/apprise-1.9.6.ebuild | 43 +++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/dev-python/apprise/Manifest b/dev-python/apprise/Manifest
index 44d34497a0d7..1ff078df87b3 100644
--- a/dev-python/apprise/Manifest
+++ b/dev-python/apprise/Manifest
@@ -1 +1,2 @@
DIST apprise-1.9.5.tar.gz 1877134 BLAKE2B
d26bd5fb1d2076b25129f89919282db0910f32b16947352f7f0b3d1478209506d9a536fb07ab129f5e2d9847a5c8f32fbcb4826dca1fdb6a6d86905e45cf92fe
SHA512
a28f873e56dd1c4fd744f0d402765499144f1f8f76b55ee23bef2c80573cff6f744d66ab0707bef27f5f50165d05ec1454e0903ea018fc147e9b75fb89e4a756
+DIST apprise-1.9.6.tar.gz 1921714 BLAKE2B
5da45ce6a7d150cf40d61bd9fe43abe7da404331d9a6571250db1478b9cb2ef513be015fbf5b70ce6ecd415ee6899b3f1c135de0624b7fa0275b9f92ad357992
SHA512
06a1dc8cc47519a0af38f23083e525c18ee27a539756bff16ee15ac3af0d5b9730f3a7f2906813dc84c40248d4dbbb38d44ab4f761183dda6c8bfb9ad29aca58
diff --git a/dev-python/apprise/apprise-1.9.6.ebuild
b/dev-python/apprise/apprise-1.9.6.ebuild
new file mode 100644
index 000000000000..43e0d62db9e5
--- /dev/null
+++ b/dev-python/apprise/apprise-1.9.6.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..14} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Push Notifications that work with just about every platform"
+HOMEPAGE="
+ https://pypi.org/project/apprise/
+ https://github.com/caronc/apprise/
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv"
+IUSE="+dbus mqtt"
+
+RDEPEND="
+ dev-python/click[${PYTHON_USEDEP}]
+ dev-python/markdown[${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP}]
+ dev-python/requests-oauthlib[${PYTHON_USEDEP}]
+ dev-python/pyyaml[${PYTHON_USEDEP}]
+ dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
+ mqtt? ( dev-python/paho-mqtt[${PYTHON_USEDEP}] )
+"
+BDEPEND="
+ dev-python/babel[${PYTHON_USEDEP}]
+"
+
+EPYTEST_PLUGINS=( pytest-mock )
+# xdist causes test failures
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+ # fails if pygobject is installed
+ # https://github.com/caronc/apprise/issues/1383
+ tests/test_plugin_glib.py::test_plugin_glib_send_raises_generic
+)