-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net-voip/discover-overlay: add 0.7.8
Signed-off-by: Nicola Smaniotto <[email protected]>
- Loading branch information
1 parent
cb3adcc
commit 210fcea
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST discover-overlay-0.6.9.gh.tar.gz 103339 BLAKE2B dec639ac361146bcf4d7951193163226bb19a71ab0614aa8facd5014c1d4ce58f8aa2ac26fe6edde4944c76aa3fb749a44b72385d769ffd8aaec52c112f00bdb SHA512 6cc1196fcfc86a60f0fc1bbd073c5b531813862412a1c9ac10edcb2311d7c4f623aa4fc8c271398b7a781b14186967d00edbc2ab50f3e2a9199873884b22bec9 | ||
DIST discover-overlay-0.7.4.gh.tar.gz 112860 BLAKE2B cb812473be6d0d0a948ed590d06b932b81bbaf83fc81501ec3c0890e824456eb33b5f542f11244729b28e5fab432e11ebde1bb01f70340336fb63885ce2ba798 SHA512 6b0f75ee42f47ebb99b83d1db5e9384669d930c1b1f77dd88bec4f63c497c30fd7d4843d73423ae22e60be5764a525153e6286236dcb62e80939227cbd5ff3f8 | ||
DIST discover-overlay-0.7.8.gh.tar.gz 115082 BLAKE2B a0b195c01d4349d095a8b900cd84ed6e2c8cb502b5568a5b88dd690baa21e8c381f39146056b3009da5fa3fa8685ad328df8f5d0fbeb1f8d42cd7760deace1ac SHA512 10fbe0f20c794990e44e3f07fc8d20bad41a680dfe39813b903a22316416f7b0c0a665fc4e6ecca07108d6db4bfd0512adc48e8919a8adf994846e1b639a8ea1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{10..12} ) | ||
DISTUTILS_USE_PEP517=setuptools | ||
|
||
inherit distutils-r1 xdg | ||
|
||
DESCRIPTION="Yet another Discord overlay for Linux written in Python using GTK3" | ||
HOMEPAGE="https://github.com/trigg/Discover" | ||
SRC_URI="https://github.com/trigg/Discover/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" | ||
S="${WORKDIR}/Discover-${PV}" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
IUSE="wayland" | ||
|
||
RDEPEND=" | ||
>=dev-python/pygobject-3.22[${PYTHON_USEDEP}] | ||
dev-python/websocket-client[${PYTHON_USEDEP}] | ||
dev-python/pyxdg[${PYTHON_USEDEP}] | ||
dev-python/requests[${PYTHON_USEDEP}] | ||
dev-python/pillow[${PYTHON_USEDEP}] | ||
dev-python/python-xlib[${PYTHON_USEDEP}] | ||
dev-python/pulsectl-asyncio[${PYTHON_USEDEP}] | ||
wayland? ( gui-libs/gtk-layer-shell[introspection(+)] ) | ||
" |