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 46E9F139085 for ; Sun, 22 Jan 2017 16:17:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7142321C06A; Sun, 22 Jan 2017 16:17:38 +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 5124E21C06A for ; Sun, 22 Jan 2017 16:17:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6E3E733BE32 for ; Sun, 22 Jan 2017 16:17:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12F592CA3 for ; Sun, 22 Jan 2017 16:17:36 +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: <1485101852.b71adeabc49dc4dcb3070ab5438aeebbb389bae7.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: x11-wm/stumpwm/ X-VCS-Repository: proj/lisp X-VCS-Files: x11-wm/stumpwm/stumpwm-1.0.0.ebuild X-VCS-Directories: x11-wm/stumpwm/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: b71adeabc49dc4dcb3070ab5438aeebbb389bae7 X-VCS-Branch: master Date: Sun, 22 Jan 2017 16:17:36 +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: 65079c59-dcc4-4119-8894-96a2b460f343 X-Archives-Hash: de868cb48f6ddf5f3ccf511a45217304 commit: b71adeabc49dc4dcb3070ab5438aeebbb389bae7 Author: Chema Alonso Josa gentoo org> AuthorDate: Sun Jan 22 16:17:32 2017 +0000 Commit: José María Alonso gentoo org> CommitDate: Sun Jan 22 16:17:32 2017 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=b71adeab dev-lisp/stumpwm: Reset XDG environment. Fixes bug #606484 x11-wm/stumpwm/stumpwm-1.0.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x11-wm/stumpwm/stumpwm-1.0.0.ebuild b/x11-wm/stumpwm/stumpwm-1.0.0.ebuild index 58bfb84..b3c7548 100644 --- a/x11-wm/stumpwm/stumpwm-1.0.0.ebuild +++ b/x11-wm/stumpwm/stumpwm-1.0.0.ebuild @@ -4,7 +4,7 @@ EAPI=6 -inherit common-lisp-3 eutils elisp-common autotools +inherit common-lisp-3 eutils elisp-common autotools xdg-utils DESCRIPTION="Stumpwm is a Window Manager written entirely in Common Lisp." HOMEPAGE="https://stumpwm.github.io/" @@ -73,6 +73,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}" }