From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2F5B51381F3 for ; Thu, 11 Apr 2013 17:52:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9261E0A01; Thu, 11 Apr 2013 17:51:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 65084E0A01 for ; Thu, 11 Apr 2013 17:51:58 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2656D33DD26 for ; Thu, 11 Apr 2013 17:51:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id ACF23E4073 for ; Thu, 11 Apr 2013 17:51:55 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1365702668.8dd1f89c91dac45c7db4984a93249ed494fa2323.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/misc-functions.sh X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 8dd1f89c91dac45c7db4984a93249ed494fa2323 X-VCS-Branch: master Date: Thu, 11 Apr 2013 17:51:55 +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: aab88504-deb1-47e2-b26d-713708511232 X-Archives-Hash: 33720c687ab2c1c904712480c8cc66c5 commit: 8dd1f89c91dac45c7db4984a93249ed494fa2323 Author: Zac Medico gentoo org> AuthorDate: Thu Apr 11 17:51:08 2013 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Apr 11 17:51:08 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=8dd1f89c Revert "Add a QA check for systemd unit file install." This reverts commit dd2d661078771a41d4fd554c2bc3b1188ce7b53e. Forcing use of a specific eclass is too restrictive. It would be better to use a variable to control a warning like this. See bug #465562. --- bin/misc-functions.sh | 10 ---------- 1 files changed, 0 insertions(+), 10 deletions(-) diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index ce3d681..c83d21f 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -841,16 +841,6 @@ install_qa_check() { [[ ${abort} == yes ]] && die "multilib-strict check failed!" fi - - # ensure packages don't install systemd units automagically - if ! has systemd ${INHERITED} && \ - [[ -d "${ED}"/lib/systemd/system ]] - then - eqawarn "QA Notice: package installs systemd unit files (/lib/systemd/system)" - eqawarn " but does not inherit systemd.eclass." - has stricter ${FEATURES} \ - && die "install aborted due to missing inherit of systemd.eclass" - fi } install_qa_check_prefix() {