gentoo-overlay/dev-util/reposilite/reposilite-2.9.1.ebuild
Manuel Friedli 95b2c95d55
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
dev-util/reposilite: Add untested ebuild for version 2.9.1
Package-Manager: Portage-3.0.4, Repoman-3.0.1
2020-10-08 23:21:07 +02:00

50 lines
1.1 KiB
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit systemd
DESCRIPTION="Reposilite - Simple Maven Repository hosting"
HOMEPAGE="https://reposilite.com/"
#SRC_URI=""
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RESTRICT="mirror"
DEPEND=""
RDEPEND="acct-user/reposilite
app-emulation/docker
"
S="${WORKDIR}"
src_prepare() {
sed -e "s/<VERSION>/${PV}/g" "${FILESDIR}/reposilite.sh" > "${T}/reposilite.sh"
eapply_user
}
src_install() {
exeinto /usr/bin
doexe "${T}/reposilite.sh"
systemd_dounit "${FILESDIR}/${PN}.service"
insinto "/etc/reposilite"
doins "${FILESDIR}/app.ini"
newins "${FILESDIR}/reposilite-2.9.1.cdn" "reposilite.cdn"
fowners reposilite /etc/reposilite
fperms 0700 /etc/reposilite
fowners reposilite:reposilite /etc/reposilite/app.ini /etc/reposilite/reposilite.cdn
fperms 0600 /etc/reposilite/app.ini /etc/reposilite/reposilite.cdn
keepdir /var/lib/reposilite-data
fowners reposilite:reposilite /var/lib/reposilite-data
fperms 0700 /var/lib/reposilite-data
}