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 DC3301382C5 for ; Sun, 18 Mar 2018 18:04:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC0F3E0821; Sun, 18 Mar 2018 18:04:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 7B23CE0821 for ; Sun, 18 Mar 2018 18:04:53 +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 902F8335D56 for ; Sun, 18 Mar 2018 18:04:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C12FA259 for ; Sun, 18 Mar 2018 18:04:49 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1521396268.3ef9e672960aa0ec5e2a164d9137fa945e44db23.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/clisp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/clisp/clisp-2.48-r1.ebuild dev-lisp/clisp/clisp-2.49-r9.ebuild dev-lisp/clisp/clisp-2.49.90.ebuild X-VCS-Directories: dev-lisp/clisp/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 3ef9e672960aa0ec5e2a164d9137fa945e44db23 X-VCS-Branch: master Date: Sun, 18 Mar 2018 18:04:49 +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: 4a72251e-465b-4e56-9733-958cfb544ebe X-Archives-Hash: ea815d5dd183012f1343124a3c3106b4 commit: 3ef9e672960aa0ec5e2a164d9137fa945e44db23 Author: David Seifert gentoo org> AuthorDate: Sun Mar 18 18:03:48 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Mar 18 18:04:28 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ef9e672 dev-lisp/clisp: Scrub XDG variables Closes: https://bugs.gentoo.org/649932 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-lisp/clisp/clisp-2.48-r1.ebuild | 3 ++- dev-lisp/clisp/clisp-2.49-r9.ebuild | 6 ++++-- dev-lisp/clisp/clisp-2.49.90.ebuild | 4 +++- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/dev-lisp/clisp/clisp-2.48-r1.ebuild b/dev-lisp/clisp/clisp-2.48-r1.ebuild index a928da76693..393de08ca66 100644 --- a/dev-lisp/clisp/clisp-2.48-r1.ebuild +++ b/dev-lisp/clisp/clisp-2.48-r1.ebuild @@ -3,7 +3,7 @@ EAPI="2" -inherit flag-o-matic eutils toolchain-funcs multilib +inherit flag-o-matic eutils toolchain-funcs multilib xdg-utils DESCRIPTION="A portable, bytecode-compiled implementation of Common Lisp" HOMEPAGE="http://clisp.sourceforge.net/" @@ -61,6 +61,7 @@ src_prepare() { if use alpha || use ia64; then sed -i -e 's/-O2//g' src/makemake.in || die fi + xdg_environment_reset } src_configure() { diff --git a/dev-lisp/clisp/clisp-2.49-r9.ebuild b/dev-lisp/clisp/clisp-2.49-r9.ebuild index d811dd15026..0996cecbaa4 100644 --- a/dev-lisp/clisp/clisp-2.49-r9.ebuild +++ b/dev-lisp/clisp/clisp-2.49-r9.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 -inherit eutils flag-o-matic multilib toolchain-funcs +inherit eutils flag-o-matic multilib toolchain-funcs xdg-utils DESCRIPTION="A portable, bytecode-compiled implementation of Common Lisp" HOMEPAGE="http://clisp.sourceforge.net/" @@ -61,6 +61,8 @@ src_prepare() { epatch "${FILESDIR}"/${P}-bits_ipctypes_to_sys_ipc.patch epatch "${FILESDIR}"/${P}-get_hostname.patch epatch "${FILESDIR}"/${P}-tinfo.patch + + xdg_environment_reset } src_configure() { diff --git a/dev-lisp/clisp/clisp-2.49.90.ebuild b/dev-lisp/clisp/clisp-2.49.90.ebuild index ba1830176a3..9168ff8785d 100644 --- a/dev-lisp/clisp/clisp-2.49.90.ebuild +++ b/dev-lisp/clisp/clisp-2.49.90.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit eutils flag-o-matic multilib toolchain-funcs +inherit eutils flag-o-matic multilib toolchain-funcs xdg-utils DESCRIPTION="A portable, bytecode-compiled implementation of Common Lisp" HOMEPAGE="http://clisp.sourceforge.net/" @@ -60,6 +60,8 @@ src_prepare() { fi eapply "${FILESDIR}"/"${P}"-after_glibc_cfree_bdb.patch eapply_user + + xdg_environment_reset } src_configure() {