app-admin/blahajdots: add 0.7.0

Signed-off-by: Violet Purcell <vi@vimproved.dev>
This commit is contained in:
Violet Purcell
2026-07-16 10:21:19 -04:00
parent bd43501870
commit fbb7a29d32
2 changed files with 50 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST blahajdots-0.6.1.tar.xz 9830624 BLAKE2B eb1587d437a66b4e196815f0499ccf8d73a4ebe9109a3fc0e65869f4ed565f4e68fdd9ebba3bd4151795b1b2255240e007383044b2edb1e2882240b27701ff19 SHA512 cdf4a603f332431086b9bfbab1bd75a8f8cbfede41a58dc48a3d066457b8710fc1cdb865cb0836c27e6a9e4ae8b4cd620295428bcd1ec25f20b6fef99f8dce51
DIST blahajdots-0.7.0.tar.xz 13925352 BLAKE2B 450e0195f3b961170706bec56b50ec60555afabbe329fd110779a222093568936958186f8cdd1ccd0c9fccbf5a44a858ae3905ee87a36aab6bbe9de06fbf20c6 SHA512 9a01413c72efddf54941990596a4801fddc3fabbdb79dbdf597820c41ab03cec1783f392e56b25efa550365153eab9c01a0d3b819cc6d22b9ea82fc9d015cf24

View File

@@ -0,0 +1,49 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
RUST_MIN_VER="1.92.0"
inherit cargo optfeature
DESCRIPTION="Bespoke dotfile management for sharkgirls"
HOMEPAGE="https://codeberg.org/vimproved/blahajdots"
if [[ "${PV}" = "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://codeberg.org/vimproved/blahajdots.git"
else
SRC_URI="https://codeberg.org/vimproved/blahajdots/releases/download/v${PV}/${P}.tar.xz"
KEYWORDS="~amd64"
fi
LICENSE="GPL-3+"
# Dependent crate licenses
LICENSE+=" Apache-2.0 MIT MPL-2.0 Unicode-3.0 ZLIB"
SLOT="0"
DEPEND="dev-libs/glib:2"
RDEPEND="${DEPEND}"
QA_FLAGS_IGNORED="usr/bin/blahajdots"
src_unpack() {
if [[ "${PV}" = "9999" ]]; then
git-r3_src_unpack
cargo_live_src_unpack
else
cargo_src_unpack
fi
}
src_install() {
cargo_src_install
insinto /usr/share/blahajdots
doins -r builtins/*
}
pkg_postinst() {
optfeature "gsettings backend support" gnome-base/gsettings-desktop-schemas
}