1
0
Fork 0

gui-apps/waybar-tooltips: add 0.0.7

Signed-off-by: Horea Christian <chr@chymera.eu>
This commit is contained in:
Horea Christian 2023-01-19 10:12:10 -05:00
parent fbd785b314
commit a5ba4ddcfa
No known key found for this signature in database
GPG Key ID: 161C0BE6255333D3
2 changed files with 43 additions and 0 deletions

View File

@ -2,3 +2,4 @@ DIST waybar-tooltips-0.0.3.gh.tar.gz 14556 BLAKE2B b3432acaf5ecaf4e8239b927bb72f
DIST waybar-tooltips-0.0.4.gh.tar.gz 14582 BLAKE2B 262d25238eecad46c9800cb94eba4aae19b2d169c42f5055d427b0aef9369ad73236d6446750f55aa4ee1abdd7cc5ee87b9070e5c2a9abea9e924681c1d6d269 SHA512 915356a7f203e7c2514871b0a4952d263ad651abe33ce083711cc5b5abc9f8e9f628d7393df355f20cdde9ba6ebd82dc5482a6d44775b782896581526cb21540
DIST waybar-tooltips-0.0.5.gh.tar.gz 14684 BLAKE2B 1b62e2419aa93dc8cd831ae42fbb9f61cff812de2db6d9416c0d4bf5eb0d1efea7f81f206f31fbb79c7ef461191bc65e2d01eb8324d5e3806b40aad1a8f00b7e SHA512 8cbacb75a0dc4ef893a24cd9a0bd4fec3e5d4c39fabd050816260aa01ca5d65f9f3f87b0b5c650785f6691ca92bd856f3c3add9f2a1c3a8622f475ab2570d72b
DIST waybar-tooltips-0.0.6.gh.tar.gz 14767 BLAKE2B 2288d6cd795f31df3305d0b2bdc0c553f8e6aca00a3eab6bb3a30032a52d3f6a9708ef3f99241ca660745de3ac93b0c8794d5bd8a957e85ddaba0d998b42edb5 SHA512 1f2893ccbd96fd76edc7340e881f657ad882dfda38dadd64e89d28dbfddd1a3501ceba7b1238452207ec9bcbbd75a8f9ca80f62137d913e5d35c48941be0dcf5
DIST waybar-tooltips-0.0.7.gh.tar.gz 14852 BLAKE2B 4acb77bca3cc63fadd22203f42213c797831cc8a3450251a50d0e8712d4600c63f9ccb52a7c6d878b98170fe5ec49f1d8779a7544fda159d2ab3d87df219b179 SHA512 3ed76d0ef4dac6795b172b0209e3650d81b40b290dcb6af70c389ed76dbe2dbb989f0d73ecdcbbb06480b4e2933be9169284496c2ad4644b1de69db2e6921011

View File

@ -0,0 +1,42 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..10} )
inherit python-r1
DESCRIPTION="Tooltips for Waybar"
HOMEPAGE="https://github.com/TheChymera/waybar-tooltips/"
SRC_URI="https://github.com/TheChymera/waybar-tooltips/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
KEYWORDS="~amd64 ~x86"
LICENSE="GPL-3"
IUSE="khal +weather"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
SLOT="0"
RDEPEND="
${PYTHON_DEPS}
media-fonts/fontawesome
khal? (
app-misc/khal[${PYTHON_USEDEP}]
)
weather? (
app-misc/ansiweather
)
"
khal_python_install() {
python_doscript "${S}/bin/waybar-tooltip-khal.py"
}
src_install() {
dobin "${S}/bin/waybar-tooltip-recording"
if use khal; then
python_foreach_impl khal_python_install
fi
if use weather; then
dobin "${S}/bin/waybar-tooltip-weather"
fi
}