gui-apps/azote: version bump to 1.9.2

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
This commit is contained in:
Aisha Tammy
2021-12-23 16:51:31 +00:00
parent 4ca667a946
commit f8ccd82546
2 changed files with 68 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST azote-1.9.0.tar.gz 617084 BLAKE2B 6c3cae1f8bcb1be45741dc969c6dec3dfc5df526c3208017d7f31535eb029051ccc3a2549a07bacb1bc3aceaa211a28e23cbd3d6b8605692742b7421e899ddba SHA512 21db7e08e4967235976101f3158fcab83c2896b3a74ab0ea01c6c942dced4dafd68658a8ece381f3813b39bcde09ab5adb50c41533a60bd2af50faa2f876ef38
DIST azote-1.9.1.tar.gz 618349 BLAKE2B 4449ebd42134c5429f4486aa2526e2c6b9e5ec8943f872a9bcadd942c6629e3095f71f5759f64e1011793282ffb99cb0bdbbe0c0ffdd0305f2fcdcb70dbfe0b0 SHA512 aa9264172e43b824cd051c2ae86c7cd572821721d0bf1db0f916707bc48d3674fb90c2039c56afd724e9a975fb02a13528c7ae9145bd0ea767b908a230a133c2
DIST azote-1.9.2.tar.gz 4566337 BLAKE2B d2091ee679cdb1725fdee14a758c20ab5d689586eddb9d9f38f3085d9b31fb87a77474b2382f1b6ba6b94208dd624c270fa678007c122f09671c30b36dd54728 SHA512 aa2b45966e13a0bc9196e40bd3fbda0e0ebb5105690e938df33b72221ef2502511de62611e3423bf102f7e332a0fe889b545e20c41fa28b3264da9521fb6ef92

View File

@@ -0,0 +1,67 @@
# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8..9} )
inherit distutils-r1 desktop
DESCRIPTION="wallpaper manager for wlroots compositors"
HOMEPAGE="https://github.com/nwg-piotr/azote"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/nwg-piotr/azote"
else
SRC_URI="https://github.com/nwg-piotr/azote/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="GPL-3 BSD"
SLOT="0"
IUSE="simple-colorpicker imagemagick wayland X yaml"
RDEPEND="
dev-cpp/gtkmm:3.0
dev-python/pillow
dev-python/pygobject:3=
dev-python/send2trash
simple-colorpicker? (
X? (
media-gfx/maim
x11-misc/slop
)
wayland? (
gui-apps/grim
gui-apps/slurp
)
)
imagemagick? (
media-gfx/imagemagick[jpeg,png,svg,X?]
)
wayland? (
gui-apps/swaybg
gui-apps/wlr-randr
)
X? (
media-gfx/feh
x11-apps/xrandr
)
yaml? ( dev-python/pyyaml )
"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
python_install_all() {
distutils-r1_python_install_all
cd "${S}"
dobin dist/azote
domenu dist/azote.desktop
insinto /usr/share/azote
doins dist/azote.svg dist/indicator_{active,attention}.png
insinto /usr/share/licenses/azote
doins LICENSE-COLORTHIEF
}