Manuel Friedli
bbfe7780d4
added ebuild for version 0.8.5 which is a dependency of gitlab-ce-8.13.0 Package-Manager: portage-2.3.0
39 lines
950 B
Bash
39 lines
950 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="6"
|
|
|
|
inherit eutils user
|
|
|
|
DESCRIPTION="This is the new backend for Git-over-HTTP communication needed for GitLab >= 8.4"
|
|
HOMEPAGE="https://gitlab.com/gitlab-org/gitlab-workhorse"
|
|
SRC_URI="https://gitlab.com/gitlab-org/${PN}/repository/archive.tar.bz2?ref=v${PV} -> ${P}.tar.bz2"
|
|
|
|
MY_GIT_COMMIT="15dcdbd45d90330cd7e2cf1126834f829b7d3961"
|
|
S="${WORKDIR}/${PN}-v${PV}-${MY_GIT_COMMIT}"
|
|
RESTRICT="mirror"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~arm ~arm64"
|
|
|
|
DEPEND=">=dev-lang/go-1.5.1"
|
|
|
|
PATCHES=( "${FILESDIR}/fix-Makefile-${PV}.patch" )
|
|
|
|
src_install() {
|
|
local dest=/usr/bin
|
|
|
|
diropts -m755
|
|
dodir ${dest}
|
|
|
|
exeinto ${dest}
|
|
for f in "${PN}" gitlab-zip-cat gitlab-zip-metadata ; do
|
|
doexe "${S}/${f}"
|
|
done
|
|
|
|
## RC script ##
|
|
newinitd "${FILESDIR}/${PN}-0.8.2.init" "${PN}"
|
|
newconfd "${FILESDIR}/${PN}-0.8.2.conf" "${PN}"
|
|
}
|