tnintemann / rpms / boost

Forked from rpms/boost 4 years ago
Clone

Blame SPECS/boost.spec

6e52e0
# Support for documentation installation
6e52e0
# As the %%doc macro erases the target directory, namely
6e52e0
# $RPM_BUILD_ROOT%%{_docdir}/%%{name}-%%{version}, manually installed
6e52e0
# documentation must be saved into a temporary dedicated directory.
6e52e0
%define boost_docdir __tmp_docdir
6e52e0
%define boost_examplesdir __tmp_examplesdir
6e52e0
6e52e0
%ifarch %{arm} ppc64le
6e52e0
  %bcond_with mpich
6e52e0
%else
6e52e0
  %bcond_without mpich
6e52e0
%endif
6e52e0
6e52e0
%ifarch s390 s390x %{arm} ppc64le
6e52e0
  # No OpenMPI support on these arches
6e52e0
  %bcond_with openmpi
6e52e0
%else
6e52e0
  %bcond_without openmpi
6e52e0
%endif
6e52e0
6e52e0
%ifnarch %{ix86} x86_64
6e52e0
  # Avoid using Boost.Context on non-x86 arches.  s390 is not
6e52e0
  # supported at all and there were _syntax errors_ in PPC code.  This
6e52e0
  # should be enabled on a case-by-case basis as the arches are tested
6e52e0
  # and fixed.
6e52e0
  %bcond_with context
6e52e0
%else
6e52e0
  %bcond_without context
6e52e0
%endif
6e52e0
6e52e0
%bcond_with python3
6e52e0
6e52e0
Name: boost
6e52e0
Summary: The free peer-reviewed portable C++ source libraries
6e52e0
Version: 1.53.0
6e52e0
%define version_enc 1_53_0
6e52e0
Release: 28%{?dist}
6e52e0
License: Boost and MIT and Python
6e52e0
6e52e0
%define toplev_dirname %{name}_%{version_enc}
6e52e0
URL: http://www.boost.org
6e52e0
Group: System Environment/Libraries
6e52e0
Source0: http://downloads.sourceforge.net/%{name}/%{toplev_dirname}.tar.bz2
6e52e0
Source1: ver.py
6e52e0
Source2: libboost_thread-mt.so
6e52e0
6e52e0
# From the version 13 of Fedora, the Boost libraries are delivered
6e52e0
# with sonames equal to the Boost version (e.g., 1.41.0).
6e52e0
%define sonamever %{version}
6e52e0
6e52e0
# boost is an "umbrella" package that pulls in all other boost
6e52e0
# components, except for MPI and Python 3 sub-packages.  Those are
6e52e0
# special in that they are rarely necessary, and it's not a big burden
6e52e0
# to have interested parties install them explicitly.
6e52e0
Requires: boost-atomic%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-chrono%{?_isa} = %{version}-%{release}
6e52e0
%if %{with context}
6e52e0
Requires: boost-context%{?_isa} = %{version}-%{release}
6e52e0
%endif
6e52e0
Requires: boost-date-time%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-filesystem%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-graph%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-iostreams%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-locale%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-math%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-program-options%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-python%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-random%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-regex%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-serialization%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-signals%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-system%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-test%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-thread%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-timer%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-wave%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
BuildRequires: libstdc++-devel
6e52e0
BuildRequires: bzip2-devel
6e52e0
BuildRequires: zlib-devel
6e52e0
BuildRequires: python-devel
6e52e0
%if %{with python3}
6e52e0
BuildRequires: python3-devel
6e52e0
%endif
6e52e0
BuildRequires: libicu-devel
6e52e0
BuildRequires: chrpath
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/6150
6e52e0
Patch4: boost-1.50.0-fix-non-utf8-files.patch
6e52e0
6e52e0
# Add a manual page for the sole executable, namely bjam, based on the
6e52e0
# on-line documentation:
6e52e0
# http://www.boost.org/boost-build2/doc/html/bbv2/overview.html
6e52e0
Patch5: boost-1.48.0-add-bjam-man-page.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=756005
6e52e0
# https://svn.boost.org/trac/boost/ticket/6131
6e52e0
Patch7: boost-1.50.0-foreach.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=781859
6e52e0
# The following tickets have still to be fixed by upstream.
6e52e0
# https://svn.boost.org/trac/boost/ticket/6408
6e52e0
# https://svn.boost.org/trac/boost/ticket/6410
6e52e0
# https://svn.boost.org/trac/boost/ticket/6413
6e52e0
Patch9: boost-1.53.0-attribute.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=783660
6e52e0
# https://svn.boost.org/trac/boost/ticket/6459 fixed
6e52e0
Patch10: boost-1.50.0-long-double-1.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=828856
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=828857
6e52e0
Patch15: boost-1.50.0-pool.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=909888
6e52e0
Patch16: boost-1.53.0-context.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=984346
6e52e0
# https://svn.boost.org/trac/boost/ticket/7242
6e52e0
Patch17: boost-1.53.0-static_assert-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8826
6e52e0
Patch22: boost-1.54.0-context-execstack.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8844
6e52e0
Patch23: boost-1.54.0-bind-static_assert.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8847
6e52e0
Patch24: boost-1.54.0-concept-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/5637
6e52e0
Patch25: boost-1.54.0-mpl-print.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8859
6e52e0
Patch26: boost-1.54.0-static_warning-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8855
6e52e0
Patch27: boost-1.54.0-math-unused_typedef.patch
6e52e0
Patch28: boost-1.54.0-math-unused_typedef-2.patch
6e52e0
Patch29: boost-1.53.0-fpclassify-unused_typedef.patch
6e52e0
Patch30: boost-1.53.0-math-unused_typedef-3.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8853
6e52e0
Patch31: boost-1.54.0-tuple-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8854
6e52e0
Patch32: boost-1.54.0-random-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8856
6e52e0
Patch33: boost-1.54.0-date_time-unused_typedef.patch
6e52e0
Patch34: boost-1.54.0-date_time-unused_typedef-2.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8870
6e52e0
Patch35: boost-1.54.0-spirit-unused_typedef.patch
6e52e0
Patch36: boost-1.54.0-spirit-unused_typedef-2.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8871
6e52e0
Patch37: boost-1.54.0-numeric-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8872
6e52e0
Patch38: boost-1.54.0-multiprecision-unused_typedef.patch
6e52e0
6e52e0
# These are already fixed in 1.54.0+
6e52e0
Patch39: boost-1.53.0-lexical_cast-unused_typedef.patch
6e52e0
Patch40: boost-1.53.0-regex-unused_typedef.patch
6e52e0
Patch41: boost-1.53.0-thread-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8874
6e52e0
Patch42: boost-1.54.0-unordered-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8876
6e52e0
Patch43: boost-1.54.0-algorithm-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8877
6e52e0
Patch44: boost-1.53.0-graph-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8878
6e52e0
Patch45: boost-1.54.0-locale-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8879
6e52e0
Patch46: boost-1.54.0-property_tree-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8880
6e52e0
Patch47: boost-1.54.0-xpressive-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8881
6e52e0
Patch48: boost-1.54.0-mpi-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/8888
6e52e0
Patch49: boost-1.54.0-python-unused_typedef.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/9038
6e52e0
Patch51: boost-1.54.0-pool-test_linking.patch
6e52e0
6e52e0
# https://svn.boost.org/trac/boost/ticket/9037
6e52e0
Patch52: boost-1.54.0-thread-cond_variable_shadow.patch
6e52e0
6e52e0
# This was already fixed upstream, so no tracking bug.
6e52e0
Patch53: boost-1.54.0-pool-max_chunks_shadow.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=1018355
6e52e0
Patch54: boost-1.53.0-mpi-version_type.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=1070789
6e52e0
Patch55: boost-1.53.0-buildflags.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=1002578
6e52e0
# https://svn.boost.org/trac/boost/ticket/9065
6e52e0
Patch56: boost-1.54.0-interprocess-atomic_cas32-ppc.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=1134058
6e52e0
# https://svn.boost.org/trac/boost/ticket/7421
6e52e0
Patch57: boost-1.53.0-lexical_cast.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=1298227
6e52e0
# https://github.com/boostorg/asio/pull/23
6e52e0
Patch58: boost-1.53.0-no-ssl3.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=1302120
6e52e0
Patch61: boost-1.53.0-python-libpython_dep.patch
6e52e0
Patch62: boost-1.53.0-python-abi_letters.patch
6e52e0
Patch63: boost-1.53.0-python-test-PyImport_AppendInittab.patch
6e52e0
Patch64: boost-1.53.0-no-rpath.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=1402516
6e52e0
Patch70: boost-1.53-spirit-lexer.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=1636817
6e52e0
# https://www.boost.org/patches/1_54_0/002-date-time.patch
6e52e0
Patch71: boost-1.54.0-date-time.patch
6e52e0
6e52e0
# https://bugzilla.redhat.com/show_bug.cgi?id=1676674
6e52e0
# https://svn.boost.org/trac10/ticket/8451
6e52e0
Patch72: boost-1.53-joinable.patch
6e52e0
6e52e0
%bcond_with tests
6e52e0
%bcond_with docs_generated
6e52e0
6e52e0
%description
6e52e0
Boost provides free peer-reviewed portable C++ source libraries.  The
6e52e0
emphasis is on libraries which work well with the C++ Standard
6e52e0
Library, in the hopes of establishing "existing practice" for
6e52e0
extensions and providing reference implementations so that the Boost
6e52e0
libraries are suitable for eventual standardization. (Some of the
6e52e0
libraries have already been included in the C++ 2011 standard and
6e52e0
others have been proposed to the C++ Standards Committee for inclusion
6e52e0
in future standards.)
6e52e0
6e52e0
%package atomic
6e52e0
Summary: Run-Time component of boost atomic library
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description atomic
6e52e0
6e52e0
Run-Time support for Boost.Atomic, a library that provides atomic data
6e52e0
types and operations on these data types, as well as memory ordering
6e52e0
constraints required for coordinating multiple threads through atomic
6e52e0
variables.
6e52e0
6e52e0
%package chrono
6e52e0
Summary: Run-Time component of boost chrono library
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-system%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description chrono
6e52e0
6e52e0
Run-Time support for Boost.Chrono, a set of useful time utilities.
6e52e0
6e52e0
%if %{with context}
6e52e0
%package context
6e52e0
Summary: Run-Time component of boost context switching library
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description context
6e52e0
6e52e0
Run-Time support for Boost.Context, a foundational library that
6e52e0
provides a sort of cooperative multitasking on a single thread.
6e52e0
%endif
6e52e0
6e52e0
%package date-time
6e52e0
Summary: Run-Time component of boost date-time library
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description date-time
6e52e0
6e52e0
Run-Time support for Boost Date Time, set of date-time libraries based
6e52e0
on generic programming concepts.
6e52e0
6e52e0
%package filesystem
6e52e0
Summary: Run-Time component of boost filesystem library
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-system%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description filesystem
6e52e0
6e52e0
Run-Time support for the Boost Filesystem Library, which provides
6e52e0
portable facilities to query and manipulate paths, files, and
6e52e0
directories.
6e52e0
6e52e0
%package graph
6e52e0
Summary: Run-Time component of boost graph library
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-regex%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description graph
6e52e0
6e52e0
Run-Time support for the BGL graph library.  BGL interface and graph
6e52e0
components are generic, in the same sense as the the Standard Template
6e52e0
Library (STL).
6e52e0
6e52e0
%package iostreams
6e52e0
Summary: Run-Time component of boost iostreams library
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description iostreams
6e52e0
6e52e0
Run-Time support for Boost.IOStreams, a framework for defining streams,
6e52e0
stream buffers and i/o filters.
6e52e0
6e52e0
%package locale
6e52e0
Summary: Run-Time component of boost locale library
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-chrono%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-system%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-thread%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description locale
6e52e0
6e52e0
Run-Time support for Boost.Locale, a set of localization and Unicode
6e52e0
handling tools.
6e52e0
6e52e0
%package math
6e52e0
Summary: Math functions for boost TR1 library
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description math
6e52e0
6e52e0
Run-Time support for C99 and C++ TR1 C-style Functions from math
6e52e0
portion of Boost.TR1.
6e52e0
6e52e0
%package program-options
6e52e0
Summary:  Run-Time component of boost program_options library
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description program-options
6e52e0
6e52e0
Run-Time support of boost program options library, which allows program
6e52e0
developers to obtain (name, value) pairs from the user, via
6e52e0
conventional methods such as command line and configuration file.
6e52e0
6e52e0
%package python
6e52e0
Summary: Run-Time component of boost python library
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description python
6e52e0
6e52e0
The Boost Python Library is a framework for interfacing Python and
6e52e0
C++. It allows you to quickly and seamlessly expose C++ classes
6e52e0
functions and objects to Python, and vice versa, using no special
6e52e0
tools -- just your C++ compiler.  This package contains run-time
6e52e0
support for Boost Python Library.
6e52e0
6e52e0
%if %{with python3}
6e52e0
6e52e0
%package python3
6e52e0
Summary: Run-Time component of boost python library for Python 3
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description python3
6e52e0
6e52e0
The Boost Python Library is a framework for interfacing Python and
6e52e0
C++. It allows you to quickly and seamlessly expose C++ classes
6e52e0
functions and objects to Python, and vice versa, using no special
6e52e0
tools -- just your C++ compiler.  This package contains run-time
6e52e0
support for Boost Python Library compiled for Python 3.
6e52e0
6e52e0
%package python3-devel
6e52e0
Summary: Shared object symbolic links for Boost.Python 3
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-python3%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-devel%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description python3-devel
6e52e0
6e52e0
Shared object symbolic links for Python 3 variant of Boost.Python.
6e52e0
6e52e0
%endif
6e52e0
6e52e0
%package random
6e52e0
Summary: Run-Time component of boost random library
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description random
6e52e0
6e52e0
Run-Time support for boost random library.
6e52e0
6e52e0
%package regex
6e52e0
Summary: Run-Time component of boost regular expression library
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description regex
6e52e0
6e52e0
Run-Time support for boost regular expression library.
6e52e0
6e52e0
%package serialization
6e52e0
Summary: Run-Time component of boost serialization library
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description serialization
6e52e0
6e52e0
Run-Time support for serialization for persistence and marshaling.
6e52e0
6e52e0
%package signals
6e52e0
Summary: Run-Time component of boost signals and slots library
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description signals
6e52e0
6e52e0
Run-Time support for managed signals & slots callback implementation.
6e52e0
6e52e0
%package system
6e52e0
Summary: Run-Time component of boost system support library
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description system
6e52e0
6e52e0
Run-Time component of Boost operating system support library, including
6e52e0
the diagnostics support that will be part of the C++0x standard
6e52e0
library.
6e52e0
6e52e0
%package test
6e52e0
Summary: Run-Time component of boost test library
6e52e0
Group: System Environment/Libraries
6e52e0
6e52e0
%description test
6e52e0
6e52e0
Run-Time support for simple program testing, full unit testing, and for
6e52e0
program execution monitoring.
6e52e0
6e52e0
%package thread
6e52e0
Summary: Run-Time component of boost thread library
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-system%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description thread
6e52e0
6e52e0
Run-Time component Boost.Thread library, which provides classes and
6e52e0
functions for managing multiple threads of execution, and for
6e52e0
synchronizing data between the threads or providing separate copies of
6e52e0
data specific to individual threads.
6e52e0
6e52e0
%package timer
6e52e0
Summary: Run-Time component of boost timer library
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-chrono%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-system%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description timer
6e52e0
6e52e0
"How long does my C++ code take to run?"
6e52e0
The Boost Timer library answers that question and does so portably,
6e52e0
with as little as one #include and one additional line of code.
6e52e0
6e52e0
%package wave
6e52e0
Summary: Run-Time component of boost C99/C++ pre-processing library
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-chrono%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-date-time%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-filesystem%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-system%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-thread%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description wave
6e52e0
6e52e0
Run-Time support for the Boost.Wave library, a Standards conforming,
6e52e0
and highly configurable implementation of the mandated C99/C++
6e52e0
pre-processor functionality.
6e52e0
6e52e0
%package devel
6e52e0
Summary: The Boost C++ headers and shared development libraries
6e52e0
Group: Development/Libraries
6e52e0
Requires: boost%{?_isa} = %{version}-%{release}
6e52e0
Provides: boost-python-devel = %{version}-%{release}
6e52e0
6e52e0
%description devel
6e52e0
Headers and shared object symbolic links for the Boost C++ libraries.
6e52e0
6e52e0
%package static
6e52e0
Summary: The Boost C++ static development libraries
6e52e0
Group: Development/Libraries
6e52e0
Requires: boost-devel%{?_isa} = %{version}-%{release}
6e52e0
Obsoletes: boost-devel-static < 1.34.1-14
6e52e0
Provides: boost-devel-static = %{version}-%{release}
6e52e0
6e52e0
%description static
6e52e0
Static Boost C++ libraries.
6e52e0
6e52e0
%package doc
6e52e0
Summary: HTML documentation for the Boost C++ libraries
6e52e0
Group: Documentation
6e52e0
%if 0%{?fedora} >= 10 || 0%{?rhel} >= 6
6e52e0
BuildArch: noarch
6e52e0
%endif
6e52e0
Provides: boost-python-docs = %{version}-%{release}
6e52e0
6e52e0
%description doc
6e52e0
This package contains the documentation in the HTML format of the Boost C++
6e52e0
libraries. The documentation provides the same content as that on the Boost
6e52e0
web page (http://www.boost.org/doc/libs/1_40_0).
6e52e0
6e52e0
%package examples
6e52e0
Summary: Source examples for the Boost C++ libraries
6e52e0
Group: Documentation
6e52e0
%if 0%{?fedora} >= 10 || 0%{?rhel} >= 6
6e52e0
BuildArch: noarch
6e52e0
%endif
6e52e0
Requires: boost-devel = %{version}-%{release}
6e52e0
6e52e0
%description examples
6e52e0
This package contains example source files distributed with boost.
6e52e0
6e52e0
6e52e0
%if %{with openmpi}
6e52e0
6e52e0
%package openmpi
6e52e0
Summary: Run-Time component of Boost.MPI library
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: openmpi%{?_isa}
6e52e0
BuildRequires: openmpi-devel
6e52e0
Requires: boost-serialization%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description openmpi
6e52e0
6e52e0
Run-Time support for Boost.MPI-OpenMPI, a library providing a clean C++
6e52e0
API over the OpenMPI implementation of MPI.
6e52e0
6e52e0
%package openmpi-devel
6e52e0
Summary: Shared library symbolic links for Boost.MPI
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-devel%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-openmpi%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-openmpi-python%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-graph-openmpi%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description openmpi-devel
6e52e0
6e52e0
Devel package for Boost.MPI-OpenMPI, a library providing a clean C++
6e52e0
API over the OpenMPI implementation of MPI.
6e52e0
6e52e0
%package openmpi-python
6e52e0
Summary: Python run-time component of Boost.MPI library
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-openmpi%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-python%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-serialization%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description openmpi-python
6e52e0
6e52e0
Python support for Boost.MPI-OpenMPI, a library providing a clean C++
6e52e0
API over the OpenMPI implementation of MPI.
6e52e0
6e52e0
%package graph-openmpi
6e52e0
Summary: Run-Time component of parallel boost graph library
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-openmpi%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-serialization%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description graph-openmpi
6e52e0
6e52e0
Run-Time support for the Parallel BGL graph library.  The interface and
6e52e0
graph components are generic, in the same sense as the the Standard
6e52e0
Template Library (STL).  This libraries in this package use OpenMPI
6e52e0
back-end to do the parallel work.
6e52e0
6e52e0
%endif
6e52e0
6e52e0
6e52e0
%if %{with mpich}
6e52e0
6e52e0
%package mpich
6e52e0
Summary: Run-Time component of Boost.MPI library
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: mpich%{?_isa}
6e52e0
BuildRequires: mpich-devel
6e52e0
Requires: boost-serialization%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description mpich
6e52e0
6e52e0
Run-Time support for Boost.MPI-MPICH, a library providing a clean C++
6e52e0
API over the MPICH implementation of MPI.
6e52e0
6e52e0
%package mpich-devel
6e52e0
Summary: Shared library symbolic links for Boost.MPI
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-devel%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-mpich%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-mpich-python%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-graph-mpich%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description mpich-devel
6e52e0
6e52e0
Devel package for Boost.MPI-MPICH, a library providing a clean C++
6e52e0
API over the MPICH implementation of MPI.
6e52e0
6e52e0
%package mpich-python
6e52e0
Summary: Python run-time component of Boost.MPI library
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-mpich%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-python%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-serialization%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description mpich-python
6e52e0
6e52e0
Python support for Boost.MPI-MPICH, a library providing a clean C++
6e52e0
API over the MPICH implementation of MPI.
6e52e0
6e52e0
%package graph-mpich
6e52e0
Summary: Run-Time component of parallel boost graph library
6e52e0
Group: System Environment/Libraries
6e52e0
Requires: boost-mpich%{?_isa} = %{version}-%{release}
6e52e0
Requires: boost-serialization%{?_isa} = %{version}-%{release}
6e52e0
6e52e0
%description graph-mpich
6e52e0
6e52e0
Run-Time support for the Parallel BGL graph library.  The interface and
6e52e0
graph components are generic, in the same sense as the the Standard
6e52e0
Template Library (STL).  This libraries in this package use MPICH
6e52e0
back-end to do the parallel work.
6e52e0
6e52e0
%endif
6e52e0
6e52e0
%package build
6e52e0
Summary: Cross platform build system for C++ projects
6e52e0
Group: Development/Tools
6e52e0
Requires: boost-jam
6e52e0
BuildArch: noarch
6e52e0
6e52e0
%description build
6e52e0
Boost.Build is an easy way to build C++ projects, everywhere. You name
6e52e0
your pieces of executable and libraries and list their sources.  Boost.Build
6e52e0
takes care about compiling your sources with the right options,
6e52e0
creating static and shared libraries, making pieces of executable, and other
6e52e0
chores -- whether you're using GCC, MSVC, or a dozen more supported
6e52e0
C++ compilers -- on Windows, OSX, Linux and commercial UNIX systems.
6e52e0
6e52e0
%package jam
6e52e0
Summary: A low-level build tool
6e52e0
Group: Development/Tools
6e52e0
6e52e0
%description jam
6e52e0
Boost.Jam (BJam) is the low-level build engine tool for Boost.Build.
6e52e0
Historically, Boost.Jam is based on on FTJam and on Perforce Jam but has grown
6e52e0
a number of significant features and is now developed independently
6e52e0
6e52e0
%prep
6e52e0
%setup -q -n %{toplev_dirname}
6e52e0
6e52e0
# Fixes
6e52e0
%patch4 -p1
6e52e0
%patch5 -p1
6e52e0
%patch7 -p2
6e52e0
%patch9 -p1
6e52e0
%patch10 -p1
6e52e0
%patch15 -p0
6e52e0
%patch16 -p1
6e52e0
%patch17 -p1
6e52e0
%patch22 -p1
6e52e0
%patch23 -p1
6e52e0
%patch24 -p1
6e52e0
%patch25 -p0
6e52e0
%patch26 -p1
6e52e0
%patch27 -p1
6e52e0
%patch28 -p0
6e52e0
%patch29 -p1
6e52e0
%patch30 -p1
6e52e0
%patch31 -p0
6e52e0
%patch32 -p0
6e52e0
%patch33 -p0
6e52e0
%patch34 -p1
6e52e0
%patch35 -p1
6e52e0
%patch36 -p1
6e52e0
%patch37 -p1
6e52e0
%patch38 -p1
6e52e0
%patch39 -p1
6e52e0
%patch40 -p1
6e52e0
%patch41 -p1
6e52e0
%patch42 -p1
6e52e0
%patch43 -p1
6e52e0
%patch44 -p1
6e52e0
%patch45 -p1
6e52e0
%patch46 -p1
6e52e0
%patch47 -p1
6e52e0
%patch48 -p1
6e52e0
%patch49 -p1
6e52e0
%patch51 -p1
6e52e0
%patch52 -p1
6e52e0
%patch53 -p1
6e52e0
%patch54 -p1
6e52e0
%patch55 -p1 -b .buildflags
6e52e0
%patch56 -p1
6e52e0
%patch57 -p2
6e52e0
%patch58 -p1
6e52e0
%patch61 -p1
6e52e0
%patch62 -p1
6e52e0
%patch63 -p1
6e52e0
%patch64 -p1
6e52e0
%patch70 -p2
6e52e0
%patch71 -p1
6e52e0
%patch72 -p0
6e52e0
6e52e0
# At least python2_version needs to be a macro so that it's visible in
6e52e0
# %%install as well.
6e52e0
%global python2_version %(/usr/bin/python2 %{SOURCE1})
6e52e0
%if %{with python3}
6e52e0
%global python3_version %(/usr/bin/python3 %{SOURCE1})
6e52e0
%global python3_abiflags %(/usr/bin/python3-config --abiflags)
6e52e0
%endif
6e52e0
6e52e0
%build
6e52e0
: PYTHON2_VERSION=%{python2_version}
6e52e0
%if %{with python3}
6e52e0
: PYTHON3_VERSION=%{python3_version}
6e52e0
: PYTHON3_ABIFLAGS=%{python3_abiflags}
6e52e0
%endif
6e52e0
6e52e0
cat >> ./tools/build/v2/user-config.jam << EOF
6e52e0
# There are many strict aliasing warnings, and it's not feasible to go
6e52e0
# through them all at this time.
6e52e0
using gcc : : : <compileflags>"$RPM_OPT_FLAGS -fno-strict-aliasing" ;
6e52e0
%if %{with openmpi} || %{with mpich}
6e52e0
using mpi ;
6e52e0
%endif
6e52e0
%if %{with python3}
6e52e0
# This _adds_ extra python version.  It doesn't replace whatever
6e52e0
# python 2.X is default on the system.
6e52e0
using python : %{python3_version} : /usr/bin/python3 : /usr/include/python%{python3_version}%{python3_abiflags} : : : : %{python3_abiflags} ;
6e52e0
%endif
6e52e0
EOF
6e52e0
6e52e0
./bootstrap.sh --with-toolset=gcc --with-icu
6e52e0
sed 's/%%{version}/%{version}/g' %{SOURCE2} > $(basename %{SOURCE2})
6e52e0
6e52e0
# N.B. When we build the following with PCH, parts of boost (math
6e52e0
# library in particular) end up being built second time during
6e52e0
# installation.  Unsure why that is, but all sub-builds need to be
6e52e0
# built with pch=off to avoid this.
6e52e0
#
6e52e0
# The "python=2.*" bit tells jam that we want to _also_ build 2.*, not
6e52e0
# just 3.*.  When omitted, it just builds for python 3 twice, once
6e52e0
# calling the library libboost_python and once libboost_python3.  I
6e52e0
# assume this is for backward compatibility for apps that are used to
6e52e0
# linking against -lboost_python, for when 2->3 transition is
6e52e0
# eventually done.
6e52e0
6e52e0
echo ============================= build serial ==================
6e52e0
./b2 -d+2 -q %{?_smp_mflags} --layout=tagged \
6e52e0
	--without-mpi --without-graph_parallel --build-dir=serial \
6e52e0
%if !%{with context}
6e52e0
    	--without-context \
6e52e0
%endif
6e52e0
	variant=release threading=single,multi debug-symbols=on pch=off \
6e52e0
	python=%{python2_version} stage
6e52e0
6e52e0
# Build MPI parts of Boost with OpenMPI support
6e52e0
6e52e0
%if %{with openmpi} || %{with mpich}
6e52e0
# First, purge all modules so that user environment doesn't conflict
6e52e0
# with the build.
6e52e0
module purge ||:
6e52e0
%endif
6e52e0
6e52e0
# N.B. python=2.* here behaves differently: it exactly selects a
6e52e0
# version that we want to build against.  Boost MPI is not portable to
6e52e0
# Python 3 due to API changes in Python, so this suits us.
6e52e0
%if %{with openmpi}
6e52e0
%{_openmpi_load}
6e52e0
echo ============================= build $MPI_COMPILER ==================
6e52e0
# This doesn't seem to allow single-threaded builds anymore.
6e52e0
./b2 -d+2 -q %{?_smp_mflags} --layout=tagged \
6e52e0
	--with-mpi --with-graph_parallel --build-dir=$MPI_COMPILER \
6e52e0
	variant=release threading=multi debug-symbols=on pch=off \
6e52e0
	python=%{python2_version} stage
6e52e0
%{_openmpi_unload}
6e52e0
export PATH=/bin${PATH:+:}$PATH
6e52e0
%endif
6e52e0
6e52e0
# Build MPI parts of Boost with MPICH support
6e52e0
%if %{with mpich}
6e52e0
%{_mpich_load}
6e52e0
echo ============================= build $MPI_COMPILER ==================
6e52e0
./b2 -d+2 -q %{?_smp_mflags} --layout=tagged \
6e52e0
	--with-mpi --with-graph_parallel --build-dir=$MPI_COMPILER \
6e52e0
	variant=release threading=multi debug-symbols=on pch=off \
6e52e0
	python=%{python2_version} stage
6e52e0
%{_mpich_unload}
6e52e0
export PATH=/bin${PATH:+:}$PATH
6e52e0
%endif
6e52e0
6e52e0
echo ============================= build Boost.Build ==================
6e52e0
(cd tools/build/v2
6e52e0
 ./bootstrap.sh --with-toolset=gcc)
6e52e0
6e52e0
%check
6e52e0
:
6e52e0
6e52e0
6e52e0
%install
6e52e0
rm -rf $RPM_BUILD_ROOT
6e52e0
6e52e0
cd %{_builddir}/%{toplev_dirname}
6e52e0
6e52e0
%if %{with openmpi} || %{with mpich}
6e52e0
# First, purge all modules so that user environment doesn't conflict
6e52e0
# with the build.
6e52e0
module purge ||:
6e52e0
%endif
6e52e0
6e52e0
%if %{with openmpi}
6e52e0
%{_openmpi_load}
6e52e0
echo ============================= install $MPI_COMPILER ==================
6e52e0
./b2 -q %{?_smp_mflags} --layout=tagged \
6e52e0
	--with-mpi --with-graph_parallel --build-dir=$MPI_COMPILER \
6e52e0
	--stagedir=${RPM_BUILD_ROOT}${MPI_HOME} \
6e52e0
	variant=release threading=multi debug-symbols=on pch=off \
6e52e0
	python=%{python2_version} stage
6e52e0
6e52e0
# Remove generic parts of boost that were built for dependencies.
6e52e0
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_{python,{w,}serialization}*
6e52e0
6e52e0
%{_openmpi_unload}
6e52e0
export PATH=/bin${PATH:+:}$PATH
6e52e0
%endif
6e52e0
6e52e0
%if %{with mpich}
6e52e0
%{_mpich_load}
6e52e0
echo ============================= install $MPI_COMPILER ==================
6e52e0
./b2 -q %{?_smp_mflags} --layout=tagged \
6e52e0
	--with-mpi --with-graph_parallel --build-dir=$MPI_COMPILER \
6e52e0
	--stagedir=${RPM_BUILD_ROOT}${MPI_HOME} \
6e52e0
	variant=release threading=multi debug-symbols=on pch=off \
6e52e0
	python=%{python2_version} stage
6e52e0
6e52e0
# Remove generic parts of boost that were built for dependencies.
6e52e0
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_{python,{w,}serialization}*
6e52e0
6e52e0
%{_mpich_unload}
6e52e0
export PATH=/bin${PATH:+:}$PATH
6e52e0
%endif
6e52e0
6e52e0
echo ============================= install serial ==================
6e52e0
./b2 -d+2 -q %{?_smp_mflags} --layout=tagged \
6e52e0
	--without-mpi --without-graph_parallel --build-dir=serial \
6e52e0
%if !%{with context}
6e52e0
    	--without-context \
6e52e0
%endif
6e52e0
	--prefix=$RPM_BUILD_ROOT%{_prefix} \
6e52e0
	--libdir=$RPM_BUILD_ROOT%{_libdir} \
6e52e0
	variant=release threading=single,multi debug-symbols=on pch=off \
6e52e0
	python=%{python2_version} install
6e52e0
6e52e0
# Override DSO symlink with a linker script.  See the linker script
6e52e0
# itself for details of why we need to do this.
6e52e0
[ -f $RPM_BUILD_ROOT%{_libdir}/libboost_thread-mt.so ] # Must be present
6e52e0
rm -f $RPM_BUILD_ROOT%{_libdir}/libboost_thread-mt.so
6e52e0
install -p -m 644 $(basename %{SOURCE2}) $RPM_BUILD_ROOT%{_libdir}/
6e52e0
6e52e0
# Add symlinks libboost_{thread,locale,atomic}.so -> *-mt.so
6e52e0
#  https://bugzilla.redhat.com/show_bug.cgi?id=971956
6e52e0
ln -s libboost_thread-mt.so $RPM_BUILD_ROOT%{_libdir}/libboost_thread.so
6e52e0
ln -s libboost_locale-mt.so $RPM_BUILD_ROOT%{_libdir}/libboost_locale.so
6e52e0
ln -s libboost_atomic-mt.so $RPM_BUILD_ROOT%{_libdir}/libboost_atomic.so
6e52e0
# Check that we didn't forget about anything.
6e52e0
find $RPM_BUILD_ROOT%{_libdir} -maxdepth 1 -name libboost_\*-mt.so \
6e52e0
	| while read a; do test -e ${a/-mt/} || exit 1; done
6e52e0
6e52e0
echo ============================= install Boost.Build ==================
6e52e0
(cd tools/build/v2
6e52e0
 ./b2 --prefix=$RPM_BUILD_ROOT%{_prefix} install
6e52e0
 # Fix some permissions
6e52e0
 chmod -x $RPM_BUILD_ROOT%{_datadir}/boost-build/build/alias.py
6e52e0
 chmod +x $RPM_BUILD_ROOT%{_datadir}/boost-build/tools/doxproc.py
6e52e0
 # We don't want to distribute this
6e52e0
 rm -f $RPM_BUILD_ROOT%{_bindir}/b2
6e52e0
 # Not a real file
6e52e0
 rm -f $RPM_BUILD_ROOT%{_datadir}/boost-build/build/project.ann.py
6e52e0
 # Empty file
6e52e0
 rm -f $RPM_BUILD_ROOT%{_datadir}/boost-build/tools/doxygen/windows-paths-check.hpp
6e52e0
 # Install the manual page
6e52e0
 %{__install} -p -m 644 doc/bjam.1 -D $RPM_BUILD_ROOT%{_mandir}/man1/bjam.1
6e52e0
 # Install the unpatched gcc.jam
6e52e0
 %{__install} -p -m 644 tools/gcc.jam.buildflags -D $RPM_BUILD_ROOT%{_datadir}/boost-build/tools/gcc.jam
6e52e0
)
6e52e0
6e52e0
# Install documentation files (HTML pages) within the temporary place
6e52e0
echo ============================= install documentation ==================
6e52e0
# Prepare the place to temporary store the generated documentation
6e52e0
rm -rf %{boost_docdir} && %{__mkdir_p} %{boost_docdir}/html
6e52e0
DOCPATH=%{boost_docdir}
6e52e0
DOCREGEX='.*\.\(html?\|css\|png\|gif\)'
6e52e0
6e52e0
find libs doc more -type f -regex $DOCREGEX \
6e52e0
    | sed -n '/\//{s,/[^/]*$,,;p}' \
6e52e0
    | sort -u > tmp-doc-directories
6e52e0
6e52e0
sed "s:^:$DOCPATH/:" tmp-doc-directories \
6e52e0
    | xargs --no-run-if-empty %{__install} -d
6e52e0
6e52e0
cat tmp-doc-directories | while read tobeinstalleddocdir; do
6e52e0
    find $tobeinstalleddocdir -mindepth 1 -maxdepth 1 -regex $DOCREGEX \
6e52e0
    | xargs %{__install} -p -m 644 -t $DOCPATH/$tobeinstalleddocdir
6e52e0
done
6e52e0
rm -f tmp-doc-directories
6e52e0
%{__install} -p -m 644 -t $DOCPATH LICENSE_1_0.txt index.htm index.html boost.png rst.css boost.css
6e52e0
6e52e0
echo ============================= install examples ==================
6e52e0
# Fix a few non-standard issues (DOS and/or non-UTF8 files)
6e52e0
sed -i -e 's/\r//g' libs/geometry/example/ml02_distance_strategy.cpp
6e52e0
sed -i -e 's/\r//g' libs/geometry/example/ml02_distance_strategy.vcproj
6e52e0
for tmp_doc_file in flyweight/example/Jamfile.v2 \
6e52e0
 format/example/sample_new_features.cpp multi_index/example/Jamfile.v2 \
6e52e0
 multi_index/example/hashed.cpp serialization/example/demo_output.txt \
6e52e0
 test/example/cla/wide_string.cpp
6e52e0
do
6e52e0
  mv libs/${tmp_doc_file} libs/${tmp_doc_file}.iso8859
6e52e0
  iconv -f ISO8859-1 -t UTF8 < libs/${tmp_doc_file}.iso8859 > libs/${tmp_doc_file}
6e52e0
  touch -r libs/${tmp_doc_file}.iso8859 libs/${tmp_doc_file}
6e52e0
  rm -f libs/${tmp_doc_file}.iso8859
6e52e0
done
6e52e0
6e52e0
# Prepare the place to temporary store the examples
6e52e0
rm -rf %{boost_examplesdir} && mkdir -p %{boost_examplesdir}/html
6e52e0
EXAMPLESPATH=%{boost_examplesdir}
6e52e0
find libs -type d -name example -exec find {} -type f \; \
6e52e0
    | sed -n '/\//{s,/[^/]*$,,;p}' \
6e52e0
    | sort -u > tmp-doc-directories
6e52e0
sed "s:^:$EXAMPLESPATH/:" tmp-doc-directories \
6e52e0
    | xargs --no-run-if-empty %{__install} -d
6e52e0
rm -f tmp-doc-files-to-be-installed && touch tmp-doc-files-to-be-installed
6e52e0
cat tmp-doc-directories | while read tobeinstalleddocdir
6e52e0
do
6e52e0
  find $tobeinstalleddocdir -mindepth 1 -maxdepth 1 -type f \
6e52e0
    >> tmp-doc-files-to-be-installed
6e52e0
done
6e52e0
cat tmp-doc-files-to-be-installed | while read tobeinstalledfiles
6e52e0
do
6e52e0
  if test -s $tobeinstalledfiles
6e52e0
  then
6e52e0
    tobeinstalleddocdir=`dirname $tobeinstalledfiles`
6e52e0
    %{__install} -p -m 644 -t $EXAMPLESPATH/$tobeinstalleddocdir $tobeinstalledfiles
6e52e0
  fi
6e52e0
done
6e52e0
rm -f tmp-doc-files-to-be-installed
6e52e0
rm -f tmp-doc-directories
6e52e0
%{__install} -p -m 644 -t $EXAMPLESPATH LICENSE_1_0.txt
6e52e0
6e52e0
%clean
6e52e0
rm -rf $RPM_BUILD_ROOT
6e52e0
6e52e0
6e52e0
# MPI subpackages don't need the ldconfig magic.  They are hidden by
6e52e0
# default, in MPI back-end-specific directory, and only show to the
6e52e0
# user after the relevant environment module has been loaded.
6e52e0
# rpmlint will report that as errors, but it is fine.
6e52e0
6e52e0
%post atomic -p /sbin/ldconfig
6e52e0
6e52e0
%postun atomic -p /sbin/ldconfig
6e52e0
6e52e0
%post chrono -p /sbin/ldconfig
6e52e0
6e52e0
%postun chrono -p /sbin/ldconfig
6e52e0
6e52e0
%if %{with context}
6e52e0
%post context -p /sbin/ldconfig
6e52e0
6e52e0
%postun context -p /sbin/ldconfig
6e52e0
%endif
6e52e0
6e52e0
%post date-time -p /sbin/ldconfig
6e52e0
6e52e0
%postun date-time -p /sbin/ldconfig
6e52e0
6e52e0
%post filesystem -p /sbin/ldconfig
6e52e0
6e52e0
%postun filesystem -p /sbin/ldconfig
6e52e0
6e52e0
%post graph -p /sbin/ldconfig
6e52e0
6e52e0
%postun graph -p /sbin/ldconfig
6e52e0
6e52e0
%post iostreams -p /sbin/ldconfig
6e52e0
6e52e0
%postun iostreams -p /sbin/ldconfig
6e52e0
6e52e0
%post locale -p /sbin/ldconfig
6e52e0
6e52e0
%postun locale -p /sbin/ldconfig
6e52e0
6e52e0
%post math -p /sbin/ldconfig
6e52e0
6e52e0
%postun math -p /sbin/ldconfig
6e52e0
6e52e0
%post program-options -p /sbin/ldconfig
6e52e0
6e52e0
%postun program-options -p /sbin/ldconfig
6e52e0
6e52e0
%post python -p /sbin/ldconfig
6e52e0
6e52e0
%postun python -p /sbin/ldconfig
6e52e0
6e52e0
%post random -p /sbin/ldconfig
6e52e0
6e52e0
%postun random -p /sbin/ldconfig
6e52e0
6e52e0
%post regex -p /sbin/ldconfig
6e52e0
6e52e0
%postun regex -p /sbin/ldconfig
6e52e0
6e52e0
%post serialization -p /sbin/ldconfig
6e52e0
6e52e0
%postun serialization -p /sbin/ldconfig
6e52e0
6e52e0
%post signals -p /sbin/ldconfig
6e52e0
6e52e0
%postun signals -p /sbin/ldconfig
6e52e0
6e52e0
%post system -p /sbin/ldconfig
6e52e0
6e52e0
%postun system -p /sbin/ldconfig
6e52e0
6e52e0
%post test -p /sbin/ldconfig
6e52e0
6e52e0
%postun test -p /sbin/ldconfig
6e52e0
6e52e0
%post thread -p /sbin/ldconfig
6e52e0
6e52e0
%postun thread -p /sbin/ldconfig
6e52e0
6e52e0
%post timer -p /sbin/ldconfig
6e52e0
6e52e0
%postun timer -p /sbin/ldconfig
6e52e0
6e52e0
%post wave -p /sbin/ldconfig
6e52e0
6e52e0
%postun wave -p /sbin/ldconfig
6e52e0
6e52e0
6e52e0
6e52e0
%files
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
6e52e0
%files atomic
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_atomic-mt.so.%{sonamever}
6e52e0
6e52e0
%files chrono
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_chrono*.so.%{sonamever}
6e52e0
6e52e0
%if %{with context}
6e52e0
%files context
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_context*.so.%{sonamever}
6e52e0
%endif
6e52e0
6e52e0
%files date-time
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_date_time*.so.%{sonamever}
6e52e0
6e52e0
%files filesystem
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_filesystem*.so.%{sonamever}
6e52e0
6e52e0
%files graph
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_graph.so.%{sonamever}
6e52e0
%{_libdir}/libboost_graph-mt.so.%{sonamever}
6e52e0
6e52e0
%files iostreams
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_iostreams*.so.%{sonamever}
6e52e0
6e52e0
%files locale
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_locale*.so.%{sonamever}
6e52e0
6e52e0
%files math
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_math*.so.%{sonamever}
6e52e0
6e52e0
%files test
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_prg_exec_monitor*.so.%{sonamever}
6e52e0
%{_libdir}/libboost_unit_test_framework*.so.%{sonamever}
6e52e0
6e52e0
%files program-options
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_program_options*.so.%{sonamever}
6e52e0
6e52e0
%files python
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_python.so.%{sonamever}
6e52e0
%{_libdir}/libboost_python-mt.so.%{sonamever}
6e52e0
6e52e0
%if %{with python3}
6e52e0
%files python3
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_python3*.so.%{sonamever}
6e52e0
6e52e0
%files python3-devel
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_python3*.so
6e52e0
%endif
6e52e0
6e52e0
%files random
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_random*.so.%{sonamever}
6e52e0
6e52e0
%files regex
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_regex*.so.%{sonamever}
6e52e0
6e52e0
%files serialization
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_serialization*.so.%{sonamever}
6e52e0
%{_libdir}/libboost_wserialization*.so.%{sonamever}
6e52e0
6e52e0
%files signals
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_signals*.so.%{sonamever}
6e52e0
6e52e0
%files system
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_system*.so.%{sonamever}
6e52e0
6e52e0
%files thread
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_thread*.so.%{sonamever}
6e52e0
6e52e0
%files timer
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_timer*.so.%{sonamever}
6e52e0
6e52e0
%files wave
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/libboost_wave*.so.%{sonamever}
6e52e0
6e52e0
%files doc
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc %{boost_docdir}/*
6e52e0
6e52e0
%files examples
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc %{boost_examplesdir}/*
6e52e0
6e52e0
%files devel
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_includedir}/%{name}
6e52e0
%{_libdir}/libboost_atomic*.so
6e52e0
%{_libdir}/libboost_chrono*.so
6e52e0
%if %{with context}
6e52e0
%{_libdir}/libboost_context*.so
6e52e0
%endif
6e52e0
%{_libdir}/libboost_date_time*.so
6e52e0
%{_libdir}/libboost_filesystem*.so
6e52e0
%{_libdir}/libboost_graph.so
6e52e0
%{_libdir}/libboost_graph-mt.so
6e52e0
%{_libdir}/libboost_iostreams*.so
6e52e0
%{_libdir}/libboost_locale*.so
6e52e0
%{_libdir}/libboost_math*.so
6e52e0
%{_libdir}/libboost_prg_exec_monitor*.so
6e52e0
%{_libdir}/libboost_unit_test_framework*.so
6e52e0
%{_libdir}/libboost_program_options*.so
6e52e0
%{_libdir}/libboost_python-mt.so
6e52e0
%{_libdir}/libboost_python.so
6e52e0
%{_libdir}/libboost_random*.so
6e52e0
%{_libdir}/libboost_regex*.so
6e52e0
%{_libdir}/libboost_serialization*.so
6e52e0
%{_libdir}/libboost_wserialization*.so
6e52e0
%{_libdir}/libboost_signals*.so
6e52e0
%{_libdir}/libboost_system*.so
6e52e0
%{_libdir}/libboost_thread*.so
6e52e0
%{_libdir}/libboost_timer*.so
6e52e0
%{_libdir}/libboost_wave*.so
6e52e0
6e52e0
%files static
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/*.a
6e52e0
%if %{with mpich}
6e52e0
%{_libdir}/mpich/lib/*.a
6e52e0
%endif
6e52e0
%if %{with openmpi}
6e52e0
%{_libdir}/openmpi/lib/*.a
6e52e0
%endif
6e52e0
6e52e0
# OpenMPI packages
6e52e0
%if %{with openmpi}
6e52e0
6e52e0
%files openmpi
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/openmpi/lib/libboost_mpi-mt.so.%{sonamever}
6e52e0
6e52e0
%files openmpi-devel
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/openmpi/lib/libboost_*.so
6e52e0
6e52e0
%files openmpi-python
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/openmpi/lib/libboost_mpi_python*.so.%{sonamever}
6e52e0
%{_libdir}/openmpi/lib/mpi.so
6e52e0
6e52e0
%files graph-openmpi
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/openmpi/lib/libboost_graph_parallel-mt.so.%{sonamever}
6e52e0
6e52e0
%endif
6e52e0
6e52e0
# MPICH packages
6e52e0
%if %{with mpich}
6e52e0
6e52e0
%files mpich
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/mpich/lib/libboost_mpi-mt.so.%{sonamever}
6e52e0
6e52e0
%files mpich-devel
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/mpich/lib/libboost_*.so
6e52e0
6e52e0
%files mpich-python
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/mpich/lib/libboost_mpi_python*.so.%{sonamever}
6e52e0
%{_libdir}/mpich/lib/mpi.so
6e52e0
6e52e0
%files graph-mpich
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_libdir}/mpich/lib/libboost_graph_parallel-mt.so.%{sonamever}
6e52e0
6e52e0
%endif
6e52e0
6e52e0
%files build
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_datadir}/boost-build/
6e52e0
6e52e0
%files jam
6e52e0
%defattr(-, root, root, -)
6e52e0
%doc LICENSE_1_0.txt
6e52e0
%{_bindir}/bjam
6e52e0
%{_mandir}/man1/bjam.1*
6e52e0
6e52e0
%changelog
6e52e0
* Wed Feb 13 2019 Jonathan Wakely <jwakely@redhat.com> - 1.53.0-28
6e52e0
- Add patch for scoped_thread (#1676674)
6e52e0
6e52e0
* Mon Oct 08 2018 Jonathan Wakely <jwakely@redhat.com> - 1.53.0-28
6e52e0
- Add patch for date-time bug (#1636817)
6e52e0
6e52e0
* Tue Feb 21 2017 Jonathan Wakely <jwakely@redhat.com> - 1.53.0-27
6e52e0
- Patch Boost.Spirit for ppc64 (#1402516)
6e52e0
6e52e0
* Fri Jun 10 2016 Jonathan Wakely <jwakely@redhat.com> - 1.53.0-26
6e52e0
- Install unpatched gcc.jam (#1305019).
6e52e0
- Build libboost_python and libboost_python3 such that they depend on
6e52e0
  their respective libpython (#1302120).
6e52e0
  (boost-1.53.0-python-libpython_dep.patch,
6e52e0
  boost-1.53.0-python-abi_letters.patch)
6e52e0
- Fix Boost.Python test suite so that PyImport_AppendInittab is called
6e52e0
  before PyInitialize, which broke the test suite with Python 3.
6e52e0
  (boost-1.53.0-python-test-PyImport_AppendInittab.patch)
6e52e0
- Patch gcc.jam to not add bogus rpaths.
6e52e0
6e52e0
* Mon Jun 06 2016 Jonathan Wakely <jwakely@redhat.com> - 1.53.0-26
6e52e0
- do not use arch-specific BuildRequires (#1268268)
6e52e0
- support TLS libraries without SSLv3 (#1298227)
6e52e0
6e52e0
* Tue Sep 01 2015 Jonathan Wakely <jwakely@redhat.com> - 1.53.0-25
6e52e0
- Rebuilt for openmpi update (#1258794)
6e52e0
6e52e0
* Thu Jan  8 2015 Petr Machata <pmachata@redhat.com> - 1.53.0-24
6e52e0
- Change Requires: to use %%{?_isa}, so that dependencies are
6e52e0
  arch-aware.
6e52e0
6e52e0
* Mon Sep 22 2014 Petr Machata <pmachata@redhat.com> - 1.53.0-23
6e52e0
- Fix ambiguity in Boost.LexicalCast.
6e52e0
6e52e0
* Wed Sep 10 2014 Petr Machata <pmachata@redhat.com> - 1.53.0-22
6e52e0
- Re-enable mpich and openmpi on aarch64, they are available now.
6e52e0
6e52e0
* Fri Aug 22 2014 Petr Machata <pmachata@redhat.com> - 1.53.0-21
6e52e0
- Fix atomic_cas32 (thanks Jaroslav Å karvada for figuring out where
6e52e0
  the problem is) (boost-1.54.0-interprocess-atomic_cas32-ppc.patch)
6e52e0
6e52e0
* Fri Aug  8 2014 Petr Machata <pmachata@redhat.com> - 1.53.0-20
6e52e0
- Disable mpich and openmpi support for ppc64le until port available.
6e52e0
6e52e0
* Fri Feb 28 2014 Petr Machata <pmachata@redhat.com> - 1.53.0-18
6e52e0
- Turn off build flags pre-set by Boost distribution.
6e52e0
  (boost-1.53.0-buildflags.patch)
6e52e0
- Pass RPM_OPT_FLAGS through user-config.jam.
6e52e0
6e52e0
* Wed Feb 19 2014 Petr Machata <pmachata@redhat.com> - 1.53.0-15
6e52e0
- Fix misunderstanding of Boost.MPI about widths of some
6e52e0
  Boost.Serialization types.  (boost-1.53.0-mpi-version_type.patch)
6e52e0
6e52e0
* Tue Feb 4 2014 Brendan Conoboy <blc@redhat.com> - 1.53.0-16.1
6e52e0
- Disable mpich and openmpi support for aarch64 until port available.
6e52e0
6e52e0
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.53.0-16
6e52e0
- Mass rebuild 2014-01-24
6e52e0
6e52e0
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.53.0-15
6e52e0
- Mass rebuild 2013-12-27
6e52e0
6e52e0
* Wed Oct  2 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-14
6e52e0
- MPICH2 became MPICH -- rename subpackages, dependencies and
6e52e0
  conditionals.
6e52e0
- Resolves: #1014480
6e52e0
6e52e0
* Fri Aug 23 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-13
6e52e0
- Fix compilation of Boost.Pool test cases
6e52e0
  (boost-1.54.0-pool-test_linking.patch)
6e52e0
- Fix -Wshadow warnings in Boost.Pool
6e52e0
  (boost-1.54.0-pool-max_chunks_shadow.patch)
6e52e0
 -Wshadow warnings in Boost.Thread
6e52e0
  (boost-1.54.0-thread-cond_variable_shadow.patch)
6e52e0
6e52e0
* Wed Jul 24 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-9
6e52e0
- Add explicit dependencies between some of the boost sub-packages
6e52e0
6e52e0
* Fri Jul 19 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-8
6e52e0
- Install supporting files (images etc.) for documentation
6e52e0
  (courtesy Marcel Metz, bug 985593)
6e52e0
- Add many patches for silencing unused local typedef warnings
6e52e0
  (boost-1.53.0-static_assert-unused_typedef.patch,
6e52e0
  boost-1.54.0-bind-static_assert.patch,
6e52e0
  boost-1.54.0-concept-unused_typedef.patch,
6e52e0
  boost-1.54.0-static_warning-unused_typedef.patch,
6e52e0
  boost-1.54.0-math-unused_typedef.patch,
6e52e0
  boost-1.54.0-math-unused_typedef-2.patch,
6e52e0
  boost-1.53.0-fpclassify-unused_typedef.patch,
6e52e0
  boost-1.54.0-math-unused_typedef-3.patch,
6e52e0
  boost-1.54.0-tuple-unused_typedef.patch,
6e52e0
  boost-1.54.0-random-unused_typedef.patch,
6e52e0
  boost-1.54.0-date_time-unused_typedef.patch,
6e52e0
  boost-1.54.0-date_time-unused_typedef-2.patch,
6e52e0
  boost-1.54.0-spirit-unused_typedef.patch,
6e52e0
  boost-1.54.0-spirit-unused_typedef-2.patch,
6e52e0
  boost-1.54.0-numeric-unused_typedef.patch,
6e52e0
  boost-1.54.0-multiprecision-unused_typedef.patch,
6e52e0
  boost-1.53.0-lexical_cast-unused_typedef.patch,
6e52e0
  boost-1.53.0-regex-unused_typedef.patch,
6e52e0
  boost-1.53.0-thread-unused_typedef.patch,
6e52e0
  boost-1.54.0-unordered-unused_typedef.patch,
6e52e0
  boost-1.54.0-algorithm-unused_typedef.patch,
6e52e0
  boost-1.53.0-graph-unused_typedef.patch,
6e52e0
  boost-1.54.0-locale-unused_typedef.patch,
6e52e0
  boost-1.54.0-property_tree-unused_typedef.patch,
6e52e0
  boost-1.54.0-xpressive-unused_typedef.patch,
6e52e0
  boost-1.54.0-mpi-unused_typedef.patch,
6e52e0
  boost-1.54.0-python-unused_typedef.patch)
6e52e0
- Add a patch to turn off execstack in Boost.Context
6e52e0
  (boost-1.54.0-context-execstack.patch)
6e52e0
- Fix boost::mpl::print on GCC (boost-1.54.0-mpl-print.patch)
6e52e0
6e52e0
* Thu Jun 27 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-7
6e52e0
- Add symlinks for /usr/lib/libboost_{thread,locale}.so -> *-mt.so
6e52e0
6e52e0
* Wed Mar  6 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-6
6e52e0
- libboost_context.so must be guarded by conditional in the expanded
6e52e0
  filelist at boost-devel.
6e52e0
6e52e0
* Tue Mar  5 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-5
6e52e0
- Split off Python 3 DSO symlink to a separate subpackage
6e52e0
  boost-python3-devel.  This makes it possible to install
6e52e0
  boost-devel separately, without Python 3 support.
6e52e0
- Build with -fno-strict-aliasing
6e52e0
6e52e0
* Wed Feb 27 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-4
6e52e0
- Make Boost.Context support conditional
6e52e0
6e52e0
* Mon Feb 11 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-3
6e52e0
- Fix Boost.Context on ppc64
6e52e0
- Future-proof the linker script boost_thread-mt.so
6e52e0
6e52e0
* Sun Feb 10 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.53.0-2
6e52e0
- Fixed the libboost_thread-mt.so script (which wrongly referred to Boost-1.50)
6e52e0
6e52e0
* Fri Feb  8 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-1
6e52e0
- Upstream 1.53.0 beta1
6e52e0
  - Drop boost-1.50.0-signals-erase.patch
6e52e0
  - Port boost-1.50.0-attribute.patch
6e52e0
  - Drop boost-1.50.0-polygon.patch
6e52e0
  - New sub-packages boost-atomic and boost-context
6e52e0
6e52e0
* Sat Jan 26 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.50.0-7
6e52e0
- Rebuild for icu soname bump
6e52e0
6e52e0
* Sat Nov 03 2012 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.50.0-6
6e52e0
- Rebuild for the new MPICH2 (and libmpich2 soname bump)
6e52e0
6e52e0
* Thu Aug 16 2012 Petr Machata <pmachata@redhat.com> - 1.50.0-5
6e52e0
- Update %%description to reflect current state of C++
6e52e0
  standardization.  Courtesy of Jonathan Wakely.  (#837813)
6e52e0
6e52e0
* Wed Aug 15 2012 Petr Machata <pmachata@redhat.com> - 1.50.0-4
6e52e0
- Override boost_thread-mt.so with a linker script that brings in
6e52e0
  Boost.System DSO as well.
6e52e0
6e52e0
* Wed Aug  8 2012 Petr Machata <pmachata@redhat.com> - 1.50.0-3
6e52e0
- boost-python3 shouldn't be under the overall boost umbrella
6e52e0
6e52e0
* Tue Aug  7 2012 Petr Machata <pmachata@redhat.com> - 1.50.0-2
6e52e0
- Enable Python 3 builds.  This is still disabled in Boost MPI, which
6e52e0
  doesn't seem to support Python 3
6e52e0
6e52e0
* Thu Jul 26 2012 Petr Machata <pmachata@redhat.com> - 1.50.0-1
6e52e0
- Upstream 1.50
6e52e0
  - boost-cmake-soname.patch drop, upstream handles soname well, and
6e52e0
    we haven't been doing manual numbering for several years now
6e52e0
  - boost-1.48.0-cmakeify-full.patch drop, not necessary for bjam
6e52e0
  - Rebase many patches, port others, courtesy of Denis Arnaud:
6e52e0
    - boost-1.48.0-exceptions.patch drop
6e52e0
    - boost-1.48.0-lexical_cast-incomplete.patch drop
6e52e0
    - boost-1.48.0-gcc47-pthreads.patch drop
6e52e0
    - boost-1.48.0-long-double.patch drop
6e52e0
    - boost-1.48.0-xtime.patch drop
6e52e0
    - boost-1.48.0-locale.patch drop
6e52e0
    - boost-1.48.0-signals-erase.patch port
6e52e0
    - boost-1.48.0-fix-non-utf8-files.patch port
6e52e0
    - boost-1.48.0-foreach.patch port
6e52e0
    - boost-1.48.0-attribute.patch port
6e52e0
    - boost-1.48.0-long-double-1.patch port
6e52e0
    - boost-1.48.0-polygon.patch port
6e52e0
    - boost-1.48.0-pool.patch port
6e52e0
6e52e0
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.48.0-17
6e52e0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
6e52e0
6e52e0
* Thu Jun 21 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-16
6e52e0
- Build Boost.Locale backends
6e52e0
- Resolves: #832265
6e52e0
6e52e0
* Wed Jun  6 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-15
6e52e0
- In Boost.Pool, be careful not to overflow allocated chunk size.
6e52e0
- Resolves: #828857
6e52e0
6e52e0
* Thu May 24 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-14
6e52e0
- Don't attempt to install Python 3 portions of boost when given
6e52e0
  --without python3
6e52e0
- glibc newly defines a macro TIME_UTC, which collides with
6e52e0
  boost::TIME_UTC.  We can't avoid expanding that macro, but the value
6e52e0
  happens to be the same as that of boost::TIME_UTC.  So drop enum
6e52e0
  xtime_clock_types.  Update boost to use macro TIME_UTC instead of
6e52e0
  the scoped enum value.  External clients will have to do the same.
6e52e0
- Resolves: #824810
6e52e0
- BR on hwloc-devel shouldn't be required anymore (see #814798)
6e52e0
6e52e0
* Wed May  2 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-13
6e52e0
- Support building boost-python against Python 3
6e52e0
- Resolves: #807780
6e52e0
6e52e0
* Sun Apr 22 2012 Robert Scheck <robert@fedoraproject.org> - 1.48.0-12
6e52e0
- Included -math subpackage into umbrella package
6e52e0
- Added missing /sbin/ldconfig for -math subpackage
6e52e0
6e52e0
* Fri Apr 20 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-11
6e52e0
- Add hwloc-devel BR to work around a probable bug in openmpi-devel
6e52e0
  which fails to pull it in
6e52e0
6e52e0
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.48.0-10
6e52e0
- Rebuilt for c++ ABI breakage
6e52e0
6e52e0
* Wed Jan 25 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-9
6e52e0
- Only build the long double math libraries on arches that support
6e52e0
  long double.
6e52e0
- ARM was considered unsupporting, because libc defines
6e52e0
  __NO_LONG_DOUBLE_MATH.  Ignore this setting, ARM has perfectly
6e52e0
  working long double that just happens to be only as long as double.
6e52e0
- Resolves: #783660
6e52e0
- Add a missing sort adaptor include to boost polygon
6e52e0
- Resolves: #784654
6e52e0
6e52e0
* Mon Jan 16 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-8
6e52e0
- Add underscores around several uses of __attribute__((X)) to prevent
6e52e0
  interactions with user-defined macro X
6e52e0
- Resolves: #781859
6e52e0
6e52e0
* Sat Jan 14 2012 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.48.0-7
6e52e0
- Added source source files for mingw cross-compilation of Boost.Locale.
6e52e0
- Resolves: #781751
6e52e0
6e52e0
* Sat Jan  7 2012 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.48.0-6
6e52e0
- Added the Boost.Timer sub-package. Resolves: #772397
6e52e0
6e52e0
* Wed Jan  4 2012 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.48.0-5
6e52e0
- Integrated into "upstream" (CMake-ified Boost) the Boost.TR1/Math patch.
6e52e0
6e52e0
* Wed Jan  4 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-4
6e52e0
- Build math portion of Boost.TR1, package DSOs in boost-math.
6e52e0
- Resolves: #771370
6e52e0
6e52e0
* Tue Jan  3 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-3
6e52e0
- Add an upstream patch for BOOST_ENABLE_THREADS
6e52e0
6e52e0
* Tue Nov 29 2011 Petr Machata <pmachata@redhat.com> - 1.48.0-2
6e52e0
- Add an upstream patch for BOOST_FOREACH declaration issue #756005
6e52e0
- Add a proposed patch for error in boost lexical_cast #757385
6e52e0
6e52e0
* Sat Nov 19 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.48.0-1
6e52e0
- Upgrade to Boost-1.48.0, adding two new header-only components
6e52e0
  (Container and Move) and a new library (Locale).
6e52e0
- Resolves: #754865
6e52e0
- Added a patch with a manual page for the bjam executable.
6e52e0
- Added a patch to fix the non-UTF8-encoded example source file.
6e52e0
- Re-worked a little bit the example section, so as to fix the
6e52e0
  DOS-formatted and the ISO-8859-encoded files.
6e52e0
6e52e0
* Thu Nov  3 2011 Petr Machata <pmachata@redhat.com> - 1.47.0-7
6e52e0
- Use <boost/tr1/tuple> instead of C++11 header <tuple> in boost math.
6e52e0
- Resolves: #751210
6e52e0
6e52e0
* Fri Sep  9 2011 Petr Machata <pmachata@redhat.com> - 1.47.0-6
6e52e0
- Rebuild for libicu soname bump
6e52e0
- Hack /bin back to PATH after MPI module unload
6e52e0
- Resolves: #736890
6e52e0
6e52e0
* Tue Aug 30 2011 Petr Machata <pmachata@redhat.com> - 1.47.0-4
6e52e0
- Drop BR bzip2-libs, which is brought it via bzip2-devel
6e52e0
- Source->Source0
6e52e0
- Drop unnecessary BuildRoot tag
6e52e0
- Update License tag to include all licenses that are found in
6e52e0
  sources.  Python license is at the main package, not to the python
6e52e0
  sub-package, because python22_fixed.h is in -devel.
6e52e0
  - Related: #673839
6e52e0
- Resolves: #225622
6e52e0
6e52e0
* Tue Jul 26 2011 Petr Machata <pmachata@redhat.com> - 1.47.0-3
6e52e0
- Package examples
6e52e0
- Resolves: #722844
6e52e0
6e52e0
* Fri Jul 22 2011 Petr Machata <pmachata@redhat.com> - 1.47.0-2
6e52e0
- Convert two throws in boost/numeric/conversion to
6e52e0
  boost::throw_exception to allow compilation with -fno-exception
6e52e0
- Resolves: #724015
6e52e0
6e52e0
* Thu Jul 14 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.47.0-1
6e52e0
- Upgrade to Boost-1.47.0, adding three new header-only components
6e52e0
  (Geometry, Phoenix, Ratio) and a new library (Chrono).
6e52e0
6e52e0
* Sat Jun 18 2011 Peter Robinson <pbrobinson@gmail.com> - 1.46.1-4
6e52e0
- Fix compile on ARM platforms
6e52e0
6e52e0
* Mon Apr  4 2011 Petr Machata <pmachata@redhat.com> - 1.46.1-3
6e52e0
- Yet another way to pass -DBOOST_LIB_INSTALL_DIR to cmake.  Passing
6e52e0
  via CMAKE_CXX_FLAGS for some reason breaks when rpm re-quotes the
6e52e0
  expression as a result of %%{optflags} expansion.
6e52e0
- Related: #667294
6e52e0
6e52e0
* Wed Mar 30 2011 Deji Akingunola <dakingun@gmail.com> - 1.46.1-2
6e52e0
- Rebuild for mpich2 soname bump
6e52e0
6e52e0
* Sun Mar 13 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.46.1-1
6e52e0
- Merged the latest changes from the bug-fix release of Boost-1.46
6e52e0
6e52e0
* Mon Mar 07 2011 Caolán McNamara <caolanm@redhat.com> - 1.46.0-0.5
6e52e0
- rebuild for icu 4.6
6e52e0
6e52e0
* Thu Feb 24 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.46.0-0.4
6e52e0
- Merged the latest changes from the now final release of Boost-1.46
6e52e0
6e52e0
* Tue Feb  8 2011 Petr Machata <pmachata@redhat.com> - 1.46.0-0.3.beta1
6e52e0
- spirit.patch: Fix a problem in using boost::spirit with utf-8
6e52e0
  strings.  Thanks to Hicham HAOUARI for digging up the fix.
6e52e0
6e52e0
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.46.0-0.2.beta1
6e52e0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
6e52e0
6e52e0
* Thu Feb  3 2011 Petr Machata <pmachata@redhat.com> - 1.46.0-0.1.beta1
6e52e0
- Package 1.46.0-beta1
6e52e0
- Reintroduce the soname patch
6e52e0
- unordered-cctor.patch: Add copy constructors and assignment
6e52e0
  operators when using rvalue references
6e52e0
- signals-erase.patch: Pass const_iterator to map::erase to avoid
6e52e0
  ambigous overload vs. templatized value_type ctor
6e52e0
- Related: #656410
6e52e0
6e52e0
* Mon Jan 10 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-7
6e52e0
- Integrated Petr's work to fix missing Boost.Filesystem V3 issue
6e52e0
- Resolves: #667740
6e52e0
6e52e0
* Thu Jan  6 2011 Petr Machata <pmachata@redhat.com> - 1.44.0-6
6e52e0
- Don't override CXXFLAGS with -DBOOST_IOSTREAMS_USE_DEPRECATED
6e52e0
- Resolves: #667294
6e52e0
6e52e0
* Mon Jan  3 2011 Petr Machata <pmachata@redhat.com> - 1.44.0-5
6e52e0
- Add boost-random DSOs
6e52e0
- Resolves: #665679
6e52e0
6e52e0
* Wed Dec  8 2010 Petr Machata <pmachata@redhat.com> - 1.44.0-4
6e52e0
- Build with support for iostreams deprecated functions
6e52e0
- Resolves: #654480
6e52e0
6e52e0
* Fri Dec  3 2010 Tom "spot" Callaway <spot@fedoraproject.org> - 1.44.0-3
6e52e0
- also package build-system.jam in boost-build
6e52e0
6e52e0
* Tue Nov 30 2010 Tom "spot" Callaway <spot@fedoraproject.org> - 1.44.0-2
6e52e0
- add boost-build, boost-jam subpackages
6e52e0
6e52e0
* Sat Oct 23 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-1.1
6e52e0
- Rebuild.
6e52e0
6e52e0
* Sat Aug 21 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-1
6e52e0
- Split the CMake-buildable tar-ball into pristine upstream tar-ball
6e52e0
  and CMake framework patch
6e52e0
6e52e0
* Mon Aug 16 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-0.6
6e52e0
- Merged the latest changes from the now final release of Boost-1.44
6e52e0
6e52e0
* Fri Aug  6 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-0.5
6e52e0
- Patched header file in boost/random/detail. Resolves: #621631
6e52e0
6e52e0
* Sat Jul 31 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-0.4
6e52e0
- Added missing header files in boost/random/detail. Resolves: #619869
6e52e0
6e52e0
* Tue Jul 27 2010 Orcan Ogetbil <oget[dot]fedora[at]gmail[dot]com> - 1.44.0-0.3
6e52e0
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
6e52e0
6e52e0
* Tue Jul 27 2010 Benjamin Kosnik <bkoz@redhat.com> - 1.44.0-0.2
6e52e0
- Rebuild.
6e52e0
6e52e0
* Fri Jul 23 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-0.1
6e52e0
- Upstream update: Boost-1.44 with CMake enabled
6e52e0
- Resolves: #607615
6e52e0
6e52e0
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.41.0-13
6e52e0
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
6e52e0
6e52e0
* Fri Jun  4 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-12
6e52e0
- Turn on mpich2 on s390.  Add arm to the list of arches that openmpi
6e52e0
  doesn't support.
6e52e0
6e52e0
* Fri Jun  4 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-12
6e52e0
- Don't distribute cmake support files.
6e52e0
- Related: #597020
6e52e0
6e52e0
* Wed Jun  2 2010 Dan Horák <dan[at]danny.cz> - 1.41.0-11
6e52e0
- don't build with mpich2/openmpi on s390/s390x
6e52e0
6e52e0
* Mon May 10 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-10
6e52e0
- Add an upstream patch that fixes computation of CRC in zlib streams.
6e52e0
- Resolves: #590205
6e52e0
6e52e0
* Wed May 05 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.41.0-9
6e52e0
- -devel: own %%{_datadir}/cmake/%%{name}/
6e52e0
- -devel: Requires: cmake (for %%{_datadir}/cmake ownership)
6e52e0
6e52e0
* Fri Apr 02 2010 Caolán McNamara <caolanm@redhat.com> - 1.41.0-8
6e52e0
- rebuild for icu
6e52e0
6e52e0
* Mon Feb 22 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-7
6e52e0
- Add a patch for serialization of shared pointers to non polymorphic
6e52e0
  types
6e52e0
6e52e0
* Tue Feb  2 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-6
6e52e0
- More subpackage interdependency adjustments
6e52e0
  - boost doesn't bring in the MPI stuff.  Instead, $MPI-devel does.
6e52e0
    It needs to, so that the symbolic links don't dangle.
6e52e0
  - boost-graph-$MPI depends on boost-$MPI so that boost-mpich2
6e52e0
    doesn't satisfy the SONAME dependency of boost-graph-openmpi.
6e52e0
- Resolves: #559009
6e52e0
6e52e0
* Mon Feb  1 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.41.0-5
6e52e0
- Various fixes on the specification
6e52e0
- Resolves: #559009
6e52e0
6e52e0
* Fri Jan 29 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-5
6e52e0
- Introduce support for both OpenMPI and MPICH2
6e52e0
- Resolves: #559009
6e52e0
6e52e0
* Mon Jan 25 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-4
6e52e0
- Add a patch to build mapnik
6e52e0
- Resolves: #558383
6e52e0
6e52e0
* Tue Jan 19 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-3
6e52e0
- Generalize the soname selection
6e52e0
6e52e0
* Mon Jan 18 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.41.0-2.2
6e52e0
- Further split the Boost.MPI sub-package into boost-mpi and
6e52e0
  boost-mpi-python
6e52e0
- Changed the description of Boost.MPI according to the actual
6e52e0
  dependency (MPICH2 rather than OpenMPI)
6e52e0
- Added a few details on the generation of the mpi.so library
6e52e0
6e52e0
* Thu Jan 14 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-2
6e52e0
- Replace a boost-math subpackage with a stub
6e52e0
- Drop _cmake_lib_suffix and CMAKE_INSTALL_PREFIX magic, the rpm macro
6e52e0
  does that for us
6e52e0
- Drop LICENSE from the umbrella package
6e52e0
- Drop obsolete Obsoletes: boost-python and boost-doc <= 1.30.2
6e52e0
6e52e0
* Tue Jan 12 2010 Benjamin Kosnik <bkoz@redhat.com> - 1.41.0-1
6e52e0
- Don't package generated debug libs, even with 
6e52e0
  (-DCMAKE_BUILD_TYPE=RelWithDebInfo | Release).
6e52e0
- Update and include boost-cmake-soname.patch.
6e52e0
- Uncomment ctest.
6e52e0
- Fix up --with tests to run tests.
6e52e0
6e52e0
* Sat Dec 19 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.41.0-0.7
6e52e0
- Switched off the delivery into a versioned sub-directory
6e52e0
6e52e0
* Thu Dec 17 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.41.0-0.6
6e52e0
- Boost-CMake upstream integration
6e52e0
6e52e0
* Wed Dec 16 2009 Benjamin Kosnik <bkoz@redhat.com> - 1.41.0-0.5
6e52e0
- Rebase to 1.41.0
6e52e0
- Set build type to RelWithDebInfo
6e52e0
- Resolves: #533922
6e52e0
6e52e0
* Mon Nov 16 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.40.0-1
6e52e0
- Add support for the Boost.MPI sub-package
6e52e0
- Build with CMake (https://svn.boost.org/trac/boost/wiki/CMake)
6e52e0
- Resolves: #529563
6e52e0
6e52e0
* Mon Nov 16 2009 Petr Machata <pmachata@redhat.com> - 1.39.0-11
6e52e0
- Move comment in Patch13 out of line
6e52e0
6e52e0
* Mon Nov 16 2009 Petr Machata <pmachata@redhat.com> - 1.39.0-10
6e52e0
- translate_exception.hpp misses a include
6e52e0
- Related: #537612
6e52e0
6e52e0
* Thu Oct 15 2009 Petr Machata <pmachata@redhat.com> - 1.39.0-9
6e52e0
- Package index.html in the -doc subpackage
6e52e0
- Resolves: #529030
6e52e0
6e52e0
* Wed Oct 14 2009 Petr Machata <pmachata@redhat.com> - 1.39.0-8
6e52e0
- Several fixes to support PySide
6e52e0
- Resolves: #520087
6e52e0
- GCC 4.4 name resolution fixes for GIL
6e52e0
- Resolves: #526834
6e52e0
6e52e0
* Sun Oct 11 2009 Jitesh Shah <jiteshs@marvell.com> 1.39.0-7
6e52e0
- Disable long double support for ARM
6e52e0
6e52e0
* Tue Sep 08 2009 Karsten Hopp <karsten@redhat.com> 1.39.0-6
6e52e0
- bump release and rebuild as the package was linked with an old libicu
6e52e0
  during the mass rebuild on s390x
6e52e0
6e52e0
* Wed Aug 26 2009 Tomas Mraz <tmraz@redhat.com> - 1.39.0-5
6e52e0
- Make it to be usable with openssl-1.0
6e52e0
6e52e0
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.39.0-4
6e52e0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
6e52e0
6e52e0
* Thu Jul  2 2009 Petr Machata <pmachata@redhat.com> - 1.39.0-3
6e52e0
- Drop file list for main "boost" package, which was inadvertently left in.
6e52e0
- Add thread sub-package to capture omitted boost_thread.
6e52e0
- Add upstream patch to make boost_filesystem compatible with C++0x.
6e52e0
- Resolves: #496188
6e52e0
- Resolves: #509250
6e52e0
6e52e0
* Mon May 11 2009 Benjamin Kosnik <bkoz@redhat.com> - 1.39.0-2
6e52e0
- Apply patch from Caolan McNamara
6e52e0
- Resolves: #500030 function_template bug is back...
6e52e0
6e52e0
* Thu May 07 2009 Benjamin Kosnik <bkoz@redhat.com> - 1.39.0-1
6e52e0
- Update release.
6e52e0
6e52e0
* Wed May 06 2009 Benjamin Kosnik <bkoz@redhat.com> - 1.39.0-0.3
6e52e0
- Fixes for rpmlint.
6e52e0
6e52e0
* Wed May 06 2009 Petr Machata <pmachata@redhat.com> - 1.39.0-0.2
6e52e0
- Split up boost package to sub-packages per library
6e52e0
- Resolves: #496188
6e52e0
6e52e0
* Wed May 06 2009 Benjamin Kosnik <bkoz@redhat.com> - 1.39.0-0.1
6e52e0
- Rebase to 1.39.0.
6e52e0
- Add --with docs_generated.
6e52e0
- #225622: Substitute optflags at prep time instead of RPM_OPT_FLAGS.
6e52e0
6e52e0
* Mon May 04 2009 Benjamin Kosnik <bkoz@redhat.com> - 1.37.0-7
6e52e0
- Rebuild for libicu bump.
6e52e0
6e52e0
* Mon Mar 23 2009 Petr Machata <pmachata@redhat.com> - 1.37.0-6
6e52e0
- Apply a SMP patch from Stefan Ring
6e52e0
- Apply a workaround for "cannot appear in a constant-expression" in
6e52e0
  dynamic_bitset library.
6e52e0
- Resolves: #491537
6e52e0
6e52e0
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.37.0-4
6e52e0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
6e52e0
6e52e0
* Mon Jan 12 2009 Petr Machata <pmachata@redhat.com> - 1.37.0-3
6e52e0
- Apply a unneccessary_iostreams patch from Caolan McNamara
6e52e0
- Fix soname patch so that it applies with fuzz=0.  Use fuzz=0 option
6e52e0
  in spec file just like ordinary patches do.
6e52e0
- Resolves: #479409
6e52e0
6e52e0
* Fri Dec 19 2008 Petr Machata <pmachata@redhat.com> - 1.37.0-2
6e52e0
- Apply a function_template patch from Caolan McNamara
6e52e0
- Resolves: #477131
6e52e0
6e52e0
* Tue Dec 16 2008 Benjamin Kosnik <bkoz@redhat.com> - 1.37.0-1
6e52e0
- Fix rpmlint rpath errors.
6e52e0
- Fix rpmlint warnings on tabs and spaces.
6e52e0
- Bump SONAME to 4
6e52e0
6e52e0
* Mon Nov 17 2008 Benjamin Kosnik <bkoz@redhat.com> - 1.37.0-0.1
6e52e0
- Rebase to 1.37.0.
6e52e0
6e52e0
* Tue Oct 21 2008 Benjamin Kosnik <bkoz@redhat.com> - 1.36.0-1
6e52e0
- Rebase to 1.36.0.
6e52e0
6e52e0
* Mon Oct  6 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-17
6e52e0
- Fix gcc43 patch to apply cleanly under --fuzz=0
6e52e0
- Resolves: #465003
6e52e0
6e52e0
* Mon Aug 11 2008 Petr Machata <pmachata@redhat.com> - 1.36.0-0.1.beta1
6e52e0
- Rebase to 1.36.0.beta1
6e52e0
  - Drop boost-regex.patch and portions of boost-gcc43.patch, port the rest
6e52e0
  - Automate SONAME tracking and bump SONAME to 4
6e52e0
  - Adjust boost-configure.patch to include threading=single,multi explicitly
6e52e0
6e52e0
* Thu Jun 12 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-16
6e52e0
- Fix "changes meaning of keywords" in boost date_time
6e52e0
- Related: #450718
6e52e0
6e52e0
* Thu May 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.34.1-15
6e52e0
- fix license tag
6e52e0
6e52e0
* Thu Mar 27 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-14
6e52e0
- Change devel-static back to static.
6e52e0
- Related: #225622
6e52e0
6e52e0
* Wed Mar 26 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-13
6e52e0
- Install library doc files
6e52e0
- Revamp %%install phase to speed up overall build time
6e52e0
- Some cleanups per merge review
6e52e0
- Resolves: #437032
6e52e0
6e52e0
* Thu Feb 14 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-12
6e52e0
- Fix "changes meaning of keywords" in boost python
6e52e0
- Resolves: #432694
6e52e0
6e52e0
* Wed Feb 13 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-11
6e52e0
- Fix "changes meaning of special_values_parser" in boost date_time
6e52e0
- Resolves: #432433
6e52e0
6e52e0
* Wed Feb  6 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-10
6e52e0
- Fixes for GCC 4.3
6e52e0
- Resolves: #431609
6e52e0
6e52e0
* Mon Jan 14 2008 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-7
6e52e0
- Fixes for boost.regex (rev 42674).
6e52e0
6e52e0
* Wed Sep 19 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-5
6e52e0
- (#283771: Linking against boost libraries fails).
6e52e0
6e52e0
* Tue Aug 21 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-4
6e52e0
- Rebuild.
6e52e0
6e52e0
* Wed Aug 08 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-3
6e52e0
- Rebuild for icu 3.8 bump.
6e52e0
6e52e0
* Thu Aug 02 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-2
6e52e0
- SONAME to 3.
6e52e0
6e52e0
* Tue Jul 31 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-1
6e52e0
- Update to boost_1_34_1.
6e52e0
- Source via http.
6e52e0
- Philipp Thomas <pth.suse.de> fix for RPM_OPT_FLAGS
6e52e0
- Philipp Thomas <pth.suse.de> fix for .so sym links.
6e52e0
- (#225622) Patrice Dumas review comments.
6e52e0
6e52e0
* Tue Jun 26 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1.rc1-0.1
6e52e0
- Update to boost_1_34_1_RC1.
6e52e0
6e52e0
* Mon Apr 02 2007 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-13
6e52e0
- (#225622: Merge Review: boost)
6e52e0
  Change static to devel-static.
6e52e0
6e52e0
* Mon Mar 26 2007 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-12
6e52e0
- (#233523: libboost_python needs rebuild against python 2.5)
6e52e0
  Use patch.
6e52e0
6e52e0
* Mon Mar 26 2007 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-11
6e52e0
- (#225622: Merge Review: boost)
6e52e0
  Source to http.
6e52e0
  BuildRoot to preferred value.
6e52e0
  PreReq to post/postun -p
6e52e0
  Clarified BSL as GPL-Compatible, Free Software License.
6e52e0
  Remove Obsoletes.
6e52e0
  Add Provides boost-python.
6e52e0
  Remove mkdir -p $RPM_BUILD_ROOT%%{_docdir}
6e52e0
  Added periods for decription text.
6e52e0
  Fix Group field.
6e52e0
  Remove doc Requires boost.
6e52e0
  Preserve timestamps on install.
6e52e0
  Use %%defattr(-, root, root, -)
6e52e0
  Added static package for .a libs.
6e52e0
  Install static libs with 0644 permissions.
6e52e0
  Use %%doc for doc files.
6e52e0
6e52e0
* Mon Jan 22 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.0-0.5
6e52e0
- Update to boost.RC_1_34_0 snapshot as of 2007-01-19.
6e52e0
- Modify build procedures for boost build v2.
6e52e0
- Add *-mt variants for libraries, or at least variants that use
6e52e0
  threads (regex and thread).
6e52e0
6e52e0
* Thu Nov 23 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-10
6e52e0
- (#182414: boost: put tests in %%check section) via Rex Dieter
6e52e0
- Fix EVR with %%{?dist} tag via Gianluca Sforna
6e52e0
6e52e0
* Wed Nov 15 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-9
6e52e0
- (#154784: boost-debuginfo package is empty)
6e52e0
6e52e0
* Tue Nov 14 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-8
6e52e0
- (#205866: Revert scanner.hpp change.)
6e52e0
6e52e0
* Mon Nov 13 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-7
6e52e0
- (#205866: boost::spirit generates warnings with -Wshadow)
6e52e0
- (#205863: serialization lib generates warnings)
6e52e0
- (#204326: boost RPM missing dependencies)
6e52e0
- (#193465: [SIGNAL/BIND] Regressions with GCC 4.1)
6e52e0
- BUILD_FLAGS, add, to see actual compile line.
6e52e0
- REGEX_FLAGS, add, to compile regex with ICU support.
6e52e0
6e52e0
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-6.1
6e52e0
- rebuild
6e52e0
6e52e0
* Tue May 16 2006 Karsten Hopp <karsten@redhat.de> 1.33.1-6
6e52e0
- buildrequire python-devel for Python.h
6e52e0
6e52e0
* Thu Feb 16 2006 Florian La Roche <laroche@redhat.com> - 1.33.1-5
6e52e0
- use the real version number to point to the shared libs
6e52e0
6e52e0
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-4.2
6e52e0
- bump again for double-long bug on ppc(64)
6e52e0
6e52e0
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-4.1
6e52e0
- rebuilt for new gcc4.1 snapshot and glibc changes
6e52e0
6e52e0
* Thu Jan 05 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-4
6e52e0
- Fix symbolic links.
6e52e0
6e52e0
* Wed Jan 04 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-3
6e52e0
- Update to boost-1.33.1.
6e52e0
- (#176485: Missing BuildRequires)
6e52e0
- (#169271: /usr/lib/libboost*.so.? links missing in package)
6e52e0
6e52e0
* Thu Dec 22 2005 Jesse Keating <jkeating@redhat.com> 1.33.1-2
6e52e0
- rebuilt
6e52e0
6e52e0
* Mon Nov 14 2005 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-1
6e52e0
- Update to boost-1.33.1 beta.
6e52e0
- Run testsuite, gather results.
6e52e0
6e52e0
* Tue Oct 11 2005 Nils Philippsen <nphilipp@redhat.com> 1.33.0-4
6e52e0
- build require bzip2-devel and zlib-devel
6e52e0
6e52e0
* Tue Aug 23 2005 Benjamin Kosnik <bkoz@redhat.com> 1.33.0-3
6e52e0
- Create doc package again.
6e52e0
- Parts of the above by Neal Becker <ndbecker2@gmail.com>.
6e52e0
6e52e0
* Fri Aug 12 2005 Benjamin Kosnik <bkoz@redhat.com> 1.33.0-1
6e52e0
- Update to boost-1.33.0, update SONAME to 2 due to ABI changes.
6e52e0
- Simplified PYTHON_VERSION by Philipp Thomas <pth@suse.de>
6e52e0
6e52e0
* Tue May 24 2005 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-6
6e52e0
- (#153093: boost warns that gcc 4.0.0 is an unknown compiler)
6e52e0
- (#152205: development .so symbolic links should be in -devel subpackage)
6e52e0
- (#154783: linker .so symbolic links missing from boost-devel package)
6e52e0
6e52e0
* Fri Mar 18 2005 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-5
6e52e0
- Revert boost-base.patch to old behavior.
6e52e0
- Use SONAMEVERSION instead of dllversion.
6e52e0
6e52e0
* Wed Mar 16 2005 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-4
6e52e0
- (#142612: Compiling Boost 1.32.0 Failed in RHEL 3.0 on Itanium2)
6e52e0
- (#150069: libboost_python.so is missing)
6e52e0
- (#141617: bad patch boost-base.patch)
6e52e0
- (#122817: libboost_*.so symbolic links missing)
6e52e0
- Re-add boost-thread.patch.
6e52e0
- Change boost-base.patch to show thread tags.
6e52e0
- Change boost-gcc-tools.patch to use SOTAG, compile with dllversion.
6e52e0
- Add symbolic links to files.
6e52e0
- Sanity check can compile with gcc-3.3.x, gcc-3.4.2, gcc-4.0.x., gcc-4.1.x.
6e52e0
6e52e0
* Thu Dec 02 2004 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-3
6e52e0
- (#122817: libboost_*.so symbolic links missing)
6e52e0
- (#141574: half of the package is missing)
6e52e0
- (#141617: bad patch boost-base.patch)
6e52e0
6e52e0
* Wed Dec 01 2004 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-2
6e52e0
- Remove bogus Obsoletes.
6e52e0
6e52e0
* Mon Nov 29 2004 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-1
6e52e0
- Update to 1.32.0
6e52e0
6e52e0
* Wed Sep 22 2004 Than Ngo <than@redhat.com> 1.31.0-9
6e52e0
- cleanup specfile
6e52e0
- fix multiarch problem
6e52e0
6e52e0
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
6e52e0
- rebuilt
6e52e0
6e52e0
* Wed May 05 2004 Warren Togami <wtogami@redhat.com> 1.31.0-7
6e52e0
- missing Obsoletes boost-python
6e52e0
6e52e0
* Mon May 03 2004 Benjamin Kosnik <bkoz@redhat.com>
6e52e0
- (#121630: gcc34 patch needed)
6e52e0
6e52e0
* Wed Apr 21 2004 Warren Togami <wtogami@redhat.com>
6e52e0
- #121415 FC2 BLOCKER: Obsoletes boost-python-devel, boost-doc
6e52e0
- other cleanups
6e52e0
6e52e0
* Tue Mar 30 2004 Benjamin Kosnik <bkoz@redhat.com>
6e52e0
- Remove bjam dependency. (via Graydon).
6e52e0
- Fix installed library names.
6e52e0
- Fix SONAMEs in shared libraries.
6e52e0
- Fix installed header location.
6e52e0
- Fix installed permissions.
6e52e0
6e52e0
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
6e52e0
- rebuilt
6e52e0
6e52e0
* Mon Feb 09 2004 Benjamin Kosnik <bkoz@redhat.com> 1.31.0-2
6e52e0
- Update to boost-1.31.0
6e52e0
6e52e0
* Thu Jan 22 2004 Benjamin Kosnik <bkoz@redhat.com> 1.31.0-1
6e52e0
- Update to boost-1.31.0.rc2
6e52e0
- (#109307:  Compile Failure with boost libraries)
6e52e0
- (#104831:  Compile errors in apps using Boost.Python...)
6e52e0
- Unify into boost, boost-devel rpms.
6e52e0
- Simplify installation using bjam and prefix install.
6e52e0
6e52e0
* Tue Sep 09 2003 Nalin Dahyabhai <nalin@redhat.com> 1.30.2-2
6e52e0
- require boost-devel instead of devel in subpackages which require boost-devel
6e52e0
- remove stray Prefix: tag
6e52e0
6e52e0
* Mon Sep 08 2003 Benjamin Kosnik <bkoz@redhat.com> 1.30.2-1
6e52e0
- change license to Freely distributable
6e52e0
- verify installation of libboost_thread
6e52e0
- more boost-devel removals
6e52e0
- deal with lack of _REENTRANT on ia64/s390
6e52e0
- (#99458) rpm -e fixed via explict dir additions
6e52e0
- (#103293) update to 1.30.2
6e52e0
6e52e0
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
6e52e0
- rebuilt
6e52e0
6e52e0
* Tue May 13 2003 Florian La Roche <Florian.LaRoche@redhat.de>
6e52e0
- remove packager, change to new Group:
6e52e0
6e52e0
* Tue May 06 2003 Tim Powers <timp@redhat.com> 1.30.0-3
6e52e0
- add deffattr's so we don't have unknown users owning files