File boost.changes of Package boost (Revision 17)
Currently displaying revision 17, show latest
1
-------------------------------------------------------------------
2
Mon Jan 14 13:51:36 CET 2008 - pth@suse.de
3
4
- Move 1.34.1 from BS to Autobuild
5
- Add patch for critical bug in Boost.Function.
6
- Include C headers where necessary.
7
- Make the tests for ULONG_MAX more readable 64.
8
9
-------------------------------------------------------------------
10
Mon Aug 20 15:09:41 CEST 2007 - pth@suse.de
11
12
- Only use fdupes from 10.3 onwards.
13
14
-------------------------------------------------------------------
15
Wed Oct 24 17:49:46 CEST 2007 - rguenther@suse.de
16
17
- Use -fpermissive in addition to -O2 for building.
18
- Add patch to enable building wave with GCC 4.3.
19
20
-------------------------------------------------------------------
21
Sun Jul 15 16:09:59 CEST 2007 - schwab@suse.de
22
23
- Fix reference to atomicity.h.
24
25
-------------------------------------------------------------------
26
Sat Aug 11 13:17:53 CEST 2007 - aj@suse.de
27
28
- Fix spec file to build again.
29
30
-------------------------------------------------------------------
31
Thu Aug 9 15:16:09 CEST 2007 - pth@suse.de
32
33
- Add man pages (made for 1.33.1).
34
- Package html documentation differently.
35
- Check all links and add missing files that do exist.
36
- Use %%fdupes
37
- Add patch by rschiele@gmail.com to pass compiler flags into
38
Boost.build.
39
40
- Update to 1.34.1 and use .spec file from bkoz@redhat.com as
41
a basis.
42
43
Changes 1.33.1 -> 1.34.0:
44
45
New Libraries:
46
47
* Foreach Library: BOOST_FOREACH macro for easily iterating over
48
the elements of a sequence,
49
50
* Statechart Library: Arbitrarily complex finite state machines
51
can be implemented in easily readable and
52
maintainable C++ code,
53
54
* TR1 Library: An implementation of the C++ Technical Report on Standard
55
Library Extensions, from John Maddock. This library does
56
not itself implement the TR1 components, rather it's a
57
thin wrapper that will include your standard library's
58
TR1 implementation (if it has one), otherwise it will
59
include the Boost Library equivalents, and import them
60
into namespace std::tr1. Highlights include: Reference
61
Wrappers, Smart Pointers, result_of, Function Object
62
Binders, Polymorphic function wrappers, Type Traits,
63
Random Number Generators and Distributions, Tuples, Fixed
64
Size Array, Hash Function Objects, Regular Expressions,
65
and Complex Number Additional Algorithms.
66
67
* Typeof Library: Typeof operator emulation, from Arkadiy Vertleyb
68
and Peder Holt.
69
70
* Xpressive Library: Regular expressions that can be written as strings
71
or as expression templates, and that can refer to
72
each other and themselves recursively with the
73
power of context-free grammars, from Eric Niebler.
74
75
Updated Libraries:
76
77
* Assign Library:
78
o Support for ptr_map<key,T> via the new function ptr_map_insert()
79
o Support for initialization of Pointer Containers when the
80
containers hold pointers to an abstract base class.
81
82
* Date_time library:
83
o Support for new US/Canada timezone rules and other bug fixes.
84
See Change History for details.
85
86
* Filesystem Library: Major upgrade in preparation for submission to the
87
C++ Standards Committee for TR2. Changes include:
88
89
o Internationalization, provided by class templates basic_path,
90
basic_filesystem_error, basic_directory_iterator, and
91
basic_directory_entry.
92
93
o Simplification of the path interface by eliminating special
94
constructors to identify native formats.
95
96
o Rationalization of predicate function design, including the
97
addition of several new functions.
98
99
o Clearer specification by reference to POSIX, the ISO/IEEE Single
100
Unix Standard, with provisions for Windows and other operating
101
systems.
102
103
o Preservation of existing user code whenever possible.
104
o More efficient directory iteration.
105
o Addition of a recursive directory iterator.
106
107
* Function Library: Boost.Function now implements a small buffer
108
optimization, which can drastically improve the
109
performance when copying or constructing
110
Boost.Function objects storing small function
111
objects. For instance, bind(&X:foo, &x, _1, _2)
112
requires no heap allocation when placed into a
113
Boost.Function object.
114
115
* Functional/Hash Library
116
o Use declarations for standard classes, so that the library
117
doesn't need to include all of their headers
118
119
o Deprecated the <boost/functional/hash/*.hpp> headers.
120
121
o Add support for the BOOST_HASH_NO_EXTENSIONS macro, which
122
disables the extensions to TR1
123
124
o Minor improvements to the hash functions for floating point numbers.
125
126
* Graph Library:
127
o edmonds_maximum_cardinality_matching,
128
o lengauer_tarjan_dominator_tree,
129
o compressed_sparse_row_graph,
130
o sorted_erdos_renyi_iterator,
131
132
o biconnected_components now supports a visitor and named
133
parameters,
134
135
o adjacency_matrix now models the Bidirectional Graph concept.
136
137
o dijkstra_shortest_paths now calls vis.initialize_vertex for each
138
vertex during initialization.
139
140
o Note: the name of the compiled library for the GraphViz reader has
141
changed to boost_graph (from bgl-viz) to match Boost conventions.
142
143
o See the complete revision history for more information.
144
145
* MultiArray Library: Boost.MultiArray now by default provides
146
range-checking for operator[]. Range checking can
147
be disabled by defining the macro
148
BOOST_DISABLE_ASSERTS before including
149
multi_array.hpp. A bug in multi_array::resize()
150
related to storage orders was fixed.
151
152
* Multi-index Containers Library:
153
o New random access indices.
154
o Non key-based indices feature new rearrange facilities.
155
156
o This version also includes a number of optimizations and usage
157
improvements. For a complete list of changes, see the library
158
release notes.
159
160
* Optional Library:
161
o boost::none_t and boost::none now added to Optional's
162
documentation
163
164
o Relational operators now directly support arguments of type
165
'T' and 'none_t'
166
167
o operator->() now also works with reference types.
168
169
o Helper functions make_optional(val), make_optional(cond,val)
170
and get_optional_value_or(opt,alternative_value) added.
171
172
o Constructor taking a boolean condition (as well as a value)
173
added.
174
175
o Member function get_value_or(alternative_value) added.
176
o Incompatbility bug with mpl::apply<> fixed.
177
o Converting assignment bug with uninitialized lvalues fixed.
178
179
* Parameter Library:
180
o Every ArgumentPack is now a valid MPL Forward Sequence.
181
182
o Support for unnamed arguments (those whose keyword is
183
deduced from their types) is added.
184
185
o Support for named and unnamed template arguments is added.
186
187
o New overload generation macros solve the forwarding problem
188
directly.
189
190
o See also the Python library changes, below.
191
192
* Pointer Container Library:
193
o Support for serialization via Boost.Serialization.
194
195
o Exceptions can be disabled by defining the macro
196
BOOST_PTR_CONTAINER_NO_EXCEPTIONS before including any header.
197
This macro is defined by default if BOOST_NO_EXCEPTIONS is defined.
198
199
o Additional std::auto_ptr<T> overloads added s.t. one can also
200
pass std::auto_ptr<T> instead of only T* arguments to member
201
functions.
202
203
o transfer() now has weaker requirements s.t. one can transfer
204
objects from ptr_container<Derived> to ptr_container<Base>,
205
206
* Python Library:
207
o Boost.Python now automatically appends C++ signatures to
208
docstrings. The new docstring_options.hpp header is available to
209
control the content of docstrings.
210
211
o stl_input_iterator, for turning a Python iterable object into an
212
STL input iterator, from Eric Niebler.
213
214
o Support for void* conversions is added.
215
216
o Integrated support for wrapping C++ functions built with the
217
parameter library; keyword names are automatically known to
218
docsstrings.
219
220
o Enhancements to the API for better embedding support
221
(boost::python::import(), boost::python::exec(), and
222
boost::python::exec_file()).
223
224
* Signals Library: More improvements to signal invocation performance.
225
226
* Smart Pointers Library:
227
o Allocator support as proposed in N1851 (162 Kb PDF).
228
o pointer_cast and pointer_to_other utilities to allow
229
pointer-independent code,
230
231
* String Algorithm Library:
232
o lexicographical_compare
233
o join
234
o New comparison predicates is_less, is_not_greater.
235
o Negative indexes support (like Perl) in various algorihtms
236
(*_head/tail, *_nth).
237
238
* Wave Library:
239
o Wave now correctly recognizes pp-number tokens as mandated by
240
the C++ Standard, which are converted to C++ tokens right before
241
they are returned from the library.
242
243
o Several new preprocessing hooks have been added. For a complete
244
description please refer to the related documentation page: The
245
Context Policy.
246
247
o Shared library (dll) support has been added for the generated
248
Wave libraries.
249
250
o The overall error handling has been improved. It is now possible
251
to recover and continue after an error or a warning was issued.
252
253
o Support for optional comment and/or full whitespace
254
preservation in the generated output stream has been added.
255
256
o The Wave library now performs automatic include guard
257
detection to avoid accessing header files more than once, if
258
appropriate.
259
260
o Full interactive mode has been added to the Wave tool. Now the
261
Wave tool can be used just like Python or Perl for instance to
262
interactively try out your BOOST_PP macros. Additionally it is
263
now possible to load and save the current state of an
264
interactive session (macro tables et.al.).
265
266
o The overall performance has been improved by upto 40-60%,
267
depending on the concrete files to process.
268
269
o Support for new pragmas has been added allowing to control
270
certain library features from inside the preprocessed sources
271
(partial output redirection, control of generated whitespace
272
and #line directives).
273
274
o Optional support for #pragma message "..." has been added.
275
276
o This version also includes a number of bug fixes and usage
277
improvements. For a complete list of changes, see the
278
libraries change log.
279
280
Fixes in 1.34.1:
281
282
* Fixes for build on IBM pSeries for AIX and Linux
283
* gcc-4.2 atomicity.h location fixed
284
* [iostreams] zlib_compressor memory leaks in 1.34.0
285
* filtering ostream problem... pushing zlib_compressor works in 1_33,
286
dies in 1_34
287
* [doc] The "Getting Started" page mentions incorrect library names
288
* [filesystem] missing documentation or bad links
289
* add missing docs for boost.python API enhancements.
290
* Entire iostreams library outdated in 1.34.0
291
* numeric_limits specializations in limits.hpp are incorrect
292
* Updated ICU support in Boost.Regex
293
* Make boost.python compatible with python 2.5
294
* ::boost::detail::empty_base improved
295
* Fix failing uild of libs/python/example/quickstart.
296
* Fix problems when building Python modules on boost 1.34.0
297
* Patches to allow boost 1.34.0 to compile with stricter warning
298
checking under mac OS and gcc
299
* Unable to compile Python example, tutorial, or quickstart with
300
Boost 1_34_0
301
* Improper overflow handling in shortest paths algorithms
302
* Multiple include paths for Python
303
* Add documentation for the iter_find/split algorithms
304
* regex_token_iterator crashes
305
* regex_error exception when quantifying some non-capturing groups
306
* read_write_mutex docs don't clearly specify that the functionality
307
is not present
308
309
- Remove patches not needed anymore.
310
- Replace file dupes by symlinks.
311
- Add rpmlintrc to suppress rpmlint warnings for things that won't be
312
changed.
313
314
-------------------------------------------------------------------
315
Sun Jul 15 16:09:59 CEST 2007 - schwab@suse.de
316
317
- Fix reference to atomicity.h.
318
319
-------------------------------------------------------------------
320
Sat Mar 24 18:41:43 CET 2007 - aj@suse.de
321
322
- Add libbz2-devel to BuildRequires.
323
324
-------------------------------------------------------------------
325
Fri Sep 22 13:49:48 CEST 2006 - pth@suse.de
326
327
- Apply patch from community to build with Python 2.5
328
329
-------------------------------------------------------------------
330
Fri Jul 14 11:02:21 CEST 2006 - sf@suse.de
331
332
- fixed wrong usage of visit_each() (Bug #192116 )
333
334
-------------------------------------------------------------------
335
Thu Jul 13 15:47:57 CEST 2006 - sf@suse.de
336
337
- fixed link creation to libboost_thread.so, using %_lib instead
338
of lib
339
340
-------------------------------------------------------------------
341
Mon Jun 19 19:46:37 CEST 2006 - jw@suse.de
342
343
- added a libboost_thread.so as a symlink to libboost_thread-mt.so
344
345
-------------------------------------------------------------------
346
Tue Apr 4 16:36:25 CEST 2006 - pth@suse.de
347
348
- Add libboost_wave.a to file list
349
350
-------------------------------------------------------------------
351
Tue Apr 4 13:29:35 CEST 2006 - pth@suse.de
352
353
- Use explicit file names instead of wildcards to detect libraries
354
that weren't built.
355
356
-------------------------------------------------------------------
357
Wed Feb 8 18:26:28 CET 2006 - schwab@suse.de
358
359
- Fix broken assembler constraints [#148429].
360
361
-------------------------------------------------------------------
362
Wed Jan 25 21:34:43 CET 2006 - mls@suse.de
363
364
- converted neededforbuild to BuildRequires
365
366
-------------------------------------------------------------------
367
Tue Jan 17 23:03:53 CET 2006 - schwab@suse.de
368
369
- Don't strip binaries.
370
371
-------------------------------------------------------------------
372
Wed Dec 7 17:43:55 CET 2005 - pth@suse.de
373
374
- Fix cases of type-punning in boost::python
375
- Compile without -fno-strict-aliasing again.
376
- Remove unnecessary type attributes in forward declarations.
377
378
-------------------------------------------------------------------
379
Tue Dec 6 11:57:18 CET 2005 - pth@suse.de
380
381
- Update to 1.33.1.
382
- Fix use of uninitialized variable.
383
- Compile with -fno-strict-aliasing.
384
- Update NEWS file
385
386
-------------------------------------------------------------------
387
Thu Aug 25 17:30:18 CEST 2005 - pth@suse.de
388
389
- Incorporate fixes that are bound to be in 1.33.1
390
- Build boost.regex with unicode support.
391
392
-------------------------------------------------------------------
393
Fri Aug 19 17:08:06 CEST 2005 - pth@suse.de
394
395
- Add a NEWS file.
396
397
-------------------------------------------------------------------
398
Wed Aug 18 16:55:01 CEST 2005 - pth@suse.de
399
400
- Update to 1.33.0 with 5 new libraries. See NEWS for specifics.
401
- Fix use of uninitialized class member (matz@suse.de)
402
- Compile with -O2 instead of -O3
403
- Make build process use %optflags
404
405
-------------------------------------------------------------------
406
Thu Mar 10 17:08:32 CET 2005 - pth@suse.de
407
408
- Update to 1.32.0
409
410
-------------------------------------------------------------------
411
Fri May 7 17:21:09 CEST 2004 - pth@suse.de
412
413
- Add convenience symlinks (#38491)
414
415
-------------------------------------------------------------------
416
Sun Apr 25 13:00:32 CEST 2004 - coolo@suse.de
417
418
- build with several jobs
419
420
-------------------------------------------------------------------
421
Fri Mar 5 19:43:25 CET 2004 - pth@suse.de
422
423
- Update to 1.31.0.
424
- Make building boost work on Linux platforms where gcc does not
425
define _REENTRANT when passed -pthread. Patch was done by
426
Robert Schiele.
427
428
-------------------------------------------------------------------
429
Sat Jan 10 14:14:40 CET 2004 - adrian@suse.de
430
431
- add %run_ldconfig
432
433
-------------------------------------------------------------------
434
Wed Aug 20 11:17:52 CEST 2003 - pthomas@suse.de
435
436
- Update to 1.30.2, a bugfix release
437
438
-------------------------------------------------------------------
439
Wed Jul 23 14:52:15 CEST 2003 - pthomas@suse.de
440
441
- Initial package, based on the work by Robert Schiele.
442
- Fix building with Python 2.3
443
444
445