Compare commits
No commits in common. "6f1d11a494a8740ddad4fe8eb2515e5bf482fd1d" and "c0c83246e3dd50512025b947167e1e37ec0b7815" have entirely different histories.
6f1d11a494
...
c0c83246e3
2 changed files with 6 additions and 11 deletions
|
@ -1 +1 @@
|
|||
DIST wallman-1.4.2.4.tar.gz 871198 BLAKE2B 02ccfa69e14b73eff667ecf4707fcebd08ba63362a6e25ae77bef96ff77d8723e417e14e8586f2b8a9e0b23f29a1be8b7e1c0cab10a7f242dc8a7b2fe418cfe4 SHA512 87f2cad40f6db418dc4a94a259b4c491e69fc0f7bdf121196679270492227449f79751f40467d6f50e4bf7598e38d78853818ac9df8cfa96a7dc34698128ac71
|
||||
DIST wallman-1.4.2.1.tar.gz 862745 BLAKE2B 47c54bce3d783a3865ef1cec48a0905a1ad31412baed25db526b5febedc7ba37c553cc44468c7e94e8782d58d49b210aaf0a1176ad488e9053838b48f2e0f10e SHA512 ccca96a588879c8609944a331d7b35b5f5c049e139f671cc2ad97c17e4b957e902787050483798fbd935ae09e31ce2ea3bdc450d78de5c21a061ced1f88d15d7
|
||||
|
|
|
@ -18,7 +18,6 @@ KEYWORDS="~amd64 ~x86"
|
|||
RDEPEND="
|
||||
dev-python/APScheduler[${PYTHON_USEDEP}]
|
||||
dev-python/pillow[${PYTHON_USEDEP}]
|
||||
dev-python/pystray[${PYTHON_USEDEP}]
|
||||
media-gfx/feh
|
||||
x11-libs/libnotify
|
||||
"
|
||||
|
@ -29,13 +28,9 @@ BDEPEND="
|
|||
dev-python/certifi[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
python_prepare_all() {
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
#src_prepare() {
|
||||
# mv src/* . || die "Failed to move source files"
|
||||
#}
|
||||
python_compile() {
|
||||
distutils-r1_python_compile -j1
|
||||
}
|
||||
|
@ -46,7 +41,10 @@ python_install() {
|
|||
local target="/usr/bin/wallman"
|
||||
local scriptpath="$(python_get_sitedir)/${scriptname}"
|
||||
fperms +x "${scriptpath}"
|
||||
dosym "${scriptpath}" "${target}"
|
||||
dosym "$(python_get_sitedir)/${scriptname}" "${target}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# Copy files into /etc/wallman
|
||||
dodir /etc/wallman
|
||||
insinto /etc/wallman
|
||||
|
@ -61,9 +59,6 @@ python_install() {
|
|||
newins "${S}/distfiles/wallman.desktop" "wallman.desktop"
|
||||
}
|
||||
|
||||
#src_install() {
|
||||
#}
|
||||
|
||||
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"
|
Loading…
Reference in a new issue