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 E45891382C5 for ; Tue, 20 Mar 2018 13:55:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A48DE09F8; Tue, 20 Mar 2018 13:55:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 D98C8E09F8 for ; Tue, 20 Mar 2018 13:55:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B2F21335C2C for ; Tue, 20 Mar 2018 13:55:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E66BA1BC for ; Tue, 20 Mar 2018 13:55:15 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1521554108.cdf626434fe90a2b89c89b9cfba521619d4d28c2.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/distcc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/distcc/distcc-3.3.ebuild X-VCS-Directories: sys-devel/distcc/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: cdf626434fe90a2b89c89b9cfba521619d4d28c2 X-VCS-Branch: master Date: Tue, 20 Mar 2018 13:55:15 +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: 28ba1478-5cb5-49d3-bddd-6c691b41b83c X-Archives-Hash: 0e93ab60d6eba497e44facf3bb664bb5 commit: cdf626434fe90a2b89c89b9cfba521619d4d28c2 Author: Benda Xu gentoo org> AuthorDate: Tue Mar 20 13:54:37 2018 +0000 Commit: Benda XU gentoo org> CommitDate: Tue Mar 20 13:55:08 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdf62643 sys-devel/distcc: support prefix. autotools not needed anymore. Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-devel/distcc/distcc-3.3.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sys-devel/distcc/distcc-3.3.ebuild b/sys-devel/distcc/distcc-3.3.ebuild index b79f9b9f756..4a7e74e0c42 100644 --- a/sys-devel/distcc/distcc-3.3.ebuild +++ b/sys-devel/distcc/distcc-3.3.ebuild @@ -5,7 +5,7 @@ EAPI=6 PYTHON_COMPAT=( python3_{5,6} ) -inherit autotools flag-o-matic python-single-r1 systemd toolchain-funcs user xdg-utils +inherit flag-o-matic python-single-r1 systemd toolchain-funcs user xdg-utils prefix MY_P="${P/_}" DESCRIPTION="Distribute compilation of C code across several machines on a network" @@ -74,8 +74,7 @@ src_prepare() { -e "s:@libdir@:/usr/$(get_libdir):" \ "${FILESDIR}/3.2/distcc-config" > "${T}/distcc-config" || die - eaclocal -Im4 --output=aclocal.m4 - eautoconf + hprefixify update-distcc-symlinks.py src/{serve,daemon}.c } src_configure() { @@ -177,7 +176,7 @@ pkg_postinst() { elog elog "***SECURITY NOTICE***" elog "Since distcc-3.3, whitelist is used for what distccd could execute. The whilelist" - elog "has to be generated manually by invoking `update-distcc-symlinks`. To revert" + elog "has to be generated manually by invoking \`update-distcc-symlinks\`. To revert" elog "to the old behavior, you need to pass --make-me-a-botnet to distccd in" elog "/etc/conf.d/distccd. Cf. https://github.com/distcc/distcc/pull/243." }