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 5DD8A158091 for ; Fri, 17 Jun 2022 23:45:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02E93E09AB; Fri, 17 Jun 2022 23:45:09 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 DE2F6E09AB for ; Fri, 17 Jun 2022 23:45:08 +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 DF0B3341819 for ; Fri, 17 Jun 2022 23:45:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 19179509 for ; Fri, 17 Jun 2022 23:45:06 +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: <1655509495.5a106e305ef06e4db20ba8510aced7d668d19f5b.sam@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-r4.ebuild X-VCS-Directories: app-text/dictd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5a106e305ef06e4db20ba8510aced7d668d19f5b X-VCS-Branch: master Date: Fri, 17 Jun 2022 23:45:06 +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: b75e8f0c-6caf-4ff7-a0c4-6d3ebf737682 X-Archives-Hash: d381a8e4bd7364265c45cc656af3983f commit: 5a106e305ef06e4db20ba8510aced7d668d19f5b Author: Sam James gentoo org> AuthorDate: Fri Jun 17 23:44:49 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 17 23:44:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a106e30 app-text/dictd: force -j1 Closes: https://bugs.gentoo.org/743292 Signed-off-by: Sam James gentoo.org> app-text/dictd/dictd-1.13.0-r4.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/app-text/dictd/dictd-1.13.0-r4.ebuild b/app-text/dictd/dictd-1.13.0-r4.ebuild index a8aafc51843e..19723217a411 100644 --- a/app-text/dictd/dictd-1.13.0-r4.ebuild +++ b/app-text/dictd/dictd-1.13.0-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -63,27 +63,31 @@ src_configure() { } src_compile() { + # -j1 for bug #743292 + if use minimal; then - emake dictfmt dictzip dictzip + emake -j1 dictfmt dictzip dictzip else - emake + emake -j1 fi } src_test() { use minimal && return 0 # All tests are for dictd which we don't build... + if [[ ${EUID} -eq 0 ]]; then # If dictd is run as root user (-userpriv) it drops its privileges to # dictd user and group. Give dictd group write access to test directory. chown :dictd "${WORKDIR}" "${S}/test" || die chmod 770 "${WORKDIR}" "${S}/test" || die fi - emake test + + emake -j1 test } src_install() { if use minimal; then - emake DESTDIR="${ED}" install.dictzip install.dict install.dictfmt + emake -j1 DESTDIR="${ED}" install.dictzip install.dict install.dictfmt else default