From 9968837afdb2554e8d0137e7d9be211380ff5f58 Mon Sep 17 00:00:00 2001 From: Terin Stock Date: Tue, 24 Feb 2026 01:04:45 +0100 Subject: dev-util/mise: add 2026.2.19, drop 2026.2.4 --- dev-util/mise/Manifest | 4 +-- dev-util/mise/mise-2026.2.19.ebuild | 63 +++++++++++++++++++++++++++++++++++++ dev-util/mise/mise-2026.2.4.ebuild | 63 ------------------------------------- 3 files changed, 65 insertions(+), 65 deletions(-) create mode 100644 dev-util/mise/mise-2026.2.19.ebuild delete mode 100644 dev-util/mise/mise-2026.2.4.ebuild diff --git a/dev-util/mise/Manifest b/dev-util/mise/Manifest index 6214e96..5ef9d32 100644 --- a/dev-util/mise/Manifest +++ b/dev-util/mise/Manifest @@ -1,2 +1,2 @@ -DIST mise-2026.2.4-vendor.tar.xz 93082980 BLAKE2B 22562bbe5cd69d30a6657e39efc677d3333605241fa963bd73bc58e5e69430bcab0f3bcaa98abd26b3ef36d1fb72a3bdd31a84bf646053a420c3e01328dd35f7 SHA512 7bd5e30452fa905ee9402ffac7dcadb407ea5af13586fe91f0815cc4b181767d811bf363bec4f1f7286380759efdd7193c1c18dc97a36b176550ce7170e0755b -DIST mise-2026.2.4.tar.gz 6317733 BLAKE2B 2a2c84f46e77f7ef863958058ea493b21871a9a3c721c30f7389da80aeb97c473b18d08e7936d4714d187be3530bcbfd1a7bb25674fcc53e182213d8d498394a SHA512 7e5e10aaf5b280b596d4d6ddf1cb1a83e05f98597e8a765e96addab9d5724a07206bbd47354eae7169fa31c2565da396d90aafeef76ec63be7c69568b087ec33 +DIST mise-2026.2.19-vendor.tar.xz 92759108 BLAKE2B ad7631a0fb161b2586663e33cff9c737f1101cceaf145ae65a754ae23b214215524e853b3bdf6e30ccda6a5e84d31f799d4623121ed7ef7c700fd71a9137b08b SHA512 61ca74cdb92f96ef2154334db6ead8ff1bfbf50fadfc2c7a9f3cd9a1d91ae0547bd7f3e0cf4bb47f4ff648c244cbaa7473b45a202e118b1e92b3d5fe1651b1a9 +DIST mise-2026.2.19.tar.gz 6378769 BLAKE2B fb486b00e113a1ec395624006dad901a6ec1e5539e7bcfba83c20adea8e051f7ceae33168ec4e1425080c7ab82944b4d9f599a70fb121bde6834cf24d290d4da SHA512 265e28f28199f187daebf522235ca94f995ca60ac90b8623d66ebe34f09200aa758df2c8a46f06bcd7627897bfa0cfae5e075b2013ce3b20b5aca50ee4d9e66a diff --git a/dev-util/mise/mise-2026.2.19.ebuild b/dev-util/mise/mise-2026.2.19.ebuild new file mode 100644 index 0000000..63cd62a --- /dev/null +++ b/dev-util/mise/mise-2026.2.19.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CRATES=" " +RUST_MIN_VER="1.89.0" +inherit cargo greadme + +DESCRIPTION="The front-end to your dev env" +HOMEPAGE="https://mise.jdx.dev" +SRC_URI="https://github.com/jdx/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://share.terinstock.com/${P}-vendor.tar.xz " + +LICENSE="MIT" +# Dependent crate licenses +LICENSE+=" + Apache-2.0 BSD-2 BSD CDLA-Permissive-2.0 ISC MIT MPL-2.0 openssl + Unicode-3.0 ZLIB BZIP2 +" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-libs/openssl:= +" +DEPEND="${RDEPEND}" + +src_compile() { + cargo_src_compile + + mkdir shell-init || die + local -x PATH="$(cargo_target_dir):${PATH}" + for shell in bash zsh fish elvish pwsh; do + mise activate ${shell} > "shell-init/${shell}" || die + done +} + +src_install() { + cargo_src_install + + doman man/man1/mise.1 + + # Disable self-update functionality + insinto /usr/lib/mise + doins "${FILESDIR}"/mise-self-update-instructions.toml + + # Enable paranoid mode system-wide + insinto /etc/mise + doins "${FILESDIR}"/config.toml + + insinto "/usr/share/${PN}" + doins -r shell-init + + greadme_stdin <<-EOF + Gentoo installs mise's shell-init code under + /usr/share/mise/shell-init/ + Therefore, instead of using, e.g. 'eval \"\$(mise activate)\"' in + your .zshrc you can put \"source /usr/share/mise/shell-init/zsh\" + there, which avoids the cost of forking a process. Although mise + does that a lot anyways. +EOF +} diff --git a/dev-util/mise/mise-2026.2.4.ebuild b/dev-util/mise/mise-2026.2.4.ebuild deleted file mode 100644 index 63cd62a..0000000 --- a/dev-util/mise/mise-2026.2.4.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -CRATES=" " -RUST_MIN_VER="1.89.0" -inherit cargo greadme - -DESCRIPTION="The front-end to your dev env" -HOMEPAGE="https://mise.jdx.dev" -SRC_URI="https://github.com/jdx/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -SRC_URI+=" https://share.terinstock.com/${P}-vendor.tar.xz " - -LICENSE="MIT" -# Dependent crate licenses -LICENSE+=" - Apache-2.0 BSD-2 BSD CDLA-Permissive-2.0 ISC MIT MPL-2.0 openssl - Unicode-3.0 ZLIB BZIP2 -" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND=" - dev-libs/openssl:= -" -DEPEND="${RDEPEND}" - -src_compile() { - cargo_src_compile - - mkdir shell-init || die - local -x PATH="$(cargo_target_dir):${PATH}" - for shell in bash zsh fish elvish pwsh; do - mise activate ${shell} > "shell-init/${shell}" || die - done -} - -src_install() { - cargo_src_install - - doman man/man1/mise.1 - - # Disable self-update functionality - insinto /usr/lib/mise - doins "${FILESDIR}"/mise-self-update-instructions.toml - - # Enable paranoid mode system-wide - insinto /etc/mise - doins "${FILESDIR}"/config.toml - - insinto "/usr/share/${PN}" - doins -r shell-init - - greadme_stdin <<-EOF - Gentoo installs mise's shell-init code under - /usr/share/mise/shell-init/ - Therefore, instead of using, e.g. 'eval \"\$(mise activate)\"' in - your .zshrc you can put \"source /usr/share/mise/shell-init/zsh\" - there, which avoids the cost of forking a process. Although mise - does that a lot anyways. -EOF -} -- cgit v1.3