Package Base Details: leftwm-git

Git Clone URL: https://aur.archlinux.org/leftwm-git.git (read-only, click to copy)
Submitter: lexchilds
Maintainer: lexchilds (lex148, VuiMuich, hertg, mautam)
Last Packager: mautam
Votes: 10
Popularity: 0.48
First Submitted: 2019-05-29 13:05 (UTC)
Last Updated: 2024-04-02 05:40 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

takagiy commented on 2022-09-24 19:46 (UTC)

I was needed to add +nightly flag to suppress errors about rustc version.

==> Starting build()...
error: package `time v0.3.14` cannot be built because it requires rustc 1.59.0 or newer, while the currently active rustc version is 1.56.0
==> ERROR: A failure occurred in build().
    Aborting...
build() {
  cd $pkgname
  cargo +nightly build --release
}

afekete commented on 2022-09-10 16:16 (UTC)

@hertg Thanks! I reinstalled, it works fine now.

hertg commented on 2022-09-10 14:34 (UTC)

@afekete I updated it just as you posted your comment :)

afekete commented on 2022-09-10 14:31 (UTC)

The PKGBUILD should be updated, lefthk-worker should also be copied to /usr/bin

hrehfeld commented on 2021-12-16 16:43 (UTC)

Still doesn't build with the same error that I posted below. :(

earlybird commented on 2021-12-14 09:16 (UTC)

Can you change the pkgversion to a code that keeps track of the very last git push pkgver() { cd "$pkgname" ( set -o pipefail git describe --long 2>/dev/null | sed 's/([^-]*-g)/r\1/;s/-/./g' || printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" ) } see https://wiki.archlinux.org/title/VCS_package_guidelines#Git

hrehfeld commented on 2021-10-26 18:06 (UTC)

error[E0658]: use of unstable library feature 'str_split_once': newly added
   --> leftwm-core/src/utils/child_process.rs:213:14
    |
213 |         line.split_once('=')
    |              ^^^^^^^^^^
    |
    = note: see issue #74773 <https://github.com/rust-lang/rust/issues/74773> for more information

error: aborting due to previous error

For more information about this error, try `rustc --explain E0658`.
error: could not compile `leftwm-core`

ronin commented on 2021-06-28 07:59 (UTC)

remove i686 as supported arch :)

haawda commented on 2021-01-06 20:20 (UTC)

Hello lexchilds,

never mind. The PKGBUILD still has an issue, but this time it is my mistake:

Last line

install -Dm644 "$srcdir"/$pkgname/leftwm.desktop "$pkgdir"/usr/share/xsessions

should be

install -Dm644 "$srcdir"/$pkgname/leftwm.desktop "$pkgdir"/usr/share/xsessions/leftwm.desktop

otherwise there will be a file conflict, because a directory with that name will most probably already exist.

lexchilds commented on 2021-01-06 19:44 (UTC)

haawda thanks for your help! Sorry I missed your message I was out for Christmas.