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

hwoarang    11/03/22 09:51:19

  Modified:             ChangeLog
  Added:                boost-build-1.46.1.ebuild
  Log:
  Version bump. Bug #356479
  
  (Portage version: 2.2.0_alpha27/cvs/Linux x86_64)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog	13 Mar 2011 00:53:30 -0000	1.68
+++ ChangeLog	22 Mar 2011 09:51:18 -0000	1.69
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.68 2011/03/13 00:53:30 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.69 2011/03/22 09:51:18 hwoarang Exp $
+
+*boost-build-1.46.1 (22 Mar 2011)
+
+  22 Mar 2011; Markos Chandras <hwoarang@gentoo.org>
+  +boost-build-1.46.1.ebuild:
+  Version bump. Bug #356479
 
   13 Mar 2011; Markus Meier <maekke@gentoo.org> boost-build-1.42.0.ebuild:
   arm stable, bug #344677



1.1                  dev-util/boost-build/boost-build-1.46.1.ebuild

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

Index: boost-build-1.46.1.ebuild
===================================================================
# Copyright 1999-2011 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.46.1.ebuild,v 1.1 2011/03/22 09:51:18 hwoarang Exp $

EAPI="2"

inherit eutils flag-o-matic 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"
IUSE="examples python"

DEPEND="!<dev-libs/boost-1.34.0
	!<=dev-util/boost-build-1.35.0-r1
	python? ( dev-lang/python )"
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() {
	# TODO:
	#	epatch "${FILESDIR}/boost-1.42-fix-mpich2-detection.patch"

	cd "${S}/engine"
	epatch "${FILESDIR}/${PN}-1.42-env-whitespace.patch" # 293652

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

	# Force regeneration
	rm jambase.c

	# 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/src
	local toolset

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

	append-flags -fno-strict-aliasing

	# 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/src/bin.*/bjam bjam-${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 engine/test
	./test.sh || die "tests failed"
}






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.46.1.ebuild
@ 2011-07-10 15:15 Alexis Ballier (aballier)
  0 siblings, 0 replies; 9+ messages in thread
From: Alexis Ballier (aballier) @ 2011-07-10 15:15 UTC (permalink / raw
  To: gentoo-commits

aballier    11/07/10 15:15:48

  Modified:             ChangeLog boost-build-1.46.1.ebuild
  Log:
  keyword ~x86-fbsd
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	16 Apr 2011 11:29:07 -0000	1.70
+++ ChangeLog	10 Jul 2011 15:15:48 -0000	1.71
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.70 2011/04/16 11:29:07 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.71 2011/07/10 15:15:48 aballier Exp $
+
+  10 Jul 2011; Alexis Ballier <aballier@gentoo.org> boost-build-1.46.1.ebuild:
+  keyword ~x86-fbsd
 
   16 Apr 2011; Raúl Porcel <armin76@gentoo.org> boost-build-1.42.0.ebuild:
   ia64/s390/sh stable wrt #344677



1.2                  dev-util/boost-build/boost-build-1.46.1.ebuild

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

Index: boost-build-1.46.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- boost-build-1.46.1.ebuild	22 Mar 2011 09:51:18 -0000	1.1
+++ boost-build-1.46.1.ebuild	10 Jul 2011 15:15:48 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 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.46.1.ebuild,v 1.1 2011/03/22 09:51:18 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v 1.2 2011/07/10 15:15:48 aballier Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 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"
+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






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.46.1.ebuild
@ 2011-08-12 17:38 Thomas Kahle (tomka)
  0 siblings, 0 replies; 9+ messages in thread
From: Thomas Kahle (tomka) @ 2011-08-12 17:38 UTC (permalink / raw
  To: gentoo-commits

tomka       11/08/12 17:38:19

  Modified:             ChangeLog boost-build-1.46.1.ebuild
  Log:
  x86 stable per bug 377805
  
  (Portage version: 2.1.10.10/cvs/Linux i686)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	10 Jul 2011 15:15:48 -0000	1.71
+++ ChangeLog	12 Aug 2011 17:38:19 -0000	1.72
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.71 2011/07/10 15:15:48 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.72 2011/08/12 17:38:19 tomka Exp $
+
+  12 Aug 2011; Thomas Kahle <tomka@gentoo.org> boost-build-1.46.1.ebuild:
+  x86 stable per bug 377805
 
   10 Jul 2011; Alexis Ballier <aballier@gentoo.org> boost-build-1.46.1.ebuild:
   keyword ~x86-fbsd



1.3                  dev-util/boost-build/boost-build-1.46.1.ebuild

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

Index: boost-build-1.46.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- boost-build-1.46.1.ebuild	10 Jul 2011 15:15:48 -0000	1.2
+++ boost-build-1.46.1.ebuild	12 Aug 2011 17:38:19 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 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.46.1.ebuild,v 1.2 2011/07/10 15:15:48 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v 1.3 2011/08/12 17:38:19 tomka Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 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"
+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






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.46.1.ebuild
@ 2011-08-22 13:11 Tony Vroon (chainsaw)
  0 siblings, 0 replies; 9+ messages in thread
From: Tony Vroon (chainsaw) @ 2011-08-22 13:11 UTC (permalink / raw
  To: gentoo-commits

chainsaw    11/08/22 13:11:08

  Modified:             ChangeLog boost-build-1.46.1.ebuild
  Log:
  Marked stable on AMD64 as a dependency of dev-libs/boost-1.46.1 based on arch testing by Agostino "ago" Sarubbo in bug #377805.
  
  (Portage version: 2.1.10.11/cvs/Linux x86_64)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog	12 Aug 2011 17:38:19 -0000	1.72
+++ ChangeLog	22 Aug 2011 13:11:07 -0000	1.73
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.72 2011/08/12 17:38:19 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.73 2011/08/22 13:11:07 chainsaw Exp $
+
+  22 Aug 2011; Tony Vroon <chainsaw@gentoo.org> boost-build-1.46.1.ebuild:
+  Marked stable on AMD64 as a dependency of dev-libs/boost-1.46.1 based on arch
+  testing by Agostino "ago" Sarubbo in bug #377805.
 
   12 Aug 2011; Thomas Kahle <tomka@gentoo.org> boost-build-1.46.1.ebuild:
   x86 stable per bug 377805



1.4                  dev-util/boost-build/boost-build-1.46.1.ebuild

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

Index: boost-build-1.46.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- boost-build-1.46.1.ebuild	12 Aug 2011 17:38:19 -0000	1.3
+++ boost-build-1.46.1.ebuild	22 Aug 2011 13:11:07 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 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.46.1.ebuild,v 1.3 2011/08/12 17:38:19 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v 1.4 2011/08/22 13:11:07 chainsaw Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 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"
+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






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.46.1.ebuild
@ 2011-08-28 13:15 Markus Meier (maekke)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2011-08-28 13:15 UTC (permalink / raw
  To: gentoo-commits

maekke      11/08/28 13:15:35

  Modified:             ChangeLog boost-build-1.46.1.ebuild
  Log:
  arm stable, bug #377805
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	22 Aug 2011 13:11:07 -0000	1.73
+++ ChangeLog	28 Aug 2011 13:15:35 -0000	1.74
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.73 2011/08/22 13:11:07 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.74 2011/08/28 13:15:35 maekke Exp $
+
+  28 Aug 2011; Markus Meier <maekke@gentoo.org> boost-build-1.46.1.ebuild:
+  arm stable, bug #377805
 
   22 Aug 2011; Tony Vroon <chainsaw@gentoo.org> boost-build-1.46.1.ebuild:
   Marked stable on AMD64 as a dependency of dev-libs/boost-1.46.1 based on arch



1.5                  dev-util/boost-build/boost-build-1.46.1.ebuild

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

Index: boost-build-1.46.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- boost-build-1.46.1.ebuild	22 Aug 2011 13:11:07 -0000	1.4
+++ boost-build-1.46.1.ebuild	28 Aug 2011 13:15:35 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 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.46.1.ebuild,v 1.4 2011/08/22 13:11:07 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v 1.5 2011/08/28 13:15:35 maekke Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 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"
+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






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.46.1.ebuild
@ 2011-09-10 16:10 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2011-09-10 16:10 UTC (permalink / raw
  To: gentoo-commits

armin76     11/09/10 16:10:49

  Modified:             ChangeLog boost-build-1.46.1.ebuild
  Log:
  alpha/ia64/s390/sh/sparc stable wrt #377805
  
  (Portage version: 2.1.10.11/cvs/Linux ia64)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	28 Aug 2011 13:15:35 -0000	1.74
+++ ChangeLog	10 Sep 2011 16:10:49 -0000	1.75
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.74 2011/08/28 13:15:35 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.75 2011/09/10 16:10:49 armin76 Exp $
+
+  10 Sep 2011; Raúl Porcel <armin76@gentoo.org> boost-build-1.46.1.ebuild:
+  alpha/ia64/s390/sh/sparc stable wrt #377805
 
   28 Aug 2011; Markus Meier <maekke@gentoo.org> boost-build-1.46.1.ebuild:
   arm stable, bug #377805



1.6                  dev-util/boost-build/boost-build-1.46.1.ebuild

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

Index: boost-build-1.46.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- boost-build-1.46.1.ebuild	28 Aug 2011 13:15:35 -0000	1.5
+++ boost-build-1.46.1.ebuild	10 Sep 2011 16:10:49 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 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.46.1.ebuild,v 1.5 2011/08/28 13:15:35 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v 1.6 2011/09/10 16:10:49 armin76 Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 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"
+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






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.46.1.ebuild
@ 2011-09-16 16:53 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2011-09-16 16:53 UTC (permalink / raw
  To: gentoo-commits

jer         11/09/16 16:53:31

  Modified:             ChangeLog boost-build-1.46.1.ebuild
  Log:
  Stable for HPPA (bug #377805).
  
  (Portage version: 2.2.0_alpha58/cvs/Linux x86_64)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	10 Sep 2011 16:10:49 -0000	1.75
+++ ChangeLog	16 Sep 2011 16:53:31 -0000	1.76
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.75 2011/09/10 16:10:49 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.76 2011/09/16 16:53:31 jer Exp $
+
+  16 Sep 2011; Jeroen Roovers <jer@gentoo.org> boost-build-1.46.1.ebuild:
+  Stable for HPPA (bug #377805).
 
   10 Sep 2011; Raúl Porcel <armin76@gentoo.org> boost-build-1.46.1.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #377805



1.7                  dev-util/boost-build/boost-build-1.46.1.ebuild

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

Index: boost-build-1.46.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- boost-build-1.46.1.ebuild	10 Sep 2011 16:10:49 -0000	1.6
+++ boost-build-1.46.1.ebuild	16 Sep 2011 16:53:31 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 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.46.1.ebuild,v 1.6 2011/09/10 16:10:49 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v 1.7 2011/09/16 16:53:31 jer Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 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"
+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






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.46.1.ebuild
@ 2011-10-20 16:37 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2011-10-20 16:37 UTC (permalink / raw
  To: gentoo-commits

ranger      11/10/20 16:37:22

  Modified:             ChangeLog boost-build-1.46.1.ebuild
  Log:
  Marking boost-build-1.46.1 ppc for bug 377805
  
  (Portage version: 2.1.10.11/cvs/Linux ppc64)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	26 Sep 2011 11:01:51 -0000	1.77
+++ ChangeLog	20 Oct 2011 16:37:22 -0000	1.78
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.77 2011/09/26 11:01:51 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.78 2011/10/20 16:37:22 ranger Exp $
+
+  20 Oct 2011; Brent Baude <ranger@gentoo.org> boost-build-1.46.1.ebuild:
+  Marking boost-build-1.46.1 ppc for bug 377805
 
 *boost-build-1.47.0 (26 Sep 2011)
 



1.8                  dev-util/boost-build/boost-build-1.46.1.ebuild

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

Index: boost-build-1.46.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- boost-build-1.46.1.ebuild	16 Sep 2011 16:53:31 -0000	1.7
+++ boost-build-1.46.1.ebuild	20 Oct 2011 16:37:22 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 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.46.1.ebuild,v 1.7 2011/09/16 16:53:31 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v 1.8 2011/10/20 16:37:22 ranger Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 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"
+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






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.46.1.ebuild
@ 2011-12-28 19:22 Mark Loeser (halcy0n)
  0 siblings, 0 replies; 9+ messages in thread
From: Mark Loeser (halcy0n) @ 2011-12-28 19:22 UTC (permalink / raw
  To: gentoo-commits

halcy0n     11/12/28 19:22:07

  Modified:             ChangeLog boost-build-1.46.1.ebuild
  Log:
  Stable for ppc64; bug #377805
  
  (Portage version: 2.1.10.11/cvs/Linux ppc64)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	20 Oct 2011 16:37:22 -0000	1.78
+++ ChangeLog	28 Dec 2011 19:22:06 -0000	1.79
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.78 2011/10/20 16:37:22 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.79 2011/12/28 19:22:06 halcy0n Exp $
+
+  28 Dec 2011; Mark Loeser <halcy0n@gentoo.org> boost-build-1.46.1.ebuild:
+  Stable for ppc64; bug #377805
 
   20 Oct 2011; Brent Baude <ranger@gentoo.org> boost-build-1.46.1.ebuild:
   Marking boost-build-1.46.1 ppc for bug 377805



1.9                  dev-util/boost-build/boost-build-1.46.1.ebuild

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

Index: boost-build-1.46.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- boost-build-1.46.1.ebuild	20 Oct 2011 16:37:22 -0000	1.8
+++ boost-build-1.46.1.ebuild	28 Dec 2011 19:22:06 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 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.46.1.ebuild,v 1.8 2011/10/20 16:37:22 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.46.1.ebuild,v 1.9 2011/12/28 19:22:06 halcy0n Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 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"
+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






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

end of thread, other threads:[~2011-12-28 19:22 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-10 16:10 [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.46.1.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2011-12-28 19:22 Mark Loeser (halcy0n)
2011-10-20 16:37 Brent Baude (ranger)
2011-09-16 16:53 Jeroen Roovers (jer)
2011-08-28 13:15 Markus Meier (maekke)
2011-08-22 13:11 Tony Vroon (chainsaw)
2011-08-12 17:38 Thomas Kahle (tomka)
2011-07-10 15:15 Alexis Ballier (aballier)
2011-03-22  9:51 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