mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-10 00:10:19 +03:00
150 lines
3.5 KiB
Bash
150 lines
3.5 KiB
Bash
# Copyright 2018-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit check-reqs go-module shell-completion
|
|
|
|
DESCRIPTION="Fast static HTML and CSS website generator"
|
|
HOMEPAGE="https://gohugo.io https://github.com/gohugoio/hugo"
|
|
SRC_URI="
|
|
https://github.com/gohugoio/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
|
https://dev.gentoo.org/~jayf/dist/${P}-vendor.tar.xz
|
|
"
|
|
|
|
# NOTE: To create the vendor tarball, run:
|
|
# `go mod vendor && cd .. && tar -caf ${P}-vendor.tar.xz ${P}/vendor`
|
|
|
|
LICENSE="Apache-2.0 BSD BSD-2 MIT MPL-2.0 Unlicense"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm64 ~loong ~riscv ~x86"
|
|
IUSE="+deploy doc +extended test"
|
|
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/docutils
|
|
dev-ruby/asciidoctor
|
|
)
|
|
"
|
|
RDEPEND="
|
|
extended? (
|
|
dev-libs/libsass:=
|
|
>=media-libs/libwebp-1.3.2:=
|
|
)
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
RESTRICT="!test? ( test )"
|
|
|
|
REQUIRED_USE="deploy? ( extended )"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-0.121.0-unbundle-libwebp-and-libsass.patch
|
|
)
|
|
|
|
_check_reqs() {
|
|
if [[ ${MERGE_TYPE} == binary ]] ; then
|
|
return 0
|
|
fi
|
|
|
|
if has test ${FEATURES}; then
|
|
CHECKREQS_DISK_BUILD="4G"
|
|
else
|
|
CHECKREQS_DISK_BUILD="1500M"
|
|
fi
|
|
check-reqs_${EBUILD_PHASE_FUNC}
|
|
}
|
|
|
|
pkg_pretend() {
|
|
_check_reqs
|
|
}
|
|
|
|
pkg_setup() {
|
|
_check_reqs
|
|
}
|
|
|
|
src_configure() {
|
|
if use extended; then
|
|
if use deploy; then
|
|
# per 5dd0ba00f79d5888c8d6d05d3327a74d15073a7b (upstream) this is
|
|
# the way to build fully extended with deploy support
|
|
export MY_BUILD_FLAGS="-tags extended,withdeploy"
|
|
else
|
|
export MY_BUILD_FLAGS="-tags extended"
|
|
fi
|
|
else
|
|
export MY_BUILD_FLAGS=""
|
|
fi
|
|
|
|
export CGO_ENABLED=1
|
|
export CGO_CFLAGS="${CFLAGS}"
|
|
export CGO_CPPFLAGS="${CPPFLAGS}"
|
|
export CGO_CXXFLAGS="${CXXFLAGS}"
|
|
export CGO_LDFLAGS="${LDFLAGS}"
|
|
|
|
default
|
|
}
|
|
|
|
src_prepare() {
|
|
# wants to run command that require network access
|
|
rm testscripts/commands/mod{,_vendor,__disable,_get,_get_u,_npm{,_withexisting}}.txt || die
|
|
|
|
# NOTE(JayF): Avoiding a hard depednency on sass tooling for tests. Even if
|
|
# installed, the tests still don't quite work.
|
|
rm resources/resource_transformers/tocss/dartsass/dartsass_integration_test.go || die
|
|
|
|
# TODO(JayF): Over half of the tests in these modules require network, and it's
|
|
# extremely likely more remote-depending tests will be added in the future.
|
|
# Ideally, we'd be less blunt in how we disable these tests.
|
|
rm tpl/tplimpl/shortcodes_integration_test.go || die
|
|
rm resources/resource_factories/create/create_integration_test.go || die
|
|
rm modules/client_test.go || die
|
|
|
|
# NOTE(JayF): Tests depend on reaching out to npm registry
|
|
rm internal/js/esbuild/batch_integration_test.go || die
|
|
|
|
default
|
|
}
|
|
|
|
src_compile() {
|
|
mkdir -pv bin || die
|
|
ego build -ldflags "-X github.com/gohugoio/hugo/common/hugo.vendorInfo=gentoo:${PVR}" \
|
|
${MY_BUILD_FLAGS} -o "${S}/bin/hugo"
|
|
|
|
bin/hugo gen man --dir man || die
|
|
|
|
mkdir -pv completions || die
|
|
bin/hugo completion bash > completions/hugo || die
|
|
bin/hugo completion fish > completions/hugo.fish || die
|
|
bin/hugo completion zsh > completions/_hugo || die
|
|
|
|
if use doc ; then
|
|
bin/hugo gen doc --dir doc || die
|
|
fi
|
|
}
|
|
|
|
src_test() {
|
|
if ! has_version -b virtual/pandoc ; then
|
|
elog "You're missing virtual/pandoc - some tests will be skipped."
|
|
fi
|
|
|
|
if ! has_version -b dev-ruby/asciidoctor ; then
|
|
elog "You're missing dev-ruby/asciidoctor - some tests will be skipped."
|
|
fi
|
|
|
|
ego test "./..." ${MY_BUILD_FLAGS}
|
|
}
|
|
|
|
src_install() {
|
|
dobin bin/*
|
|
doman man/*
|
|
|
|
dobashcomp completions/${PN}
|
|
dofishcomp completions/${PN}.fish
|
|
dozshcomp completions/_${PN}
|
|
|
|
if use doc ; then
|
|
dodoc -r doc/*
|
|
fi
|
|
}
|