BrewTestBot
50b94fe634
boost: update 1.59.0 bottle.
2015-11-06 16:48:12 -08:00
uuplusu
1349011dde
boost: patch log_setup.
...
Closes Homebrew/homebrew#45740 .
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-11-06 16:48:08 -08:00
BrewTestBot
a587e3a7b0
boost: update 1.59.0 bottle.
2015-11-02 20:17:01 -08:00
Denis Denisov
f613cc0164
boost: fixed compilation of operator<< into a record ostream
2015-11-02 20:16:55 -08:00
David Larson
fbfc9d6b71
boost 1.59.0
...
boost 1.59.0
2015-11-02 20:16:55 -08:00
BrewTestBot
1fa330ce7a
boost: update 1.58.0 bottle.
2015-09-19 18:44:13 +02:00
Dominyk Tiller
03dfa76c4f
boost: style nit
2015-09-06 20:11:30 +01:00
awang
1c13fa38a9
boost: add missing build step.
...
See: http://lists.boost.org/boost-users/2014/12/83414.php and followup
--HEAD --with-mpi --without-single builds were failing with a missing
header sometime when compiling the threads component of the library.
Turns out another command was added to the build sequence, but the docs
weren't updated. Now, instead of
./bootstrap.sh
./b2
the proper build commands should be
./bootstrap.sh
./b2 headers
./b2
Closes Homebrew/homebrew#43480 .
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-09-06 12:46:58 +01:00
Nikolaus Wittenstein
758f6e9533
Add descriptions to all remaining homebrew packages
2015-06-05 14:47:57 +01:00
Tim D. Smith
f8fac7599f
boost: use c++11 compilers in c++11 mode
...
Fixes Homebrew/homebrew#40319 .
Closes Homebrew/homebrew#40327 .
Signed-off-by: Tim D. Smith <git@tim-smith.us>
2015-06-03 09:43:08 -07:00
BrewTestBot
cfdc085704
boost: update 1.58.0 bottle.
2015-05-09 17:26:59 -07:00
Alex Dunn
6b309f5fcc
boost 1.58.0
...
closes Homebrew/homebrew#38743
Closes Homebrew/homebrew#39323 .
Signed-off-by: Tim D. Smith <git@tim-smith.us>
2015-05-09 17:26:54 -07:00
Mike McQuaid
fb91bb0170
boost: fix icu build.
...
Closes Homebrew/homebrew#36591 .
2015-02-06 08:39:47 +00:00
Xu Cheng
2b61a8999d
boost: add test
...
Closes Homebrew/homebrew#35303 .
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-12-28 12:40:00 +00:00
BrewTestBot
3b41c934ae
boost: update 1.57.0 bottle.
2014-12-22 21:05:56 -05:00
Chilledheart
ecf8df84e7
boost 1.57
2014-12-22 21:05:51 -05:00
Jack Nagel
2c7681bf58
boost: update icu option
2014-11-14 14:46:43 -06:00
BrewTestBot
f512f1e28e
boost: update 1.56.0 bottle.
2014-10-19 16:00:44 +01:00
BrewTestBot
a1496d72dc
boost: update 1.56.0 bottle.
2014-09-26 23:49:54 -07:00
Tim D. Smith
a6a3bbd288
Split out Boost.Python
2014-09-26 23:49:54 -07:00
Denis Denisov
99abe449d4
boost 1.56
2014-09-26 23:49:54 -07:00
Mike McQuaid
f0197cc36e
boost: fail on python and python3 options.
...
Close Homebrew/homebrew#30914 .
2014-07-17 12:36:55 -07:00
BrewTestBot
5d3432157b
boost: update 1.55.0_2 bottle.
...
Closes Homebrew/homebrew#30595 .
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-02 01:26:00 +01:00
Dominyk Tiller
b8454cebe0
boost: patch upstream issue.
...
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-02 01:26:00 +01:00
Matt Keeter
f485995df8
boost: add python3 option.
...
Closes Homebrew/homebrew#30590 .
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-01 14:35:23 +01:00
BrewTestBot
7c74b34009
boost: update 1.55.0_2 bottle.
2014-06-01 11:34:02 -05:00
Yue Liu
84c4c9a232
boost: add upstream patch to make librevenge build
...
Closes Homebrew/homebrew#29737 .
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-06-01 11:33:46 -05:00
Jack Nagel
2257ca4e29
Prefer Dir[] to Dir.glob when not passing a block
2014-05-30 12:41:12 -05:00
Jack Nagel
b8eeadcaed
Remove code that cannot possibly execute
2014-05-22 21:23:58 -05:00
BrewTestBot
a1f43293a0
boost: update 1.55.0_1 bottle.
2014-05-08 15:24:02 +01:00
Mike McQuaid
47300eb0e9
boost: make python optional.
...
Closes Homebrew/homebrew#28281 .
2014-05-08 14:41:52 +01:00
Steven Peters
a649d9b4ec
Use .diff instead of .patch for github commit sourced patches
...
This modifies multiple formulae in a single commit, replacing
the patch suffix with diff per Homebrew/homebrew#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 Homebrew/homebrew#28315 .
Fixes Homebrew/homebrew#28335 .
Closes Homebrew/homebrew#28339 .
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-04-11 20:53:22 -05:00
Brett Koonce
28f06984fc
boost: update patch sha1
...
Closes Homebrew/homebrew#28169 .
Closes Homebrew/homebrew#28179 .
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-04-05 17:43:39 -05:00
Xiyue Deng
962dff2a7d
boost: fix C++11 flags for trunk.
...
* 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-22 14:38:10 -07:00
Xiyue Deng
2a5b830737
boost: trunk now on github with submodules.
...
* Also remove legacy rpath handling logic, which is taken care of by
install_name_tool.
2014-03-22 14:35:25 -07:00
Xiyue Deng
534f818a46
boost: reference patch with issue reports.
2014-03-22 14:35:24 -07:00
BrewTestBot
f8e3ddd77a
boost: update 1.55.0 bottle.
...
Closes Homebrew/homebrew#27660 .
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-03-18 12:43:14 +00:00
Nikolaus Demmel
8a3e64e659
boost: bump revision for important patches.
...
So people pick up the recent patches from Homebrew/homebrew#27436 .
See also Homebrew/homebrew#27659 .
2014-03-18 12:42:50 +00:00
Jack Nagel
ed753f0b9a
boost: use checksummed patches
2014-03-14 00:55:38 -05:00
Homebrew
9d9d604dc9
boost: update 1.55.0 bottle.
...
Closes Homebrew/homebrew#27436 .
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-03-13 10:38:13 +00:00
Clemens Gruber
0e0feaa65e
boost: add Xcode 5.1 patch for boost::atomic.
...
Needed for LLVM 3.4.
2014-03-13 10:37:48 +00:00
Mike McQuaid
fe51e0a4f3
boost: use new python requirement bottle logic.
2014-03-13 10:05:20 +00:00
Mike McQuaid
eefdf6b3f3
formulae: fix with/without usage.
...
Closes Homebrew/homebrew#27275 .
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-03-08 00:54:35 +00:00
Jaime Marquínez Ferrándiz
74c83fa9f6
Batch convert http download urls from SourceForge to https
...
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00
Adam Vandenberg
2f7e7c6e19
boost: use Formula[]
2014-02-27 08:21:15 -08:00
Misty De Meo
5d9319e112
boost: don't use deprecated python object
...
Fixes Homebrew/homebrew#26706 .
2014-02-13 17:45:57 -08:00
Mike McQuaid
9a0119dcf4
Update docs, comment mxcl/homebrew refs.
2013-12-14 18:18:35 +00:00
Jack Nagel
b55ce7803f
boost: restore relocatable bottle
2013-12-05 00:41:38 -06:00
Jack Nagel
5eac9047db
Temporarily disable cellar :any
...
These need to be updated to reflect changes to relocation.
2013-12-04 22:37:58 -06:00
Jack Nagel
e2319b3108
Add Hardware::CPU.intel? and Hardware::CPU.ppc?
2013-11-26 20:23:19 -06:00