public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: boost-build-1.48.0-r1.ebuild ChangeLog
@ 2012-01-19 22:40 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 6+ messages in thread
From: Markos Chandras (hwoarang) @ 2012-01-19 22:40 UTC (permalink / raw
  To: gentoo-commits

hwoarang    12/01/19 22:40:07

  Modified:             ChangeLog
  Added:                boost-build-1.48.0-r1.ebuild
  Log:
  Remove directory from rpath, initial support for dots in --python-buildid option. Patch by Arfrever
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.81                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	8 Jan 2012 10:43:10 -0000	1.80
+++ ChangeLog	19 Jan 2012 22:40:07 -0000	1.81
@@ -1,6 +1,16 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.80 2012/01/08 10:43:10 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.81 2012/01/19 22:40:07 hwoarang Exp $
+
+*boost-build-1.48.0-r1 (19 Jan 2012)
+
+  19 Jan 2012; Markos Chandras <hwoarang@gentoo.org>
+  +boost-build-1.48.0-r1.ebuild,
+  +files/boost-build-1.48.0-disable_python_rpath.patch,
+  +files/boost-build-1.48.0-support_dots_in_python-buildid.patch:
+  Remove directory used for searching of libpythonX.Y.so from rpath of all
+  libraries, which would occur in some situations. Initial support for dots in
+  argument of --python-buildid option. Patch by Arfrever
 
 *boost-build-1.48.0 (08 Jan 2012)
 



1.1                  dev-util/boost-build/boost-build-1.48.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: boost-build-1.48.0-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v 1.1 2012/01/19 22:40:07 hwoarang Exp $

EAPI="4"
PYTHON_DEPEND="python? *"

inherit eutils flag-o-matic python toolchain-funcs versionator

MY_PV=$(replace_all_version_separators _)
MAJOR_PV="$(replace_all_version_separators _ $(get_version_component_range 1-2))"

DESCRIPTION="A system for large project software construction, which is simple to use and powerful."
HOMEPAGE="http://www.boost.org/doc/tools/build/index.html"
SRC_URI="mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2"

LICENSE="Boost-1.0"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="examples python"

DEPEND="!<dev-libs/boost-1.34.0
	!<=dev-util/boost-build-1.35.0-r1"
RDEPEND="${DEPEND}"

S="${WORKDIR}/boost_${MY_PV}/tools/build/v2"

src_unpack() {
	tar xjpf "${DISTDIR}/${A}" boost_${MY_PV}/tools/build/v2 || die "unpacking tar failed"
}

src_prepare() {
	epatch "${FILESDIR}/${P}-support_dots_in_python-buildid.patch"
	epatch "${FILESDIR}/${P}-disable_python_rpath.patch"

	# Remove stripping option
	cd "${S}/engine"
	sed -i -e 's|-s\b||' \
		build.jam || die "sed failed"

	# Force regeneration
	rm jambase.c || die

	# This patch allows us to fully control optimization
	# and stripping flags when bjam is used as build-system
	# We simply extend the optimization and debug-symbols feature
	# with empty dummies called 'none'
	cd "${S}"
	sed -i \
		-e 's/\(off speed space\)/\1 none/' \
		-e 's/\(debug-symbols      : on off\)/\1 none/' \
		tools/builtin.jam || die "sed failed"
}

src_compile() {
	cd engine
	local toolset

	if [[ ${CHOST} == *-darwin* ]] ; then
		toolset=darwin
	else
		# Using boost's generic toolset here, which respects CC and CFLAGS
		toolset=cc
	fi

	# For slotting
	sed -i \
		-e "s|/usr/share/boost-build|/usr/share/boost-build-${MAJOR_PV}|" \
		Jambase || die "sed failed"

	# The build.jam file for building bjam using a bootstrapped jam0 ignores
	# the LDFLAGS env var (bug #209794). We have now two options:
	# a) change the cc-target definition in build.jam to include separate compile
	#    and link targets to make it use the LDFLAGS var, or
	# b) a simple dirty workaround by injecting the LDFLAGS in the LIBS env var
	#    (which should not be set by us).
	if [[ -z "${LDFLAGS}" ]] ; then
		CC=$(tc-getCC) ./build.sh ${toolset} $(use_with python) \
			|| die "building bjam failed"
	else
		LDFLAGS=$(echo ${LDFLAGS}) # 293652
		LIBS=${LDFLAGS} CC=$(tc-getCC) ./build.sh ${toolset} \
			$(use_with python) || die "building bjam failed"
	fi
}

src_install() {
	newbin engine/bin.*/bjam bjam-${MAJOR_PV}
	newbin engine/bin.*/b2 b2-${MAJOR_PV}

	cd "${S}"
	insinto /usr/share/boost-build-${MAJOR_PV}
	doins -r boost-build.jam bootstrap.jam build-system.jam site-config.jam user-config.jam \
		build kernel options tools util || die

	dodoc changes.txt hacking.txt release_procedure.txt \
		notes/build_dir_option.txt notes/relative_source_paths.txt

	if use examples ; then
		insinto /usr/share/doc/${PF}
		doins -r example
	fi
}

src_test() {
	cd test/engine

	# FIXME: Replace the ls call with the proper way of doing this.

	BJAM_BIN=$(ls ../../engine/bin.*/b2)
	${BJAM_BIN} -f test.jam "-sBJAM=${BJAM_BIN}" || die "tests failed"
}






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: boost-build-1.48.0-r1.ebuild ChangeLog
@ 2012-05-16 15:39 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2012-05-16 15:39 UTC (permalink / raw
  To: gentoo-commits

jer         12/05/16 15:39:46

  Modified:             boost-build-1.48.0-r1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #413815).
  
  (Portage version: 2.2.0_alpha105/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-util/boost-build/boost-build-1.48.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?r1=1.2&r2=1.3

Index: boost-build-1.48.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- boost-build-1.48.0-r1.ebuild	28 Apr 2012 02:58:31 -0000	1.2
+++ boost-build-1.48.0-r1.ebuild	16 May 2012 15:39:46 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v 1.2 2012/04/28 02:58:31 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v 1.3 2012/05/16 15:39:46 jer Exp $
 
 EAPI="4"
 PYTHON_DEPEND="python? *"
@@ -16,7 +16,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0



1.85                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.84&r2=1.85

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	28 Apr 2012 02:58:31 -0000	1.84
+++ ChangeLog	16 May 2012 15:39:46 -0000	1.85
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.84 2012/04/28 02:58:31 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.85 2012/05/16 15:39:46 jer Exp $
+
+  16 May 2012; Jeroen Roovers <jer@gentoo.org> boost-build-1.48.0-r1.ebuild:
+  Stable for HPPA (bug #413815).
 
   28 Apr 2012; Alexis Ballier <aballier@gentoo.org>
   boost-build-1.48.0-r1.ebuild, boost-build-1.49.0.ebuild:






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: boost-build-1.48.0-r1.ebuild ChangeLog
@ 2012-05-23 20:36 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-05-23 20:36 UTC (permalink / raw
  To: gentoo-commits

ago         12/05/23 20:36:30

  Modified:             boost-build-1.48.0-r1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #413815
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-util/boost-build/boost-build-1.48.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?r1=1.3&r2=1.4

Index: boost-build-1.48.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- boost-build-1.48.0-r1.ebuild	16 May 2012 15:39:46 -0000	1.3
+++ boost-build-1.48.0-r1.ebuild	23 May 2012 20:36:30 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v 1.3 2012/05/16 15:39:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v 1.4 2012/05/23 20:36:30 ago Exp $
 
 EAPI="4"
 PYTHON_DEPEND="python? *"
@@ -16,7 +16,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0



1.86                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.85&r2=1.86

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	16 May 2012 15:39:46 -0000	1.85
+++ ChangeLog	23 May 2012 20:36:30 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.85 2012/05/16 15:39:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.86 2012/05/23 20:36:30 ago Exp $
+
+  23 May 2012; Agostino Sarubbo <ago@gentoo.org> boost-build-1.48.0-r1.ebuild:
+  Stable for amd64, wrt bug #413815
 
   16 May 2012; Jeroen Roovers <jer@gentoo.org> boost-build-1.48.0-r1.ebuild:
   Stable for HPPA (bug #413815).






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: boost-build-1.48.0-r1.ebuild ChangeLog
@ 2012-06-03 18:06 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2012-06-03 18:06 UTC (permalink / raw
  To: gentoo-commits

maekke      12/06/03 18:06:26

  Modified:             boost-build-1.48.0-r1.ebuild ChangeLog
  Log:
  arm stable, bug #413815
  
  (Portage version: 2.1.10.63/cvs/Linux i686)

Revision  Changes    Path
1.5                  dev-util/boost-build/boost-build-1.48.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?r1=1.4&r2=1.5

Index: boost-build-1.48.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- boost-build-1.48.0-r1.ebuild	23 May 2012 20:36:30 -0000	1.4
+++ boost-build-1.48.0-r1.ebuild	3 Jun 2012 18:06:26 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v 1.4 2012/05/23 20:36:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v 1.5 2012/06/03 18:06:26 maekke Exp $
 
 EAPI="4"
 PYTHON_DEPEND="python? *"
@@ -16,7 +16,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0



1.87                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.86&r2=1.87

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	23 May 2012 20:36:30 -0000	1.86
+++ ChangeLog	3 Jun 2012 18:06:26 -0000	1.87
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.86 2012/05/23 20:36:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.87 2012/06/03 18:06:26 maekke Exp $
+
+  03 Jun 2012; Markus Meier <maekke@gentoo.org> boost-build-1.48.0-r1.ebuild:
+  arm stable, bug #413815
 
   23 May 2012; Agostino Sarubbo <ago@gentoo.org> boost-build-1.48.0-r1.ebuild:
   Stable for amd64, wrt bug #413815






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: boost-build-1.48.0-r1.ebuild ChangeLog
@ 2012-06-08 11:17 Michael Weber (xmw)
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Weber (xmw) @ 2012-06-08 11:17 UTC (permalink / raw
  To: gentoo-commits

xmw         12/06/08 11:17:18

  Modified:             boost-build-1.48.0-r1.ebuild ChangeLog
  Log:
  ppc stable (bug 413815)
  
  (Portage version: 2.1.10.63/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  dev-util/boost-build/boost-build-1.48.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?r1=1.5&r2=1.6

Index: boost-build-1.48.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- boost-build-1.48.0-r1.ebuild	3 Jun 2012 18:06:26 -0000	1.5
+++ boost-build-1.48.0-r1.ebuild	8 Jun 2012 11:17:18 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v 1.5 2012/06/03 18:06:26 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v 1.6 2012/06/08 11:17:18 xmw Exp $
 
 EAPI="4"
 PYTHON_DEPEND="python? *"
@@ -16,7 +16,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0



1.91                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.90&r2=1.91

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog	7 Jun 2012 21:05:00 -0000	1.90
+++ ChangeLog	8 Jun 2012 11:17:18 -0000	1.91
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.90 2012/06/07 21:05:00 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.91 2012/06/08 11:17:18 xmw Exp $
+
+  08 Jun 2012; Michael Weber <xmw@gentoo.org> boost-build-1.48.0-r1.ebuild:
+  ppc stable (bug 413815)
 
   07 Jun 2012; Zac Medico <zmedico@gentoo.org> boost-build-1.35.0-r1.ebuild:
   inherit eutils for epatch






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: boost-build-1.48.0-r1.ebuild ChangeLog
@ 2012-06-14 18:50 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-06-14 18:50 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/06/14 18:50:30

  Modified:             boost-build-1.48.0-r1.ebuild ChangeLog
  Log:
  marked x86 per bug 413815
  
  (Portage version: 2.2.0_alpha110/cvs/Linux i686)

Revision  Changes    Path
1.7                  dev-util/boost-build/boost-build-1.48.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild?r1=1.6&r2=1.7

Index: boost-build-1.48.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- boost-build-1.48.0-r1.ebuild	8 Jun 2012 11:17:18 -0000	1.6
+++ boost-build-1.48.0-r1.ebuild	14 Jun 2012 18:50:29 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v 1.6 2012/06/08 11:17:18 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.48.0-r1.ebuild,v 1.7 2012/06/14 18:50:29 jdhore Exp $
 
 EAPI="4"
 PYTHON_DEPEND="python? *"
@@ -16,7 +16,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0



1.92                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.91&r2=1.92

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog	8 Jun 2012 11:17:18 -0000	1.91
+++ ChangeLog	14 Jun 2012 18:50:29 -0000	1.92
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.91 2012/06/08 11:17:18 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.92 2012/06/14 18:50:29 jdhore Exp $
+
+  14 Jun 2012; Jeff Horelick <jdhore@gentoo.org> boost-build-1.48.0-r1.ebuild:
+  marked x86 per bug 413815
 
   08 Jun 2012; Michael Weber <xmw@gentoo.org> boost-build-1.48.0-r1.ebuild:
   ppc stable (bug 413815)






^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-06-14 18:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-23 20:36 [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: boost-build-1.48.0-r1.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2012-06-14 18:50 Jeff Horelick (jdhore)
2012-06-08 11:17 Michael Weber (xmw)
2012-06-03 18:06 Markus Meier (maekke)
2012-05-16 15:39 Jeroen Roovers (jer)
2012-01-19 22:40 Markos Chandras (hwoarang)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox