commit: 6cdde9bd9092e76606e97258a6a12618828d9c80
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 21 04:37:46 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jan 21 04:57:15 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cdde9bd
dev-python/apprise: Bump to 1.9.7
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/apprise/Manifest | 1 +
dev-python/apprise/apprise-1.9.7.ebuild | 43 +++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/dev-python/apprise/Manifest b/dev-python/apprise/Manifest
index 2626080b9aa4..72ffb28ce749 100644
--- a/dev-python/apprise/Manifest
+++ b/dev-python/apprise/Manifest
@@ -1 +1,2 @@
DIST apprise-1.9.6.tar.gz 1921714 BLAKE2B
5da45ce6a7d150cf40d61bd9fe43abe7da404331d9a6571250db1478b9cb2ef513be015fbf5b70ce6ecd415ee6899b3f1c135de0624b7fa0275b9f92ad357992
SHA512
06a1dc8cc47519a0af38f23083e525c18ee27a539756bff16ee15ac3af0d5b9730f3a7f2906813dc84c40248d4dbbb38d44ab4f761183dda6c8bfb9ad29aca58
+DIST apprise-1.9.7.tar.gz 1937173 BLAKE2B
31935acf742aab2f2b1e7bc83563a62e37b879af73b9bfd21ac555e7ba8c2248616baa8125be95a5dce488fc9b286e3dc26b5883a70e788cd5669817225ff104
SHA512
8d87df66dde6fb66f515e5dbbfa38c0bf82605531f2f2c0d521822776e05796bedc5453e4cfb011da67c0f62ab1a8faa2d5563c8398c46c9d0a67d4351d61ba4
diff --git a/dev-python/apprise/apprise-1.9.7.ebuild
b/dev-python/apprise/apprise-1.9.7.ebuild
new file mode 100644
index 000000000000..0b218ea50c61
--- /dev/null
+++ b/dev-python/apprise/apprise-1.9.7.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2026 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
+)