summaryrefslogtreecommitdiff
path: root/dev-python/notify2
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/notify2
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/notify2')
-rw-r--r--dev-python/notify2/Manifest1
-rw-r--r--dev-python/notify2/metadata.xml16
-rw-r--r--dev-python/notify2/notify2-0.3.1-r3.ebuild46
3 files changed, 0 insertions, 63 deletions
diff --git a/dev-python/notify2/Manifest b/dev-python/notify2/Manifest
deleted file mode 100644
index b6fa9fc229af..000000000000
--- a/dev-python/notify2/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST notify2-0.3.1.tar.gz 17792 BLAKE2B 649df1934d1fffb97dabbf2f483204c55427fbede851840d642da2e4e62a9bda9d49670e60f5b2cda36b62ee47b7d0cd861d757d338867547dce3c7d61ddf7b4 SHA512 0b69a64e0a7e4955ee767c975db92c5c60d28c0e54f77498cfb98390771a8f536631fc34e42b5c46c138dfa1054b5516a0809b8e3b0cb9237a39825ddb827109
diff --git a/dev-python/notify2/metadata.xml b/dev-python/notify2/metadata.xml
deleted file mode 100644
index c78716b9c9a7..000000000000
--- a/dev-python/notify2/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- </maintainer>
- <maintainer type="person">
- <email>prometheanfire@gentoo.org</email>
- <name>Matthew Thode</name>
- </maintainer>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="bitbucket">takluyver/pynotify2</remote-id>
- <remote-id type="pypi">notify2</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/notify2/notify2-0.3.1-r3.ebuild b/dev-python/notify2/notify2-0.3.1-r3.ebuild
deleted file mode 100644
index 9a44a1d65e46..000000000000
--- a/dev-python/notify2/notify2-0.3.1-r3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# 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_{13..14} )
-
-inherit distutils-r1 virtualx pypi
-
-DESCRIPTION="Python interface to DBus notifications"
-HOMEPAGE="
- https://bitbucket.org/takluyver/pynotify2/
- https://pypi.org/project/notify2/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86"
-IUSE="examples"
-
-RDEPEND="
- dev-python/dbus-python[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/pygobject[${PYTHON_USEDEP}]
- sys-apps/dbus[X]
- x11-libs/gdk-pixbuf[introspection]
- virtual/notification-daemon
- )
-"
-
-distutils_enable_tests unittest
-
-python_test() {
- virtx eunittest
-}
-
-python_install_all() {
- if use examples; then
- rm examples/notify2.py || die
- dodoc -r examples
- fi
- distutils-r1_python_install_all
-}