From 3573c14a0f7bac806b988e5d9a9a2442f8389d4d Mon Sep 17 00:00:00 2001 From: knotteye Date: Sat, 17 Apr 2021 20:47:42 -0500 Subject: [PATCH] Add ebuild for notify-py --- dev-python/notify-py/Manifest | 2 ++ dev-python/notify-py/notify-py-0.3.0.ebuild | 17 +++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 dev-python/notify-py/Manifest create mode 100644 dev-python/notify-py/notify-py-0.3.0.ebuild diff --git a/dev-python/notify-py/Manifest b/dev-python/notify-py/Manifest new file mode 100644 index 0000000..1c8af29 --- /dev/null +++ b/dev-python/notify-py/Manifest @@ -0,0 +1,2 @@ +DIST notify-py-0.3.0-src.tar.gz 10833039 BLAKE2B ac6164f5ac727dee4d88bc3a97e9ed934c45804e968c98f63116a34c204b847ec3e483488a9e519cd64e9c930b31ffee4c1a1ff02e59af6f67f7caabe292e17d SHA512 78fe68243af68eec760c3b29b8119465153067308ed4b0bbcc9285a4e7274f98b4ac71e42bb486676b0b8819286066329bfeb48a9f7489534c77ba769b34a6b1 +EBUILD notify-py-0.3.0.ebuild 524 BLAKE2B 35cb33dd6ad9e8be8af1de1079aebadaadc4cc70ef472de7bd15a0c0fa4df07e6f2de51bfcb8f5c44e53861e9555a2cb4640a2ecbb6da3a6c466011ad37af468 SHA512 6b3dc7480e5c97b57cf978b2c0a9099b63f2908ed1df38bc2c86d06b1338e68db7f8b77fa35f69c2e5acdb7de3899bcc714a5b35b4c8181cf24ef26f9815afa4 diff --git a/dev-python/notify-py/notify-py-0.3.0.ebuild b/dev-python/notify-py/notify-py-0.3.0.ebuild new file mode 100644 index 0000000..aa90320 --- /dev/null +++ b/dev-python/notify-py/notify-py-0.3.0.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="Cross platform desktop notifications for Python scripts and applications." +HOMEPAGE="https://ms7m.github.io/notify-py/" +SRC_URI="https://github.com/knotteye00/${PN}/archive/${PV}.tar.gz -> ${P}-src.tar.gz" +LICENSE="MIT" + +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86" +RDEPEND="$(python_gen_cond_dep 'dev-python/loguru[${PYTHON_USEDEP}]')"