From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9A7A1138334 for ; Sat, 1 Sep 2018 20:28:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 666DFE07D0; Sat, 1 Sep 2018 20:28:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 276A4E07D0 for ; Sat, 1 Sep 2018 20:28:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4E1E8335C8D for ; Sat, 1 Sep 2018 20:28:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8ADF83B9 for ; Sat, 1 Sep 2018 20:28:27 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1535833612.7308fd2010d4f9ceb50d4825b52f4edeeaabd317.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/taskd/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/taskd/taskd-1.1.0-r1.ebuild X-VCS-Directories: app-misc/taskd/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7308fd2010d4f9ceb50d4825b52f4edeeaabd317 X-VCS-Branch: master Date: Sat, 1 Sep 2018 20:28:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3cda5e76-3f0e-4e30-a736-ec35b4566dd1 X-Archives-Hash: 95aaace0ee224cb847f96ea7a6457564 commit: 7308fd2010d4f9ceb50d4825b52f4edeeaabd317 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Aug 25 14:27:23 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Sep 1 20:26:52 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7308fd20 app-misc/taskd: Drop 1.1.0-r1 Package-Manager: Portage-2.3.48, Repoman-2.3.10 app-misc/taskd/taskd-1.1.0-r1.ebuild | 84 ------------------------------------ 1 file changed, 84 deletions(-) diff --git a/app-misc/taskd/taskd-1.1.0-r1.ebuild b/app-misc/taskd/taskd-1.1.0-r1.ebuild deleted file mode 100644 index fbf8edd6dd4..00000000000 --- a/app-misc/taskd/taskd-1.1.0-r1.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils cmake-utils systemd user - -DESCRIPTION="the 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="sys-libs/readline:0 - net-libs/gnutls - sys-apps/util-linux" -RDEPEND="${DEPEND}" - -src_configure() { - 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 - 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} - - einfo "" - einfo "For configuration see 'man taskdrc' and edit /etc/taskd/config" - einfo "You will need to configure certificates first in order to use taskd" - einfo "" - 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'" - ewarn "" -}