aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/boost.rb
AgeCommit message (Collapse)Author
2015-02-06boost: fix icu build.Mike McQuaid
Closes #36591.
2014-12-28boost: add testXu Cheng
Closes #35303. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-12-22boost: update 1.57.0 bottle.BrewTestBot
2014-12-22boost 1.57Chilledheart
2014-11-14boost: update icu optionJack Nagel
2014-10-19boost: update 1.56.0 bottle.BrewTestBot
2014-09-26boost: update 1.56.0 bottle.BrewTestBot
2014-09-26Split out Boost.PythonTim D. Smith
2014-09-26boost 1.56Denis Denisov
2014-07-17boost: fail on python and python3 options.Mike McQuaid
Close #30914.
2014-07-02boost: update 1.55.0_2 bottle.BrewTestBot
Closes #30595. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-02boost: patch upstream issue.Dominyk Tiller
See [this](https://github.com/Homebrew/homebrew/issues/30592) issue for more information. Fixes the upstream issue in Boost 1.55. This patch can and should be removed when Boost 1.56 is released, as that will incorporate the patch natively.
2014-07-01boost: add python3 option.Matt Keeter
Closes #30590. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-06-01boost: update 1.55.0_2 bottle.BrewTestBot
2014-06-01boost: add upstream patch to make librevenge buildYue Liu
Closes #29737. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-05-30Prefer Dir[] to Dir.glob when not passing a blockJack Nagel
2014-05-22Remove code that cannot possibly executeJack Nagel
2014-05-08boost: update 1.55.0_1 bottle.BrewTestBot
2014-05-08boost: make python optional.Mike McQuaid
Closes #28281.
2014-04-11Use .diff instead of .patch for github commit sourced patchesSteven Peters
This modifies multiple formulae in a single commit, replacing the patch suffix with diff per #28315. I used the following command: ~~~ sed -i -e 's@patch"$@diff"@' `grep -rlI 'commit.*patch"$' .` ~~~ The patch shasums are then computed using: ~~~ brew fetch --build-from-source `git st | sed -e 's@^ M@@'` ~~~ and manually updated. Fixes #28315. Fixes #28335. Closes #28339. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-04-05boost: update patch sha1Brett Koonce
Closes #28169. Closes #28179. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-03-22boost: fix C++11 flags for trunk.Xiyue Deng
* Trunk now use "-x" flag to control which language to use, for instance "clang++ -x c" will be used to compile C code, while Homebrew will still think it is invoking the C++ compiler. It is easier to just set cxxflags and linkflags.
2014-03-22boost: trunk now on github with submodules.Xiyue Deng
* Also remove legacy rpath handling logic, which is taken care of by install_name_tool.
2014-03-22boost: reference patch with issue reports.Xiyue Deng
2014-03-18boost: update 1.55.0 bottle.BrewTestBot
Closes #27660. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-03-18boost: bump revision for important patches.Nikolaus Demmel
So people pick up the recent patches from #27436. See also #27659.
2014-03-14boost: use checksummed patchesJack Nagel
2014-03-13boost: update 1.55.0 bottle.Homebrew
Closes #27436. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-03-13boost: add Xcode 5.1 patch for boost::atomic.Clemens Gruber
Needed for LLVM 3.4.
2014-03-13boost: use new python requirement bottle logic.Mike McQuaid
2014-03-08formulae: fix with/without usage.Mike McQuaid
Closes #27275. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-03-02Batch convert http download urls from SourceForge to httpsJaime Marquínez Ferrándiz
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-27boost: use Formula[]Adam Vandenberg
2014-02-13boost: don't use deprecated python objectMisty De Meo
Fixes #26706.
2013-12-14Update docs, comment mxcl/homebrew refs.Mike McQuaid
2013-12-05boost: restore relocatable bottleJack Nagel
2013-12-04Temporarily disable cellar :anyJack Nagel
These need to be updated to reflect changes to relocation.
2013-11-26Add Hardware::CPU.intel? and Hardware::CPU.ppc?Jack Nagel
2013-11-12boost: add bottle.BrewTestBot
2013-11-12boost 1.55.0Xiyue Deng
* Drop obsoleted patches. * Temporarily remove bottles. Closes #24201. Signed-off-by: BrewTestBot <brew-test-bot@googlegroups.com>
2013-10-28boost: add mavericks bottle.Mike McQuaid
2013-10-27boost: support C++11 mode.Xiyue Deng
* Add info about option renaming: '--with-c++11' -> '--c++11'. - Require C++ dependencies with C++11 support when requesting '--c++11'. * Building MPI python support in C++11 mode fails. Disable.
2013-10-08Boost: simplify universal handling and other improvements.Xiyue Deng
* Use Homebrew standard universal handling. * Handle whether to build MPI at bootstrap. - Also improve parameter construction. - Use CPU.is_32_bit? instead of accessing CPU.bits directly. * Add more caveats: - Boost.Log is disabled when building using apple-gcc42 or llvm-gcc. - Boost.Context and Boost.Coroutine are only supported on x86_64.
2013-10-02boost: move without-python option into bootstrap stage.Andrei Polushin
Specifying 'without-python' option for ./b2 takes precedence over all 'without-libraries' options specified previously for ./boostrap.sh Closes #22988. Signed-off-by: Andrei Polushin <polushin@gmail.com> Closes #22988. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-10-01boost: Fix C++11 build.Xiyue Deng
* Use default darwin toolset. - Used to set toolset as clang in C++11 build, which will override darwin settings and fail to increase template depth which is required for some of the libraries such as Boost.Log. * Remove unnecessary "-fPIC" build flag. Closes #22942.
2013-09-26boost: fix error message to use "--without-single".Xiyue Deng
* Use raise to report error.
2013-08-30boost: enable bottles, print Python bottle caveat.Mike McQuaid
Closes #21824.
2013-08-23Remove ad-hoc header padding fixesJack Nagel
This is the default now.
2013-08-21boost: no need for backported patches on HEADAlex Burka
Closes #22055. Signed-off-by: Xiyue Deng <manphiz@gmail.com>
2013-08-15Use Hardware::CPU.arch(32|64)_bit in formulaeMisty De Meo