app-admin/blahajdots: drop 0.6.1

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

View File

@@ -1,2 +1 @@
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

@@ -1,57 +0,0 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
RUST_MIN_VER="1.85.0"
inherit cargo
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-with-LLVM-exceptions MIT Unicode-DFS-2016
|| ( Apache-2.0 Boost-1.0 )
"
SLOT="0"
IUSE="+gtk"
DEPEND="gtk? ( dev-libs/glib:2= )"
RDEPEND="${DEPEND}"
QA_FLAGS_IGNORED="usr/bin/blahaj"
src_unpack() {
if [[ "${PV}" = "9999" ]]; then
git-r3_src_unpack
cargo_live_src_unpack
else
cargo_src_unpack
fi
}
src_configure() {
local myfeatures=(
$(usev gtk gsettings)
)
cargo_src_configure --no-default-features
}
src_install() {
cargo_src_install
insinto /usr/share/blahajdots
doins -r builtins/*
}