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.56.0.ebuild
@ 2014-08-15  7:57 Sergey Popov (pinkbyte)
  0 siblings, 0 replies; 5+ messages in thread
From: Sergey Popov (pinkbyte) @ 2014-08-15  7:57 UTC (permalink / raw
  To: gentoo-commits

pinkbyte    14/08/15 07:57:24

  Modified:             ChangeLog
  Added:                boost-build-1.56.0.ebuild
  Log:
  Version bump, wrt bug #519476. Migrate to python-any-r1 eclass, add support for user patches
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- ChangeLog	10 Aug 2014 21:25:43 -0000	1.127
+++ ChangeLog	15 Aug 2014 07:57:24 -0000	1.128
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.127 2014/08/10 21:25:43 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.128 2014/08/15 07:57:24 pinkbyte Exp $
+
+*boost-build-1.56.0 (15 Aug 2014)
+
+  15 Aug 2014; Sergey Popov <pinkbyte@gentoo.org> +boost-build-1.56.0.ebuild:
+  Version bump, wrt bug #519476. Migrate to python-any-r1 eclass, add support
+  for user patches
 
   10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org>
   boost-build-1.52.0-r1.ebuild, boost-build-1.53.0.ebuild,



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

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

Index: boost-build-1.56.0.ebuild
===================================================================
# Copyright 1999-2014 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.56.0.ebuild,v 1.1 2014/08/15 07:57:24 pinkbyte Exp $

EAPI="5"

PYTHON_COMPAT=( python2_7 )
inherit eutils flag-o-matic multilib python-any-r1 toolchain-funcs versionator

MY_PV="$(replace_all_version_separators _)"

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="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-aix ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="examples python test"

RDEPEND="!<dev-libs/boost-1.34.0
	!<=dev-util/boost-build-1.35.0-r1"
DEPEND="${RDEPEND}
	python? ( ${PYTHON_DEPS} )
	test? ( sys-apps/diffutils )"

REQUIRED_USE="test? ( python )"

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

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

src_prepare() {
	epatch \
		"${FILESDIR}/${PN}-1.48.0-disable_python_rpath.patch" \
		"${FILESDIR}/${PN}-1.50.0-respect-c_ld-flags.patch" \
		"${FILESDIR}/${PN}-1.49.0-darwin-gentoo-toolchain.patch" \
		"${FILESDIR}/${PN}-1.52.0-darwin-no-python-framework.patch" \
		"${FILESDIR}/${PN}-1.54.0-support_dots_in_python-buildid.patch"

	pushd ../ &>/dev/null || die
	epatch "${FILESDIR}/${PN}-1.54.0-fix-test.patch"
	popd &>/dev/null || die

	# Remove stripping option
	# Fix python components build on multilib systems, bug #496446
	cd "${S}/engine" || die
	sed -i \
		-e 's|-s\b||' \
		-e "/libpython/s/lib ]/$(get_libdir) ]/" \
		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}" || die
	sed -i \
		-e 's/\(off speed space\)/\1 none/' \
		-e 's/\(debug-symbols      : on off\)/\1 none/' \
		tools/builtin.jam || die "sed failed"

	epatch_user
}

src_configure() {
	if use python; then
		# replace versions by user-selected one (TODO: fix this when slot-op
		# deps are available to always match the best version available)
		sed -i \
			-e "s|2.7 2.6 2.5 2.4 2.3 2.2|${EPYTHON##python}|" \
			engine/build.jam || die "sed failed"
	fi
}

src_compile() {
	cd engine || die

	local toolset

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

	CC=$(tc-getCC) ./build.sh ${toolset} -d+2 $(use_with python python "${EROOT}"/usr) || die "building bjam failed"
}

src_install() {
	dobin engine/bin.*/{bjam,b2}

	insinto /usr/share/boost-build
	doins -r "${FILESDIR}/site-config.jam" \
		../boost-build.jam bootstrap.jam build-system.jam ../example/user-config.jam *.py \
		build kernel options tools util

	rm "${ED}/usr/share/boost-build/build/project.ann.py" || die "removing faulty python file failed"
	if ! use python; then
		find "${ED}/usr/share/boost-build" -iname "*.py" -delete || die "removing experimental python files failed"
	fi

	dodoc ../notes/{changes,hacking,release_procedure,build_dir_option,relative_source_paths}.txt

	if use examples; then
		dodoc -r ../example
		docompress -x "/usr/share/doc/${PF}/example"
	fi
}

src_test() {
	cd ../test || die

	export TMP="${T}"

	DO_DIFF="${PREFIX}/usr/bin/diff" ${PYTHON} test_all.py

	if [[ -s test_results.txt ]]; then
		eerror "At least one test failed: $(<test_results.txt)"
		die "tests failed"
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.56.0.ebuild
@ 2015-03-03  7:40 Yixun Lan (dlan)
  0 siblings, 0 replies; 5+ messages in thread
From: Yixun Lan (dlan) @ 2015-03-03  7:40 UTC (permalink / raw
  To: gentoo-commits

dlan        15/03/03 07:40:06

  Modified:             ChangeLog boost-build-1.56.0.ebuild
  Log:
  add arm64 support, tested on A53 board
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- ChangeLog	27 Feb 2015 09:26:38 -0000	1.138
+++ ChangeLog	3 Mar 2015 07:40:06 -0000	1.139
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.138 2015/02/27 09:26:38 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.139 2015/03/03 07:40:06 dlan Exp $
+
+  02 Mar 2015; Yixun Lan <dlan@gentoo.org> boost-build-1.56.0.ebuild:
+  add arm64 support, tested on A53 board
 
   27 Feb 2015; Sergey Popov <pinkbyte@gentoo.org> boost-build-1.55.0.ebuild,
   boost-build-1.55.0-r1.ebuild, boost-build-1.56.0.ebuild,



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

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

Index: boost-build-1.56.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- boost-build-1.56.0.ebuild	27 Feb 2015 09:26:38 -0000	1.5
+++ boost-build-1.56.0.ebuild	3 Mar 2015 07:40:06 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 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.56.0.ebuild,v 1.5 2015/02/27 09:26:38 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild,v 1.6 2015/03/03 07:40:06 dlan Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-aix ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="examples python test"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )





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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.56.0.ebuild
@ 2015-07-17  9:42 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 5+ messages in thread
From: Tobias Klausmann (klausman) @ 2015-07-17  9:42 UTC (permalink / raw
  To: gentoo-commits

klausman    15/07/17 09:42:39

  Modified:             ChangeLog boost-build-1.56.0.ebuild
  Log:
  Stable on alpha, bug 554712
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog	17 Jul 2015 06:20:48 -0000	1.147
+++ ChangeLog	17 Jul 2015 09:42:39 -0000	1.148
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.147 2015/07/17 06:20:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.148 2015/07/17 09:42:39 klausman Exp $
+
+  17 Jul 2015; Tobias Klausmann <klausman@gentoo.org>
+  boost-build-1.56.0.ebuild:
+  Stable on alpha, bug 554712
 
   17 Jul 2015; Jeroen Roovers <jer@gentoo.org> boost-build-1.56.0.ebuild:
   Stable for HPPA PPC64 (bug #554712).



1.10                 dev-util/boost-build/boost-build-1.56.0.ebuild

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

Index: boost-build-1.56.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- boost-build-1.56.0.ebuild	17 Jul 2015 06:20:48 -0000	1.9
+++ boost-build-1.56.0.ebuild	17 Jul 2015 09:42:39 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 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.56.0.ebuild,v 1.9 2015/07/17 06:20:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild,v 1.10 2015/07/17 09:42:39 klausman Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="examples python test"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )





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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.56.0.ebuild
@ 2015-07-30 16:43 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2015-07-30 16:43 UTC (permalink / raw
  To: gentoo-commits

maekke      15/07/30 16:43:29

  Modified:             ChangeLog boost-build-1.56.0.ebuild
  Log:
  arm stable, bug #554712
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog	23 Jul 2015 19:37:11 -0000	1.150
+++ ChangeLog	30 Jul 2015 16:43:29 -0000	1.151
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.150 2015/07/23 19:37:11 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.151 2015/07/30 16:43:29 maekke Exp $
+
+  30 Jul 2015; Markus Meier <maekke@gentoo.org> boost-build-1.56.0.ebuild:
+  arm stable, bug #554712
 
   23 Jul 2015; Pacho Ramos <pacho@gentoo.org> boost-build-1.56.0.ebuild:
   ppc stable wrt bug #554712



1.13                 dev-util/boost-build/boost-build-1.56.0.ebuild

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

Index: boost-build-1.56.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- boost-build-1.56.0.ebuild	23 Jul 2015 19:37:11 -0000	1.12
+++ boost-build-1.56.0.ebuild	30 Jul 2015 16:43:29 -0000	1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 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.56.0.ebuild,v 1.12 2015/07/23 19:37:11 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild,v 1.13 2015/07/30 16:43:29 maekke Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="examples python test"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )





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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.56.0.ebuild
@ 2015-08-02  8:55 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2015-08-02  8:55 UTC (permalink / raw
  To: gentoo-commits

pacho       15/08/02 08:55:08

  Modified:             ChangeLog boost-build-1.56.0.ebuild
  Log:
  sparc stable wrt bug #554712
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key A188FBD4)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog	30 Jul 2015 16:43:29 -0000	1.151
+++ ChangeLog	2 Aug 2015 08:55:08 -0000	1.152
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.151 2015/07/30 16:43:29 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.152 2015/08/02 08:55:08 pacho Exp $
+
+  02 Aug 2015; Pacho Ramos <pacho@gentoo.org> boost-build-1.56.0.ebuild:
+  sparc stable wrt bug #554712
 
   30 Jul 2015; Markus Meier <maekke@gentoo.org> boost-build-1.56.0.ebuild:
   arm stable, bug #554712



1.14                 dev-util/boost-build/boost-build-1.56.0.ebuild

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

Index: boost-build-1.56.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- boost-build-1.56.0.ebuild	30 Jul 2015 16:43:29 -0000	1.13
+++ boost-build-1.56.0.ebuild	2 Aug 2015 08:55:08 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 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.56.0.ebuild,v 1.13 2015/07/30 16:43:29 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild,v 1.14 2015/08/02 08:55:08 pacho Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="examples python test"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )





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

end of thread, other threads:[~2015-08-02  8:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-17  9:42 [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.56.0.ebuild Tobias Klausmann (klausman)
  -- strict thread matches above, loose matches on Subject: below --
2015-08-02  8:55 Pacho Ramos (pacho)
2015-07-30 16:43 Markus Meier (maekke)
2015-03-03  7:40 Yixun Lan (dlan)
2014-08-15  7:57 Sergey Popov (pinkbyte)

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