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 E7E941382BD for ; Thu, 16 Jun 2016 10:50:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C489EE0973; Thu, 16 Jun 2016 10:50:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5C584E0973 for ; Thu, 16 Jun 2016 10:50:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 900A53406C0 for ; Thu, 16 Jun 2016 10:50:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A9C4B209B for ; Thu, 16 Jun 2016 10:50:38 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1466074460.181643a222b641720d2f34c08482d33d548d09b3.nimiux@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/stumpwm/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/stumpwm/stumpwm-0.9.9.ebuild x11-wm/stumpwm/stumpwm-9999.ebuild X-VCS-Directories: x11-wm/stumpwm/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 181643a222b641720d2f34c08482d33d548d09b3 X-VCS-Branch: master Date: Thu, 16 Jun 2016 10:50: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-Archives-Salt: 5ff99831-fcc0-423a-8269-2efc165ecffa X-Archives-Hash: 750a1fbca50da752c04792ee1b584f47 commit: 181643a222b641720d2f34c08482d33d548d09b3 Author: José María Alonso Josa gentoo org> AuthorDate: Thu Jun 16 10:54:03 2016 +0000 Commit: José María Alonso gentoo org> CommitDate: Thu Jun 16 10:54:20 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=181643a2 x11-wm/stumpwm: Reset xdg environment Fixes bug #585852 Package-Manager: portage-2.2.28 x11-wm/stumpwm/stumpwm-0.9.9.ebuild | 3 ++- x11-wm/stumpwm/stumpwm-9999.ebuild | 6 +++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/x11-wm/stumpwm/stumpwm-0.9.9.ebuild b/x11-wm/stumpwm/stumpwm-0.9.9.ebuild index ef3ef84..3400b12 100644 --- a/x11-wm/stumpwm/stumpwm-0.9.9.ebuild +++ b/x11-wm/stumpwm/stumpwm-0.9.9.ebuild @@ -4,7 +4,7 @@ EAPI=5 -inherit common-lisp-3 eutils elisp-common autotools +inherit autotools common-lisp-3 eutils elisp-common xdg-utils DESCRIPTION="Stumpwm is a Window Manager written entirely in Common Lisp." HOMEPAGE="https://stumpwm.github.io/" @@ -72,6 +72,7 @@ src_prepare() { src_configure() { local moduleconfig + xdg_environment_reset use contrib && moduleconfig="--with-module-dir=${CONTRIBDIR}/contrib" econf --with-lisp=$(get_lisp sbcl clisp ecl) "${moduleconfig}" } diff --git a/x11-wm/stumpwm/stumpwm-9999.ebuild b/x11-wm/stumpwm/stumpwm-9999.ebuild index a76acd4..0775f88 100644 --- a/x11-wm/stumpwm/stumpwm-9999.ebuild +++ b/x11-wm/stumpwm/stumpwm-9999.ebuild @@ -4,7 +4,7 @@ EAPI=5 -inherit autotools common-lisp-3 git-2 +inherit autotools common-lisp-3 git-2 xdg-utils DESCRIPTION="Stumpwm is a Window Manager written entirely in Common Lisp." HOMEPAGE="https://stumpwm.github.io/" @@ -38,6 +38,10 @@ src_prepare() { eautoreconf } +src_configure() { + xdg_environment_reset +} + src_compile() { emake -j1 }