app-misc/whalesay - 9999 (xbt573)

Search

Install

Install this version:

emerge -a =app-misc/whalesay-9999

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

autounmask =app-misc/whalesay-9999

Or alternatively:

emerge --autounmask-write -a =app-misc/whalesay-9999

Package Information

Description:
whale that can say anything you want.
Homepage:
https://github.com/omnitix/whalesay
License:
GPL-3

Ebuild Details

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

EAPI=8

CRATES="
"
inherit cargo

case ${PV} in
	9999*)
		inherit git-r3
		EGIT_REPO_URI="https://github.com/omnitix/whalesay"
		;;
	*)
		SRC_URI="https://github.com/omnitix/whalesay/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
		KEYWORDS="~amd64"
		;;
esac

DESCRIPTION="whale that can say anything you want."
HOMEPAGE="https://github.com/omnitix/whalesay"
SLOT="0"
LICENSE="GPL-3"

src_unpack() {
	if [[ "${PV}" == *9999* ]]; then
		git-r3_src_unpack
		cargo_live_src_unpack
	else
		cargo_src_unpack
	fi
}

Inherited Eclasses