Update Version

This commit is contained in:
Emma Nora Theuer 2024-06-20 18:02:00 +02:00
parent c9b76190f0
commit 55a753ac20
2 changed files with 1 additions and 43 deletions

View file

@ -1 +1 @@
DIST wallman-1.3.3.1.tar.gz 8099 BLAKE2B 67d03d3545517301c1cbddfc369a9f58b27b9ab273d57dc0725efeff024518ce456d7afe7742e7a3fb01008eebf4601c5a53e35eb57257228e4f083a249b7bbb SHA512 113d69f8252f3c01638a1fb2254b43f111a287302d649685ec3029135ea028a176777848fd0466dad737a61b306990a792193f1dac5b0bef801dd72e6819531c
DIST wallman-1.3.3.2.tar.gz 8091 BLAKE2B 4db021c7256769ecd6cc3c91cbfebda596e4e4f5b99b6e006a5a91a15759283fbf52e680a741035efbb6324f0357532ae78cefd509c9c56df236f05e32f52183 SHA512 5a581a0418e73a1324deaab13470285f8d131552deb00503bf43d4fc1fae1d85e9c59a9e1b7dff980677923ae1b5933dc3becb1bf163ebbc0f81ff767cb36675

View file

@ -1,42 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the MIT License
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11,12} )
inherit distutils-r1 pypi
DESCRIPTION="A python program that sets dynamic wallpapers on minimalistic Window Managers."
HOMEPAGE="https://git.entheuer.de/emma/wallman/"
SRC_URI="$(pypi_sdist_url "${PN^}" "${PV}")"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-python/APScheduler[${PYTHON_USEDEP}]
media-gfx/feh
x11-libs/libnotify
"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
"
python_prepare_all() {
distutils-r1_python_prepare_all
}
python_compile() {
distutils-r1_python_compile -j1
}
python_install() {
distutils-r1_python_install
# Add a symlink to make the scrupt callable from the commandline
local scriptname="wallman.py"
local target="/usr/bin/wallman"
local scriptpath="$(python_get_sitedir)/${scriptname}"
fperms +x "${scriptpath}"
dosym "$(python_get_sitedir)/${scriptname}" "${target}"
}