69 lines
1.8 KiB
Bash
69 lines
1.8 KiB
Bash
|
# Copyright 1999-2017 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Id$
|
||
|
|
||
|
EAPI=6
|
||
|
EGO_PN="gitlab.com/gitlab-org/gitlab-pages/..."
|
||
|
|
||
|
EGIT_COMMIT="15c938ca"
|
||
|
MY_PV="v${PV/_/-}"
|
||
|
SRC_URI="https://gitlab.com/gitlab-org/${PN}/repository/archive.tar.bz2?ref=${MY_PV} -> ${P}.tar.bz2"
|
||
|
|
||
|
EGO_BUILD_FLAGS="-ldflags '-X main.Version ${PV} -X main.REVISION ${EGIT_COMMIT}'"
|
||
|
|
||
|
inherit eutils golang-build golang-vcs-snapshot user
|
||
|
|
||
|
DESCRIPTION="Simple HTTP server written in Go made to serve GitLab Pages with CNAMEs and SNI"
|
||
|
HOMEPAGE="https://gitlab.com/gitlab-org/gitlab-pages"
|
||
|
|
||
|
KEYWORDS="~amd64 ~x86 ~arm ~arm64"
|
||
|
LICENSE="MIT"
|
||
|
SLOT="0/${PVR}"
|
||
|
|
||
|
DEPEND=">=dev-lang/go-1.8.3"
|
||
|
|
||
|
RESTRICT="test mirror"
|
||
|
|
||
|
MY_USER="gitlab_pages"
|
||
|
|
||
|
pkg_setup() {
|
||
|
enewgroup ${MY_USER}
|
||
|
enewuser ${MY_USER} -1 -1 -1 ${MY_USER}
|
||
|
}
|
||
|
|
||
|
#src_prepare() {
|
||
|
# epatch "${FILESDIR}/0001-fix-Makefile-0.6.0.patch"
|
||
|
#
|
||
|
# sed -i -E \
|
||
|
# -e "s/@@REVISION@@/${EGIT_COMMIT}/" \
|
||
|
# src/gitlab.com/gitlab-org/${PN}/Makefile.internal.mk
|
||
|
#
|
||
|
# eapply_user
|
||
|
#}
|
||
|
|
||
|
src_compile() {
|
||
|
# emake GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" RELEASE=true -C src/${EGO_PN%/*} all
|
||
|
# silly golang-build_src_compile doesn't work. some crap about
|
||
|
# escaping ...
|
||
|
ego_pn_check
|
||
|
env GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" go build -v -work -x -ldflags "-X main.Version=${PV} -X main.REVISION=${EGIT_COMMIT}" "${EGO_PN}" || die
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
golang-build_src_install
|
||
|
dobin bin/*
|
||
|
dodoc src/${EGO_PN%/*}/README.md src/${EGO_PN%/*}/CHANGELOG
|
||
|
|
||
|
# rc script
|
||
|
local rcscript="${PN}-0.3.2.init"
|
||
|
|
||
|
cp "${FILESDIR}/${rcscript}" "${T}" || die
|
||
|
sed -i \
|
||
|
-e "s|@USER@|${MY_USER}|g" \
|
||
|
"${T}/${rcscript}" \
|
||
|
|| die "failed to filter ${rcscript}"
|
||
|
|
||
|
newinitd "${T}/${rcscript}" "${PN}"
|
||
|
newconfd "${FILESDIR}/${PN}-0.3.2.conf" "${PN}"
|
||
|
}
|