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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 72E9E15808D for ; Mon, 18 Apr 2022 11:47:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1BD6E0969; Mon, 18 Apr 2022 11:47:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88C30E0959 for ; Mon, 18 Apr 2022 11:47:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E5CF5341793 for ; Mon, 18 Apr 2022 11:47:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 190B63BC for ; Mon, 18 Apr 2022 11:47:39 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1650248642.76e22a87d129c55a397f9356effd6f0ab0a009a2.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-crypt/tang/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-crypt/tang/tang-11.ebuild X-VCS-Directories: app-crypt/tang/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 76e22a87d129c55a397f9356effd6f0ab0a009a2 X-VCS-Branch: master Date: Mon, 18 Apr 2022 11:47:39 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f26731cd-d1a8-410a-a3cf-99dd8a3025df X-Archives-Hash: 2f9ddcce5c4ee201139c04d4af719438 commit: 76e22a87d129c55a397f9356effd6f0ab0a009a2 Author: Julien Roy jroy ca> AuthorDate: Mon Apr 18 02:22:48 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Mon Apr 18 02:24:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=76e22a87 app-crypt/tang: Removed systemd USE flag Signed-off-by: Julien Roy jroy.ca> app-crypt/tang/tang-11.ebuild | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/app-crypt/tang/tang-11.ebuild b/app-crypt/tang/tang-11.ebuild index 94b1883d7..5bf2f8ce2 100644 --- a/app-crypt/tang/tang-11.ebuild +++ b/app-crypt/tang/tang-11.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/latchset/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" -IUSE="systemd" +IUSE="" DEPEND="acct-user/tang app-text/asciidoc @@ -31,22 +31,15 @@ src_install(){ fowners tang:tang /var/db/tang fperms 770 /var/db/tang - if use systemd; then - insinto /usr/lib/systemd/system - doins ${FILESDIR}/tangd.service - fi + insinto /usr/lib/systemd/system + doins ${FILESDIR}/tangd.service } pkg_postinst(){ einfo "By default, tang runs on port 8888 and listens on address 0.0.0.0" einfo "It also stores JWKs in /var/db/tang." - if use systemd; then - einfo "If you want to change this, modify /usr/lib/systemd/system/tangd.service directly." - else - einfo "If you want to change this, modify /etc/init.d/tangd directly." - fi - - if use systemd; then - systemctl daemon-reload - fi + einfo "If you want to change this, modify /etc/init.d/tangd or" + einfo "/usr/lib/systemd/system/tangd.service directly." + + systemctl daemon-reload || die }