Package Details: listenbrainz-mpd 2.3.5-1

Git Clone URL: https://aur.archlinux.org/listenbrainz-mpd.git (read-only, click to copy)
Package Base: listenbrainz-mpd
Description: ListenBrainz submission client for MPD
Upstream URL: https://codeberg.org/elomatreb/listenbrainz-mpd
Keywords: listenbrainz mpd
Licenses: AGPL3
Submitter: elomatreb
Maintainer: elomatreb
Last Packager: elomatreb
Votes: 2
Popularity: 0.000001
First Submitted: 2022-02-25 21:03 (UTC)
Last Updated: 2024-04-20 13:31 (UTC)

Required by (0)

Sources (1)

Latest Comments

bhartshorn commented on 2023-01-31 18:52 (UTC)

Yeah, to be clear, I'm no rust or pkgbuild expert at all, I'm not certain that snippet is the best solution, just the first one that I found. Regardless, thanks for maintaining the package!

elomatreb commented on 2023-01-31 17:22 (UTC)

Mh, actually never mind the preceding comment, apparently the target selection for cargo fetch works differently than it does for cargo build, so it downloads dependencies for all platforms. I'll use the snippet provided.

elomatreb commented on 2023-01-31 17:05 (UTC)

@bhartshorn: I believe that's equivalent to just leaving off the --target option altogether, which seems like the best choice in any case.

bhartshorn commented on 2023-01-28 23:36 (UTC)

Hi, this package fails to build on Raspberry PI because line 16 hardcodes the architecture to "armv7h-unknown-linux-gnu" which is not a valid arch in rustc. The build returns this error:

error: Error loading target specification: Could not find specification for target "armv7h-unknown-linux-gnu". Run `rustc --print target-list` for a list of built-in targets

The cfddns package fixed the same error by using this instead:

cargo fetch --locked --target "$(rustc -vV | sed -n 's|host: ||p')"