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 B2C261382C5 for ; Tue, 27 Feb 2018 15:03:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6027E08CE; Tue, 27 Feb 2018 15:03:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 A5816E08CE for ; Tue, 27 Feb 2018 15:03:17 +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 AAA08335C09 for ; Tue, 27 Feb 2018 15:03:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D25721C for ; Tue, 27 Feb 2018 15:03:14 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1519743790.8db352582467fddce2faaaf9a623f9003f73e80e.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/plymouth/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/plymouth/plymouth-0.9.3-r1.ebuild sys-boot/plymouth/plymouth-0.9.3.ebuild sys-boot/plymouth/plymouth-9999.ebuild X-VCS-Directories: sys-boot/plymouth/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 8db352582467fddce2faaaf9a623f9003f73e80e X-VCS-Branch: master Date: Tue, 27 Feb 2018 15:03:14 +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: 93866aaf-623b-4d99-a969-bc06507369e4 X-Archives-Hash: a0bb5cc6c4d68624d87d0a12af75fe61 commit: 8db352582467fddce2faaaf9a623f9003f73e80e Author: Lars Wendler gentoo org> AuthorDate: Tue Feb 27 13:41:39 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Feb 27 15:03:10 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8db35258 sys-boot/plymouth: Don't run eautoreconf in src_configure (QA fix). Converted myconf variable in an array. Package-Manager: Portage-2.3.24, Repoman-2.3.6 Closes: https://github.com/gentoo/gentoo/pull/7299 sys-boot/plymouth/plymouth-0.9.3-r1.ebuild | 39 +++++++++++++++++------------- sys-boot/plymouth/plymouth-0.9.3.ebuild | 37 ++++++++++++++++------------ sys-boot/plymouth/plymouth-9999.ebuild | 37 ++++++++++++++++------------ 3 files changed, 64 insertions(+), 49 deletions(-) diff --git a/sys-boot/plymouth/plymouth-0.9.3-r1.ebuild b/sys-boot/plymouth/plymouth-0.9.3-r1.ebuild index d73c2b13a9f..07707fbd471 100644 --- a/sys-boot/plymouth/plymouth-0.9.3-r1.ebuild +++ b/sys-boot/plymouth/plymouth-0.9.3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -52,23 +52,28 @@ PATCHES=( "${FILESDIR}"/0.9.3-glibc-sysmacros.patch ) -src_configure() { - local myconf - myconf="--with-system-root-install=no - --localstatedir=/var - --without-rhgb-compat-link - --enable-documentation - --enable-systemd-integration - --with-systemdunitdir="$(systemd_get_systemunitdir)" - $(use_enable !static-libs shared) - $(use_enable static-libs static) - $(use_enable debug tracing) - $(use_enable gtk gtk) - $(use_enable libkms drm) - $(use_enable pango) - $(use_enable gdm gdm-transition)" +src_prepare() { + default eautoreconf - econf ${myconf} +} + +src_configure() { + local myconf=( + --with-system-root-install=no + --localstatedir=/var + --without-rhgb-compat-link + --enable-documentation + --enable-systemd-integration + --with-systemdunitdir="$(systemd_get_systemunitdir)" + $(use_enable !static-libs shared) + $(use_enable static-libs static) + $(use_enable debug tracing) + $(use_enable gtk gtk) + $(use_enable libkms drm) + $(use_enable pango) + $(use_enable gdm gdm-transition) + ) + econf "${myconf[@]}" } src_install() { diff --git a/sys-boot/plymouth/plymouth-0.9.3.ebuild b/sys-boot/plymouth/plymouth-0.9.3.ebuild index ea9aa1bd7d6..75326f75a37 100644 --- a/sys-boot/plymouth/plymouth-0.9.3.ebuild +++ b/sys-boot/plymouth/plymouth-0.9.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -49,22 +49,27 @@ DOC_CONTENTS=" PATCHES=( ) -src_configure() { - local myconf - myconf="--with-system-root-install=no - --localstatedir=/var - --without-rhgb-compat-link - --enable-systemd-integration - --with-systemdunitdir="$(systemd_get_systemunitdir)" - $(use_enable !static-libs shared) - $(use_enable static-libs static) - $(use_enable debug tracing) - $(use_enable gtk gtk) - $(use_enable libkms drm) - $(use_enable pango) - $(use_enable gdm gdm-transition)" +src_prepare() { + default eautoreconf - econf ${myconf} +} + +src_configure() { + local myconf=( + --with-system-root-install=no + --localstatedir=/var + --without-rhgb-compat-link + --enable-systemd-integration + --with-systemdunitdir="$(systemd_get_systemunitdir)" + $(use_enable !static-libs shared) + $(use_enable static-libs static) + $(use_enable debug tracing) + $(use_enable gtk gtk) + $(use_enable libkms drm) + $(use_enable pango) + $(use_enable gdm gdm-transition) + ) + econf "${myconf[@]}" } src_install() { diff --git a/sys-boot/plymouth/plymouth-9999.ebuild b/sys-boot/plymouth/plymouth-9999.ebuild index 49ce1012fe8..375f98aabb3 100644 --- a/sys-boot/plymouth/plymouth-9999.ebuild +++ b/sys-boot/plymouth/plymouth-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -50,22 +50,27 @@ PATCHES=( "${FILESDIR}"/0.9.3-glibc-sysmacros.patch ) -src_configure() { - local myconf - myconf="--with-system-root-install=no - --localstatedir=/var - --without-rhgb-compat-link - --enable-systemd-integration - --with-systemdunitdir="$(systemd_get_systemunitdir)" - $(use_enable !static-libs shared) - $(use_enable static-libs static) - $(use_enable debug tracing) - $(use_enable gtk gtk) - $(use_enable libkms drm) - $(use_enable pango) - $(use_enable gdm gdm-transition)" +src_prepare() { + default eautoreconf - econf ${myconf} +} + +src_configure() { + local myconf=( + --with-system-root-install=no + --localstatedir=/var + --without-rhgb-compat-link + --enable-systemd-integration + --with-systemdunitdir="$(systemd_get_systemunitdir)" + $(use_enable !static-libs shared) + $(use_enable static-libs static) + $(use_enable debug tracing) + $(use_enable gtk gtk) + $(use_enable libkms drm) + $(use_enable pango) + $(use_enable gdm gdm-transition) + ) + econf "${myconf[@]}" } src_install() {