Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] boost: bump to version 1.52.0
@ 2012-11-06 17:53 Victor Hiairrassary
  2012-11-07 10:41 ` Victor Hiairrassary
  2012-12-11 23:49 ` Arnout Vandecappelle
  0 siblings, 2 replies; 8+ messages in thread
From: Victor Hiairrassary @ 2012-11-06 17:53 UTC (permalink / raw)
  To: buildroot

From: mecanix <victor.hiairrassary.ml@gmail.com>

---
 package/boost/Config.in | 4 ++++
 package/boost/boost.mk  | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/package/boost/Config.in b/package/boost/Config.in
index 8798367..58e62a0 100644
--- a/package/boost/Config.in
+++ b/package/boost/Config.in
@@ -1,9 +1,13 @@
 comment "boost requires a toolchain with C++ support enabled"
 	depends on !BR2_INSTALL_LIBSTDCPP
 
+comment "boost requires a toolchain with large file support enabled"
+	depends on !BR2_LARGEFILE
+
 config BR2_PACKAGE_BOOST
 	bool "boost"
 	depends on BR2_INSTALL_LIBSTDCPP
+	depends on BR2_LARGEFILE
 	select BR2_PACKAGE_BZIP2
 	select BR2_PACKAGE_ZLIB
 	help
diff --git a/package/boost/boost.mk b/package/boost/boost.mk
index 64856bc..005c7ca 100644
--- a/package/boost/boost.mk
+++ b/package/boost/boost.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-BOOST_VERSION = 1.49.0
+BOOST_VERSION = 1.52.0
 BOOST_FILE_VERSION = $(subst .,_,$(BOOST_VERSION))
 BOOST_SOURCE = boost_$(BOOST_FILE_VERSION).tar.bz2
 BOOST_SITE = http://downloads.sourceforge.net/project/boost/boost/$(BOOST_VERSION)
@@ -15,7 +15,7 @@ TARGET_CC_VERSION = $(shell $(TARGET_CC) -dumpversion)
 BOOST_DEPENDENCIES = bzip2 zlib
 
 BOOST_FLAGS =
-BOOST_WITHOUT_FLAGS = python
+BOOST_WITHOUT_FLAGS = python context
 
 BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_CHRONO),,chrono)
 BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_DATE_TIME),,date_time)
-- 
1.8.0

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

* [Buildroot] [PATCH] boost: bump to version 1.52.0
  2012-11-06 17:53 Victor Hiairrassary
@ 2012-11-07 10:41 ` Victor Hiairrassary
  2012-12-11 23:49 ` Arnout Vandecappelle
  1 sibling, 0 replies; 8+ messages in thread
From: Victor Hiairrassary @ 2012-11-07 10:41 UTC (permalink / raw)
  To: buildroot

Hi,

This is the first time I send a patch to an open source project! The next patch bump boost version to 1.52.0.

For that, I needed to add dependance on BR2_LARGEFILE and exclude the new context lib.

Thanks for buildroot! :)


Le 6 nov. 2012 ? 18:53, Victor Hiairrassary <victor.hiairrassary.ml@gmail.com> a ?crit :

> From: mecanix <victor.hiairrassary.ml@gmail.com>
> 
> ---
> package/boost/Config.in | 4 ++++
> package/boost/boost.mk  | 4 ++--
> 2 files changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/package/boost/Config.in b/package/boost/Config.in
> index 8798367..58e62a0 100644
> --- a/package/boost/Config.in
> +++ b/package/boost/Config.in
> @@ -1,9 +1,13 @@
> comment "boost requires a toolchain with C++ support enabled"
>    depends on !BR2_INSTALL_LIBSTDCPP
> 
> +comment "boost requires a toolchain with large file support enabled"
> +    depends on !BR2_LARGEFILE
> +
> config BR2_PACKAGE_BOOST
>    bool "boost"
>    depends on BR2_INSTALL_LIBSTDCPP
> +    depends on BR2_LARGEFILE
>    select BR2_PACKAGE_BZIP2
>    select BR2_PACKAGE_ZLIB
>    help
> diff --git a/package/boost/boost.mk b/package/boost/boost.mk
> index 64856bc..005c7ca 100644
> --- a/package/boost/boost.mk
> +++ b/package/boost/boost.mk
> @@ -4,7 +4,7 @@
> #
> #############################################################
> 
> -BOOST_VERSION = 1.49.0
> +BOOST_VERSION = 1.52.0
> BOOST_FILE_VERSION = $(subst .,_,$(BOOST_VERSION))
> BOOST_SOURCE = boost_$(BOOST_FILE_VERSION).tar.bz2
> BOOST_SITE = http://downloads.sourceforge.net/project/boost/boost/$(BOOST_VERSION)
> @@ -15,7 +15,7 @@ TARGET_CC_VERSION = $(shell $(TARGET_CC) -dumpversion)
> BOOST_DEPENDENCIES = bzip2 zlib
> 
> BOOST_FLAGS =
> -BOOST_WITHOUT_FLAGS = python
> +BOOST_WITHOUT_FLAGS = python context
> 
> BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_CHRONO),,chrono)
> BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_DATE_TIME),,date_time)
> -- 
> 1.8.0
> 

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

* [Buildroot] [PATCH] boost: bump to version 1.52.0
@ 2012-11-18  9:57 Victor Hiairrassary
  0 siblings, 0 replies; 8+ messages in thread
From: Victor Hiairrassary @ 2012-11-18  9:57 UTC (permalink / raw)
  To: buildroot

Can someone review the patch to bump boost version before releasing next 
buildroot RC?

The patch is available in buildroot's patchwork at 
http://patchwork.ozlabs.org/patch/197508/

To bump boost, I needed to add dependance on BR2_LARGEFILE and exclude 
the new context lib, because this last fails during compilation : an 
include is missing and uintptr_t is not found. I will open a ticket on 
boost's bug tracker.

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

* [Buildroot] [PATCH] boost: bump to version 1.52.0
  2012-11-06 17:53 Victor Hiairrassary
  2012-11-07 10:41 ` Victor Hiairrassary
@ 2012-12-11 23:49 ` Arnout Vandecappelle
  2012-12-12  5:58   ` Peter Korsgaard
  1 sibling, 1 reply; 8+ messages in thread
From: Arnout Vandecappelle @ 2012-12-11 23:49 UTC (permalink / raw)
  To: buildroot

On 06/11/12 18:53, Victor Hiairrassary wrote:
> From: mecanix<victor.hiairrassary.ml@gmail.com>

Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
  (x86_64 Sourcery toolchain)

  It also fixes a build failure for me.

  Add a Signed-off-by line for yourself.  This is a short way for you to
assert that you are entitled to contribute the patch under buildroot's
GPL license.  See  http://elinux.org/Developer_Certificate_Of_Origin
for more details.


  Regards,
  Arnout

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [PATCH] boost: bump to version 1.52.0
  2012-12-11 23:49 ` Arnout Vandecappelle
@ 2012-12-12  5:58   ` Peter Korsgaard
  0 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2012-12-12  5:58 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:

 Arnout> On 06/11/12 18:53, Victor Hiairrassary wrote:
 >> From: mecanix<victor.hiairrassary.ml@gmail.com>

 Arnout> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
 Arnout> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
 Arnout>  (x86_64 Sourcery toolchain)

 Arnout>  It also fixes a build failure for me.

 Arnout>  Add a Signed-off-by line for yourself.  This is a short way for you to
 Arnout> assert that you are entitled to contribute the patch under buildroot's
 Arnout> GPL license.  See  http://elinux.org/Developer_Certificate_Of_Origin
 Arnout> for more details.

Yes, please resend with your Signed-off-by: and I'll commit - Thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] boost: bump to version 1.52.0
@ 2012-12-12  7:50 victor.hiairrassary.ml at gmail.com
  2012-12-12  7:50 ` victor.hiairrassary.ml at gmail.com
  0 siblings, 1 reply; 8+ messages in thread
From: victor.hiairrassary.ml at gmail.com @ 2012-12-12  7:50 UTC (permalink / raw)
  To: buildroot

I'm really happy to send my patch :)

Regards,
Victor Hiairrassary

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

* [Buildroot] [PATCH] boost: bump to version 1.52.0
  2012-12-12  7:50 [Buildroot] [PATCH] boost: bump to version 1.52.0 victor.hiairrassary.ml at gmail.com
@ 2012-12-12  7:50 ` victor.hiairrassary.ml at gmail.com
  2012-12-12  8:55   ` Peter Korsgaard
  0 siblings, 1 reply; 8+ messages in thread
From: victor.hiairrassary.ml at gmail.com @ 2012-12-12  7:50 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Victor Hiairrassary <victor.hiairrassary.ml@gmail.com>
---
 package/boost/Config.in | 4 ++++
 package/boost/boost.mk  | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/package/boost/Config.in b/package/boost/Config.in
index 8798367..58e62a0 100644
--- a/package/boost/Config.in
+++ b/package/boost/Config.in
@@ -1,9 +1,13 @@
 comment "boost requires a toolchain with C++ support enabled"
 	depends on !BR2_INSTALL_LIBSTDCPP
 
+comment "boost requires a toolchain with large file support enabled"
+	depends on !BR2_LARGEFILE
+
 config BR2_PACKAGE_BOOST
 	bool "boost"
 	depends on BR2_INSTALL_LIBSTDCPP
+	depends on BR2_LARGEFILE
 	select BR2_PACKAGE_BZIP2
 	select BR2_PACKAGE_ZLIB
 	help
diff --git a/package/boost/boost.mk b/package/boost/boost.mk
index 64856bc..005c7ca 100644
--- a/package/boost/boost.mk
+++ b/package/boost/boost.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-BOOST_VERSION = 1.49.0
+BOOST_VERSION = 1.52.0
 BOOST_FILE_VERSION = $(subst .,_,$(BOOST_VERSION))
 BOOST_SOURCE = boost_$(BOOST_FILE_VERSION).tar.bz2
 BOOST_SITE = http://downloads.sourceforge.net/project/boost/boost/$(BOOST_VERSION)
@@ -15,7 +15,7 @@ TARGET_CC_VERSION = $(shell $(TARGET_CC) -dumpversion)
 BOOST_DEPENDENCIES = bzip2 zlib
 
 BOOST_FLAGS =
-BOOST_WITHOUT_FLAGS = python
+BOOST_WITHOUT_FLAGS = python context
 
 BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_CHRONO),,chrono)
 BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_DATE_TIME),,date_time)
-- 
1.8.0.1

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

* [Buildroot] [PATCH] boost: bump to version 1.52.0
  2012-12-12  7:50 ` victor.hiairrassary.ml at gmail.com
@ 2012-12-12  8:55   ` Peter Korsgaard
  0 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2012-12-12  8:55 UTC (permalink / raw)
  To: buildroot

>>>>> "victor" == victor hiairrassary ml <victor.hiairrassary.ml@gmail.com> writes:

 victor> Signed-off-by: Victor Hiairrassary <victor.hiairrassary.ml@gmail.com>
 victor> ---
 victor>  package/boost/Config.in | 4 ++++
 victor>  package/boost/boost.mk  | 4 ++--
 victor>  2 files changed, 6 insertions(+), 2 deletions(-)

 victor> diff --git a/package/boost/Config.in b/package/boost/Config.in
 victor> index 8798367..58e62a0 100644
 victor> --- a/package/boost/Config.in
 victor> +++ b/package/boost/Config.in
 victor> @@ -1,9 +1,13 @@
 victor>  comment "boost requires a toolchain with C++ support enabled"
 victor>  	depends on !BR2_INSTALL_LIBSTDCPP
 
 victor> +comment "boost requires a toolchain with large file support enabled"
 victor> +	depends on !BR2_LARGEFILE
 victor> +

I've merged this comment with the above and committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2012-12-12  8:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-12  7:50 [Buildroot] [PATCH] boost: bump to version 1.52.0 victor.hiairrassary.ml at gmail.com
2012-12-12  7:50 ` victor.hiairrassary.ml at gmail.com
2012-12-12  8:55   ` Peter Korsgaard
  -- strict thread matches above, loose matches on Subject: below --
2012-11-18  9:57 Victor Hiairrassary
2012-11-06 17:53 Victor Hiairrassary
2012-11-07 10:41 ` Victor Hiairrassary
2012-12-11 23:49 ` Arnout Vandecappelle
2012-12-12  5:58   ` Peter Korsgaard

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