mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
update: - dependency tarball - licensing: main project license and go module licenses are seperated now - add minimum go version: the current ::gentoo is way updated than the required versions, however it still doesn't hurt to put it, because it's a reminder to check the minimum version on the next bump - add DOCS: just adds the readme - remove unnecessary pkg_postint() since the readme is added to DOCS, and because hydroxide --help shows you what to do fix the DeprecatedEclassFunction warning by migrating makeopts_jobs to get_makeopts_jobs Signed-off-by: ingenarel (NeoJesus) <ingenarel_neojesus@disroot.org>
56 lines
1.5 KiB
Bash
56 lines
1.5 KiB
Bash
# Copyright 2022-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit go-module multiprocessing
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/emersion/hydroxide.git"
|
|
else
|
|
inherit verify-sig
|
|
SRC_URI="https://github.com/emersion/${PN}/releases/download/v${PV}/${P}.tar.gz
|
|
verify-sig? ( https://github.com/emersion/${PN}/releases/download/v${PV}/${P}.tar.gz.sig )
|
|
https://github.com/ingenarel/guru-depfiles/releases/download/${P}-deps.tar.xz/${P}-go-mod-deps.tar.xz ->
|
|
${P}-deps.tar.xz
|
|
"
|
|
# you can either use -go-mod-deps or -vendor-deps for the file
|
|
# vendor-deps are small, but may not work for some packages/version
|
|
# go-mod-deps are LARGE, but will most likely always work
|
|
VERIFY_SIG_OPENPGP_KEY_PATH="/usr/share/openpgp-keys/emersion.asc"
|
|
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-emersion )"
|
|
KEYWORDS="~amd64"
|
|
fi
|
|
|
|
DESCRIPTION="A third-party, open-source ProtonMail CardDAV, IMAP and SMTP bridge"
|
|
HOMEPAGE="https://github.com/emersion/hydroxide"
|
|
|
|
LICENSE="MIT"
|
|
#gentoo-go-license hydroxide-0.2.31.ebuild
|
|
LICENSE+=" BSD MIT "
|
|
SLOT="0"
|
|
BDEPEND+=" >=dev-lang/go-1.24.0"
|
|
DOCS=( README.md )
|
|
|
|
src_unpack() {
|
|
if [[ ${PV} == *9999* ]]; then
|
|
git-r3_src_unpack
|
|
go-module_live_vendor
|
|
else
|
|
if use verify-sig; then
|
|
verify-sig_verify_detached "${DISTDIR}/${P}".tar.gz{,.sig}
|
|
fi
|
|
go-module_src_unpack
|
|
fi
|
|
}
|
|
|
|
src_compile() {
|
|
ego build -v -x -p "$(get_makeopts_jobs)" ./cmd/hydroxide
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
dobin "${PN}"
|
|
}
|