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 418CB1382C5 for ; Wed, 16 Jun 2021 05:30:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CADFE0908; Wed, 16 Jun 2021 05:30:42 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 4E49EE0908 for ; Wed, 16 Jun 2021 05:30:42 +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 3CC42340B0B for ; Wed, 16 Jun 2021 05:30:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A6B07B2 for ; Wed, 16 Jun 2021 05:30:38 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1623821429.377da64f3ebd340dfb925a7a80dafa62984ea2dd.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/dictd/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/dictd/dictd-1.13.0-r3.ebuild X-VCS-Directories: app-text/dictd/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 377da64f3ebd340dfb925a7a80dafa62984ea2dd X-VCS-Branch: master Date: Wed, 16 Jun 2021 05:30:38 +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: 366178f9-bf80-44f9-a98c-ae13acf35f4a X-Archives-Hash: 3428479a6c2b16a587887e8c13b8c491 commit: 377da64f3ebd340dfb925a7a80dafa62984ea2dd Author: Joonas Niilola gentoo org> AuthorDate: Wed Jun 16 05:11:27 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Jun 16 05:30:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=377da64f app-text/dictd: slap a warning for systemd users Signed-off-by: Joonas Niilola gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/21262 app-text/dictd/dictd-1.13.0-r3.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app-text/dictd/dictd-1.13.0-r3.ebuild b/app-text/dictd/dictd-1.13.0-r3.ebuild index fc78189e59d..342d7ec8462 100644 --- a/app-text/dictd/dictd-1.13.0-r3.ebuild +++ b/app-text/dictd/dictd-1.13.0-r3.ebuild @@ -113,3 +113,11 @@ src_install() { readme.gentoo_create_doc } + +pkg_postinst() { + if has_version sys-apps/systemd; then + ewarn "The default location for dicts has changed! If you've modified your" + ewarn "systemd units locally to point into /usr/lib/dict, please update it" + ewarn "to point at /usr/share/dict now." + fi +}