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 6CE73139368 for ; Tue, 3 Aug 2021 09:09:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5EC20E09E3; Tue, 3 Aug 2021 09:09:34 +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 E6C7AE09E3 for ; Tue, 3 Aug 2021 09:09:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 98406343B1E for ; Tue, 3 Aug 2021 09:09:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 059F87A7 for ; Tue, 3 Aug 2021 09:09:28 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1627981765.1d21bf9c65b2906863d208262f0f95f16a033fb3.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/xpmem/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-kernel/xpmem/xpmem-2.6.3_p20210217.ebuild X-VCS-Directories: sys-kernel/xpmem/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 1d21bf9c65b2906863d208262f0f95f16a033fb3 X-VCS-Branch: dev Date: Tue, 3 Aug 2021 09:09:28 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 24af6755-7eac-4005-8972-bd67629981a7 X-Archives-Hash: a4053ba27db9d50e576d64bb0d433c6e commit: 1d21bf9c65b2906863d208262f0f95f16a033fb3 Author: Alessandro Barbieri gmail com> AuthorDate: Tue Aug 3 09:08:19 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Tue Aug 3 09:09:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1d21bf9c sys-kernel/xpmem: move variables before inherit Signed-off-by: Alessandro Barbieri gmail.com> sys-kernel/xpmem/xpmem-2.6.3_p20210217.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-kernel/xpmem/xpmem-2.6.3_p20210217.ebuild b/sys-kernel/xpmem/xpmem-2.6.3_p20210217.ebuild index f03a6b4e0..602ce6c71 100644 --- a/sys-kernel/xpmem/xpmem-2.6.3_p20210217.ebuild +++ b/sys-kernel/xpmem/xpmem-2.6.3_p20210217.ebuild @@ -1,13 +1,14 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools linux-mod - MODULES_OPTIONAL_USE="modules" +MODULES_OPTIONAL_USE_IUSE_DEFAULT=1 MY_REV="242eaa1eca92567c2118afe21e37cafc524f9166" +inherit autotools linux-mod + DESCRIPTION="Linux Cross-Memory Attach" HOMEPAGE="https://github.com/hjelmn/xpmem" SRC_URI="https://github.com/hjelmn/xpmem/archive/${MY_REV}.tar.gz -> ${P}.tar.gz" @@ -16,7 +17,6 @@ S="${WORKDIR}/${PN}-${MY_REV}" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64" -IUSE="+modules" MODULE_NAMES="xpmem(misc:${WORKDIR}/module/kernel:${WORKDIR}/module/kernel)" BUILD_TARGETS="all"