Gentoo Archives: gentoo-commits

From: "Richard Farina (zerochaos)" <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/boost: boost-1.49.0-r2.ebuild ChangeLog
Date: Thu, 22 Nov 2012 19:48:48
Message-Id: 20121122194837.640A520C65@flycatcher.gentoo.org
1 zerochaos 12/11/22 19:48:37
2
3 Modified: boost-1.49.0-r2.ebuild ChangeLog
4 Log:
5 sorry about that, that commit was not meant for gentoo-x86, reverting.
6
7 (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)
8
9 Revision Changes Path
10 1.5 dev-libs/boost/boost-1.49.0-r2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.49.0-r2.ebuild?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.49.0-r2.ebuild?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.49.0-r2.ebuild?r1=1.4&r2=1.5
15
16 Index: boost-1.49.0-r2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.49.0-r2.ebuild,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- boost-1.49.0-r2.ebuild 22 Nov 2012 19:42:17 -0000 1.4
23 +++ boost-1.49.0-r2.ebuild 22 Nov 2012 19:48:37 -0000 1.5
24 @@ -1,13 +1,13 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.49.0-r2.ebuild,v 1.4 2012/11/22 19:42:17 zerochaos Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.49.0-r2.ebuild,v 1.5 2012/11/22 19:48:37 zerochaos Exp $
29
30 EAPI="4"
31 PYTHON_DEPEND="python? *"
32 SUPPORT_PYTHON_ABIS="1"
33 RESTRICT_PYTHON_ABIS="*-jython *-pypy-*"
34
35 -inherit flag-o-matic multilib multiprocessing python toolchain-funcs versionator
36 +inherit flag-o-matic multilib python toolchain-funcs versionator
37
38 MY_P=${PN}_$(replace_all_version_separators _)
39
40 @@ -124,10 +124,17 @@
41 }
42
43 src_compile() {
44 + local jobs
45 + jobs=$( echo " ${MAKEOPTS} " | \
46 + sed -e 's/ --jobs[= ]/ -j /g' \
47 + -e 's/ -j \([1-9][0-9]*\)/ -j\1/g' \
48 + -e 's/ -j\>/ -j1/g' | \
49 + ( while read -d ' ' j; do if [[ "${j#-j}" = "$j" ]]; then continue; fi; jobs="${j#-j}"; done; echo ${jobs} ) )
50 + if [[ "${jobs}" != "" ]]; then NUMJOBS="-j"${jobs}; fi
51 +
52 export BOOST_ROOT="${S}"
53 PYTHON_DIRS=""
54 MPI_PYTHON_MODULE=""
55 - NUMJOBS="-j$(makeopts_jobs)"
56
57 building() {
58 create_user-config.jam
59
60
61
62 1.285 dev-libs/boost/ChangeLog
63
64 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.285&view=markup
65 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.285&content-type=text/plain
66 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.284&r2=1.285
67
68 Index: ChangeLog
69 ===================================================================
70 RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
71 retrieving revision 1.284
72 retrieving revision 1.285
73 diff -u -r1.284 -r1.285
74 --- ChangeLog 22 Nov 2012 19:42:17 -0000 1.284
75 +++ ChangeLog 22 Nov 2012 19:48:37 -0000 1.285
76 @@ -1,6 +1,9 @@
77 # ChangeLog for dev-libs/boost
78 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
79 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.284 2012/11/22 19:42:17 zerochaos Exp $
80 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.285 2012/11/22 19:48:37 zerochaos Exp $
81 +
82 + 22 Nov 2012; Rick Farina <zerochaos@g.o> boost-1.49.0-r2.ebuild:
83 + sorry about that, that commit was not meant for gentoo-x86, reverting.
84
85 22 Nov 2012; Rick Farina <zerochaos@g.o> boost-1.49.0-r2.ebuild:
86 fix to parse MAKEOPTS jobs properly, same style as newer ebuilds