Package Details: mise 2024.11.6-1

Git Clone URL: https://aur.archlinux.org/mise.git (read-only, click to copy)
Package Base: mise
Description: The front-end to your dev env
Upstream URL: https://github.com/jdx/mise
Licenses: MIT
Conflicts: rtx, rtx-bin
Provides: mise
Replaces: rtx
Submitter: jdx
Maintainer: jdx
Last Packager: jdx
Votes: 17
Popularity: 0.22
First Submitted: 2024-01-02 22:54 (UTC)
Last Updated: 2024-11-10 15:07 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

1 2 Next › Last »

Scattershot commented on 2024-10-05 16:48 (UTC) (edited on 2024-10-05 16:49 (UTC) by Scattershot)

Error installing mise-2024.10.0-1:

==> Starting build()...
error: process didn't exit successfully: `/home/user/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc -vV` (signal: 6, SIGABRT: process abort signal)
--- stderr
: CommandLine Error: Option 'disable-auto-upgrade-debug-info' registered more than once!
LLVM ERROR: inconsistency in registered CommandLine options

==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: mise-exit status 4
 -> Failed to install the following packages. Manual intervention is required:
mise - exit status 4

linduxed commented on 2024-08-30 03:05 (UTC)

Got this when trying to upgrade to 2024.8.15-1:

==> Starting prepare()...
error: failed to select a version for `mlua`.
    ... required by package `vfox v0.1.3`
    ... which satisfies dependency `vfox = "^0.1"` (locked to 0.1.3) of package `mise v2024.8.15 (/home/linduxed/.cache/yay/mise/src/mise-2024.8.15)`
versions that meet the requirements `^0.9` (locked to 0.9.9) are: 0.9.9

the package `vfox` depends on `mlua`, with features: `mlua_derive` but `mlua` does not have these features.
 It has an optional dependency with that name, but but that dependency uses the "dep:" syntax in the features table, so it does not have an implicit feature with that name.


failed to select a version for `mlua` which could resolve this conflict
==> ERROR: A failure occurred in prepare().
    Aborting...
 -> error making: mise-exit status 4
 -> Failed to install the following packages. Manual intervention is required:
mise - exit status 4

aorth commented on 2024-08-02 17:19 (UTC)

@barraponto that's common with rust projects. Try installing zram or buying more memory. See: https://wiki.archlinux.org/title/Zram

mkhl commented on 2024-05-01 07:37 (UTC)

Since completions require https://usage.jdx.dev/, a package for that would be super nice to have :)

Sacro commented on 2024-02-24 22:46 (UTC)

Fish completions should be moved to /usr/share/fish/vendor_completions.d/mise.fish

barraponto commented on 2024-02-18 12:41 (UTC)

Compilation is using a lot of memory in my machine. I mean, about 10GB+ memory on a 6-core Ryzen with 16GB available RAM. I sometimes see the compilation fail due to OOM errors.

alerque commented on 2024-01-19 22:16 (UTC)

Please only set conflicts on variant packages, and only against base package names. In other words this should not be marked as conflicts with mise-bin, only mise-bin should be marked to conflict with this. The package manager will resolve it from there including between other variant packages that don't necessarily reference each-other but to mutually conflict with the same base package name.

aorth commented on 2024-01-04 06:05 (UTC)

Thanks! The conflicts currently contains an illegal character (,).

inverse commented on 2024-01-03 20:56 (UTC)

rtx got rebranded to mise how's best to redirect to https://aur.archlinux.org/packages/mise

Sacro commented on 2023-05-27 19:24 (UTC)

Can we have something like

    mkdir -p "$pkgdir/usr/share/bash-completion/completions/"
    "$pkgdir/usr/bin/rtx" completion bash >"$pkgdir/usr/share/bash-completion/completions/rtx"

    mkdir -p "$pkgdir/usr/share/fish/completions/"
    "$pkgdir/usr/bin/rtx" completion fish >"$pkgdir/usr/share/fish/completions/rtx.fish"

    mkdir -p "$pkgdir/usr/share/zsh/site-functions/"
    "$pkgdir/usr/bin/rtx" completion zsh >"$pkgdir/usr/share/zsh/site-functions/_rtx"

in the package(), gives us completions!