commit:     69cead0da1945ad229231cdcb69967e08d1cf5bf
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Jan 25 23:35:28 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jan 29 09:14:04 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69cead0d

www-apps/hugo: drop 0.107.0

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
Closes: https://github.com/gentoo/gentoo/pull/29069
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 www-apps/hugo/hugo-0.107.0.ebuild | 93 ---------------------------------------
 1 file changed, 93 deletions(-)

diff --git a/www-apps/hugo/hugo-0.107.0.ebuild 
b/www-apps/hugo/hugo-0.107.0.ebuild
deleted file mode 100644
index 129d62e8af01..000000000000
--- a/www-apps/hugo/hugo-0.107.0.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 2018-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit go-module bash-completion-r1
-
-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://tastytea.de/files/gentoo/${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 Unlicense"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~loong ~x86"
-IUSE="doc +sass test"
-
-BDEPEND="
-       >=dev-lang/go-1.18
-       test? (
-               dev-python/docutils
-               dev-ruby/asciidoctor
-               virtual/pandoc
-       )
-"
-RDEPEND="
-       >=media-libs/libwebp-1.2.3-r1:=
-       sass? ( dev-libs/libsass:= )
-"
-DEPEND="${RDEPEND}"
-
-RESTRICT="!test? ( test )"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-0.96.0-unbundle-libwebp-and-libsass.patch
-       "${FILESDIR}"/${PN}-0.104.3-skip-some-tests.patch
-       "${FILESDIR}"/${PN}-0.99.1-test-timeout.patch
-)
-
-src_configure() {
-       export CGO_ENABLED=1
-       export CGO_CFLAGS="${CFLAGS}"
-       export CGO_CPPFLAGS="${CPPFLAGS}"
-       export CGO_CXXFLAGS="${CXXFLAGS}"
-       export CGO_LDFLAGS="${LDFLAGS}"
-
-       MY_BUILDFLAGS="$(usev sass "-tags extended")"
-
-       default
-}
-
-src_compile() {
-       mkdir -pv bin || die
-       ego build -ldflags "-X 
github.com/gohugoio/hugo/common/hugo.vendorInfo=gentoo:${PVR}" \
-               ${MY_BUILDFLAGS} -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() {
-       ego test -race "./..." ${MY_BUILDFLAGS}
-}
-
-src_install() {
-       dobin bin/*
-       doman man/*
-
-       dobashcomp completions/${PN}
-
-       insinto /usr/share/fish/vendor_completions.d
-       doins completions/${PN}.fish
-
-       insinto /usr/share/zsh/site-functions
-       doins completions/_${PN}
-
-       if use doc ; then
-               dodoc -r doc/*
-       fi
-}

Reply via email to