From: "Richard Yao (ryao)" <ryao@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in sys-kernel/spl: spl-9999.ebuild ChangeLog
Date: Wed, 16 Jan 2013 09:01:12 +0000 (UTC) [thread overview]
Message-ID: <20130116090112.16F712171D@flycatcher.gentoo.org> (raw)
ryao 13/01/16 09:01:12
Modified: spl-9999.ebuild ChangeLog
Log:
Filter -Wl,* from LDFLAGS to prevent build failures on ARM
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.27 sys-kernel/spl/spl-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/spl/spl-9999.ebuild?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/spl/spl-9999.ebuild?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/spl/spl-9999.ebuild?r1=1.26&r2=1.27
Index: spl-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/spl/spl-9999.ebuild,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- spl-9999.ebuild 27 Dec 2012 11:47:22 -0000 1.26
+++ spl-9999.ebuild 16 Jan 2013 09:01:11 -0000 1.27
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/spl/spl-9999.ebuild,v 1.26 2012/12/27 11:47:22 ryao Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/spl/spl-9999.ebuild,v 1.27 2013/01/16 09:01:11 ryao Exp $
EAPI="4"
AUTOTOOLS_AUTORECONF="1"
@@ -13,8 +13,8 @@
else
inherit eutils versionator
MY_PV=$(replace_version_separator 3 '-')
- SRC_URI="https://github.com/downloads/zfsonlinux/${PN}/${PN}-${MY_PV}.tar.gz"
- S="${WORKDIR}/${PN}-${MY_PV}"
+ SRC_URI="https://github.com/zfsonlinux/${PN}/archive/${PN}-${MY_PV}.tar.gz"
+ S="${WORKDIR}/${PN}-${PN}-${MY_PV}"
KEYWORDS="~amd64"
fi
@@ -23,7 +23,7 @@
LICENSE="GPL-2"
SLOT="0"
-IUSE="custom-cflags debug"
+IUSE="custom-cflags debug debug-log"
RESTRICT="test"
RDEPEND="!sys-devel/spl"
@@ -45,7 +45,7 @@
kernel_is ge 2 6 26 || die "Linux 2.6.26 or newer required"
[ ${PV} != "9999" ] && \
- { kernel_is le 3 5 || die "Linux 3.5 is the latest supported version."; }
+ { kernel_is le 3 8 || die "Linux 3.8 is the latest supported version."; }
check_extra_config
}
@@ -54,11 +54,22 @@
# Workaround for hard coded path
sed -i "s|/sbin/lsmod|/bin/lsmod|" scripts/check.sh || die
+ if [ ${PV} != "9999" ]
+ then
+ # Fix on_each_cpu autotools to work correctly
+ epatch "${FILESDIR}/${P}-fix-on_each_cpu-autotools-check.patch"
+
+ # Fix soft lockup regression
+ epatch "${FILESDIR}/${P}-fix-soft-lockup.patch"
+ fi
+
autotools-utils_src_prepare
}
src_configure() {
use custom-cflags || strip-flags
+ filter-ldflags -Wl,*
+
set_arch_to_kernel
local myeconfargs=(
--bindir="${EPREFIX}/bin"
@@ -67,6 +78,7 @@
--with-linux="${KV_DIR}"
--with-linux-obj="${KV_OUT_DIR}"
$(use_enable debug)
+ $(use_enable debug-log)
)
autotools-utils_src_configure
}
1.41 sys-kernel/spl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/spl/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/spl/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/spl/ChangeLog?r1=1.40&r2=1.41
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/spl/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog 16 Jan 2013 08:57:37 -0000 1.40
+++ ChangeLog 16 Jan 2013 09:01:11 -0000 1.41
@@ -1,6 +1,9 @@
# ChangeLog for sys-kernel/spl
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/spl/ChangeLog,v 1.40 2013/01/16 08:57:37 ryao Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/spl/ChangeLog,v 1.41 2013/01/16 09:01:11 ryao Exp $
+
+ 16 Jan 2013; Richard Yao <ryao@gentoo.org> spl-9999.ebuild:
+ Filter -Wl,* from LDFLAGS to prevent build failures on ARM
*spl-0.6.0_rc13-r2 (16 Jan 2013)
next reply other threads:[~2013-01-16 9:01 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-16 9:01 Richard Yao (ryao) [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-07-09 1:27 [gentoo-commits] gentoo-x86 commit in sys-kernel/spl: spl-9999.ebuild ChangeLog Matt Thode (prometheanfire)
2014-06-20 16:44 Richard Yao (ryao)
2014-05-14 17:38 Richard Yao (ryao)
2014-04-26 16:20 Richard Yao (ryao)
2013-04-17 14:30 Richard Yao (ryao)
2013-04-17 13:34 Richard Yao (ryao)
2013-03-20 18:54 Richard Yao (ryao)
2012-10-03 0:06 Richard Yao (ryao)
2012-06-18 15:18 Richard Yao (ryao)
2012-04-21 17:53 Mike Gilbert (floppym)
2012-04-11 0:11 Mike Gilbert (floppym)
2012-04-04 0:21 Mike Gilbert (floppym)
2012-03-05 0:37 Mike Gilbert (floppym)
2012-02-27 1:28 Mike Gilbert (floppym)
2012-02-27 1:23 Mike Gilbert (floppym)
2012-02-27 1:12 Mike Gilbert (floppym)
2012-02-24 22:35 Mike Gilbert (floppym)
2012-02-14 3:13 Mike Gilbert (floppym)
2012-02-04 21:05 Mike Gilbert (floppym)
2012-01-31 21:19 Mike Gilbert (floppym)
2012-01-28 3:11 Mike Gilbert (floppym)
2012-01-27 22:51 Mike Gilbert (floppym)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130116090112.16F712171D@flycatcher.gentoo.org \
--to=ryao@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox