From c0c83246e3dd50512025b947167e1e37ec0b7815 Mon Sep 17 00:00:00 2001 From: Emma Nora Theuer Date: Mon, 2 Sep 2024 13:57:43 +0200 Subject: [PATCH] Update version and introduce major new build commands --- .../app-misc/wallman/wallman-1.4.2.1.ebuild | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 distfiles/Gentoo/wallman/app-misc/wallman/wallman-1.4.2.1.ebuild diff --git a/distfiles/Gentoo/wallman/app-misc/wallman/wallman-1.4.2.1.ebuild b/distfiles/Gentoo/wallman/app-misc/wallman/wallman-1.4.2.1.ebuild new file mode 100644 index 0000000..da00f45 --- /dev/null +++ b/distfiles/Gentoo/wallman/app-misc/wallman/wallman-1.4.2.1.ebuild @@ -0,0 +1,65 @@ +# 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}] + dev-python/pillow[${PYTHON_USEDEP}] + media-gfx/feh + x11-libs/libnotify +" + +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/wheel[${PYTHON_USEDEP}] + dev-python/certifi[${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 script 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}" +} + +src_install() { + # Copy files into /etc/wallman + dodir /etc/wallman + insinto /etc/wallman + newins "${S}/sample_config.toml" "wallman.toml" + doins -r "${S}/icons/" "icons/" + # Create logfile directory + dodir /var/log/wallman + keepdir /var/log/wallman + fperms 0733 /var/log/wallman + # Copy .desktop file into the appropriate location + insinto /usr/share/applications + newins "${S}/distfiles/wallman.desktop" "wallman.desktop" +} + +pkg_postinst() { + elog "Wallman has been installed. A sample configuration file called wallman.toml is located in /etc/wallman. Copy that file into ~/.config/wallman/wallman.toml to configure wallman." + elog "A log file for Wallman can be found in /etc/log/wallman" +}