dev-util/tokei - 9999 (myov)

Search

Install

Install this version:

emerge -a =dev-util/tokei-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-util/tokei-9999

Or alternatively:

emerge --autounmask-write -a =dev-util/tokei-9999

Package Information

Description:
Displays statistics about Your code - files, comments, and blanks
Homepage:
https://github.com/XAMPPRocky/tokei/
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

RUST_MIN_VER="1.88.0"

inherit cargo git-r3

DESCRIPTION="Displays statistics about Your code - files, comments, and blanks"
HOMEPAGE="https://github.com/XAMPPRocky/tokei/"

EGIT_REPO_URI="https://github.com/XAMPPRocky/${PN}"
EGIT_BRANCH="master"

LICENSE="MIT"
SLOT="0"

QA_FLAGS_IGNORED='.*'

src_unpack() {
	git-r3_src_unpack
	cargo_live_src_unpack
}

src_compile() {
	cargo_src_compile --frozen --verbose --bin "${PN}"
}

src_install() {
	cargo_src_install
	einstalldocs
}

Inherited Eclasses