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 210D215808B for ; Sun, 13 Mar 2022 17:03:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 58B9BE0845; Sun, 13 Mar 2022 17:03:41 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B96F7E0845 for ; Sun, 13 Mar 2022 17:03:39 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4ED32343283 for ; Sun, 13 Mar 2022 17:03:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A52612EA for ; Sun, 13 Mar 2022 17:03:36 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1647190925.20c644c4564ed2edef8a10ac3a1437394e824bfb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/ngircd/, net-irc/ngircd/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/ngircd/files/ngircd.conf net-irc/ngircd/ngircd-26.1-r3.ebuild net-irc/ngircd/ngircd-26.1-r4.ebuild X-VCS-Directories: net-irc/ngircd/ net-irc/ngircd/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 20c644c4564ed2edef8a10ac3a1437394e824bfb X-VCS-Branch: master Date: Sun, 13 Mar 2022 17:03:36 +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: c936015f-1fb8-4c36-9bd5-b10da46846a4 X-Archives-Hash: 130ecaddbf62b3b0b7885b947c080fa0 commit: 20c644c4564ed2edef8a10ac3a1437394e824bfb Author: Anna Vyalkova sysrq in> AuthorDate: Sun Mar 13 16:10:00 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 13 17:02:05 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20c644c4 net-irc/ngircd: add missing tmpfiles.d file OpenRC service was broken because /run/ngircd didn't exist. Signed-off-by: Anna Vyalkova sysrq.in> Closes: https://github.com/gentoo/gentoo/pull/24538 Signed-off-by: Sam James gentoo.org> net-irc/ngircd/files/ngircd.conf | 1 + net-irc/ngircd/{ngircd-26.1-r3.ebuild => ngircd-26.1-r4.ebuild} | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/net-irc/ngircd/files/ngircd.conf b/net-irc/ngircd/files/ngircd.conf new file mode 100644 index 000000000000..e9993a3430ef --- /dev/null +++ b/net-irc/ngircd/files/ngircd.conf @@ -0,0 +1 @@ +d /run/ngircd 0755 ngircd ngircd - diff --git a/net-irc/ngircd/ngircd-26.1-r3.ebuild b/net-irc/ngircd/ngircd-26.1-r4.ebuild similarity index 96% rename from net-irc/ngircd/ngircd-26.1-r3.ebuild rename to net-irc/ngircd/ngircd-26.1-r4.ebuild index 579814e2b0e5..a5474e5b57a6 100644 --- a/net-irc/ngircd/ngircd-26.1-r3.ebuild +++ b/net-irc/ngircd/ngircd-26.1-r4.ebuild @@ -4,7 +4,7 @@ EAPI=8 VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}/usr/share/openpgp-keys/alexbarton.asc" -inherit verify-sig +inherit tmpfiles verify-sig DESCRIPTION="An IRC server written from scratch" HOMEPAGE="https://ngircd.barton.de/" @@ -101,6 +101,7 @@ src_install() { fowners ngircd:ngircd /etc/ngircd/ngircd.conf newinitd "${FILESDIR}"/ngircd.init-r2.d ngircd newconfd "${FILESDIR}"/ngircd.conf.d ngircd + dotmpfiles "${FILESDIR}"/ngircd.conf } pkg_postinst() { @@ -108,4 +109,6 @@ pkg_postinst() { elog "ngircd will use PAMIsOptionalPAM by default, please change this option." elog "You may not be able to login until you change this." fi + + tmpfiles_process ngircd.conf }