* [gentoo-commits] gentoo-x86 commit in sys-power/iasl: ChangeLog iasl-20111123.ebuild
@ 2011-12-11 19:05 Robin H. Johnson (robbat2)
0 siblings, 0 replies; 2+ messages in thread
From: Robin H. Johnson (robbat2) @ 2011-12-11 19:05 UTC (permalink / raw
To: gentoo-commits
robbat2 11/12/11 19:05:42
Modified: ChangeLog
Added: iasl-20111123.ebuild
Log:
Bug #394305: version bump.
(Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
Revision Changes Path
1.36 sys-power/iasl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/ChangeLog?r1=1.35&r2=1.36
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/iasl/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -p -w -b -B -u -u -r1.35 -r1.36
--- ChangeLog 7 Nov 2011 11:30:29 -0000 1.35
+++ ChangeLog 11 Dec 2011 19:05:42 -0000 1.36
@@ -1,6 +1,11 @@
# ChangeLog for sys-power/iasl
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/ChangeLog,v 1.35 2011/11/07 11:30:29 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/ChangeLog,v 1.36 2011/12/11 19:05:42 robbat2 Exp $
+
+*iasl-20111123 (11 Dec 2011)
+
+ 11 Dec 2011; Robin H. Johnson <robbat2@gentoo.org> +iasl-20111123.ebuild:
+ Bug #394305: version bump.
07 Nov 2011; Robin H. Johnson <robbat2@gentoo.org> iasl-20110922.ebuild,
+files/iasl-20110922-parallelmake-003.patch:
1.1 sys-power/iasl/iasl-20111123.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/iasl-20111123.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/iasl-20111123.ebuild?rev=1.1&content-type=text/plain
Index: iasl-20111123.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/iasl-20111123.ebuild,v 1.1 2011/12/11 19:05:42 robbat2 Exp $
EAPI=4
inherit toolchain-funcs flag-o-matic eutils
MY_PN=acpica-unix
MY_P=${MY_PN}-${PV}
MY_TESTS_P=${MY_PN/ca/tests}-${PV}
DESCRIPTION="Intel ACPI Source Language (ASL) compiler"
HOMEPAGE="http://www.intel.com/technology/iapc/acpi/"
SRC_URI="http://www.acpica.org/download/${MY_P}.tar.gz
test? ( http://www.acpica.org/download/${MY_TESTS_P}.tar.gz )"
LICENSE="iASL"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="test"
DEPEND="sys-devel/bison
sys-devel/flex"
RDEPEND=""
S=${WORKDIR}/${MY_P}
pkg_setup() {
if use test
then
ewarn 'You have selected USE="test". This will install the test results'
ewarn "into /usr/share/${PF}/, compressed as a tarball."
ewarn 'The tests themselves will only rarely die, but the test results'
ewarn 'are interesting for arch testing. The tests may take quite some'
ewarn 'time to complete.'
fi
}
src_prepare() {
epatch "${FILESDIR}/${PN}-20110922-as-needed.patch"
epatch "${FILESDIR}/${PN}-20110922-locale.patch"
epatch "${FILESDIR}/${PN}-20110922-parallelmake-001.patch"
epatch "${FILESDIR}/${PN}-20110922-parallelmake-002.patch"
epatch "${FILESDIR}/${PN}-20110922-parallelmake-003.patch"
find "${S}" -type f -name 'Makefile*' -print0 | \
xargs -0 -I '{}' \
sed -r -e 's:-\<Werror\>::g' -i '{}' \
|| die
}
src_configure() {
:
}
src_compile() {
local target bin
for target in compiler tools/acpi{bin,exec,help,names,src,xtract}
do
einfo "Compiling in ${target}/"
cd "${S}"/${target}
case "${target}" in
compiler) bin=iasl;;
*) bin=${target#*/};;
esac
emake CC="$(tc-getCC)" || die "emake in ${target} failed"
einfo "Finished compiling ${target}"
mv ${bin} "${T}" || die "mv ${bin} failed"
einfo "Finished moving ${bin}"
make clean || die "make clean in ${target} failed"
einfo "Finished cleaning ${target}"
echo ${bin} >>"${T}"/binlist
done
einfo "$(<"${T}"/binlist)"
}
src_test() {
aslts_test
#aapits_test
#The aapits test currently fails, missing include probably.
}
src_install() {
local bin
for bin in $(<"${T}"/binlist) ; do
dobin "${T}"/${bin}
done
dodoc README changes.txt
if use test ; then
tb="${T}"/testresults.tar.bz2
export ASLTSDIR="$(<"${T}"/asltdir)"
ebegin "Creating Test Tarball"
tar -cjf "${tb}" -C "${ASLTSDIR}"/tmp/RESULTS . || die "tar failed"
eend $?
dodir /usr/share/${PF}
insinto /usr/share/${PF}
doins ${tb} || die "doins testresults.tar.bz2 failed"
fi
}
aslts_test() {
export ASL="${T}"/iasl \
acpiexec="${T}"/acpiexec \
ASLTSDIR="${WORKDIR}/${MY_TESTS_P}"/tests/aslts
export PATH="${PATH}:${ASLTSDIR}/bin"
echo "$ASLTSDIR" >"${T}"/asltdir
cd "${ASLTSDIR}"
edos2unix $(find . -type 'f')
make install || die "make install aslts test failed"
chmod +x $(find bin/ ! -regex 'ERROR_OPCODES|HOW_TO_USE|README' ) || die "chmod bin +x failed"
#The below Do commands runs the tests twice and then dies if the results aren't
#Identical.
Do 1 || die "failed Do 1"
Do 2 || die "failed Do 2"
}
aapits_test() {
mv "${WORKDIR}/${MY_TESTS_P}/tests/aapits" "${S}/tools/" || die "mv failed"
cd "${S}/tools/aapits" || die "cannot find ${S}/tools/aapits"
edos2unix $(find . -type 'f')
chmod +x $(find bin/ | sed -r -e '/\/[A-Z_]+$/d') || die "chmod bin +x failed"
make || die "make in aapits failed"
cd asl || die "cd asl failed"
make || die "make in asl failed"
cd ../bin
./aapitsrun || die "aapitsrun failed"
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-power/iasl: ChangeLog iasl-20111123.ebuild
@ 2012-04-26 16:38 Alexis Ballier (aballier)
0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2012-04-26 16:38 UTC (permalink / raw
To: gentoo-commits
aballier 12/04/26 16:38:16
Modified: ChangeLog iasl-20111123.ebuild
Log:
keyword ~amd64-fbsd
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Revision Changes Path
1.38 sys-power/iasl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/ChangeLog?r1=1.37&r2=1.38
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/iasl/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog 25 Dec 2011 22:45:59 -0000 1.37
+++ ChangeLog 26 Apr 2012 16:38:16 -0000 1.38
@@ -1,6 +1,9 @@
# ChangeLog for sys-power/iasl
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/ChangeLog,v 1.37 2011/12/25 22:45:59 robbat2 Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/ChangeLog,v 1.38 2012/04/26 16:38:16 aballier Exp $
+
+ 26 Apr 2012; Alexis Ballier <aballier@gentoo.org> iasl-20111123.ebuild:
+ keyword ~amd64-fbsd
25 Dec 2011; Robin H. Johnson <robbat2@gentoo.org> iasl-20080514.ebuild,
iasl-20080701.ebuild, iasl-20090123.ebuild, iasl-20090521.ebuild,
1.3 sys-power/iasl/iasl-20111123.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/iasl-20111123.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/iasl-20111123.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/iasl-20111123.ebuild?r1=1.2&r2=1.3
Index: iasl-20111123.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/iasl/iasl-20111123.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- iasl-20111123.ebuild 25 Dec 2011 22:45:59 -0000 1.2
+++ iasl-20111123.ebuild 26 Apr 2012 16:38:16 -0000 1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/iasl-20111123.ebuild,v 1.2 2011/12/25 22:45:59 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/iasl-20111123.ebuild,v 1.3 2012/04/26 16:38:16 aballier Exp $
EAPI=4
@@ -16,7 +16,7 @@
LICENSE="iASL"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="test"
DEPEND="sys-devel/bison
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-04-26 16:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-11 19:05 [gentoo-commits] gentoo-x86 commit in sys-power/iasl: ChangeLog iasl-20111123.ebuild Robin H. Johnson (robbat2)
-- strict thread matches above, loose matches on Subject: below --
2012-04-26 16:38 Alexis Ballier (aballier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox