diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-08-25 16:26:54 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-09-01 22:26:52 +0200 |
commit | 7bf8c8f7b6367e8d0314abb255c4212219fb1805 (patch) | |
tree | d7dab8a7cf5c6de04243b573e7364b18a7fade40 /app-misc/taskd | |
parent | media-libs/sdl2-mixer: Drop 2.0.2 (r0) (diff) | |
download | gentoo-7bf8c8f7b6367e8d0314abb255c4212219fb1805.tar.gz gentoo-7bf8c8f7b6367e8d0314abb255c4212219fb1805.tar.bz2 gentoo-7bf8c8f7b6367e8d0314abb255c4212219fb1805.zip |
app-misc/taskd: EAPI-6 bump, misc fixes
Add missing slot op.
Sort DEPENDs.
local mycmakeargs.
Drop unnecessary emptylines.
Drop superfluous eclasses.
Package-Manager: Portage-2.3.48, Repoman-2.3.10
Closes: https://github.com/gentoo/gentoo/pull/9693
Diffstat (limited to 'app-misc/taskd')
-rw-r--r-- | app-misc/taskd/taskd-1.1.0-r2.ebuild | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/app-misc/taskd/taskd-1.1.0-r2.ebuild b/app-misc/taskd/taskd-1.1.0-r2.ebuild new file mode 100644 index 000000000000..1b18af5ecd11 --- /dev/null +++ b/app-misc/taskd/taskd-1.1.0-r2.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils systemd user + +DESCRIPTION="Server part of Taskwarrior, a command-line todo list manager" +HOMEPAGE="https://taskwarrior.org/" +SRC_URI="https://taskwarrior.org/download/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + net-libs/gnutls:= + sys-apps/util-linux + sys-libs/readline:0=" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DTASKD_DOCDIR=share/doc/${PF} + ) + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + + systemd_dounit "${S}"/scripts/systemd/taskd.service + + insinto /usr/share/${PN}/pki + doins pki/* + + insinto /usr/share/${PN}/mon + doins mon/* + + newinitd "${FILESDIR}"/taskd.initd taskd + newconfd "${FILESDIR}"/taskd.confd taskd + + grep ^TASKDDATA= "${FILESDIR}"/taskd.confd > 90taskd || die + doenvd 90taskd + + dodir /etc/taskd + keepdir /usr/libexec/taskd + + diropts -m 0750 + dodir /var/lib/taskd + keepdir /var/log/taskd + + diropts -m 0700 + keepdir /var/lib/taskd/orgs /etc/taskd/tls + + insopts -m0600 + insinto /etc/taskd + doins "${FILESDIR}"/config + + dosym ../../../etc/taskd/config /var/lib/taskd/config + + insinto /etc/logrotate.d + newins "${FILESDIR}"/taskd.logrotate taskd +} + +pkg_setup() { + enewgroup taskd + enewuser taskd -1 /bin/bash /var/lib/taskd taskd +} + +pkg_postinst() { + chown taskd:taskd /var/lib/taskd{,/orgs} /var/log/taskd /etc/taskd/{config,tls} + + elog "For configuration see 'man taskdrc' and edit /etc/taskd/config" + elog "You will need to configure certificates first in order to use taskd" + ewarn + ewarn "Do not use 'taskd init' as this will replace the config file and set" + ewarn "default but unsuitable paths" + ewarn + ewarn "In order to manage taskd via 'taskd' either relogin or run 'source /etc/profile'" +} |