Search Criteria
Package Details: xborder-git 1.0.0-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/xborder-git.git (read-only, click to copy) |
---|---|
Package Base: | xborder-git |
Description: | Active window border replacement for window managers. |
Upstream URL: | https://github.com/deter0/xborder |
Licenses: | The Unlicense |
Provides: | xborders |
Submitter: | ZappaBoy |
Maintainer: | ZappaBoy (alba4k) |
Last Packager: | ZappaBoy |
Votes: | 2 |
Popularity: | 0.000006 |
First Submitted: | 2022-08-24 12:08 (UTC) |
Last Updated: | 2024-06-03 12:59 (UTC) |
Dependencies (5)
- gtk3 (gtk3-no_deadkeys_underlineAUR, gtk3-classicAUR, gtk3-classic-xfceAUR, gtk3-patched-filechooser-icon-viewAUR)
- libwnck3
- python (python37AUR, python311AUR, python310AUR)
- python-cairo (python-cairo-gitAUR)
- git (git-gitAUR, git-glAUR) (make)
Latest Comments
ZappaBoy commented on 2024-06-03 13:01 (UTC)
@cpulley @A43 You're totally right. I'm so sorry for the delay. I've updated the packages right now. Let me know if there is any other issue about the PKGBUILD.
A43 commented on 2024-06-03 12:17 (UTC)
That would make more sense. Removing the line that runs pip in the and adding that package to the dependencies (and removing pip as one) in the PKGBUILD works perfectly.
cpulley commented on 2023-06-30 21:09 (UTC) (edited on 2023-06-30 21:10 (UTC) by cpulley)
I'm getting an error on prepare() about an externally managed environment. If I'm reading this right, it'd be better to just add python-cairo to depends, rather than adding it with pip, no?
ZappaBoy commented on 2022-08-25 20:29 (UTC) (edited on 2022-08-25 20:29 (UTC) by ZappaBoy)
@voidspawn this is not quite correct: only the
xborder
executable is installed in/usr/bin/
. Theversion.txt
is not copied in/usr/bin/
due to this is not the right location for it.So given the fact that
version.txt
is not in the same directory of thexborder
executable that error is generated. Even if the file is moved in.local/xborder/
or.cache/xborder/
the error will be triggered because of the code inserted in the executable.The solution is to change the way the executable look for the
version.txt
file or simply remove the file and put the version somewhere else.Please refer to that issue: #20
voidspawn commented on 2022-08-25 17:15 (UTC)
this package install the bin file in /usr/bin/ as it can't write to that folder, it can't save the version.txt, maybe write this to .local/xborder/ or .cache/xborder/
ZappaBoy commented on 2022-08-24 21:14 (UTC)
@BachoSeven thank you for pointing that out to me. I've updated the makedepends with
python-pip
.BachoSeven commented on 2022-08-24 20:14 (UTC)
@ZappaBoy This package should
makedepend
onpython-pip
, since you use it in theprepare
function.