Files
guru/net-im/discordo/discordo-9999.ebuild
ingenarel 7a5764abf4 */*: BSD-3-Clause -> BSD
Because the spdx identifier for for BSD-3-Clause is `BSD-3-Clause`, and
gentoo uses `BSD` in their /licenses, there was a misunderstanding by
me, this commit should fix this

sources:
 - https://opensource.org/license/bsd-3-clause
 - aa3e0fb07e/licenses/BSD

Signed-off-by: ingenarel <ingenarelitems@gmail.com>
2025-12-02 23:08:16 +06:00

61 lines
1.5 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="A lightweight, secure, and feature-rich Discord TUI client. "
HOMEPAGE="https://github.com/ayn2op/discordo"
if [[ "${PV}" == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/ayn2op/$PN.git"
src_unpack() {
git-r3_src_unpack
go-module_live_vendor
}
else
# use this only for 0pre_YYYYMMDD builds, otherwise, keep it empty.
# needs to be changed if you're making a new 0pre_YYYYMMDD build
GIT_COMMIT=""
# If another person updates it, be sure to change this line to your own depfile link
SRC_URI="https://github.com/ingenarel/guru-depfiles/releases/download/${P}-deps.tar.xz/${P}-deps.tar.xz "
KEYWORDS="~amd64"
if [[ -n "$GIT_COMMIT" ]]; then
SRC_URI+="https://github.com/ayn2op/$PN/archive/$GIT_COMMIT.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${GIT_COMMIT}"
else
SRC_URI+="https://github.com/ayn2op/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
fi
fi
LICENSE="GPL-3"
# echo "# dependency licenses:"; printf 'LICENSES+=" '
# go-licenses report ./... 2>/dev/null | awk -F ',' '{ print $NF }' | sort --unique | tr '\n' ' '; echo '"'
# dependency licenses:
LICENSES+=" Apache-2.0 BSD-2-Clause BSD GPL-3.0 ISC MIT "
SLOT="0"
BDEPEND="
>=dev-lang/go-1.25.3
x11-libs/libnotify
"
DOCS=( README.md internal/config/config.toml )
src_compile() {
CGO_ENABLED=0 ego build -o "bin/$PN"
}
src_install() {
dobin "bin/$PN"
einstalldocs
}