* [gentoo-commits] gentoo-x86 commit in dev-libs/boost: ChangeLog boost-1.35.0-r2.ebuild
@ 2008-09-01 18:37 Tiziano Mueller (dev-zero)
0 siblings, 0 replies; 10+ messages in thread
From: Tiziano Mueller (dev-zero) @ 2008-09-01 18:37 UTC (permalink / raw
To: gentoo-commits
dev-zero 08/09/01 18:37:21
Modified: ChangeLog
Added: boost-1.35.0-r2.ebuild
Log:
Added patch to fix compilation errors for other packages on arm, hppa and sparc (bug #230529).
(Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc4 x86_64)
Revision Changes Path
1.140 dev-libs/boost/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.140&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.140&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.139&r2=1.140
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -r1.139 -r1.140
--- ChangeLog 6 Aug 2008 06:38:38 -0000 1.139
+++ ChangeLog 1 Sep 2008 18:37:20 -0000 1.140
@@ -1,6 +1,13 @@
# ChangeLog for dev-libs/boost
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.139 2008/08/06 06:38:38 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.140 2008/09/01 18:37:20 dev-zero Exp $
+
+*boost-1.35.0-r2 (01 Sep 2008)
+
+ 01 Sep 2008; Tiziano Müller <dev-zero@gentoo.org>
+ +boost-1.35.0-r2.ebuild:
+ Added patch to fix compilation errors for other packages on arm, hppa and
+ sparc (bug #230529).
06 Aug 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml:
Add USE flag description to metadata wrt GLEP 56.
1.1 dev-libs/boost/boost-1.35.0-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.1&content-type=text/plain
Index: boost-1.35.0-r2.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.1 2008/09/01 18:37:20 dev-zero Exp $
inherit python flag-o-matic multilib toolchain-funcs versionator check-reqs
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
MY_P=${PN}_$(replace_all_version_separators _)
PATCHSET_VERSION="${PV}-3"
DESCRIPTION="Boost Libraries for C++"
HOMEPAGE="http://www.boost.org/"
SRC_URI="mirror://sourceforge/boost/${MY_P}.tar.bz2
mirror://gentoo/boost-patches-${PATCHSET_VERSION}.tbz2"
LICENSE="freedist Boost-1.0"
SLOT="0"
IUSE="debug doc expat icu mpi tools"
RDEPEND="icu? ( >=dev-libs/icu-3.3 )
expat? ( dev-libs/expat )
mpi? ( || ( sys-cluster/openmpi sys-cluster/mpich2 ) )
sys-libs/zlib
virtual/python"
DEPEND="${RDEPEND}
>=dev-util/boost-build-${PV}-r1"
S=${WORKDIR}/${MY_P}
# Maintainer Information
# ToDo:
# - write a patch to support /dev/urandom on FreeBSD and OSX (see below)
pkg_setup() {
if has test ${FEATURES} ; then
CHECKREQS_DISK_BUILD="1024"
check_reqs
ewarn "The tests may take several hours on a recent machine"
ewarn "but they will not fail (unless something weird happens ;-)"
ewarn "This is because the tests depend on the used compiler/-version"
ewarn "and the platform and upstream says that this is normal."
ewarn "If you are interested in the results, please take a look at the"
ewarn "generated results page:"
ewarn " ${ROOT}usr/share/doc/${PF}/status/cs-$(uname).html"
ebeep 5
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
EPATCH_SOURCE="${WORKDIR}/patches"
EPATCH_SUFFIX="patch"
epatch
# This enables building the boost.random library with /dev/urandom support
if ! use userland_Darwin ; then
mkdir -p libs/random/build
cp "${FILESDIR}/random-Jamfile" libs/random/build/Jamfile.v2
fi
}
generate_options() {
# Maintainer information:
# The debug-symbols=none and optimization=none
# are not official upstream flags but a Gentoo
# specific patch to make sure that all our
# CXXFLAGS/LDFLAGS are being respected.
# Using optimization=off would for example add
# "-O0" and override "-O2" set by the user.
# Please take a look at the boost-build ebuild
# for more infomration.
OPTIONS="gentoorelease"
use debug && OPTIONS="gentoodebug"
use icu && OPTIONS="${OPTIONS} -sICU_PATH=/usr"
if use expat ; then
OPTIONS="${OPTIONS} -sEXPAT_INCLUDE=/usr/include -sEXPAT_LIBPATH=/usr/$(get_libdir)"
fi
if ! use mpi ; then
OPTIONS="${OPTIONS} --without-mpi"
fi
OPTIONS="${OPTIONS} --user-config=${S}/user-config.jam --boost-build=/usr/share/boost-build"
}
generate_userconfig() {
einfo "Writing new user-config.jam"
python_version
local compiler compilerVersion compilerExecutable
if [[ ${CHOST} == *-darwin* ]] ; then
compiler=darwin
compilerVersion=$(gcc-version)
compilerExecutable=$(tc-getCXX)
append-ldflags -ldl
else
compiler=gcc
compilerVersion=$(gcc-version)
compilerExecutable=$(tc-getCXX)
fi
cat > "${S}/user-config.jam" << __EOF__
variant gentoorelease : release : <optimization>none <debug-symbols>none ;
variant gentoodebug : debug : <optimization>none <debug-symbols>none ;
using ${compiler} : ${compilerVersion} : ${compilerExecutable} : <cxxflags>"${CXXFLAGS}" <linkflags>"${LDFLAGS}" ;
using python : ${PYVER} : /usr : /usr/include/python${PYVER} : /usr/lib/python${PYVER} ;
__EOF__
if use mpi ; then
echo "using mpi ;" >> "${S}/user-config.jam"
fi
}
src_compile() {
NUMJOBS=$(sed -e 's/.*\(\-j[ 0-9]\+\) .*/\1/' <<< ${MAKEOPTS})
generate_userconfig
generate_options
elog "Using the following options to build: "
elog " ${OPTIONS}"
export BOOST_ROOT=${S}
bjam ${NUMJOBS} -q \
${OPTIONS} \
threading=single,multi link=shared,static runtime-link=shared,static \
--prefix="${D}/usr" \
--layout=system \
|| die "building boost failed"
if use tools; then
cd "${S}/tools/"
# We have to set optimization to -O0 or -O1 to work around a gcc-bug
# optimization=off adds -O0 to the compiler call and overwrites our settings.
bjam ${NUMJOBS} -q \
${OPTIONS} \
--prefix="${D}/usr" \
--layout=system \
|| die "building tools failed"
fi
if has test ${FEATURES} ; then
cd "${S}/tools/regression/build"
bjam -q \
${OPTIONS} \
--prefix="${D}/usr" \
--layout=system \
|| die "building regression test helpers failed"
fi
}
src_install () {
generate_options
export BOOST_ROOT=${S}
bjam -q \
${OPTIONS} \
threading=single,multi link=shared,static runtime-link=shared,static \
--prefix="${D}/usr" \
--includedir="${D}/usr/include" \
--libdir="${D}/usr/$(get_libdir)" \
--layout=system \
install || die "install failed for options '${OPTIONS}'"
# Move the mpi.so to the right place
if use mpi; then
mkdir -p "${D}/usr/$(get_libdir)/python${PYVER}/site-packages"
mv "${D}/usr/$(get_libdir)/mpi.so" "${D}/usr/$(get_libdir)/python${PYVER}/site-packages"
fi
if use doc ; then
find libs -iname "test" -or -iname "src" | xargs rm -rf
dohtml \
-A pdf,txt,cpp \
*.{htm,html,png,css} \
-r doc more people wiki
insinto /usr/share/doc/${PF}/html
doins -r libs
# To avoid broken links
insinto /usr/share/doc/${PF}/html
doins LICENSE_1_0.txt
dosym /usr/include/boost /usr/share/doc/${PF}/html/boost
fi
cd "${D}/usr/$(get_libdir)"
# If built with debug enabled, all libraries get a 'd' postfix,
# this breaks linking other apps against boost (bug #181972)
if use debug ; then
for lib in $(ls -1 libboost_*) ; do
dosym ${lib} "/usr/$(get_libdir)/$(sed -e 's/-d\././' -e 's/d\././' <<< ${lib})"
done
fi
for lib in $(ls -1 libboost_thread-mt.*) ; do
dosym ${lib} "/usr/$(get_libdir)/$(sed -e 's/-mt//' <<< ${lib})"
done
if use tools; then
cd "${S}/dist"
dobin bin/*
insinto /usr
doins -r share
fi
if has test ${FEATURES} ; then
cd "${S}/status"
docinto status
dohtml *.{html,gif} ../boost.png
dodoc regress.log
fi
}
src_test() {
generate_options
export BOOST_ROOT=${S}
cd "${S}/status"
# Some of the test-checks seem to rely on regexps
export LC_ALL="C"
# The following is largely taken from tools/regression/run_tests.sh,
# but adapted to our needs.
# Run the tests & write them into a file for postprocessing
bjam \
${OPTIONS} \
--dump-tests 2>&1 | tee regress.log
# Postprocessing
cat regress.log | "${S}/dist/bin/process_jam_log" --v2
if test $? != 0 ; then
die "Postprocessing the build log failed"
fi
cat > "${S}/status/comment.html" <<- __EOF__
<p>Tests are run on a <a href="http://www.gentoo.org">Gentoo</a> system.</p>
__EOF__
# Generate the build log html summary page
"${S}/dist/bin/compiler_status" --v2 \
--comment "${S}/status/comment.html" "${S}" \
cs-$(uname).html cs-$(uname)-links.html
if test $? != 0 ; then
die "Generating the build log html summary page failed"
fi
# And do some cosmetic fixes :)
sed -i -e 's|../boost.png|boost.png|' *.html
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/boost: ChangeLog boost-1.35.0-r2.ebuild
@ 2009-03-23 23:13 Ryan Hill (dirtyepic)
0 siblings, 0 replies; 10+ messages in thread
From: Ryan Hill (dirtyepic) @ 2009-03-23 23:13 UTC (permalink / raw
To: gentoo-commits
dirtyepic 09/03/23 23:13:39
Modified: ChangeLog boost-1.35.0-r2.ebuild
Log:
Fix testsuite postprocessing for bug #245192.
(Portage version: 2.2_rc26/cvs/Linux x86_64)
Revision Changes Path
1.145 dev-libs/boost/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.145&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.145&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.144&r2=1.145
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.144
retrieving revision 1.145
diff -u -r1.144 -r1.145
--- ChangeLog 7 Feb 2009 19:58:38 -0000 1.144
+++ ChangeLog 23 Mar 2009 23:13:39 -0000 1.145
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/boost
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.144 2009/02/07 19:58:38 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.145 2009/03/23 23:13:39 dirtyepic Exp $
+
+ 23 Mar 2009; Ryan Hill <dirtyepic@gentoo.org> boost-1.35.0-r2.ebuild:
+ Fix testsuite postprocessing for bug #245192.
07 Feb 2009; Tobias Klausmann <klausman@gentoo.org>
boost-1.35.0-r1.ebuild:
1.2 dev-libs/boost/boost-1.35.0-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?r1=1.1&r2=1.2
Index: boost-1.35.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- boost-1.35.0-r2.ebuild 1 Sep 2008 18:37:20 -0000 1.1
+++ boost-1.35.0-r2.ebuild 23 Mar 2009 23:13:39 -0000 1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.1 2008/09/01 18:37:20 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.2 2009/03/23 23:13:39 dirtyepic Exp $
inherit python flag-o-matic multilib toolchain-funcs versionator check-reqs
@@ -35,11 +35,11 @@
if has test ${FEATURES} ; then
CHECKREQS_DISK_BUILD="1024"
check_reqs
-
- ewarn "The tests may take several hours on a recent machine"
- ewarn "but they will not fail (unless something weird happens ;-)"
- ewarn "This is because the tests depend on the used compiler/-version"
- ewarn "and the platform and upstream says that this is normal."
+ ewarn "The testsuite may take several hours to run on a modern system."
+ ewarn "It is normal to see some tests failing, as some are dependent"
+ ewarn "on compiler version and platform. Unless something weird"
+ ewarn "happens, the ebuild should continue installing as normal."
+ ewarn
ewarn "If you are interested in the results, please take a look at the"
ewarn "generated results page:"
ewarn " ${ROOT}usr/share/doc/${PF}/status/cs-$(uname).html"
@@ -73,7 +73,7 @@
# Using optimization=off would for example add
# "-O0" and override "-O2" set by the user.
# Please take a look at the boost-build ebuild
- # for more infomration.
+ # for more information.
OPTIONS="gentoorelease"
use debug && OPTIONS="gentoodebug"
@@ -157,6 +157,7 @@
${OPTIONS} \
--prefix="${D}/usr" \
--layout=system \
+ process_jam_log compiler_status \
|| die "building regression test helpers failed"
fi
@@ -247,7 +248,10 @@
--dump-tests 2>&1 | tee regress.log
# Postprocessing
- cat regress.log | "${S}/dist/bin/process_jam_log" --v2
+ process_jam_log=$(find "${S}"/tools/regression/build/bin -name process_jam_log -print);
+ compiler_status=$(find "${S}"/tools/regression/build/bin -name compiler_status -print);
+
+ cat regress.log | "${process_jam_log}" --v2
if test $? != 0 ; then
die "Postprocessing the build log failed"
fi
@@ -257,7 +261,7 @@
__EOF__
# Generate the build log html summary page
- "${S}/dist/bin/compiler_status" --v2 \
+ "${compiler_status}" --v2 \
--comment "${S}/status/comment.html" "${S}" \
cs-$(uname).html cs-$(uname)-links.html
if test $? != 0 ; then
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/boost: ChangeLog boost-1.35.0-r2.ebuild
@ 2009-03-24 4:28 Ryan Hill (dirtyepic)
0 siblings, 0 replies; 10+ messages in thread
From: Ryan Hill (dirtyepic) @ 2009-03-24 4:28 UTC (permalink / raw
To: gentoo-commits
dirtyepic 09/03/24 04:28:27
Modified: ChangeLog boost-1.35.0-r2.ebuild
Log:
Because versions of boost-build greater than 1.35.0-r1 are slotted and
won't work with this ebuild, lock the dependency to 1.35.0-r1.
(Portage version: 2.2_rc26/cvs/Linux x86_64)
Revision Changes Path
1.146 dev-libs/boost/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.146&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.146&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.145&r2=1.146
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- ChangeLog 23 Mar 2009 23:13:39 -0000 1.145
+++ ChangeLog 24 Mar 2009 04:28:27 -0000 1.146
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/boost
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.145 2009/03/23 23:13:39 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.146 2009/03/24 04:28:27 dirtyepic Exp $
+
+ 24 Mar 2009; Ryan Hill <dirtyepic@gentoo.org> boost-1.35.0-r2.ebuild:
+ Because versions of boost-build greater than 1.35.0-r1 are slotted and
+ won't work with this ebuild, lock the dependency to 1.35.0-r1.
23 Mar 2009; Ryan Hill <dirtyepic@gentoo.org> boost-1.35.0-r2.ebuild:
Fix testsuite postprocessing for bug #245192.
1.3 dev-libs/boost/boost-1.35.0-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?r1=1.2&r2=1.3
Index: boost-1.35.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- boost-1.35.0-r2.ebuild 23 Mar 2009 23:13:39 -0000 1.2
+++ boost-1.35.0-r2.ebuild 24 Mar 2009 04:28:27 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.2 2009/03/23 23:13:39 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.3 2009/03/24 04:28:27 dirtyepic Exp $
inherit python flag-o-matic multilib toolchain-funcs versionator check-reqs
@@ -23,7 +23,7 @@
sys-libs/zlib
virtual/python"
DEPEND="${RDEPEND}
- >=dev-util/boost-build-${PV}-r1"
+ =dev-util/boost-build-${PV}-r1"
S=${WORKDIR}/${MY_P}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/boost: ChangeLog boost-1.35.0-r2.ebuild
@ 2009-03-25 1:34 Ryan Hill (dirtyepic)
0 siblings, 0 replies; 10+ messages in thread
From: Ryan Hill (dirtyepic) @ 2009-03-25 1:34 UTC (permalink / raw
To: gentoo-commits
dirtyepic 09/03/25 01:34:13
Modified: ChangeLog boost-1.35.0-r2.ebuild
Log:
Fix testsuite processing for paludis users.
(Portage version: 2.2_rc26/cvs/Linux x86_64)
Revision Changes Path
1.148 dev-libs/boost/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.148&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.148&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.147&r2=1.148
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog 24 Mar 2009 04:51:20 -0000 1.147
+++ ChangeLog 25 Mar 2009 01:34:13 -0000 1.148
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/boost
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.147 2009/03/24 04:51:20 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.148 2009/03/25 01:34:13 dirtyepic Exp $
+
+ 25 Mar 2009; Ryan Hill <dirtyepic@gentoo.org> boost-1.35.0-r2.ebuild:
+ Fix testsuite processing for paludis users.
24 Mar 2009; Ryan Hill <dirtyepic@gentoo.org> boost-1.35.0-r3.ebuild,
boost-1.35.0-r4.ebuild:
1.4 dev-libs/boost/boost-1.35.0-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?r1=1.3&r2=1.4
Index: boost-1.35.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- boost-1.35.0-r2.ebuild 24 Mar 2009 04:28:27 -0000 1.3
+++ boost-1.35.0-r2.ebuild 25 Mar 2009 01:34:13 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.3 2009/03/24 04:28:27 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.4 2009/03/25 01:34:13 dirtyepic Exp $
inherit python flag-o-matic multilib toolchain-funcs versionator check-reqs
@@ -35,11 +35,11 @@
if has test ${FEATURES} ; then
CHECKREQS_DISK_BUILD="1024"
check_reqs
- ewarn "The testsuite may take several hours to run on a modern system."
- ewarn "It is normal to see some tests failing, as some are dependent"
- ewarn "on compiler version and platform. Unless something weird"
- ewarn "happens, the ebuild should continue installing as normal."
- ewarn
+
+ ewarn "The tests may take several hours on a recent machine"
+ ewarn "but they will not fail (unless something weird happens ;-)"
+ ewarn "This is because the tests depend on the used compiler/-version"
+ ewarn "and the platform and upstream says that this is normal."
ewarn "If you are interested in the results, please take a look at the"
ewarn "generated results page:"
ewarn " ${ROOT}usr/share/doc/${PF}/status/cs-$(uname).html"
@@ -75,8 +75,10 @@
# Please take a look at the boost-build ebuild
# for more information.
- OPTIONS="gentoorelease"
- use debug && OPTIONS="gentoodebug"
+ BUILDNAME="gentoorelease"
+ use debug && BUILDNAME="gentoodebug"
+
+ OPTIONS="${BUILDNAME}"
use icu && OPTIONS="${OPTIONS} -sICU_PATH=/usr"
if use expat ; then
@@ -150,17 +152,6 @@
--layout=system \
|| die "building tools failed"
fi
-
- if has test ${FEATURES} ; then
- cd "${S}/tools/regression/build"
- bjam -q \
- ${OPTIONS} \
- --prefix="${D}/usr" \
- --layout=system \
- process_jam_log compiler_status \
- || die "building regression test helpers failed"
- fi
-
}
src_install () {
@@ -221,8 +212,8 @@
doins -r share
fi
- if has test ${FEATURES} ; then
- cd "${S}/status"
+ cd "${S}/status"
+ if [ -f regress.log ]; then
docinto status
dohtml *.{html,gif} ../boost.png
dodoc regress.log
@@ -234,6 +225,14 @@
export BOOST_ROOT=${S}
+ cd "${S}/tools/regression/build"
+ bjam -q \
+ ${OPTIONS} \
+ --prefix="${D}/usr" \
+ --layout=system \
+ process_jam_log compiler_status \
+ || die "building regression test helpers failed"
+
cd "${S}/status"
# Some of the test-checks seem to rely on regexps
@@ -248,10 +247,7 @@
--dump-tests 2>&1 | tee regress.log
# Postprocessing
- process_jam_log=$(find "${S}"/tools/regression/build/bin -name process_jam_log -print);
- compiler_status=$(find "${S}"/tools/regression/build/bin -name compiler_status -print);
-
- cat regress.log | "${process_jam_log}" --v2
+ cat regress.log | "${S}/tools/regression/build/bin/gcc-$(gcc-version)/${BUILDNAME}/process_jam_log" --v2
if test $? != 0 ; then
die "Postprocessing the build log failed"
fi
@@ -261,7 +257,7 @@
__EOF__
# Generate the build log html summary page
- "${compiler_status}" --v2 \
+ "${S}/tools/regression/build/bin/gcc-$(gcc-version)/${BUILDNAME}/compiler_status" --v2 \
--comment "${S}/status/comment.html" "${S}" \
cs-$(uname).html cs-$(uname)-links.html
if test $? != 0 ; then
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/boost: ChangeLog boost-1.35.0-r2.ebuild
@ 2009-04-01 18:17 Joseph Jezak (josejx)
0 siblings, 0 replies; 10+ messages in thread
From: Joseph Jezak (josejx) @ 2009-04-01 18:17 UTC (permalink / raw
To: gentoo-commits
josejx 09/04/01 18:17:37
Modified: ChangeLog boost-1.35.0-r2.ebuild
Log:
Marked ppc stable for bug #245192.
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Revision Changes Path
1.149 dev-libs/boost/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.149&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.149&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.148&r2=1.149
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ChangeLog 25 Mar 2009 01:34:13 -0000 1.148
+++ ChangeLog 1 Apr 2009 18:17:37 -0000 1.149
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/boost
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.148 2009/03/25 01:34:13 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.149 2009/04/01 18:17:37 josejx Exp $
+
+ 01 Apr 2009; Joseph Jezak <josejx@gentoo.org> boost-1.35.0-r2.ebuild:
+ Marked ppc stable for bug #245192.
25 Mar 2009; Ryan Hill <dirtyepic@gentoo.org> boost-1.35.0-r2.ebuild:
Fix testsuite processing for paludis users.
1.6 dev-libs/boost/boost-1.35.0-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?r1=1.5&r2=1.6
Index: boost-1.35.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- boost-1.35.0-r2.ebuild 29 Mar 2009 01:13:46 -0000 1.5
+++ boost-1.35.0-r2.ebuild 1 Apr 2009 18:17:37 -0000 1.6
@@ -1,10 +1,10 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.5 2009/03/29 01:13:46 gentoofan23 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.6 2009/04/01 18:17:37 josejx Exp $
inherit python flag-o-matic multilib toolchain-funcs versionator check-reqs
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
MY_P=${PN}_$(replace_all_version_separators _)
PATCHSET_VERSION="${PV}-3"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/boost: ChangeLog boost-1.35.0-r2.ebuild
@ 2009-04-02 17:13 Friedrich Oslage (bluebird)
0 siblings, 0 replies; 10+ messages in thread
From: Friedrich Oslage (bluebird) @ 2009-04-02 17:13 UTC (permalink / raw
To: gentoo-commits
bluebird 09/04/02 17:13:27
Modified: ChangeLog boost-1.35.0-r2.ebuild
Log:
Stable on sparc, bug #245192
(Portage version: 2.2_rc28/cvs/Linux sparc64)
Revision Changes Path
1.150 dev-libs/boost/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.150&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.150&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.149&r2=1.150
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- ChangeLog 1 Apr 2009 18:17:37 -0000 1.149
+++ ChangeLog 2 Apr 2009 17:13:27 -0000 1.150
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/boost
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.149 2009/04/01 18:17:37 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.150 2009/04/02 17:13:27 bluebird Exp $
+
+ 02 Apr 2009; Friedrich Oslage <bluebird@gentoo.org>
+ boost-1.35.0-r2.ebuild:
+ Stable on sparc, bug #245192
01 Apr 2009; Joseph Jezak <josejx@gentoo.org> boost-1.35.0-r2.ebuild:
Marked ppc stable for bug #245192.
1.7 dev-libs/boost/boost-1.35.0-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?r1=1.6&r2=1.7
Index: boost-1.35.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- boost-1.35.0-r2.ebuild 1 Apr 2009 18:17:37 -0000 1.6
+++ boost-1.35.0-r2.ebuild 2 Apr 2009 17:13:27 -0000 1.7
@@ -1,10 +1,10 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.6 2009/04/01 18:17:37 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.7 2009/04/02 17:13:27 bluebird Exp $
inherit python flag-o-matic multilib toolchain-funcs versionator check-reqs
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc ~x86"
MY_P=${PN}_$(replace_all_version_separators _)
PATCHSET_VERSION="${PV}-3"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/boost: ChangeLog boost-1.35.0-r2.ebuild
@ 2009-04-04 14:15 Markus Meier (maekke)
0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2009-04-04 14:15 UTC (permalink / raw
To: gentoo-commits
maekke 09/04/04 14:15:51
Modified: ChangeLog boost-1.35.0-r2.ebuild
Log:
x86 stable, bug #245192
(Portage version: 2.1.6.11/cvs/Linux x86_64)
Revision Changes Path
1.151 dev-libs/boost/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.151&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.151&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.150&r2=1.151
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog 2 Apr 2009 17:13:27 -0000 1.150
+++ ChangeLog 4 Apr 2009 14:15:51 -0000 1.151
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/boost
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.150 2009/04/02 17:13:27 bluebird Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.151 2009/04/04 14:15:51 maekke Exp $
+
+ 04 Apr 2009; Markus Meier <maekke@gentoo.org> boost-1.35.0-r2.ebuild:
+ x86 stable, bug #245192
02 Apr 2009; Friedrich Oslage <bluebird@gentoo.org>
boost-1.35.0-r2.ebuild:
1.8 dev-libs/boost/boost-1.35.0-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?r1=1.7&r2=1.8
Index: boost-1.35.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- boost-1.35.0-r2.ebuild 2 Apr 2009 17:13:27 -0000 1.7
+++ boost-1.35.0-r2.ebuild 4 Apr 2009 14:15:51 -0000 1.8
@@ -1,10 +1,10 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.7 2009/04/02 17:13:27 bluebird Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.8 2009/04/04 14:15:51 maekke Exp $
inherit python flag-o-matic multilib toolchain-funcs versionator check-reqs
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86"
MY_P=${PN}_$(replace_all_version_separators _)
PATCHSET_VERSION="${PV}-3"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/boost: ChangeLog boost-1.35.0-r2.ebuild
@ 2009-04-04 14:25 Raul Porcel (armin76)
0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2009-04-04 14:25 UTC (permalink / raw
To: gentoo-commits
armin76 09/04/04 14:25:00
Modified: ChangeLog boost-1.35.0-r2.ebuild
Log:
alpha/ia64 stable wrt #245192
(Portage version: 2.1.6.7/cvs/Linux ia64)
Revision Changes Path
1.152 dev-libs/boost/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.152&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.152&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.151&r2=1.152
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog 4 Apr 2009 14:15:51 -0000 1.151
+++ ChangeLog 4 Apr 2009 14:25:00 -0000 1.152
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/boost
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.151 2009/04/04 14:15:51 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.152 2009/04/04 14:25:00 armin76 Exp $
+
+ 04 Apr 2009; Raúl Porcel <armin76@gentoo.org> boost-1.35.0-r2.ebuild:
+ alpha/ia64 stable wrt #245192
04 Apr 2009; Markus Meier <maekke@gentoo.org> boost-1.35.0-r2.ebuild:
x86 stable, bug #245192
1.9 dev-libs/boost/boost-1.35.0-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?r1=1.8&r2=1.9
Index: boost-1.35.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- boost-1.35.0-r2.ebuild 4 Apr 2009 14:15:51 -0000 1.8
+++ boost-1.35.0-r2.ebuild 4 Apr 2009 14:25:00 -0000 1.9
@@ -1,10 +1,10 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.8 2009/04/04 14:15:51 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.9 2009/04/04 14:25:00 armin76 Exp $
inherit python flag-o-matic multilib toolchain-funcs versionator check-reqs
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86"
MY_P=${PN}_$(replace_all_version_separators _)
PATCHSET_VERSION="${PV}-3"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/boost: ChangeLog boost-1.35.0-r2.ebuild
@ 2009-04-14 20:01 Brent Baude (ranger)
0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2009-04-14 20:01 UTC (permalink / raw
To: gentoo-commits
ranger 09/04/14 20:01:17
Modified: ChangeLog boost-1.35.0-r2.ebuild
Log:
Marking boost-1.35.0-r2 ppc64 for bug 245192
(Portage version: 2.1.6.11/cvs/Linux ppc64)
Revision Changes Path
1.155 dev-libs/boost/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.155&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.155&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.154&r2=1.155
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -r1.154 -r1.155
--- ChangeLog 14 Apr 2009 11:44:10 -0000 1.154
+++ ChangeLog 14 Apr 2009 20:01:17 -0000 1.155
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/boost
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.154 2009/04/14 11:44:10 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.155 2009/04/14 20:01:17 ranger Exp $
+
+ 14 Apr 2009; Brent Baude <ranger@gentoo.org> boost-1.35.0-r2.ebuild:
+ Marking boost-1.35.0-r2 ppc64 for bug 245192
14 Apr 2009; Tiziano Müller <dev-zero@gentoo.org> boost-1.37.0-r1.ebuild:
Correct non-mt symlink creation for debug libs (bug #256697)
1.10 dev-libs/boost/boost-1.35.0-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?r1=1.9&r2=1.10
Index: boost-1.35.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- boost-1.35.0-r2.ebuild 4 Apr 2009 14:25:00 -0000 1.9
+++ boost-1.35.0-r2.ebuild 14 Apr 2009 20:01:17 -0000 1.10
@@ -1,10 +1,10 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.9 2009/04/04 14:25:00 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.10 2009/04/14 20:01:17 ranger Exp $
inherit python flag-o-matic multilib toolchain-funcs versionator check-reqs
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
MY_P=${PN}_$(replace_all_version_separators _)
PATCHSET_VERSION="${PV}-3"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/boost: ChangeLog boost-1.35.0-r2.ebuild
@ 2009-05-15 14:50 Raul Porcel (armin76)
0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2009-05-15 14:50 UTC (permalink / raw
To: gentoo-commits
armin76 09/05/15 14:50:07
Modified: ChangeLog boost-1.35.0-r2.ebuild
Log:
arm/s390/sh stable wrt #245192
(Portage version: 2.1.6.11/cvs/Linux ia64)
Revision Changes Path
1.159 dev-libs/boost/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.159&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.159&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.158&r2=1.159
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.158
retrieving revision 1.159
diff -u -r1.158 -r1.159
--- ChangeLog 15 May 2009 10:42:27 -0000 1.158
+++ ChangeLog 15 May 2009 14:50:06 -0000 1.159
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/boost
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.158 2009/05/15 10:42:27 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.159 2009/05/15 14:50:06 armin76 Exp $
+
+ 15 May 2009; Raúl Porcel <armin76@gentoo.org> boost-1.35.0-r2.ebuild:
+ arm/s390/sh stable wrt #245192
15 May 2009; Tiziano Müller <dev-zero@gentoo.org> boost-1.35.0-r5.ebuild,
boost-1.36.0-r1.ebuild, boost-1.37.0-r1.ebuild:
1.11 dev-libs/boost/boost-1.35.0-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild?r1=1.10&r2=1.11
Index: boost-1.35.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- boost-1.35.0-r2.ebuild 14 Apr 2009 20:01:17 -0000 1.10
+++ boost-1.35.0-r2.ebuild 15 May 2009 14:50:06 -0000 1.11
@@ -1,10 +1,10 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.10 2009/04/14 20:01:17 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r2.ebuild,v 1.11 2009/05/15 14:50:06 armin76 Exp $
inherit python flag-o-matic multilib toolchain-funcs versionator check-reqs
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86"
MY_P=${PN}_$(replace_all_version_separators _)
PATCHSET_VERSION="${PV}-3"
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2009-05-15 14:50 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-23 23:13 [gentoo-commits] gentoo-x86 commit in dev-libs/boost: ChangeLog boost-1.35.0-r2.ebuild Ryan Hill (dirtyepic)
-- strict thread matches above, loose matches on Subject: below --
2009-05-15 14:50 Raul Porcel (armin76)
2009-04-14 20:01 Brent Baude (ranger)
2009-04-04 14:25 Raul Porcel (armin76)
2009-04-04 14:15 Markus Meier (maekke)
2009-04-02 17:13 Friedrich Oslage (bluebird)
2009-04-01 18:17 Joseph Jezak (josejx)
2009-03-25 1:34 Ryan Hill (dirtyepic)
2009-03-24 4:28 Ryan Hill (dirtyepic)
2008-09-01 18:37 Tiziano Mueller (dev-zero)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox