b98e6f
# Support for documentation installation As the %%doc macro erases the
b98e6f
# target directory ($RPM_BUILD_ROOT%%{_docdir}/%%{name}), manually
b98e6f
# installed documentation must be saved into a temporary dedicated
b98e6f
# directory.
b98e6f
# XXX note that as of rpm 4.9.1, this shouldn't be necessary anymore.
b98e6f
# We should be able to install directly.
b98e6f
%global boost_docdir __tmp_docdir
b98e6f
%global boost_examplesdir __tmp_examplesdir
b98e6f
b98e6f
%if 0%{?flatpak}
b98e6f
# For bundling in Flatpak, currently build without mpich and openmpi,
b98e6f
# which aren't needed and cause prefix=/app errors.
b98e6f
%bcond_with mpich
b98e6f
%bcond_with openmpi
b98e6f
%else
b98e6f
# All arches have mpich
b98e6f
%bcond_without mpich
b98e6f
b98e6f
%ifarch s390
b98e6f
  # No OpenMPI support on these arches
b98e6f
  %bcond_with openmpi
b98e6f
%else
b98e6f
  %bcond_without openmpi
b98e6f
%endif
b98e6f
%endif
b98e6f
b98e6f
%ifnarch %{ix86} x86_64 %{arm} ppc64 ppc64le aarch64 s390x
b98e6f
  %bcond_with context
b98e6f
%else
b98e6f
  %bcond_without context
b98e6f
%endif
b98e6f
b98e6f
%bcond_without python3
b98e6f
b98e6f
%ifnarch %{ix86} x86_64
b98e6f
  %bcond_with quadmath
b98e6f
%else
b98e6f
  %bcond_without quadmath
b98e6f
%endif
b98e6f
b98e6f
Name: boost
b98e6f
%global real_name boost
b98e6f
Summary: The free peer-reviewed portable C++ source libraries
b98e6f
Version: 1.75.0
b98e6f
Release: 6%{?dist}
b98e6f
License: Boost and MIT and Python
b98e6f
b98e6f
# Replace each . with _ in %%{version}
b98e6f
%global version_enc %{lua:
b98e6f
  local ver = rpm.expand("%{version}")
b98e6f
  ver = ver:gsub("%.", "_")
b98e6f
  print(ver)
b98e6f
}
b98e6f
%global toplev_dirname %{real_name}_%{version_enc}
b98e6f
URL: http://www.boost.org
b98e6f
b98e6f
Source0: https://dl.bintray.com/boostorg/release/%{version}/source/%{name}_%%{version_enc}.tar.bz2
b98e6f
Source1: libboost_thread.so
b98e6f
# Add a manual page for b2, based on the online documentation:
b98e6f
# http://www.boost.org/boost-build2/doc/html/bbv2/overview.html
b98e6f
Source2: b2.1
b98e6f
b98e6f
# Since Fedora 13, the Boost libraries are delivered with sonames
b98e6f
# equal to the Boost version (e.g., 1.41.0).
b98e6f
%global sonamever %{version}
b98e6f
b98e6f
# boost is an "umbrella" package that pulls in all boost shared library
b98e6f
# components, except for MPI sub-packages.  Those are special in that
b98e6f
# there are alternative implementations to choose from (Open MPI and MPICH),
b98e6f
# and it's not a big burden to have interested parties install them explicitly.
b98e6f
# The subpackages that don't install shared libraries are also not pulled in
b98e6f
# (b2, build, doc, doctools, examples, static).
b98e6f
Requires: %{name}-atomic%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-chrono%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-container%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-contract%{?_isa} = %{version}-%{release}
b98e6f
%if %{with context}
b98e6f
Requires: %{name}-context%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-coroutine%{?_isa} = %{version}-%{release}
b98e6f
%endif
b98e6f
Requires: %{name}-date-time%{?_isa} = %{version}-%{release}
b98e6f
%if %{with context}
b98e6f
Requires: %{name}-fiber%{?_isa} = %{version}-%{release}
b98e6f
%endif
b98e6f
Requires: %{name}-filesystem%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-graph%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-iostreams%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-locale%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-log%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-math%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-nowide%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-program-options%{?_isa} = %{version}-%{release}
b98e6f
%if %{with python3}
b98e6f
Requires: %{name}-python3%{?_isa} = %{version}-%{release}
b98e6f
%endif
b98e6f
Requires: %{name}-random%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-regex%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-serialization%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-stacktrace%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-system%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-test%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-thread%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-timer%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-type_erasure%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-wave%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%if %{with python3}
b98e6f
Recommends: (boost-numpy3 if python3-numpy)
b98e6f
%endif
b98e6f
b98e6f
BuildRequires: gcc-c++
b98e6f
BuildRequires: m4
b98e6f
BuildRequires: libstdc++-devel
b98e6f
BuildRequires: bzip2-devel
b98e6f
BuildRequires: zlib-devel
b98e6f
BuildRequires: xz-devel
b98e6f
%if %{with python3}
b98e6f
BuildRequires: python3-devel
b98e6f
BuildRequires: python3-numpy
b98e6f
%endif
b98e6f
BuildRequires: libicu-devel
b98e6f
%if %{with quadmath}
b98e6f
BuildRequires: libquadmath-devel
b98e6f
%endif
b98e6f
BuildRequires: bison
b98e6f
b98e6f
# https://bugzilla.redhat.com/show_bug.cgi?id=828856
b98e6f
# https://bugzilla.redhat.com/show_bug.cgi?id=828857
b98e6f
# https://svn.boost.org/trac/boost/ticket/6701
b98e6f
Patch15: boost-1.58.0-pool.patch
b98e6f
b98e6f
# https://svn.boost.org/trac/boost/ticket/9038
b98e6f
Patch51: boost-1.58.0-pool-test_linking.patch
b98e6f
b98e6f
# https://bugzilla.redhat.com/show_bug.cgi?id=1541035
b98e6f
Patch96: boost-1.75.0-build-optflags.patch
b98e6f
b98e6f
# https://bugzilla.redhat.com/show_bug.cgi?id=1318383
b98e6f
Patch97: boost-1.75.0-no-rpath.patch
b98e6f
b98e6f
# https://bugzilla.redhat.com/show_bug.cgi?id=1541035
b98e6f
Patch83: boost-1.73.0-b2-build-flags.patch
b98e6f
b98e6f
# https://lists.boost.org/Archives/boost/2020/04/248812.php
b98e6f
Patch88: boost-1.73.0-cmakedir.patch
b98e6f
b98e6f
# https://bugzilla.redhat.com/show_bug.cgi?id=1896382
b98e6f
# https://github.com/boostorg/python/issues/325
b98e6f
Patch93: boost-1.73-python3.10.patch
b98e6f
b98e6f
# https://bugzilla.redhat.com/show_bug.cgi?id=1899888
b98e6f
# https://github.com/boostorg/locale/issues/52
b98e6f
Patch94: boost-1.73-locale-empty-vector.patch
b98e6f
b98e6f
# https://bugzilla.redhat.com/show_bug.cgi?id=1923740
b98e6f
# https://github.com/boostorg/build/issues/696
b98e6f
Patch95: boost-1.75.0-boost-build-fix.patch
b98e6f
b98e6f
%bcond_with tests
b98e6f
%bcond_with docs_generated
b98e6f
b98e6f
%description
b98e6f
Boost provides free peer-reviewed portable C++ source libraries.  The
b98e6f
emphasis is on libraries which work well with the C++ Standard
b98e6f
Library, in the hopes of establishing "existing practice" for
b98e6f
extensions and providing reference implementations so that the Boost
b98e6f
libraries are suitable for eventual standardization. (Some of the
b98e6f
libraries have already been included in the C++ 2011 standard and
b98e6f
others have been proposed to the C++ Standards Committee for inclusion
b98e6f
in future standards.)
b98e6f
b98e6f
%package atomic
b98e6f
Summary: Run-time component of boost atomic library
b98e6f
b98e6f
%description atomic
b98e6f
b98e6f
Run-time support for Boost.Atomic, a library that provides atomic data
b98e6f
types and operations on these data types, as well as memory ordering
b98e6f
constraints required for coordinating multiple threads through atomic
b98e6f
variables.
b98e6f
b98e6f
%package chrono
b98e6f
Summary: Run-time component of boost chrono library
b98e6f
Requires: %{name}-system%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description chrono
b98e6f
b98e6f
Run-time support for Boost.Chrono, a set of useful time utilities.
b98e6f
b98e6f
%package container
b98e6f
Summary: Run-time component of boost container library
b98e6f
b98e6f
%description container
b98e6f
b98e6f
Boost.Container library implements several well-known containers,
b98e6f
including STL containers. The aim of the library is to offer advanced
b98e6f
features not present in standard containers or to offer the latest
b98e6f
standard draft features for compilers that comply with C++03.
b98e6f
b98e6f
%package contract
b98e6f
Summary: Run-time component of boost contract library
b98e6f
b98e6f
%description contract
b98e6f
b98e6f
Run-time support for boost contract library.
b98e6f
Contract programming for C++. All contract programming features are supported:
b98e6f
Subcontracting, class invariants, postconditions (with old and return values),
b98e6f
preconditions, customizable actions on assertion failure (e.g., terminate
b98e6f
or throw), optional compilation and checking of assertions, etc,
b98e6f
from Lorenzo Caminiti.
b98e6f
b98e6f
%if %{with context}
b98e6f
%package context
b98e6f
Summary: Run-time component of boost context switching library
b98e6f
b98e6f
%description context
b98e6f
b98e6f
Run-time support for Boost.Context, a foundational library that
b98e6f
provides a sort of cooperative multitasking on a single thread.
b98e6f
b98e6f
%package coroutine
b98e6f
Summary: Run-time component of boost coroutine library
b98e6f
b98e6f
%description coroutine
b98e6f
Run-time support for Boost.Coroutine, a library that provides
b98e6f
generalized subroutines which allow multiple entry points for
b98e6f
suspending and resuming execution.
b98e6f
b98e6f
%endif
b98e6f
b98e6f
%package date-time
b98e6f
Summary: Run-time component of boost date-time library
b98e6f
b98e6f
%description date-time
b98e6f
b98e6f
Run-time support for Boost Date Time, a set of date-time libraries based
b98e6f
on generic programming concepts.
b98e6f
b98e6f
%if %{with context}
b98e6f
%package fiber
b98e6f
Summary: Run-time component of boost fiber library
b98e6f
b98e6f
%description fiber
b98e6f
b98e6f
Run-time support for the Boost Fiber library, a framework for
b98e6f
micro-/userland-threads (fibers) scheduled cooperatively.
b98e6f
%endif
b98e6f
b98e6f
%package filesystem
b98e6f
Summary: Run-time component of boost filesystem library
b98e6f
Requires: %{name}-system%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description filesystem
b98e6f
b98e6f
Run-time support for the Boost Filesystem Library, which provides
b98e6f
portable facilities to query and manipulate paths, files, and
b98e6f
directories.
b98e6f
b98e6f
%package graph
b98e6f
Summary: Run-time component of boost graph library
b98e6f
Requires: %{name}-regex%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description graph
b98e6f
b98e6f
Run-time support for the BGL graph library.  BGL interface and graph
b98e6f
components are generic, in the same sense as the Standard Template
b98e6f
Library (STL).
b98e6f
b98e6f
%package iostreams
b98e6f
Summary: Run-time component of boost iostreams library
b98e6f
b98e6f
%description iostreams
b98e6f
b98e6f
Run-time support for Boost.Iostreams, a framework for defining streams,
b98e6f
stream buffers and i/o filters.
b98e6f
b98e6f
%package json
b98e6f
Summary: Run-time component of boost json library
b98e6f
b98e6f
%description json
b98e6f
b98e6f
Run-time support for Boost.Json, a portable C++ library which provides
b98e6f
containers and algorithms that implement JavaScript Object Notation, or
b98e6f
simply "JSON"
b98e6f
b98e6f
%package locale
b98e6f
Summary: Run-time component of boost locale library
b98e6f
Requires: %{name}-chrono%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-system%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-thread%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description locale
b98e6f
b98e6f
Run-time support for Boost.Locale, a set of localization and Unicode
b98e6f
handling tools.
b98e6f
b98e6f
%package log
b98e6f
Summary: Run-time component of boost logging library
b98e6f
b98e6f
%description log
b98e6f
b98e6f
Boost.Log library aims to make logging significantly easier for the
b98e6f
application developer.  It provides a wide range of out-of-the-box
b98e6f
tools along with public interfaces for extending the library.
b98e6f
b98e6f
%package math
b98e6f
Summary: Math functions for boost TR1 library
b98e6f
b98e6f
%description math
b98e6f
b98e6f
Run-time support for C99 and C++ TR1 C-style Functions from the math
b98e6f
portion of Boost.TR1.
b98e6f
b98e6f
%package nowide
b98e6f
Summary: Standard library functions with UTF-8 API on Windows
b98e6f
# Added for F33, remove for F35:
b98e6f
Obsoletes: boost-nowide <= 0.20190814
b98e6f
b98e6f
%description nowide
b98e6f
b98e6f
Run-time support for Boost.Nowide.
b98e6f
b98e6f
%if %{with python3}
b98e6f
b98e6f
%package numpy3
b98e6f
Summary: Run-time component of boost numpy library for Python 3
b98e6f
Requires: %{name}-python3%{?_isa} = %{version}-%{release}
b98e6f
Requires: python3-numpy
b98e6f
b98e6f
%description numpy3
b98e6f
b98e6f
The Boost Python Library is a framework for interfacing Python and
b98e6f
C++. It allows you to quickly and seamlessly expose C++ classes,
b98e6f
functions and objects to Python, and vice versa, using no special
b98e6f
tools -- just your C++ compiler.  This package contains run-time
b98e6f
support for the NumPy extension of the Boost Python Library for Python 3.
b98e6f
b98e6f
%endif
b98e6f
b98e6f
%package program-options
b98e6f
Summary:  Run-time component of boost program_options library
b98e6f
b98e6f
%description program-options
b98e6f
b98e6f
Run-time support of boost program options library, which allows program
b98e6f
developers to obtain (name, value) pairs from the user, via
b98e6f
conventional methods such as command-line and configuration file.
b98e6f
b98e6f
%if %{with python3}
b98e6f
%package python3
b98e6f
Summary: Run-time component of boost python library for Python 3
b98e6f
b98e6f
%description python3
b98e6f
b98e6f
The Boost Python Library is a framework for interfacing Python and
b98e6f
C++. It allows you to quickly and seamlessly expose C++ classes,
b98e6f
functions and objects to Python, and vice versa, using no special
b98e6f
tools -- just your C++ compiler.  This package contains run-time
b98e6f
support for the Boost Python Library compiled for Python 3.
b98e6f
%endif
b98e6f
b98e6f
%package random
b98e6f
Summary: Run-time component of boost random library
b98e6f
b98e6f
%description random
b98e6f
b98e6f
Run-time support for boost random library.
b98e6f
b98e6f
%package regex
b98e6f
Summary: Run-time component of boost regular expression library
b98e6f
b98e6f
%description regex
b98e6f
b98e6f
Run-time support for boost regular expression library.
b98e6f
b98e6f
%package serialization
b98e6f
Summary: Run-time component of boost serialization library
b98e6f
b98e6f
%description serialization
b98e6f
b98e6f
Run-time support for serialization for persistence and marshaling.
b98e6f
b98e6f
%package stacktrace
b98e6f
Summary: Run-time component of boost stacktrace library
b98e6f
b98e6f
%description stacktrace
b98e6f
b98e6f
Run-time component of the Boost stacktrace library.
b98e6f
b98e6f
%package system
b98e6f
Summary: Run-time component of boost system support library
b98e6f
b98e6f
%description system
b98e6f
b98e6f
Run-time component of Boost operating system support library, including
b98e6f
the diagnostics support that is part of the C++11 standard library.
b98e6f
b98e6f
%package test
b98e6f
Summary: Run-time component of boost test library
b98e6f
b98e6f
%description test
b98e6f
b98e6f
Run-time support for simple program testing, full unit testing, and for
b98e6f
program execution monitoring.
b98e6f
b98e6f
%package thread
b98e6f
Summary: Run-time component of boost thread library
b98e6f
Requires: %{name}-system%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description thread
b98e6f
b98e6f
Run-time component Boost.Thread library, which provides classes and
b98e6f
functions for managing multiple threads of execution, and for
b98e6f
synchronizing data between the threads or providing separate copies of
b98e6f
data specific to individual threads.
b98e6f
b98e6f
%package timer
b98e6f
Summary: Run-time component of boost timer library
b98e6f
Requires: %{name}-chrono%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-system%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description timer
b98e6f
b98e6f
"How long does my C++ code take to run?"
b98e6f
The Boost Timer library answers that question and does so portably,
b98e6f
with as little as one #include and one additional line of code.
b98e6f
b98e6f
%package type_erasure
b98e6f
Summary: Run-time component of boost type erasure library
b98e6f
Requires: %{name}-chrono%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-system%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description type_erasure
b98e6f
b98e6f
The Boost.TypeErasure library provides runtime polymorphism in C++
b98e6f
that is more flexible than that provided by the core language.
b98e6f
b98e6f
%package wave
b98e6f
Summary: Run-time component of boost C99/C++ preprocessing library
b98e6f
Requires: %{name}-chrono%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-date-time%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-filesystem%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-system%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-thread%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description wave
b98e6f
b98e6f
Run-time support for the Boost.Wave library, a Standards conforming,
b98e6f
and highly configurable implementation of the mandated C99/C++
b98e6f
preprocessor functionality.
b98e6f
b98e6f
%package devel
b98e6f
Summary: The Boost C++ headers and shared development libraries
b98e6f
Requires: %{name}%{?_isa} = %{version}-%{release}
b98e6f
Requires: libicu-devel%{?_isa}
b98e6f
%if %{with quadmath}
b98e6f
Requires: libquadmath-devel%{?_isa}
b98e6f
%endif
b98e6f
%if %{with python3}
b98e6f
# Require boost-numpy3 here, because main boost metapackage only Recommends: it
b98e6f
Requires: %{name}-numpy3%{?_isa} = %{version}-%{release}
b98e6f
# Added for F33, remove for F35:
b98e6f
Obsoletes: %{name}-python3-devel < 1.69.0-20
b98e6f
Provides: %{name}-python3-devel = %{version}-%{release}
b98e6f
Provides: %{name}-python3-devel%{?_isa} = %{version}-%{release}
b98e6f
%endif
b98e6f
# Added for F33, remove for F35:
b98e6f
Obsoletes: boost-nowide-devel <= 0.20190814
b98e6f
Provides: boost-nowide-devel = %{version}
b98e6f
Provides: boost-nowide-devel%{?_isa} = %{version}
b98e6f
b98e6f
%description devel
b98e6f
Headers and shared object symbolic links for the Boost C++ libraries.
b98e6f
b98e6f
%package static
b98e6f
Summary: The Boost C++ static development libraries
b98e6f
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description static
b98e6f
Static Boost C++ libraries.
b98e6f
b98e6f
%package doc
b98e6f
Summary: HTML documentation for the Boost C++ libraries
b98e6f
%if 0%{?rhel} >= 6
b98e6f
BuildArch: noarch
b98e6f
%endif
b98e6f
b98e6f
%description doc
b98e6f
This package contains the documentation in the HTML format of the Boost C++
b98e6f
libraries. The documentation provides the same content as that on the Boost
b98e6f
web page (http://www.boost.org/doc/libs/%{version_enc}).
b98e6f
b98e6f
%package examples
b98e6f
Summary: Source examples for the Boost C++ libraries
b98e6f
%if 0%{?rhel} >= 6
b98e6f
BuildArch: noarch
b98e6f
%endif
b98e6f
Requires: %{name}-devel = %{version}-%{release}
b98e6f
b98e6f
%description examples
b98e6f
This package contains example source files distributed with boost.
b98e6f
b98e6f
b98e6f
%if %{with openmpi}
b98e6f
b98e6f
%package openmpi
b98e6f
Summary: Run-time component of Boost.MPI library
b98e6f
BuildRequires: openmpi-devel
b98e6f
Requires: %{name}-serialization%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description openmpi
b98e6f
b98e6f
Run-time support for Boost.MPI-OpenMPI, a library providing a clean C++
b98e6f
API over the OpenMPI implementation of MPI.
b98e6f
b98e6f
%package openmpi-devel
b98e6f
Summary: Shared library symbolic links for Boost.MPI
b98e6f
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-openmpi%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-graph-openmpi%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description openmpi-devel
b98e6f
b98e6f
Devel package for Boost.MPI-OpenMPI, a library providing a clean C++
b98e6f
API over the OpenMPI implementation of MPI.
b98e6f
b98e6f
%if %{with python3}
b98e6f
b98e6f
%package openmpi-python3
b98e6f
Summary: Python 3 run-time component of Boost.MPI library
b98e6f
Requires: %{name}-openmpi%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-python3%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-serialization%{?_isa} = %{version}-%{release}
b98e6f
Requires: python3-openmpi%{?_isa}
b98e6f
b98e6f
%description openmpi-python3
b98e6f
b98e6f
Python 3 support for Boost.MPI-OpenMPI, a library providing a clean C++
b98e6f
API over the OpenMPI implementation of MPI.
b98e6f
b98e6f
%package openmpi-python3-devel
b98e6f
Summary: Shared library symbolic links for Boost.MPI Python 3 component
b98e6f
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-openmpi-devel%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-openmpi-python3%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description openmpi-python3-devel
b98e6f
b98e6f
Devel package for the Python 3 interface of Boost.MPI-OpenMPI, a library
b98e6f
providing a clean C++ API over the OpenMPI implementation of MPI.
b98e6f
b98e6f
%endif
b98e6f
b98e6f
%package graph-openmpi
b98e6f
Summary: Run-time component of parallel boost graph library
b98e6f
Requires: %{name}-openmpi%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-serialization%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description graph-openmpi
b98e6f
b98e6f
Run-time support for the Parallel BGL graph library.  The interface and
b98e6f
graph components are generic, in the same sense as the Standard
b98e6f
Template Library (STL).  This libraries in this package use OpenMPI
b98e6f
back-end to do the parallel work.
b98e6f
b98e6f
%endif
b98e6f
b98e6f
b98e6f
%if %{with mpich}
b98e6f
b98e6f
%package mpich
b98e6f
Summary: Run-time component of Boost.MPI library
b98e6f
BuildRequires: mpich-devel
b98e6f
Requires: %{name}-serialization%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description mpich
b98e6f
b98e6f
Run-time support for Boost.MPI-MPICH, a library providing a clean C++
b98e6f
API over the MPICH implementation of MPI.
b98e6f
b98e6f
%package mpich-devel
b98e6f
Summary: Shared library symbolic links for Boost.MPI
b98e6f
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-mpich%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-graph-mpich%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description mpich-devel
b98e6f
b98e6f
Devel package for Boost.MPI-MPICH, a library providing a clean C++
b98e6f
API over the MPICH implementation of MPI.
b98e6f
b98e6f
%if %{with python3}
b98e6f
b98e6f
%package mpich-python3
b98e6f
Summary: Python 3 run-time component of Boost.MPI library
b98e6f
Requires: %{name}-mpich%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-python3%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-serialization%{?_isa} = %{version}-%{release}
b98e6f
Requires: python3-mpich%{?_isa}
b98e6f
b98e6f
%description mpich-python3
b98e6f
b98e6f
Python 3 support for Boost.MPI-MPICH, a library providing a clean C++
b98e6f
API over the MPICH implementation of MPI.
b98e6f
b98e6f
%package mpich-python3-devel
b98e6f
Summary: Shared library symbolic links for Boost.MPI Python 3 component
b98e6f
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-mpich-devel%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-mpich-python3%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description mpich-python3-devel
b98e6f
b98e6f
Devel package for the Python 3 interface of Boost.MPI-MPICH, a library
b98e6f
providing a clean C++ API over the MPICH implementation of MPI.
b98e6f
b98e6f
%endif
b98e6f
b98e6f
%package graph-mpich
b98e6f
Summary: Run-time component of parallel boost graph library
b98e6f
Requires: %{name}-mpich%{?_isa} = %{version}-%{release}
b98e6f
Requires: %{name}-serialization%{?_isa} = %{version}-%{release}
b98e6f
b98e6f
%description graph-mpich
b98e6f
b98e6f
Run-time support for the Parallel BGL graph library.  The interface and
b98e6f
graph components are generic, in the same sense as the Standard
b98e6f
Template Library (STL).  This libraries in this package use MPICH
b98e6f
back-end to do the parallel work.
b98e6f
b98e6f
%endif
b98e6f
b98e6f
%package build
b98e6f
Summary: Cross platform build system for C++ projects
b98e6f
Requires: %{name}-b2
b98e6f
BuildArch: noarch
b98e6f
b98e6f
%description build
b98e6f
Boost.Build is an easy way to build C++ projects, everywhere. You name
b98e6f
your pieces of executable and libraries and list their sources.  Boost.Build
b98e6f
takes care about compiling your sources with the right options,
b98e6f
creating static and shared libraries, making pieces of executable, and other
b98e6f
chores -- whether you are using GCC, MSVC, or a dozen more supported
b98e6f
C++ compilers -- on Windows, OSX, Linux and commercial UNIX systems.
b98e6f
b98e6f
%package doctools
b98e6f
Summary: Tools for working with Boost documentation
b98e6f
Requires: docbook-dtds
b98e6f
Requires: docbook-style-xsl
b98e6f
b98e6f
%description doctools
b98e6f
b98e6f
Tools for working with Boost documentation in BoostBook or QuickBook format.
b98e6f
b98e6f
%package b2
b98e6f
Summary: A low-level build tool
b98e6f
# Added for F33, remove for F35:
b98e6f
Obsoletes: boost-jam < 1.73.0
b98e6f
Provides: boost-jam = %{version}
b98e6f
Provides: boost-jam%{?_isa} = %{version}
b98e6f
b98e6f
%description b2
b98e6f
B2 (formerly Boost.Jam) is the low-level build engine tool for Boost.Build.
b98e6f
Historically, B2 was based on on FTJam and on Perforce Jam but has grown
b98e6f
a number of significant features and is now developed independently.
b98e6f
b98e6f
%prep
b98e6f
%setup -q -n %{toplev_dirname}
b98e6f
find ./boost -name '*.hpp' -perm /111 | xargs chmod a-x
b98e6f
b98e6f
%patch15 -p0
b98e6f
%patch51 -p1
b98e6f
%patch96 -p1
b98e6f
%patch97 -p1
b98e6f
%patch83 -p1
b98e6f
%patch88 -p1
b98e6f
%patch93 -p1
b98e6f
%patch94 -p1
b98e6f
%patch95 -p1
b98e6f
b98e6f
%build
b98e6f
%set_build_flags
b98e6f
# Dump the versions being used into the build logs.
b98e6f
%if %{with python3}
b98e6f
PYTHON3_ABIFLAGS=$(/usr/bin/python3-config --abiflags)
b98e6f
: PYTHON3_VERSION=%{python3_version}
b98e6f
: PYTHON3_ABIFLAGS=${PYTHON3_ABIFLAGS}
b98e6f
%endif
b98e6f
b98e6f
# There are many strict aliasing warnings, and it's not feasible to go
b98e6f
# through them all at this time.
b98e6f
# There are also lots of noisy but harmless unused local typedef warnings.
b98e6f
export RPM_OPT_FLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -Wno-unused-local-typedefs -Wno-deprecated-declarations"
b98e6f
export RPM_LD_FLAGS
b98e6f
b98e6f
cat > ./tools/build/src/user-config.jam << "EOF"
b98e6f
import os ;
b98e6f
local RPM_OPT_FLAGS = [ os.environ RPM_OPT_FLAGS ] ;
b98e6f
local RPM_LD_FLAGS = [ os.environ RPM_LD_FLAGS ] ;
b98e6f
b98e6f
using %{toolchain} : : : <compileflags>$(RPM_OPT_FLAGS) <linkflags>$(RPM_LD_FLAGS) ;
b98e6f
%if %{with openmpi} || %{with mpich}
b98e6f
using mpi ;
b98e6f
%endif
b98e6f
EOF
b98e6f
b98e6f
%if %{with python3}
b98e6f
cat >> ./tools/build/src/user-config.jam << EOF
b98e6f
using python : %{python3_version} : /usr/bin/python3 : /usr/include/python%{python3_version}${PYTHON3_ABIFLAGS} : : : ;
b98e6f
EOF
b98e6f
%endif
b98e6f
b98e6f
./bootstrap.sh --with-toolset=%{toolchain} --with-icu
b98e6f
b98e6f
# N.B. When we build the following with PCH, parts of boost (math
b98e6f
# library in particular) end up being built second time during
b98e6f
# installation.  Unsure why that is, but all sub-builds need to be
b98e6f
# built with pch=off to avoid this.
b98e6f
b98e6f
echo ============================= build serial ==================
b98e6f
./b2 -d+2 -q %{?_smp_mflags} \
b98e6f
	--without-mpi --without-graph_parallel --build-dir=serial \
b98e6f
%if !%{with context}
b98e6f
	--without-context --without-coroutine \
b98e6f
	--without-fiber \
b98e6f
%endif
b98e6f
	variant=release threading=multi debug-symbols=on pch=off \
b98e6f
%if %{with python3}
b98e6f
	python=%{python3_version} \
b98e6f
%endif
b98e6f
	stage
b98e6f
b98e6f
# See libs/thread/build/Jamfile.v2 for where this file comes from.
b98e6f
if [ $(find serial -type f -name has_atomic_flag_lockfree \
b98e6f
		-print -quit | wc -l) -ne 0 ]; then
b98e6f
	DEF=D
b98e6f
else
b98e6f
	DEF=U
b98e6f
fi
b98e6f
b98e6f
m4 -${DEF}HAS_ATOMIC_FLAG_LOCKFREE -DVERSION=%{version} \
b98e6f
	%{SOURCE1} > $(basename %{SOURCE1})
b98e6f
b98e6f
# Build MPI parts of Boost with OpenMPI support
b98e6f
b98e6f
%if %{with openmpi} || %{with mpich}
b98e6f
# First, purge all modules so that user environment does not conflict
b98e6f
# with the build.
b98e6f
module purge ||:
b98e6f
%endif
b98e6f
b98e6f
%if %{with openmpi}
b98e6f
%{_openmpi_load}
b98e6f
b98e6f
%if %{with python3}
b98e6f
echo ============================= build $MPI_COMPILER ==================
b98e6f
./b2 -d+2 -q %{?_smp_mflags} \
b98e6f
	--with-mpi --with-graph_parallel --build-dir=$MPI_COMPILER \
b98e6f
	variant=release threading=multi debug-symbols=on pch=off \
b98e6f
	python=%{python3_version} stage
b98e6f
%endif
b98e6f
b98e6f
%{_openmpi_unload}
b98e6f
export PATH=/bin${PATH:+:}$PATH
b98e6f
%endif
b98e6f
b98e6f
# Build MPI parts of Boost with MPICH support
b98e6f
%if %{with mpich}
b98e6f
%{_mpich_load}
b98e6f
b98e6f
%if %{with python3}
b98e6f
echo ============================= build $MPI_COMPILER ==================
b98e6f
./b2 -d+2 -q %{?_smp_mflags} \
b98e6f
	--with-mpi --with-graph_parallel --build-dir=$MPI_COMPILER \
b98e6f
	variant=release threading=multi debug-symbols=on pch=off \
b98e6f
	python=%{python3_version} stage
b98e6f
%endif
b98e6f
b98e6f
%{_mpich_unload}
b98e6f
export PATH=/bin${PATH:+:}$PATH
b98e6f
%endif
b98e6f
b98e6f
echo ============================= build Boost.Build ==================
b98e6f
(cd tools/build
b98e6f
 ./bootstrap.sh --with-toolset=%{toolchain})
b98e6f
b98e6f
%check
b98e6f
:
b98e6f
b98e6f
b98e6f
%install
b98e6f
cd %{_builddir}/%{toplev_dirname}
b98e6f
b98e6f
%if %{with openmpi} || %{with mpich}
b98e6f
# First, purge all modules so that user environment does not conflict
b98e6f
# with the build.
b98e6f
module purge ||:
b98e6f
%endif
b98e6f
b98e6f
%if %{with openmpi}
b98e6f
%{_openmpi_load}
b98e6f
# XXX We want to extract this from RPM flags
b98e6f
# b2 instruction-set=i686 etc.
b98e6f
b98e6f
%if %{with python3}
b98e6f
echo ============================= install $MPI_COMPILER ==================
b98e6f
./b2 -q %{?_smp_mflags} \
b98e6f
	--with-mpi --with-graph_parallel --build-dir=$MPI_COMPILER \
b98e6f
	--stagedir=${RPM_BUILD_ROOT}${MPI_HOME} \
b98e6f
	variant=release threading=multi debug-symbols=on pch=off \
b98e6f
	python=%{python3_version} stage
b98e6f
b98e6f
# Move Python module to proper location for automatic loading
b98e6f
mkdir -p ${RPM_BUILD_ROOT}%{python3_sitearch}/openmpi/boost
b98e6f
touch ${RPM_BUILD_ROOT}%{python3_sitearch}/openmpi/boost/__init__.py
b98e6f
mv ${RPM_BUILD_ROOT}${MPI_HOME}/lib/boost-python%{python3_version}/mpi.so \
b98e6f
   ${RPM_BUILD_ROOT}%{python3_sitearch}/openmpi/boost/
b98e6f
%endif
b98e6f
b98e6f
# Remove generic parts of boost that were built for dependencies.
b98e6f
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_{python,{w,}serialization}*
b98e6f
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_numpy*
b98e6f
b98e6f
# Remove cmake files (some of these are duplicates of the generic bits anyway).
b98e6f
rm -r ${RPM_BUILD_ROOT}${MPI_HOME}/lib/cmake
b98e6f
b98e6f
%{_openmpi_unload}
b98e6f
export PATH=/bin${PATH:+:}$PATH
b98e6f
%endif
b98e6f
b98e6f
%if %{with mpich}
b98e6f
%{_mpich_load}
b98e6f
b98e6f
%if %{with python3}
b98e6f
echo ============================= install $MPI_COMPILER ==================
b98e6f
./b2 -q %{?_smp_mflags} \
b98e6f
	--with-mpi --with-graph_parallel --build-dir=$MPI_COMPILER \
b98e6f
	--stagedir=${RPM_BUILD_ROOT}${MPI_HOME} \
b98e6f
	variant=release threading=multi debug-symbols=on pch=off \
b98e6f
	python=%{python3_version} stage
b98e6f
b98e6f
# Move Python module to proper location for automatic loading
b98e6f
mkdir -p ${RPM_BUILD_ROOT}%{python3_sitearch}/mpich/boost
b98e6f
touch ${RPM_BUILD_ROOT}%{python3_sitearch}/mpich/boost/__init__.py
b98e6f
mv ${RPM_BUILD_ROOT}${MPI_HOME}/lib/boost-python%{python3_version}/mpi.so \
b98e6f
   ${RPM_BUILD_ROOT}%{python3_sitearch}/mpich/boost/
b98e6f
%endif
b98e6f
b98e6f
# Remove generic parts of boost that were built for dependencies.
b98e6f
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_{python,{w,}serialization}*
b98e6f
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_numpy*
b98e6f
b98e6f
# Remove cmake files (some of these are duplicates of the generic bits anyway).
b98e6f
rm -r ${RPM_BUILD_ROOT}${MPI_HOME}/lib/cmake
b98e6f
b98e6f
%{_mpich_unload}
b98e6f
export PATH=/bin${PATH:+:}$PATH
b98e6f
%endif
b98e6f
b98e6f
echo ============================= install serial ==================
b98e6f
./b2 -d+2 -q %{?_smp_mflags} \
b98e6f
	--without-mpi --without-graph_parallel --build-dir=serial \
b98e6f
%if !%{with context}
b98e6f
	--without-context --without-coroutine \
b98e6f
	--without-fiber \
b98e6f
%endif
b98e6f
	--prefix=$RPM_BUILD_ROOT%{_prefix} \
b98e6f
	--libdir=$RPM_BUILD_ROOT%{_libdir} \
b98e6f
	variant=release threading=multi debug-symbols=on pch=off \
b98e6f
%if %{with python3}
b98e6f
	python=%{python3_version} \
b98e6f
%endif
b98e6f
	install
b98e6f
b98e6f
# Override DSO symlink with a linker script.  See the linker script
b98e6f
# itself for details of why we need to do this.
b98e6f
[ -f $RPM_BUILD_ROOT%{_libdir}/libboost_thread.so ] # Must be present
b98e6f
rm -f $RPM_BUILD_ROOT%{_libdir}/libboost_thread.so
b98e6f
install -p -m 644 $(basename %{SOURCE1}) $RPM_BUILD_ROOT%{_libdir}/
b98e6f
b98e6f
# Remove cmake files until we know somebody wants them.
b98e6f
rm -r $RPM_BUILD_ROOT/%{_libdir}/cmake
b98e6f
b98e6f
echo ============================= install Boost.Build ==================
b98e6f
(cd tools/build
b98e6f
 ./b2 --prefix=$RPM_BUILD_ROOT%{_prefix} install
b98e6f
 # Fix some permissions
b98e6f
 chmod +x $RPM_BUILD_ROOT%{_datadir}/boost-build/src/tools/doxproc.py
b98e6f
 # Fix shebang using unversioned python
b98e6f
 sed -i '1s@^#!/usr/bin.python$@&3@' $RPM_BUILD_ROOT%{_datadir}/boost-build/src/tools/doxproc.py
b98e6f
 # Empty file
b98e6f
 rm $RPM_BUILD_ROOT%{_datadir}/boost-build/src/tools/doxygen/windows-paths-check.hpp
b98e6f
 rm -f $RPM_BUILD_ROOT%{_datadir}/boost-build/src/tools/doxygen/windows-paths-check.hpp
b98e6f
 # Install the manual page
b98e6f
 %{__install} -p -m 644 %{SOURCE2} -D $RPM_BUILD_ROOT%{_mandir}/man1/b2.1
b98e6f
)
b98e6f
b98e6f
echo ============================= install Boost.QuickBook ==================
b98e6f
(cd tools/quickbook
b98e6f
 ../build/b2 --prefix=$RPM_BUILD_ROOT%{_prefix}
b98e6f
 %{__install} -p -m 755 ../../dist/bin/quickbook $RPM_BUILD_ROOT%{_bindir}/
b98e6f
 cd ../boostbook
b98e6f
 find dtd -type f -name '*.dtd' | while read tobeinstalledfiles; do
b98e6f
   install -p -m 644 $tobeinstalledfiles -D $RPM_BUILD_ROOT%{_datadir}/boostbook/$tobeinstalledfiles
b98e6f
 done
b98e6f
 find xsl -type f | while read tobeinstalledfiles; do
b98e6f
   install -p -m 644 $tobeinstalledfiles -D $RPM_BUILD_ROOT%{_datadir}/boostbook/$tobeinstalledfiles
b98e6f
 done
b98e6f
)
b98e6f
b98e6f
# Install documentation files (HTML pages) within the temporary place
b98e6f
echo ============================= install documentation ==================
b98e6f
# Prepare the place to temporarily store the generated documentation
b98e6f
rm -rf %{boost_docdir} && %{__mkdir_p} %{boost_docdir}/html
b98e6f
DOCPATH=%{boost_docdir}
b98e6f
DOCREGEX='.*\.\(html?\|css\|png\|gif\)'
b98e6f
b98e6f
find libs doc more -type f -regex $DOCREGEX \
b98e6f
    | sed -n '/\//{s,/[^/]*$,,;p}' \
b98e6f
    | sort -u > tmp-doc-directories
b98e6f
b98e6f
sed "s:^:$DOCPATH/:" tmp-doc-directories \
b98e6f
    | xargs -P 0 --no-run-if-empty %{__install} -d
b98e6f
b98e6f
cat tmp-doc-directories | while read tobeinstalleddocdir; do
b98e6f
    find $tobeinstalleddocdir -mindepth 1 -maxdepth 1 -regex $DOCREGEX -print0 \
b98e6f
    | xargs -P 0 -0 %{__install} -p -m 644 -t $DOCPATH/$tobeinstalleddocdir
b98e6f
done
b98e6f
rm -f tmp-doc-directories
b98e6f
%{__install} -p -m 644 -t $DOCPATH LICENSE_1_0.txt index.htm index.html boost.png rst.css boost.css
b98e6f
b98e6f
echo ============================= install examples ==================
b98e6f
# Fix a few non-standard issues (DOS and/or non-UTF8 files)
b98e6f
sed -i -e 's/\r//g' libs/geometry/example/ml02_distance_strategy.cpp
b98e6f
for tmp_doc_file in flyweight/example/Jamfile.v2 \
b98e6f
 format/example/sample_new_features.cpp multi_index/example/Jamfile.v2 \
b98e6f
 multi_index/example/hashed.cpp serialization/example/demo_output.txt
b98e6f
do
b98e6f
  mv libs/${tmp_doc_file} libs/${tmp_doc_file}.iso8859
b98e6f
  iconv -f ISO8859-1 -t UTF8 < libs/${tmp_doc_file}.iso8859 > libs/${tmp_doc_file}
b98e6f
  touch -r libs/${tmp_doc_file}.iso8859 libs/${tmp_doc_file}
b98e6f
  rm -f libs/${tmp_doc_file}.iso8859
b98e6f
done
b98e6f
b98e6f
# Prepare the place to temporarily store the examples
b98e6f
rm -rf %{boost_examplesdir} && mkdir -p %{boost_examplesdir}/html
b98e6f
EXAMPLESPATH=%{boost_examplesdir}
b98e6f
find libs -type d -name example -exec find {} -type f \; \
b98e6f
    | sed -n '/\//{s,/[^/]*$,,;p}' \
b98e6f
    | sort -u > tmp-doc-directories
b98e6f
sed "s:^:$EXAMPLESPATH/:" tmp-doc-directories \
b98e6f
    | xargs -P 0 --no-run-if-empty %{__install} -d
b98e6f
rm -f tmp-doc-files-to-be-installed && touch tmp-doc-files-to-be-installed
b98e6f
cat tmp-doc-directories | while read tobeinstalleddocdir
b98e6f
do
b98e6f
  find $tobeinstalleddocdir -mindepth 1 -maxdepth 1 -type f \
b98e6f
    >> tmp-doc-files-to-be-installed
b98e6f
done
b98e6f
cat tmp-doc-files-to-be-installed | while read tobeinstalledfiles
b98e6f
do
b98e6f
  if test -s $tobeinstalledfiles
b98e6f
  then
b98e6f
    tobeinstalleddocdir=`dirname $tobeinstalledfiles`
b98e6f
    %{__install} -p -m 644 -t $EXAMPLESPATH/$tobeinstalleddocdir $tobeinstalledfiles
b98e6f
  fi
b98e6f
done
b98e6f
rm -f tmp-doc-files-to-be-installed
b98e6f
rm -f tmp-doc-directories
b98e6f
%{__install} -p -m 644 -t $EXAMPLESPATH LICENSE_1_0.txt
b98e6f
b98e6f
b98e6f
%post doctools
b98e6f
CATALOG=%{_sysconfdir}/xml/catalog
b98e6f
%{_bindir}/xmlcatalog --noout --add "rewriteSystem" \
b98e6f
 "http://www.boost.org/tools/boostbook/dtd" \
b98e6f
 "file://%{_datadir}/boostbook/dtd" $CATALOG
b98e6f
%{_bindir}/xmlcatalog --noout --add "rewriteURI" \
b98e6f
 "http://www.boost.org/tools/boostbook/dtd" \
b98e6f
 "file://%{_datadir}/boostbook/dtd" $CATALOG
b98e6f
%{_bindir}/xmlcatalog --noout --add "rewriteSystem" \
b98e6f
 "http://www.boost.org/tools/boostbook/xsl" \
b98e6f
 "file://%{_datadir}/boostbook/xsl" $CATALOG
b98e6f
%{_bindir}/xmlcatalog --noout --add "rewriteURI" \
b98e6f
 "http://www.boost.org/tools/boostbook/xsl" \
b98e6f
 "file://%{_datadir}/boostbook/xsl" $CATALOG
b98e6f
b98e6f
%postun doctools
b98e6f
# remove entries only on removal of package
b98e6f
if [ "$1" = 0 ]; then
b98e6f
  CATALOG=%{_sysconfdir}/xml/catalog
b98e6f
  %{_bindir}/xmlcatalog --noout --del \
b98e6f
    "file://%{_datadir}/boostbook/dtd" $CATALOG
b98e6f
  %{_bindir}/xmlcatalog --noout --del \
b98e6f
    "file://%{_datadir}/boostbook/xsl" $CATALOG
b98e6f
fi
b98e6f
b98e6f
b98e6f
%files
b98e6f
%license LICENSE_1_0.txt
b98e6f
b98e6f
%files atomic
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_atomic.so.%{sonamever}
b98e6f
b98e6f
%files chrono
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_chrono.so.%{sonamever}
b98e6f
b98e6f
%files container
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_container.so.%{sonamever}
b98e6f
b98e6f
%if %{with context}
b98e6f
b98e6f
%files context
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_context.so.%{sonamever}
b98e6f
b98e6f
%files coroutine
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_coroutine.so.%{sonamever}
b98e6f
b98e6f
%endif
b98e6f
b98e6f
%files date-time
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_date_time.so.%{sonamever}
b98e6f
b98e6f
%if %{with context}
b98e6f
%files fiber
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_fiber.so.%{sonamever}
b98e6f
%endif
b98e6f
b98e6f
%files filesystem
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_filesystem.so.%{sonamever}
b98e6f
b98e6f
%files graph
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_graph.so.%{sonamever}
b98e6f
b98e6f
%files iostreams
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_iostreams.so.%{sonamever}
b98e6f
b98e6f
%files json
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_json.so.%{sonamever}
b98e6f
b98e6f
%files locale
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_locale.so.%{sonamever}
b98e6f
b98e6f
%files log
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_log.so.%{sonamever}
b98e6f
%{_libdir}/libboost_log_setup.so.%{sonamever}
b98e6f
b98e6f
%files math
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_math_c99.so.%{sonamever}
b98e6f
%{_libdir}/libboost_math_c99f.so.%{sonamever}
b98e6f
%{_libdir}/libboost_math_c99l.so.%{sonamever}
b98e6f
%{_libdir}/libboost_math_tr1.so.%{sonamever}
b98e6f
%{_libdir}/libboost_math_tr1f.so.%{sonamever}
b98e6f
%{_libdir}/libboost_math_tr1l.so.%{sonamever}
b98e6f
b98e6f
%files nowide
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_nowide.so.%{sonamever}
b98e6f
b98e6f
%if %{with python3}
b98e6f
%files numpy3
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_numpy%{python3_version_nodots}.so.%{sonamever}
b98e6f
%endif
b98e6f
b98e6f
%files test
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_prg_exec_monitor.so.%{sonamever}
b98e6f
%{_libdir}/libboost_unit_test_framework.so.%{sonamever}
b98e6f
b98e6f
%files program-options
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_program_options.so.%{sonamever}
b98e6f
b98e6f
%if %{with python3}
b98e6f
%files python3
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_python%{python3_version_nodots}.so.%{sonamever}
b98e6f
%endif
b98e6f
b98e6f
%files random
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_random.so.%{sonamever}
b98e6f
b98e6f
%files regex
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_regex.so.%{sonamever}
b98e6f
b98e6f
%files serialization
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_serialization.so.%{sonamever}
b98e6f
%{_libdir}/libboost_wserialization.so.%{sonamever}
b98e6f
b98e6f
%files stacktrace
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_stacktrace_addr2line.so.%{sonamever}
b98e6f
%{_libdir}/libboost_stacktrace_basic.so.%{sonamever}
b98e6f
%{_libdir}/libboost_stacktrace_noop.so.%{sonamever}
b98e6f
b98e6f
%files system
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_system.so.%{sonamever}
b98e6f
b98e6f
%files thread
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_thread.so.%{sonamever}
b98e6f
b98e6f
%files timer
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_timer.so.%{sonamever}
b98e6f
b98e6f
%files type_erasure
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_type_erasure.so.%{sonamever}
b98e6f
b98e6f
%files wave
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_wave.so.%{sonamever}
b98e6f
b98e6f
%files contract
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/libboost_contract.so.%{sonamever}
b98e6f
b98e6f
%files doc
b98e6f
%doc %{boost_docdir}/*
b98e6f
b98e6f
%files examples
b98e6f
%doc %{boost_examplesdir}/*
b98e6f
b98e6f
%files devel
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_includedir}/%{name}
b98e6f
%{_libdir}/libboost_atomic.so
b98e6f
%{_libdir}/libboost_chrono.so
b98e6f
%{_libdir}/libboost_container.so
b98e6f
%{_libdir}/libboost_contract.so
b98e6f
%if %{with context}
b98e6f
%{_libdir}/libboost_context.so
b98e6f
%{_libdir}/libboost_coroutine.so
b98e6f
%endif
b98e6f
%{_libdir}/libboost_date_time.so
b98e6f
%if %{with context}
b98e6f
%{_libdir}/libboost_fiber.so
b98e6f
%endif
b98e6f
%{_libdir}/libboost_filesystem.so
b98e6f
%{_libdir}/libboost_graph.so
b98e6f
%{_libdir}/libboost_iostreams.so
b98e6f
%{_libdir}/libboost_json.so
b98e6f
%{_libdir}/libboost_locale.so
b98e6f
%{_libdir}/libboost_log.so
b98e6f
%{_libdir}/libboost_log_setup.so
b98e6f
%{_libdir}/libboost_math_tr1.so
b98e6f
%{_libdir}/libboost_math_tr1f.so
b98e6f
%{_libdir}/libboost_math_tr1l.so
b98e6f
%{_libdir}/libboost_math_c99.so
b98e6f
%{_libdir}/libboost_math_c99f.so
b98e6f
%{_libdir}/libboost_math_c99l.so
b98e6f
%{_libdir}/libboost_nowide.so
b98e6f
%if %{with python3}
b98e6f
%{_libdir}/libboost_numpy%{python3_version_nodots}.so
b98e6f
%endif
b98e6f
%{_libdir}/libboost_prg_exec_monitor.so
b98e6f
%{_libdir}/libboost_unit_test_framework.so
b98e6f
%{_libdir}/libboost_program_options.so
b98e6f
%if %{with python3}
b98e6f
%{_libdir}/libboost_python%{python3_version_nodots}.so
b98e6f
%endif
b98e6f
%{_libdir}/libboost_random.so
b98e6f
%{_libdir}/libboost_regex.so
b98e6f
%{_libdir}/libboost_serialization.so
b98e6f
%{_libdir}/libboost_wserialization.so
b98e6f
%{_libdir}/libboost_stacktrace_addr2line.so
b98e6f
%{_libdir}/libboost_stacktrace_basic.so
b98e6f
%{_libdir}/libboost_stacktrace_noop.so
b98e6f
%{_libdir}/libboost_system.so
b98e6f
%{_libdir}/libboost_thread.so
b98e6f
%{_libdir}/libboost_timer.so
b98e6f
%{_libdir}/libboost_type_erasure.so
b98e6f
%{_libdir}/libboost_wave.so
b98e6f
b98e6f
%files static
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/*.a
b98e6f
%if %{with mpich}
b98e6f
%{_libdir}/mpich/lib/*.a
b98e6f
%endif
b98e6f
%if %{with openmpi}
b98e6f
%{_libdir}/openmpi/lib/*.a
b98e6f
%endif
b98e6f
b98e6f
# OpenMPI packages
b98e6f
%if %{with openmpi}
b98e6f
b98e6f
%files openmpi
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/openmpi/lib/libboost_mpi.so.%{sonamever}
b98e6f
b98e6f
%files openmpi-devel
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/openmpi/lib/libboost_mpi.so
b98e6f
%{_libdir}/openmpi/lib/libboost_graph_parallel.so
b98e6f
b98e6f
%if %{with python3}
b98e6f
b98e6f
%files openmpi-python3
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/openmpi/lib/libboost_mpi_python%{python3_version_nodots}.so.%{sonamever}
b98e6f
%{python3_sitearch}/openmpi/boost/
b98e6f
b98e6f
%files openmpi-python3-devel
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/openmpi/lib/libboost_mpi_python%{python3_version_nodots}.so
b98e6f
b98e6f
%endif
b98e6f
b98e6f
%files graph-openmpi
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/openmpi/lib/libboost_graph_parallel.so.%{sonamever}
b98e6f
b98e6f
%endif
b98e6f
b98e6f
# MPICH packages
b98e6f
%if %{with mpich}
b98e6f
b98e6f
%files mpich
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/mpich/lib/libboost_mpi.so.%{sonamever}
b98e6f
b98e6f
%files mpich-devel
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/mpich/lib/libboost_mpi.so
b98e6f
%{_libdir}/mpich/lib/libboost_graph_parallel.so
b98e6f
b98e6f
%if %{with python3}
b98e6f
b98e6f
%files mpich-python3
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/mpich/lib/libboost_mpi_python%{python3_version_nodots}.so.%{sonamever}
b98e6f
%{python3_sitearch}/mpich/boost/
b98e6f
b98e6f
%files mpich-python3-devel
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/mpich/lib/libboost_mpi_python%{python3_version_nodots}.so
b98e6f
b98e6f
%endif
b98e6f
b98e6f
%files graph-mpich
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_libdir}/mpich/lib/libboost_graph_parallel.so.%{sonamever}
b98e6f
b98e6f
%endif
b98e6f
b98e6f
%files build
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_datadir}/%{name}-build/
b98e6f
b98e6f
%files doctools
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_bindir}/quickbook
b98e6f
%{_datadir}/boostbook/
b98e6f
b98e6f
%files b2
b98e6f
%license LICENSE_1_0.txt
b98e6f
%{_bindir}/b2
b98e6f
%{_mandir}/man1/b2.1*
b98e6f
b98e6f
%changelog
b98e6f
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.75.0-6
b98e6f
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
b98e6f
  Related: rhbz#1991688
b98e6f
b98e6f
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.75.0-5
b98e6f
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
b98e6f
b98e6f
* Tue Mar 30 2021 Jonathan Wakely <jwakely@redhat.com> - 1.75.0-4
b98e6f
- Rebuilt for removed libstdc++ symbol (#1937698)
b98e6f
b98e6f
* Tue Feb 02 2021 Thomas Rodgers <trodgers@redhat.com> - 1.75.0-3
b98e6f
- Patch for https://bugzilla.redhat.com/show_bug.cgi?id=1923740
b98e6f
b98e6f
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.75.0-2
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
b98e6f
b98e6f
* Mon Jan 11 2021 Thomas Rodgers <trodgers@redhat.com> - 1.75.0-1
b98e6f
- Rebase to 1.75.0
b98e6f
- Add boost-json subpackage
b98e6f
b98e6f
* Fri Jan  8 14:14:00 CET 2021 Tomas Hrnciar <thrnciar@redhat.com> - 1.73.0-12
b98e6f
- Patch Boost.Python for Python 3.10 - replace _Py_fopen() with fopen() (#1912903)
b98e6f
b98e6f
* Fri Nov 20 2020 Jonathan Wakely <jwakely@redhat.com> - 1.73.0-11
b98e6f
- Patch Boost.Locale to not access empty vector (#1899888)
b98e6f
b98e6f
* Fri Nov 13 2020 Jonathan Wakely <jwakely@redhat.com> - 1.73.0-10
b98e6f
- Patch Boost.Python for Python 3.10 changes (#1896382)
b98e6f
b98e6f
* Wed Nov 04 2020 Jonathan Wakely <jwakely@redhat.com> - 1.73.0-9
b98e6f
- Remove incorrect dependency on xz, only the shared lib is needed
b98e6f
b98e6f
* Fri Oct 30 2020 Jonathan Wakely <jwakely@redhat.com> - 1.73.0-8
b98e6f
- Build Boost.Iostreams with LZMA support (#1893060)
b98e6f
b98e6f
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.73.0-7
b98e6f
- Second attempt - Rebuilt for
b98e6f
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
b98e6f
b98e6f
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.73.0-6
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
b98e6f
b98e6f
* Thu Jun 11 2020 Jonathan Wakely <jwakely@redhat.com> - 1.73.0-5
b98e6f
- Add patch for Boost.MPI to fix espresso (#1843105)
b98e6f
b98e6f
* Fri Jun 05 2020 Jonathan Wakely <jwakely@redhat.com> - 1.73.0-4
b98e6f
- Add patch for Boost.Geometry issue #721
b98e6f
b98e6f
* Fri May 29 2020 Jonathan Wakely <jwakely@redhat.com> - 1.73.0-3
b98e6f
- Rebuilt for Python 3.9
b98e6f
b98e6f
* Thu May 28 2020 Jonathan Wakely <jwakely@redhat.com> - 1.73.0-1
b98e6f
- Rebase to 1.73.0
b98e6f
- Replace boost-jam and bjam with boost-b2 and b2
b98e6f
- Add boost-nowide subpackage
b98e6f
b98e6f
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 1.69.0-22
b98e6f
- Rebuilt for Python 3.9
b98e6f
b98e6f
* Sat May 23 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 1.69.0-21
b98e6f
- Add Provides for boost-python3-devel
b98e6f
b98e6f
* Fri May 22 2020 Jonathan Wakely <jwakely@redhat.com> - 1.69.0-20
b98e6f
- Require boost-python3 for boost, fold boost-python3-devel into boost-devel
b98e6f
- Do not link Python extensions to libpython
b98e6f
b98e6f
* Fri May 15 2020 Pete Walter <pwalter@fedoraproject.org> - 1.69.0-19
b98e6f
- Rebuild for ICU 67
b98e6f
b98e6f
* Tue May 12 2020 Avi Kivity <avi@scylladb.com> - 1.69.0-18
b98e6f
- Add patch for C++20 compatibility in Boost.Signals2 (#1834764)
b98e6f
b98e6f
* Mon May 11 2020 Jonathan Wakely <jwakely@redhat.com> - 1.69.0-17
b98e6f
- Add patch for C++20 compatibility in Boost.Test (#1832639)
b98e6f
b98e6f
* Thu Apr 02 2020 Jonathan Wakely <jwakely@redhat.com> - 1.69.0-16
b98e6f
- Drop boost-1.57.0-mpl-print.patch patch that doesn't work
b98e6f
- Remove vestigial parts of separate python2/python3 build
b98e6f
- Generate version_enc automatically from version and drop version_suffix
b98e6f
b98e6f
* Mon Mar 30 2020 Jonathan Wakely <jwakely@redhat.com> - 1.69.0-15
b98e6f
- Patch Boost.Format for C++20 compatibility with GCC 10 (#1818723)
b98e6f
b98e6f
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.69.0-14
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
b98e6f
b98e6f
* Fri Nov 15 2019 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.69.0-13
b98e6f
- Removed the Python2 sub-packages
b98e6f
b98e6f
* Fri Nov 01 2019 Pete Walter <pwalter@fedoraproject.org> - 1.69.0-12
b98e6f
- Rebuild for ICU 65
b98e6f
b98e6f
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.69.0-11
b98e6f
- Rebuilt for Python 3.8.0rc1 (#1748018)
b98e6f
b98e6f
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.69.0-10
b98e6f
- Rebuilt for Python 3.8
b98e6f
b98e6f
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.69.0-9
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
b98e6f
b98e6f
* Fri May 10 2019 Jonathan Wakely <jwakely@redhat.com> - 1.69.0-8
b98e6f
- Fix Obsoletes tag to remove _isa (#1706079)
b98e6f
b98e6f
* Tue May 07 2019 Jonathan Wakely <jwakely@redhat.com> - 1.69.0-7
b98e6f
- Make main package obsolete old boost-signals subpackage (#1706079)
b98e6f
b98e6f
* Thu Feb 14 2019 Jonathan Wakely <jwakely@redhat.com> - 1.69.0-6
b98e6f
- Add patch for out-of-bounds vector access in Boost.MPI
b98e6f
b98e6f
* Thu Feb 14 2019 Orion Poplawski <orion@nwra.com> - 1.69.0-5
b98e6f
- Rebuild for openmpi 3.1.3
b98e6f
b98e6f
* Tue Feb 12 2019 Jonathan Wakely <jwakely@redhat.com> - 1.69.0-4
b98e6f
- Patch Boost.Random to fix warning (#1673669)
b98e6f
b98e6f
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.69.0-3
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
b98e6f
b98e6f
* Wed Jan 23 2019 Pete Walter <pwalter@fedoraproject.org> - 1.69.0-2
b98e6f
- Rebuild for ICU 63
b98e6f
b98e6f
* Sat Dec 15 2018 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.69.0-1
b98e6f
- Rebase to 1.69.0
b98e6f
- Dropped library: Boost.Signals (now replaced by header-only Boost.Signals2)
b98e6f
b98e6f
* Sat Dec 01 2018 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.68.0-1
b98e6f
- Rebase to 1.68.0
b98e6f
- New library: Boost.Contract
b98e6f
- The Python-related shared libraries now carry the full Python version,
b98e6f
  eg _python27.so and _python37.so
b98e6f
- Drop patches:
b98e6f
    deleted: boost-1.66.0-address-model.patch
b98e6f
    deleted: boost-1.66.0-compute.patch
b98e6f
    deleted: boost-1.66.0-numpy3.patch
b98e6f
    deleted: boost-1.66.0-python37.patch
b98e6f
    deleted: boost-1.66.0-spirit-abs-overflow.patch
b98e6f
b98e6f
* Thu Sep 27 2018 Owen Taylor <otaylor@redhat.com> - 1.66.0-15
b98e6f
- Disable openmpi and mpich for Flatpak-bundled builds
b98e6f
b98e6f
* Thu Aug 23 2018 Jonathan Wakely <jwakely@redhat.com> - 1.66.0-14
b98e6f
- Fix permissions and python shebang of Boost.Build files
b98e6f
b98e6f
* Wed Jul 18 2018 Jonathan Wakely <jwakely@redhat.com> - 1.66.0-14
b98e6f
- Patch numpy for Python 3 (#1596468)
b98e6f
b98e6f
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.66.0-13
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
b98e6f
b98e6f
* Tue Jul 10 2018 Pete Walter <pwalter@fedoraproject.org> - 1.66.0-12
b98e6f
- Rebuild for ICU 62
b98e6f
b98e6f
* Tue Jun 19 2018 Jonathan Wakely <jwakely@redhat.com> - 1.66.0-11
b98e6f
- Add patch to fix build with Python 3.7
b98e6f
b98e6f
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.66.0-11
b98e6f
- Rebuilt for Python 3.7
b98e6f
b98e6f
* Mon Jun 04 2018 Jonathan Wakely <jwakely@redhat.com> - 1.66.0-10
b98e6f
- Add patch for Boost.Compute (#1585515)
b98e6f
b98e6f
* Tue May 01 2018 Jonathan Wakely <jwakely@redhat.com> - 1.66.0-9
b98e6f
- Fix Provides: and Obsoletes: tags for renamed python2 subpackages
b98e6f
- Remove old Provides: and Obsoletes: tags for odeint packages
b98e6f
- Remove old Provides: and Obsoletes: tags for mpich2 packages
b98e6f
- Remove old Provides: and Obsoletes: tags for boost-devel-static
b98e6f
- Make Requires: for boost-container unconditional
b98e6f
b98e6f
* Mon Apr 30 2018 Pete Walter <pwalter@fedoraproject.org> - 1.66.0-8
b98e6f
- Rebuild for ICU 61.1
b98e6f
b98e6f
* Fri Apr 27 2018 Jonathan Wakely <jwakely@redhat.com> - 1.66.0-7
b98e6f
- Remove Requires: boost-openmpi-python from boost-openmpi-devel
b98e6f
b98e6f
* Thu Apr 26 2018 Jonathan Wakely <jwakely@redhat.com> - 1.66.0-6
b98e6f
- Remove main package dependency on boost-python and boost-numpy (#1569483)
b98e6f
- Rename all subpackages using python2 from boost-xxx to boost-xxx2.
b98e6f
- Split new subpackage boost-python2-devel out of boost-devel.
b98e6f
- Split new subpackage boost-openmpi-python2-devel out of boost-openmpi-devel.
b98e6f
- Split new subpackage boost-mpich-python2-devel out of boost-mpich-devel.
b98e6f
- Enable conditional build for python2 packages.
b98e6f
- Drop ver.py source file and use python2_version and python3_version macros.
b98e6f
- Use shell variable for Python 3 ABI flags instead of global macro.
b98e6f
b98e6f
* Tue Feb 27 2018 Jonathan Wakely <jwakely@redhat.com> - 1.66.0-5
b98e6f
- Ensure boost metapackage installs boost-container and boost-stacktrace.
b98e6f
b98e6f
* Fri Feb 23 2018 Jonathan Wakely <jwakely@redhat.com> - 1.66.0-4
b98e6f
- Add patch to fix integer overflow in Boost.Spirit absolute_value (#1545092)
b98e6f
b98e6f
* Thu Feb 15 2018 Jonathan Wakely <jwakely@redhat.com> - 1.66.0-3
b98e6f
- Remove unnecessary Group tags and post/postun scriptlets running ldconfig
b98e6f
b98e6f
* Wed Feb 07 2018 Jonathan Wakely <jwakely@redhat.com> - 1.66.0-2
b98e6f
- Add RPM_OPT_FLAGS and RPM_LD_FLAGS to build flags for bjam (#1541035).
b98e6f
b98e6f
* Mon Feb 05 2018 Jonathan Wakely <jwakely@redhat.com> - 1.66.0-1
b98e6f
- Add RPM_LD_FLAGS to Jamfile and patch build.sh to use RPM flags (#1541035).
b98e6f
b98e6f
* Fri Jan 19 2018 Jonathan Wakely <jwakely@redhat.com> - 1.66.0-0.1
b98e6f
- Rebase to 1.66.0
b98e6f
  - Do not pass --without-coroutine2 to b2
b98e6f
  - Drop patches:
b98e6f
    boost-1.63.0-dual-python-build-v2.patch
b98e6f
    boost-1.64.0-mpi-get_data.patch
b98e6f
    boost-1.64.0-serialization-make_array.patch
b98e6f
    boost-1.64.0-icl-ttp-matching.patch
b98e6f
    boost-1.64.0-icl-undefined-shift.patch
b98e6f
b98e6f
* Wed Jan 17 2018 Jonathan Wakely <jwakely@redhat.com> - 1.64.0-7
b98e6f
- Restore "Provides: boost-python" for boost-python2
b98e6f
b98e6f
* Thu Dec 07 2017 Jonathan Wakely <jwakely@redhat.com> - 1.64.0-6
b98e6f
- Patch to fix #1516837
b98e6f
b98e6f
* Thu Nov 30 2017 Pete Walter <pwalter@fedoraproject.org> - 1.64.0-5
b98e6f
- Rebuild for ICU 60.1
b98e6f
b98e6f
* Mon Sep 25 2017 Jonathan Wakely <jwakely@redhat.com> - 1.64.0-4
b98e6f
- Fix some rpmlint issues
b98e6f
- Remove Requires for libquadmath (explicit-lib-dependency)
b98e6f
- Remove executable bits on header files (spurious-executable-perm)
b98e6f
- Adjust boost.wave %%description (spelling-error)
b98e6f
b98e6f
* Wed Sep 13 2017 Jonathan Wakely <jwakely@redhat.com> - 1.64.0-3
b98e6f
- Rename python2-boost to boost-python2
b98e6f
b98e6f
* Tue Sep 12 2017 Jonathan Wakely <jwakely@redhat.com> - 1.64.0-2
b98e6f
- Patch to fix #1485641
b98e6f
b98e6f
* Wed Sep 06 2017 Jonathan Wakely <jwakely@redhat.com> - 1.64.0-1
b98e6f
- Fix descriptions
b98e6f
b98e6f
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.64.0-0.8
b98e6f
- Add Provides for the old name without %%_isa
b98e6f
b98e6f
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.64.0-0.7
b98e6f
- Python 2 binary package renamed to python2-boost
b98e6f
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
b98e6f
b98e6f
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.64.0-0.6
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
b98e6f
b98e6f
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.64.0-0.5
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b98e6f
b98e6f
* Mon Jul 24 2017 Björn Esser <besser82@fedoraproject.org> - 1.64.0-0.4
b98e6f
- Drop obsolete patch for mpi serialization make_array
b98e6f
- Purge unused patches from repo
b98e6f
b98e6f
* Mon Jul 24 2017 Björn Esser <besser82@fedoraproject.org> - 1.64.0-0.3
b98e6f
- Add patch to fix make_array in serialization
b98e6f
b98e6f
* Fri Jul 21 2017 Kalev Lember <klember@redhat.com> - 1.64.0-0.2
b98e6f
- Rebuild for std::__once_functor linking issue on ppc64le (#1470692)
b98e6f
b98e6f
* Sat Jul 01 2017 Jonathan Wakely <jwakely@redhat.com> - 1.64.0-0.1
b98e6f
- Rebase to 1.64.0
b98e6f
b98e6f
* Sat Jul 01 2017 Yaakov Selkowitz <yselkowi@redhat.com> - 1.63.0-9
b98e6f
- Add numpy and numpy3 packages (#1451982)
b98e6f
- Fix location of openmpi-python and mpich-python modules
b98e6f
- Add openmpi-python3 and mpich-python3 packages
b98e6f
- Add missing ldconfig post/postun for python3 package
b98e6f
b98e6f
* Sat Jul 01 2017 Jonathan Wakely <jwakely@redhat.com> - 1.63.0-8
b98e6f
- Remove patch for boost::function strict aliasing problem (#1422456)
b98e6f
b98e6f
* Tue Apr 25 2017 Jonathan Wakely <jwakely@redhat.com> - 1.63.0-7
b98e6f
- Rebuild for rpm-mpi-hooks fix (#1435690)
b98e6f
b98e6f
* Wed Apr 05 2017 Jonathan Wakely <jwakely@redhat.com> - 1.63.0-6
b98e6f
- Patch boost::function to fix strict aliasing problem (#1422456)
b98e6f
- Per packaging guidelines don't clean buildroot in %%install and %%clean.
b98e6f
b98e6f
* Sun Mar 12 2017 Peter Robinson <pbrobinson@fedoraproject.org> 1.63.0-5
b98e6f
- Enable OpenMPI/mpich on ppc64le and s390x now they have support
b98e6f
b98e6f
* Thu Feb 16 2017 Jonathan Wakely <jwakely@redhat.com> - 1.63.0-4
b98e6f
- Revert Boost.Build change that breaks building for two Python versions.
b98e6f
b98e6f
* Thu Feb 09 2017 Jonathan Wakely <jwakely@redhat.com> - 1.63.0-3
b98e6f
- Add --without-fiber when Boost.Context is not supported.
b98e6f
b98e6f
* Fri Jan 27 2017 Jonathan Wakely <jwakely@redhat.com> - 1.63.0-2
b98e6f
- Use correct sources for release, not a snapshot.
b98e6f
- Add -Wno-deprecated-declarations to build flags.
b98e6f
b98e6f
* Thu Jan 26 2017 Jonathan Wakely <jwakely@redhat.com> - 1.63.0-1
b98e6f
- Rebase to 1.63.0 (#1401431)
b98e6f
b98e6f
* Tue Dec 20 2016 Miro Hrončok <mhroncok@redhat.com> - 1.60.0-12
b98e6f
- Rebuild for Python 3.6
b98e6f
b98e6f
* Fri Dec 09 2016 Jonathan Wakely <jwakely@redhat.com> - 1.60.0-11
b98e6f
- Add patch for Boost.Asio to fix allocator usage (#1403165)
b98e6f
b98e6f
* Fri Oct 21 2016 Orion Poplawski <orion@cora.nwra.com> - 1.60.0-10
b98e6f
- Rebuild for openmpi 2.0
b98e6f
b98e6f
* Mon Aug 01 2016 Jonathan Wakely <jwakely@redhat.com> - 1.60.0-9
b98e6f
- Add patch for Boost.Python to fix pointer registration (#1358725)
b98e6f
b98e6f
* Tue Jun 28 2016 Jonathan Wakely <jwakely@redhat.com> - 1.60.0-8
b98e6f
- Add patch for Boost.Multiprecision (#1349638)
b98e6f
b98e6f
* Mon Jun 06 2016 Yaakov Selkowitz <yselkowi@redhat.com> - 1.60.0-7
b98e6f
- Drop rpath (#1318383)
b98e6f
b98e6f
* Tue May 03 2016 Jonathan Wakely <jwakely@redhat.com> - 1.60.0-6
b98e6f
- Rebuilt for GCC 6.1 (#1331983)
b98e6f
b98e6f
* Fri Apr 15 2016 David Tardon <dtardon@redhat.com> - 1.60.0-5
b98e6f
- rebuild for ICU 57.1
b98e6f
b98e6f
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.60.0-4
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b98e6f
b98e6f
* Tue Jan 26 2016 Jonathan Wakely <jwakely@redhat.com> 1.60.0-3
b98e6f
- Remove redundant %%defattr statements
b98e6f
b98e6f
* Thu Jan 14 2016 Jonathan Wakely <jwakely@redhat.com> 1.60.0-2
b98e6f
- Make Requires: libquadmath-devel conditional
b98e6f
b98e6f
* Wed Jan 13 2016 Jonathan Wakely <jwakely@redhat.com> 1.60.0-1
b98e6f
- Rebase to 1.60.0
b98e6f
b98e6f
* Fri Dec 11 2015 Dan Horák <dan[at]danny.cz> - 1.59.0-10
b98e6f
- rebuilt for s390
b98e6f
b98e6f
* Tue Nov 24 2015 Jonathan Wakely <jwakely@redhat.com> 1.59.0-9
b98e6f
- do not use arch-specific BuildRequires (#1268267)
b98e6f
b98e6f
* Fri Nov 13 2015 Dan Horák <dan[at]danny.cz> - 1.59.0-8
b98e6f
- disable also the coroutine2 module when context is not available
b98e6f
b98e6f
* Wed Nov 11 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.59.0-7
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
b98e6f
b98e6f
* Wed Oct 28 2015 David Tardon <dtardon@redhat.com> - 1.59.0-6
b98e6f
- rebuild for ICU 56.1
b98e6f
b98e6f
* Tue Sep 15 2015 Orion Poplawski <orion@cora.nwra.com> - 1.59.0-5
b98e6f
- Rebuild for openmpi 1.10.0
b98e6f
b98e6f
* Mon Sep 14 2015 Jonathan Wakely <jwakely@redhat.com> 1.59.0-4
b98e6f
- Patch Boost.Test to fix #1262444
b98e6f
b98e6f
* Wed Sep 02 2015 Jonathan Wakely <jwakely@redhat.com> - 1.59.0-3
b98e6f
- Rebuilt for Boost 1.59
b98e6f
b98e6f
* Wed Sep 02 2015 Jonathan Wakely <jwakely@redhat.com> 1.59.0-2
b98e6f
- Add patch for Boost.Python bug.
b98e6f
b98e6f
* Wed Aug 26 2015 Jonathan Wakely <jwakely@redhat.com> 1.59.0-1
b98e6f
- Rebase to 1.59.0
b98e6f
b98e6f
* Tue Aug 25 2015 Jonathan Wakely <jwakely@redhat.com> 1.58.0-9
b98e6f
- Add boost-doctools subpackage (#1244268).
b98e6f
b98e6f
* Mon Aug 24 2015 Jonathan Wakely <jwakely@redhat.com> 1.58.0-8
b98e6f
- Use %%license for license files.
b98e6f
b98e6f
* Fri Aug 21 2015 Jonathan Wakely <jwakely@redhat.com> 1.58.0-7
b98e6f
- Bump release to match F23 update.
b98e6f
b98e6f
* Mon Aug 10 2015 Sandro Mani <manisandro@gmail.com> - 1.58.0-6
b98e6f
- Rebuild for RPM MPI Requires Provides Change
b98e6f
b98e6f
* Wed Aug 05 2015 Jonathan Wakely <jwakely@redhat.com> 1.58.0-5
b98e6f
- Patch incorrect placement of BOOST_UBLAS_INLINE macros.
b98e6f
b98e6f
* Tue Aug 04 2015 Jonathan Wakely <jwakely@redhat.com> 1.58.0-4
b98e6f
- Patch to prevent address model being set by Boost.Build.
b98e6f
b98e6f
* Mon Jul 27 2015 Jonathan Wakely <jwakely@redhat.com> 1.58.0-3
b98e6f
- Patch for missing include (boost-1.58.0-variant-includes.patch).
b98e6f
b98e6f
* Thu Jul 23 2015 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 1.58.0-2
b98e6f
- Re-enable boost::context on AArch64.
b98e6f
b98e6f
* Fri Jul 17 2015 Jonathan Wakely <jwakely@redhat.com> - 1.58.0-1
b98e6f
- Rebase to 1.58.0
b98e6f
b98e6f
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.57.0-8
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b98e6f
b98e6f
* Mon Apr 13 2015 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 1.57.0-7
b98e6f
- Add AArch64 support for boost::context
b98e6f
  - Numbered patches are cherry-picked from upstream repository.
b98e6f
  - partial-revert-of-0002 removes some build definitions which are defined
b98e6f
    in coroutine/
b98e6f
  - last patch changes ABI names - taken from boost ML
b98e6f
b98e6f
* Sun Apr 12 2015 David Tardon <dtardon@redhat.com> - 1.57.0-6
b98e6f
- rebuild for yet another C++ ABI break
b98e6f
b98e6f
* Mon Mar 16 2015 Than Ngo <than@redhat.com> 1.57.0-5
b98e6f
- rebuild against new gcc
b98e6f
b98e6f
* Wed Feb 18 2015 Petr Machata <pmachata@redhat.com> - 1.57.0-4
b98e6f
- Fix template <class T> class boost::rv, which for union T's inherits
b98e6f
  off them.  (boost-1.57.0-move-is_class.patch)
b98e6f
b98e6f
* Mon Feb  9 2015 Petr Machata <pmachata@redhat.com> - 1.57.0-3
b98e6f
- Honor RPM_OPT_FLAGS (boost-1.57.0-build-optflags.patch)
b98e6f
  - And don't pass -ftemplate-depth at all.  The intention there was
b98e6f
    to increase the default instantiation depth above the default 17,
b98e6f
    but GCC defaults to 900 anyway, and requesting 128 actually lowers
b98e6f
    the limit.  (The same patch.)
b98e6f
b98e6f
- Add a patch to fix incorrect operator< in Boost.UUID
b98e6f
  (boost-1.57.0-uuid-comparison.patch)
b98e6f
b98e6f
* Thu Jan 29 2015 Petr Machata <pmachata@redhat.com> - 1.57.0-2
b98e6f
- Change Provides: and Obosoletes: back to not use %%{?_isa}
b98e6f
- Enable Boost.Context on PowerPC, it should now be supported
b98e6f
- Add a patch for Boost.Signal2 to include weak_ptr where it uses it
b98e6f
  (boost-1.57.0-signals2-weak_ptr.patch)
b98e6f
b98e6f
* Tue Jan 20 2015 Petr Machata <pmachata@redhat.com> - 1.57.0-1
b98e6f
- Rebase to 1.57.0
b98e6f
  - Drop patches:
b98e6f
    boost-1.54.0-bind-static_assert.patch
b98e6f
    boost-1.54.0-concept-unused_typedef.patch
b98e6f
    boost-1.54.0-static_warning-unused_typedef.patch
b98e6f
    boost-1.54.0-tuple-unused_typedef.patch
b98e6f
    boost-1.54.0-random-unused_typedef.patch
b98e6f
    boost-1.54.0-date_time-unused_typedef.patch
b98e6f
    boost-1.54.0-date_time-unused_typedef-2.patch
b98e6f
    boost-1.54.0-spirit-unused_typedef.patch
b98e6f
    boost-1.54.0-numeric-unused_typedef.patch
b98e6f
    boost-1.54.0-property_tree-unused_typedef.patch
b98e6f
    boost-1.55.0-program_options-class_attribute.patch
b98e6f
    boost-1.55.0-archive-init_order.patch
b98e6f
    boost-1.55.0-xpressive-unused_typedefs.patch
b98e6f
    boost-1.55.0-spirit-unused_typedefs.patch
b98e6f
    boost-1.54.0-smart_ptr-shared_ptr_at.patch
b98e6f
    boost-1.55.0-atomic-int128_1.patch
b98e6f
    boost-1.55.0-atomic-int128_2.patch
b98e6f
b98e6f
  - Rebase patches:
b98e6f
    boost-1.54.0-mpl-print.patch -> boost-1.57.0-mpl-print.patch
b98e6f
    boost-1.54.0-spirit-unused_typedef-2.patch -> boost-1.57.0-spirit-unused_typedef.patch
b98e6f
    boost-1.54.0-pool-test_linking.patch -> boost-1.57.0-pool-test_linking.patch
b98e6f
b98e6f
  - Add new subpackages boost-container
b98e6f
b98e6f
* Fri Jan  9 2015 Petr Machata <pmachata@redhat.com> - 1.55.0-8
b98e6f
- Build libboost_python and libboost_python3 such that they depend on
b98e6f
  their respective libpython's.
b98e6f
  (boost-1.55.0-python-libpython_dep.patch,
b98e6f
  boost-1.55.0-python-abi_letters.patch)
b98e6f
- Fix Boost.Python test suite so that PyImport_AppendInittab is called
b98e6f
  before PyInitialize, which broke the test suite with Python 3.
b98e6f
  (boost-1.55.0-python-test-PyImport_AppendInittab.patch)
b98e6f
b98e6f
* Thu Jan  8 2015 Petr Machata <pmachata@redhat.com> - 1.55.0-7
b98e6f
- Change Requires: and other package references to use %%{?_isa}, so
b98e6f
  that dependencies are arch-aware.
b98e6f
- Drop two obsolete conditions testing Fedora >= 10 (but leave RHEL >=
b98e6f
  6 for potential EPEL deployment).
b98e6f
b98e6f
* Fri Jan  2 2015 Petr Machata <pmachata@redhat.com> - 1.55.0-6
b98e6f
- Boost.Atomic: Fixed incorrect initialization of 128-bit values, when
b98e6f
  no native support for 128-bit integers is available.
b98e6f
  (boost-1.55.0-atomic-int128_1.patch,
b98e6f
  boost-1.55.0-atomic-int128_2.patch)
b98e6f
b98e6f
* Wed Nov 12 2014 Petr Machata <pmachata@redhat.com> - 1.55.0-5
b98e6f
- Fix boost::shared_ptr<T>::operator[], which was ill-formed for
b98e6f
  non-array T's.  (boost-1.54.0-smart_ptr-shared_ptr_at.patch)
b98e6f
b98e6f
* Tue Aug 26 2014 David Tardon <dtardon@redhat.com> - 1.55.0-4
b98e6f
- rebuild for ICU 53.1
b98e6f
b98e6f
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.55.0-3
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
b98e6f
b98e6f
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.55.0-2
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b98e6f
b98e6f
* Mon May 12 2014 Petr Machata <pmachata@redhat.com> - 1.55.0-1
b98e6f
- Add a new sub-package boost-coroutine
b98e6f
- Annotate or drop some unused typedefs
b98e6f
  (boost-1.55.0-python-unused_typedefs.patch,
b98e6f
  boost-1.55.0-spirit-unused_typedefs.patch,
b98e6f
  boost-1.55.0-xpressive-unused_typedefs.patch)
b98e6f
- Add a patch for wrong initialization order
b98e6f
  (boost-1.55.0-archive-init_order.patch)
b98e6f
- Add a patch for misplaced attribute at class declaration
b98e6f
  (boost-1.55.0-program_options-class_attribute.patch)
b98e6f
- Drop 001-coroutine.patch, 002-date-time.patch, 003-log.patch,
b98e6f
  boost-1.53.0-attribute.patch,
b98e6f
  boost-1.54.0-__GLIBC_HAVE_LONG_LONG.patch,
b98e6f
  boost-1.54.0-algorithm-unused_typedef.patch,
b98e6f
  boost-1.54.0-context-execstack.patch,
b98e6f
  boost-1.54.0-graph-unused_typedef.patch,
b98e6f
  boost-1.54.0-interprocess-atomic_cas32-ppc.patch,
b98e6f
  boost-1.54.0-lexical_cast-int128.patch,
b98e6f
  boost-1.54.0-math-unused_typedef-2.patch,
b98e6f
  boost-1.54.0-math-unused_typedef.patch,
b98e6f
  boost-1.54.0-mpi-unused_typedef.patch,
b98e6f
  boost-1.54.0-multiprecision-unused_typedef.patch,
b98e6f
  boost-1.54.0-thread-cond_variable_shadow.patch,
b98e6f
  boost-1.54.0-thread-link_atomic.patch,
b98e6f
  boost-1.54.0-unordered-unused_typedef.patch,
b98e6f
  boost-1.54.0-xpressive-unused_typedef.patch,
b98e6f
b98e6f
* Tue Mar 18 2014 Petr Machata <pmachata@redhat.com> - 1.54.0-14
b98e6f
- Fix a noexecstack patch for ARM, enable Boost.Context on ARM.
b98e6f
  (boost-1.54.0-context-execstack.patch)
b98e6f
b98e6f
* Tue Mar 18 2014 Björn Esser <bjoern.esser@gmail.com> - 1.54.0-13
b98e6f
- rebuilt for mpich-3.1
b98e6f
b98e6f
* Mon Mar 17 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.54.0-12
b98e6f
- Enable MPICH and OpenMPI support on aarch64
b98e6f
b98e6f
* Wed Feb 12 2014 Petr Machata <pmachata@redhat.com> - 1.54.0-11
b98e6f
- Rebuild for ICU soname bump.
b98e6f
b98e6f
* Thu Jan  9 2014 Petr Machata <pmachata@redhat.com> - 1.54.0-10
b98e6f
- Add ppc64le to the list of arches that OpenMPI and MPICH don't
b98e6f
  support.
b98e6f
b98e6f
* Wed Dec 18 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.54.0-9
b98e6f
- Enable MPICH and OpenMPI support on ARM as it's long had them both
b98e6f
b98e6f
* Fri Dec 13 2013 Petr Machata <pmachata@redhat.com> - 1.54.0-8
b98e6f
- Add aarch64 into the list of arches that OpenMPI does not support.
b98e6f
b98e6f
* Sun Dec  1 2013 Petr Machata <pmachata@redhat.com> - 1.54.0-7
b98e6f
- Fix shameful blunders in implementation of the previous fix: don't
b98e6f
  hard-code path to has_atomic_flag_lockfree binary; use m4 instead of
b98e6f
  cpp, cpp in F19+ prefixes output with a bunch of comments.
b98e6f
b98e6f
* Wed Nov 27 2013 Petr Machata <pmachata@redhat.com> - 1.54.0-6
b98e6f
- Add libboost_atomic.so.* to the libboost_thread.so linker script on
b98e6f
  architectures that need it.
b98e6f
b98e6f
* Thu Aug 29 2013 Petr Machata <pmachata@redhat.com> - 1.54.0-5
b98e6f
- Fix atomic_cas32 (thanks Jaroslav Škarvada for figuring out where
b98e6f
  the problem is) (boost-1.54.0-interprocess-atomic_cas32-ppc.patch)
b98e6f
b98e6f
* Fri Aug 23 2013 Petr Machata <pmachata@redhat.com> - 1.54.0-4
b98e6f
- Fix compilation of Boost.Pool test cases
b98e6f
  (boost-1.54.0-pool-test_linking.patch)
b98e6f
- Fix -Wshadow warnings in Boost.Pool
b98e6f
  (boost-1.54.0-pool-max_chunks_shadow.patch)
b98e6f
- -Wshadow warnings in Boost.Thread
b98e6f
  (boost-1.54.0-thread-cond_variable_shadow.patch)
b98e6f
- libboost_thread.so.* lacks DT_NEEDED on libboost_atomic.so.* on
b98e6f
  s390.  (boost-1.54.0-thread-link_atomic.patch)
b98e6f
b98e6f
* Mon Aug 19 2013 Petr Machata <pmachata@redhat.com> - 1.54.0-3
b98e6f
- Bump odeint obsoletes and provides a notch to cover a build that
b98e6f
  sneaked into rawhide (bug 892850).
b98e6f
b98e6f
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 1.54.0-2
b98e6f
- Fix detection of availability of 128-bit integers in
b98e6f
  Boost.LexicalCast (boost-1.54.0-lexical_cast-int128.patch)
b98e6f
b98e6f
* Fri Jul 26 2013 Petr Machata <pmachata@redhat.com> - 1.54.0-1
b98e6f
- Rebase to 1.54.0
b98e6f
  - Add new sub-package boost-log
b98e6f
  - Boost.Coroutine is only enabled if Boost.Context is
b98e6f
  - Drop boost-1.53-context.patch (interesting parts now upstream)
b98e6f
  - Drop boost-1.50.0-foreach.patch (#define foreach now discouraged)
b98e6f
  - Drop several unused typedef patches that are now upstream.
b98e6f
    (boost-1.53.0-static_assert-unused_typedef.patch,
b98e6f
    boost-1.53.0-fpclassify-unused_typedef.patch,
b98e6f
    boost-1.53.0-math-unused_typedef-3.patch,
b98e6f
    boost-1.53.0-lexical_cast-unused_typedef.patch,
b98e6f
    boost-1.53.0-regex-unused_typedef.patch,
b98e6f
    boost-1.53.0-thread-unused_typedef.patch)
b98e6f
  - Add release notes patches (001-coroutine.patch,
b98e6f
    002-date-time.patch, 003-log.patch)
b98e6f
  - Add additional unused typedefs in Boost.Math
b98e6f
    (boost-1.54.0-math-unused_typedef-2.patch)
b98e6f
- Drop symlinks from libboost_{thread,locale,atomic}.so -> *-mt.so,
b98e6f
  which we don't need anymore, as we ditched the tagged layout.
b98e6f
b98e6f
* Fri Jul 26 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-12
b98e6f
- There's no physical difference between single-threaded and
b98e6f
  multi-threaded builds, except some libraries are only built in
b98e6f
  multi-threaded mode.  So build everything in multi-threaded mode,
b98e6f
  and ditch tagged layout, which we don't need anymore.
b98e6f
  https://bugzilla.redhat.com/show_bug.cgi?id=971956
b98e6f
b98e6f
* Fri Jul 26 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-11
b98e6f
- Add Obsoletes for odeint (bug 892850)
b98e6f
b98e6f
* Thu Jul 25 2013 Deji Akingunola <dakingun@gmail.com> - 1.53.0-10
b98e6f
- Add Provides and Obsoletes for the mpich2->mpich renames
b98e6f
b98e6f
* Wed Jul 24 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-9
b98e6f
- Add explicit dependencies between some of the boost sub-packages
b98e6f
b98e6f
* Tue Jul 23 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-8
b98e6f
- MPICH2 became MPICH -- rename subpackages, dependencies and
b98e6f
  conditionals.
b98e6f
- Install supporting files (images etc.) for documentation
b98e6f
  (courtesy Marcel Metz, bug 985593)
b98e6f
- Add many patches for silencing unused local typedef warnings
b98e6f
  (boost-1.53.0-static_assert-unused_typedef.patch,
b98e6f
  boost-1.54.0-bind-static_assert.patch,
b98e6f
  boost-1.54.0-concept-unused_typedef.patch,
b98e6f
  boost-1.54.0-static_warning-unused_typedef.patch,
b98e6f
  boost-1.54.0-math-unused_typedef.patch,
b98e6f
  boost-1.54.0-math-unused_typedef-2.patch,
b98e6f
  boost-1.53.0-fpclassify-unused_typedef.patch,
b98e6f
  boost-1.54.0-math-unused_typedef-3.patch,
b98e6f
  boost-1.54.0-tuple-unused_typedef.patch,
b98e6f
  boost-1.54.0-random-unused_typedef.patch,
b98e6f
  boost-1.54.0-date_time-unused_typedef.patch,
b98e6f
  boost-1.54.0-date_time-unused_typedef-2.patch,
b98e6f
  boost-1.54.0-spirit-unused_typedef.patch,
b98e6f
  boost-1.54.0-spirit-unused_typedef-2.patch,
b98e6f
  boost-1.54.0-numeric-unused_typedef.patch,
b98e6f
  boost-1.54.0-multiprecision-unused_typedef.patch,
b98e6f
  boost-1.53.0-lexical_cast-unused_typedef.patch,
b98e6f
  boost-1.53.0-regex-unused_typedef.patch,
b98e6f
  boost-1.53.0-thread-unused_typedef.patch,
b98e6f
  boost-1.54.0-unordered-unused_typedef.patch,
b98e6f
  boost-1.54.0-algorithm-unused_typedef.patch,
b98e6f
  boost-1.53.0-graph-unused_typedef.patch,
b98e6f
  boost-1.54.0-locale-unused_typedef.patch,
b98e6f
  boost-1.54.0-property_tree-unused_typedef.patch,
b98e6f
  boost-1.54.0-xpressive-unused_typedef.patch,
b98e6f
  boost-1.54.0-mpi-unused_typedef.patch,
b98e6f
  boost-1.54.0-python-unused_typedef.patch)
b98e6f
- Add a patch to turn off execstack in Boost.Context
b98e6f
  (boost-1.54.0-context-execstack.patch)
b98e6f
- Fix boost::mpl::print on GCC (boost-1.54.0-mpl-print.patch)
b98e6f
- Add symlinks for /usr/lib/libboost_{thread,locale}.so -> *-mt.so
b98e6f
b98e6f
* Wed Jun 26 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-7
b98e6f
- Fix detection of availability of {,u}int64_t in glibc headers.
b98e6f
  (boost-1.53.0-__GLIBC_HAVE_LONG_LONG.patch)
b98e6f
b98e6f
* Wed Mar  6 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-6
b98e6f
- libboost_context.so must be guarded by conditional in the expanded
b98e6f
  filelist at boost-devel.
b98e6f
b98e6f
* Tue Mar  5 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-5
b98e6f
- Split off Python 3 DSO symlink to a separate subpackage
b98e6f
  boost-python3-devel.  This makes it possible to install
b98e6f
  boost-devel separately, without Python 3 support.
b98e6f
- Build with -fno-strict-aliasing
b98e6f
b98e6f
* Wed Feb 27 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-4
b98e6f
- Make Boost.Context support conditional
b98e6f
b98e6f
* Mon Feb 11 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-3
b98e6f
- Fix Boost.Context on ppc64
b98e6f
- Future-proof the linker script boost_thread-mt.so
b98e6f
b98e6f
* Sun Feb 10 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.53.0-2
b98e6f
- Fixed the libboost_thread-mt.so script (which wrongly referred to Boost-1.50)
b98e6f
b98e6f
* Fri Feb  8 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-1
b98e6f
- Upstream 1.53.0 beta1
b98e6f
  - Drop boost-1.50.0-signals-erase.patch
b98e6f
  - Port boost-1.50.0-attribute.patch
b98e6f
  - Drop boost-1.50.0-polygon.patch
b98e6f
  - New sub-packages boost-atomic and boost-context
b98e6f
b98e6f
* Sat Jan 26 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.50.0-7
b98e6f
- Rebuild for icu soname bump
b98e6f
b98e6f
* Sat Nov 03 2012 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.50.0-6
b98e6f
- Rebuild for the new MPICH2 (and libmpich2 soname bump)
b98e6f
b98e6f
* Thu Aug 16 2012 Petr Machata <pmachata@redhat.com> - 1.50.0-5
b98e6f
- Update %%description to reflect current state of C++
b98e6f
  standardization.  Courtesy of Jonathan Wakely.  (#837813)
b98e6f
b98e6f
* Wed Aug 15 2012 Petr Machata <pmachata@redhat.com> - 1.50.0-4
b98e6f
- Override boost_thread-mt.so with a linker script that brings in
b98e6f
  Boost.System DSO as well.
b98e6f
b98e6f
* Wed Aug  8 2012 Petr Machata <pmachata@redhat.com> - 1.50.0-3
b98e6f
- boost-python3 shouldn't be under the overall boost umbrella
b98e6f
b98e6f
* Tue Aug  7 2012 Petr Machata <pmachata@redhat.com> - 1.50.0-2
b98e6f
- Enable Python 3 builds.  This is still disabled in Boost MPI, which
b98e6f
  does not seem to support Python 3
b98e6f
b98e6f
* Thu Jul 26 2012 Petr Machata <pmachata@redhat.com> - 1.50.0-1
b98e6f
- Upstream 1.50
b98e6f
  - boost-cmake-soname.patch drop, upstream handles soname well, and
b98e6f
    we haven't been doing manual numbering for several years now
b98e6f
  - boost-1.48.0-cmakeify-full.patch drop, not necessary for bjam
b98e6f
  - Rebase many patches, port others, courtesy of Denis Arnaud:
b98e6f
    - boost-1.48.0-exceptions.patch drop
b98e6f
    - boost-1.48.0-lexical_cast-incomplete.patch drop
b98e6f
    - boost-1.48.0-gcc47-pthreads.patch drop
b98e6f
    - boost-1.48.0-long-double.patch drop
b98e6f
    - boost-1.48.0-xtime.patch drop
b98e6f
    - boost-1.48.0-locale.patch drop
b98e6f
    - boost-1.48.0-signals-erase.patch port
b98e6f
    - boost-1.48.0-fix-non-utf8-files.patch port
b98e6f
    - boost-1.48.0-foreach.patch port
b98e6f
    - boost-1.48.0-attribute.patch port
b98e6f
    - boost-1.48.0-long-double-1.patch port
b98e6f
    - boost-1.48.0-polygon.patch port
b98e6f
    - boost-1.48.0-pool.patch port
b98e6f
b98e6f
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.48.0-17
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b98e6f
b98e6f
* Thu Jun 21 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-16
b98e6f
- Build Boost.Locale backends
b98e6f
- Resolves: #832265
b98e6f
b98e6f
* Wed Jun  6 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-15
b98e6f
- In Boost.Pool, be careful not to overflow allocated chunk size.
b98e6f
- Resolves: #828857
b98e6f
b98e6f
* Thu May 24 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-14
b98e6f
- Don't attempt to install Python 3 portions of boost when given
b98e6f
  --without python3
b98e6f
- glibc newly defines a macro TIME_UTC, which collides with
b98e6f
  boost::TIME_UTC.  We can't avoid expanding that macro, but the value
b98e6f
  happens to be the same as that of boost::TIME_UTC.  So drop enum
b98e6f
  xtime_clock_types.  Update boost to use macro TIME_UTC instead of
b98e6f
  the scoped enum value.  External clients will have to do the same.
b98e6f
- Resolves: #824810
b98e6f
- BR on hwloc-devel shouldn't be required anymore (see #814798)
b98e6f
b98e6f
* Wed May  2 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-13
b98e6f
- Support building boost-python against Python 3
b98e6f
- Resolves: #807780
b98e6f
b98e6f
* Sun Apr 22 2012 Robert Scheck <robert@fedoraproject.org> - 1.48.0-12
b98e6f
- Included -math subpackage into umbrella package
b98e6f
- Added missing /sbin/ldconfig for -math subpackage
b98e6f
b98e6f
* Fri Apr 20 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-11
b98e6f
- Add hwloc-devel BR to work around a probable bug in openmpi-devel
b98e6f
  which fails to pull it in
b98e6f
b98e6f
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.48.0-10
b98e6f
- Rebuilt for c++ ABI breakage
b98e6f
b98e6f
* Wed Jan 25 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-9
b98e6f
- Only build the long double math libraries on arches that support
b98e6f
  long double.
b98e6f
- ARM was considered unsupporting, because libc defines
b98e6f
  __NO_LONG_DOUBLE_MATH.  Ignore this setting, ARM has perfectly
b98e6f
  working long double that just happens to be only as long as double.
b98e6f
- Resolves: #783660
b98e6f
- Add a missing sort adaptor include to boost polygon
b98e6f
- Resolves: #784654
b98e6f
b98e6f
* Mon Jan 16 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-8
b98e6f
- Add underscores around several uses of __attribute__((X)) to prevent
b98e6f
  interactions with user-defined macro X
b98e6f
- Resolves: #781859
b98e6f
b98e6f
* Sat Jan 14 2012 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.48.0-7
b98e6f
- Added source source files for mingw cross-compilation of Boost.Locale.
b98e6f
- Resolves: #781751
b98e6f
b98e6f
* Sat Jan  7 2012 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.48.0-6
b98e6f
- Added the Boost.Timer sub-package. Resolves: #772397
b98e6f
b98e6f
* Wed Jan  4 2012 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.48.0-5
b98e6f
- Integrated into "upstream" (CMake-ified Boost) the Boost.TR1/Math patch.
b98e6f
b98e6f
* Wed Jan  4 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-4
b98e6f
- Build math portion of Boost.TR1, package DSOs in boost-math.
b98e6f
- Resolves: #771370
b98e6f
b98e6f
* Tue Jan  3 2012 Petr Machata <pmachata@redhat.com> - 1.48.0-3
b98e6f
- Add an upstream patch for BOOST_ENABLE_THREADS
b98e6f
b98e6f
* Tue Nov 29 2011 Petr Machata <pmachata@redhat.com> - 1.48.0-2
b98e6f
- Add an upstream patch for BOOST_FOREACH declaration issue #756005
b98e6f
- Add a proposed patch for error in boost lexical_cast #757385
b98e6f
b98e6f
* Sat Nov 19 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.48.0-1
b98e6f
- Upgrade to Boost-1.48.0, adding two new header-only components
b98e6f
  (Container and Move) and a new library (Locale).
b98e6f
- Resolves: #754865
b98e6f
- Added a patch with a manual page for the bjam executable.
b98e6f
- Added a patch to fix the non-UTF8-encoded example source file.
b98e6f
- Re-worked a little bit the example section, so as to fix the
b98e6f
  DOS-formatted and the ISO-8859-encoded files.
b98e6f
b98e6f
* Thu Nov  3 2011 Petr Machata <pmachata@redhat.com> - 1.47.0-7
b98e6f
- Use <boost/tr1/tuple> instead of C++11 header <tuple> in boost math.
b98e6f
- Resolves: #751210
b98e6f
b98e6f
* Fri Sep  9 2011 Petr Machata <pmachata@redhat.com> - 1.47.0-6
b98e6f
- Rebuild for libicu soname bump
b98e6f
- Hack /bin back to PATH after MPI module unload
b98e6f
- Resolves: #736890
b98e6f
b98e6f
* Tue Aug 30 2011 Petr Machata <pmachata@redhat.com> - 1.47.0-4
b98e6f
- Drop BR bzip2-libs, which is brought it via bzip2-devel
b98e6f
- Source->Source0
b98e6f
- Drop unnecessary BuildRoot tag
b98e6f
- Update License tag to include all licenses that are found in
b98e6f
  sources.  Python license is at the main package, not to the python
b98e6f
  sub-package, because python22_fixed.h is in -devel.
b98e6f
  - Related: #673839
b98e6f
- Resolves: #225622
b98e6f
b98e6f
* Tue Jul 26 2011 Petr Machata <pmachata@redhat.com> - 1.47.0-3
b98e6f
- Package examples
b98e6f
- Resolves: #722844
b98e6f
b98e6f
* Fri Jul 22 2011 Petr Machata <pmachata@redhat.com> - 1.47.0-2
b98e6f
- Convert two throws in boost/numeric/conversion to
b98e6f
  boost::throw_exception to allow compilation with -fno-exception
b98e6f
- Resolves: #724015
b98e6f
b98e6f
* Thu Jul 14 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.47.0-1
b98e6f
- Upgrade to Boost-1.47.0, adding three new header-only components
b98e6f
  (Geometry, Phoenix, Ratio) and a new library (Chrono).
b98e6f
b98e6f
* Sat Jun 18 2011 Peter Robinson <pbrobinson@gmail.com> - 1.46.1-4
b98e6f
- Fix compile on ARM platforms
b98e6f
b98e6f
* Mon Apr  4 2011 Petr Machata <pmachata@redhat.com> - 1.46.1-3
b98e6f
- Yet another way to pass -DBOOST_LIB_INSTALL_DIR to cmake.  Passing
b98e6f
  via CMAKE_CXX_FLAGS for some reason breaks when rpm re-quotes the
b98e6f
  expression as a result of %%{optflags} expansion.
b98e6f
- Related: #667294
b98e6f
b98e6f
* Wed Mar 30 2011 Deji Akingunola <dakingun@gmail.com> - 1.46.1-2
b98e6f
- Rebuild for mpich2 soname bump
b98e6f
b98e6f
* Sun Mar 13 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.46.1-1
b98e6f
- Merged the latest changes from the bug-fix release of Boost-1.46
b98e6f
b98e6f
* Mon Mar 07 2011 Caolán McNamara <caolanm@redhat.com> - 1.46.0-0.5
b98e6f
- rebuild for icu 4.6
b98e6f
b98e6f
* Thu Feb 24 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.46.0-0.4
b98e6f
- Merged the latest changes from the now final release of Boost-1.46
b98e6f
b98e6f
* Tue Feb  8 2011 Petr Machata <pmachata@redhat.com> - 1.46.0-0.3.beta1
b98e6f
- spirit.patch: Fix a problem in using boost::spirit with utf-8
b98e6f
  strings.  Thanks to Hicham HAOUARI for digging up the fix.
b98e6f
b98e6f
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.46.0-0.2.beta1
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b98e6f
b98e6f
* Thu Feb  3 2011 Petr Machata <pmachata@redhat.com> - 1.46.0-0.1.beta1
b98e6f
- Package 1.46.0-beta1
b98e6f
- Reintroduce the soname patch
b98e6f
- unordered-cctor.patch: Add copy constructors and assignment
b98e6f
  operators when using rvalue references
b98e6f
- signals-erase.patch: Pass const_iterator to map::erase to avoid
b98e6f
  ambigous overload vs. templatized value_type ctor
b98e6f
- Related: #656410
b98e6f
b98e6f
* Mon Jan 10 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-7
b98e6f
- Integrated Petr's work to fix missing Boost.Filesystem V3 issue
b98e6f
- Resolves: #667740
b98e6f
b98e6f
* Thu Jan  6 2011 Petr Machata <pmachata@redhat.com> - 1.44.0-6
b98e6f
- Don't override CXXFLAGS with -DBOOST_IOSTREAMS_USE_DEPRECATED
b98e6f
- Resolves: #667294
b98e6f
b98e6f
* Mon Jan  3 2011 Petr Machata <pmachata@redhat.com> - 1.44.0-5
b98e6f
- Add boost-random DSOs
b98e6f
- Resolves: #665679
b98e6f
b98e6f
* Wed Dec  8 2010 Petr Machata <pmachata@redhat.com> - 1.44.0-4
b98e6f
- Build with support for iostreams deprecated functions
b98e6f
- Resolves: #654480
b98e6f
b98e6f
* Fri Dec  3 2010 Tom "spot" Callaway <spot@fedoraproject.org> - 1.44.0-3
b98e6f
- also package build-system.jam in boost-build
b98e6f
b98e6f
* Tue Nov 30 2010 Tom "spot" Callaway <spot@fedoraproject.org> - 1.44.0-2
b98e6f
- add boost-build, boost-jam subpackages
b98e6f
b98e6f
* Sat Oct 23 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-1.1
b98e6f
- Rebuild.
b98e6f
b98e6f
* Sat Aug 21 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-1
b98e6f
- Split the CMake-buildable tar-ball into pristine upstream tar-ball
b98e6f
  and CMake framework patch
b98e6f
b98e6f
* Mon Aug 16 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-0.6
b98e6f
- Merged the latest changes from the now final release of Boost-1.44
b98e6f
b98e6f
* Fri Aug  6 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-0.5
b98e6f
- Patched header file in boost/random/detail. Resolves: #621631
b98e6f
b98e6f
* Sat Jul 31 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-0.4
b98e6f
- Added missing header files in boost/random/detail. Resolves: #619869
b98e6f
b98e6f
* Tue Jul 27 2010 Orcan Ogetbil <oget[dot]fedora[at]gmail[dot]com> - 1.44.0-0.3
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
b98e6f
b98e6f
* Tue Jul 27 2010 Benjamin Kosnik <bkoz@redhat.com> - 1.44.0-0.2
b98e6f
- Rebuild.
b98e6f
b98e6f
* Fri Jul 23 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.44.0-0.1
b98e6f
- Upstream update: Boost-1.44 with CMake enabled
b98e6f
- Resolves: #607615
b98e6f
b98e6f
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.41.0-13
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
b98e6f
b98e6f
* Fri Jun  4 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-12
b98e6f
- Turn on mpich2 on s390.  Add arm to the list of arches that openmpi
b98e6f
  does not support.
b98e6f
b98e6f
* Fri Jun  4 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-12
b98e6f
- Don't distribute cmake support files.
b98e6f
- Related: #597020
b98e6f
b98e6f
* Wed Jun  2 2010 Dan Horák <dan[at]danny.cz> - 1.41.0-11
b98e6f
- don't build with mpich2/openmpi on s390/s390x
b98e6f
b98e6f
* Mon May 10 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-10
b98e6f
- Add an upstream patch that fixes computation of CRC in zlib streams.
b98e6f
- Resolves: #590205
b98e6f
b98e6f
* Wed May 05 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.41.0-9
b98e6f
- -devel: own %%{_datadir}/cmake/%%{name}/
b98e6f
- -devel: Requires: cmake (for %%{_datadir}/cmake ownership)
b98e6f
b98e6f
* Fri Apr 02 2010 Caolán McNamara <caolanm@redhat.com> - 1.41.0-8
b98e6f
- rebuild for icu
b98e6f
b98e6f
* Mon Feb 22 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-7
b98e6f
- Add a patch for serialization of shared pointers to non polymorphic
b98e6f
  types
b98e6f
b98e6f
* Tue Feb  2 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-6
b98e6f
- More subpackage interdependency adjustments
b98e6f
  - boost does not bring in the MPI stuff.  Instead, $MPI-devel does.
b98e6f
    It needs to, so that the symbolic links don't dangle.
b98e6f
  - boost-graph-$MPI depends on boost-$MPI so that boost-mpich2
b98e6f
    does not satisfy the SONAME dependency of boost-graph-openmpi.
b98e6f
- Resolves: #559009
b98e6f
b98e6f
* Mon Feb  1 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.41.0-5
b98e6f
- Various fixes on the specification
b98e6f
- Resolves: #559009
b98e6f
b98e6f
* Fri Jan 29 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-5
b98e6f
- Introduce support for both OpenMPI and MPICH2
b98e6f
- Resolves: #559009
b98e6f
b98e6f
* Mon Jan 25 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-4
b98e6f
- Add a patch to build mapnik
b98e6f
- Resolves: #558383
b98e6f
b98e6f
* Tue Jan 19 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-3
b98e6f
- Generalize the soname selection
b98e6f
b98e6f
* Mon Jan 18 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.41.0-2.2
b98e6f
- Further split the Boost.MPI sub-package into boost-mpi and
b98e6f
  boost-mpi-python
b98e6f
- Changed the description of Boost.MPI according to the actual
b98e6f
  dependency (MPICH2 rather than OpenMPI)
b98e6f
- Added a few details on the generation of the mpi.so library
b98e6f
b98e6f
* Thu Jan 14 2010 Petr Machata <pmachata@redhat.com> - 1.41.0-2
b98e6f
- Replace a boost-math subpackage with a stub
b98e6f
- Drop _cmake_lib_suffix and CMAKE_INSTALL_PREFIX magic, the rpm macro
b98e6f
  does that for us
b98e6f
- Drop LICENSE from the umbrella package
b98e6f
- Drop obsolete Obsoletes: boost-python and boost-doc <= 1.30.2
b98e6f
b98e6f
* Tue Jan 12 2010 Benjamin Kosnik <bkoz@redhat.com> - 1.41.0-1
b98e6f
- Don't package generated debug libs, even with 
b98e6f
  (-DCMAKE_BUILD_TYPE=RelWithDebInfo | Release).
b98e6f
- Update and include boost-cmake-soname.patch.
b98e6f
- Uncomment ctest.
b98e6f
- Fix up --with tests to run tests.
b98e6f
b98e6f
* Sat Dec 19 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.41.0-0.7
b98e6f
- Switched off the delivery into a versioned sub-directory
b98e6f
b98e6f
* Thu Dec 17 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.41.0-0.6
b98e6f
- Boost-CMake upstream integration
b98e6f
b98e6f
* Wed Dec 16 2009 Benjamin Kosnik <bkoz@redhat.com> - 1.41.0-0.5
b98e6f
- Rebase to 1.41.0
b98e6f
- Set build type to RelWithDebInfo
b98e6f
- Resolves: #533922
b98e6f
b98e6f
* Mon Nov 16 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.40.0-1
b98e6f
- Add support for the Boost.MPI sub-package
b98e6f
- Build with CMake (https://svn.boost.org/trac/boost/wiki/CMake)
b98e6f
- Resolves: #529563
b98e6f
b98e6f
* Mon Nov 16 2009 Petr Machata <pmachata@redhat.com> - 1.39.0-11
b98e6f
- Move comment in Patch13 out of line
b98e6f
b98e6f
* Mon Nov 16 2009 Petr Machata <pmachata@redhat.com> - 1.39.0-10
b98e6f
- translate_exception.hpp misses a include
b98e6f
- Related: #537612
b98e6f
b98e6f
* Thu Oct 15 2009 Petr Machata <pmachata@redhat.com> - 1.39.0-9
b98e6f
- Package index.html in the -doc subpackage
b98e6f
- Resolves: #529030
b98e6f
b98e6f
* Wed Oct 14 2009 Petr Machata <pmachata@redhat.com> - 1.39.0-8
b98e6f
- Several fixes to support PySide
b98e6f
- Resolves: #520087
b98e6f
- GCC 4.4 name resolution fixes for GIL
b98e6f
- Resolves: #526834
b98e6f
b98e6f
* Sun Oct 11 2009 Jitesh Shah <jiteshs@marvell.com> 1.39.0-7
b98e6f
- Disable long double support for ARM
b98e6f
b98e6f
* Tue Sep 08 2009 Karsten Hopp <karsten@redhat.com> 1.39.0-6
b98e6f
- bump release and rebuild as the package was linked with an old libicu
b98e6f
  during the mass rebuild on s390x
b98e6f
b98e6f
* Wed Aug 26 2009 Tomas Mraz <tmraz@redhat.com> - 1.39.0-5
b98e6f
- Make it to be usable with openssl-1.0
b98e6f
b98e6f
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.39.0-4
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b98e6f
b98e6f
* Thu Jul  2 2009 Petr Machata <pmachata@redhat.com> - 1.39.0-3
b98e6f
- Drop file list for main "boost" package, which was inadvertently left in.
b98e6f
- Add thread sub-package to capture omitted boost_thread.
b98e6f
- Add upstream patch to make boost_filesystem compatible with C++0x.
b98e6f
- Resolves: #496188
b98e6f
- Resolves: #509250
b98e6f
b98e6f
* Mon May 11 2009 Benjamin Kosnik <bkoz@redhat.com> - 1.39.0-2
b98e6f
- Apply patch from Caolan McNamara
b98e6f
- Resolves: #500030 function_template bug is back...
b98e6f
b98e6f
* Thu May 07 2009 Benjamin Kosnik <bkoz@redhat.com> - 1.39.0-1
b98e6f
- Update release.
b98e6f
b98e6f
* Wed May 06 2009 Benjamin Kosnik <bkoz@redhat.com> - 1.39.0-0.3
b98e6f
- Fixes for rpmlint.
b98e6f
b98e6f
* Wed May 06 2009 Petr Machata <pmachata@redhat.com> - 1.39.0-0.2
b98e6f
- Split up boost package to sub-packages per library
b98e6f
- Resolves: #496188
b98e6f
b98e6f
* Wed May 06 2009 Benjamin Kosnik <bkoz@redhat.com> - 1.39.0-0.1
b98e6f
- Rebase to 1.39.0.
b98e6f
- Add --with docs_generated.
b98e6f
- #225622: Substitute optflags at prep time instead of RPM_OPT_FLAGS.
b98e6f
b98e6f
* Mon May 04 2009 Benjamin Kosnik <bkoz@redhat.com> - 1.37.0-7
b98e6f
- Rebuild for libicu bump.
b98e6f
b98e6f
* Mon Mar 23 2009 Petr Machata <pmachata@redhat.com> - 1.37.0-6
b98e6f
- Apply a SMP patch from Stefan Ring
b98e6f
- Apply a workaround for "cannot appear in a constant-expression" in
b98e6f
  dynamic_bitset library.
b98e6f
- Resolves: #491537
b98e6f
b98e6f
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.37.0-4
b98e6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b98e6f
b98e6f
* Mon Jan 12 2009 Petr Machata <pmachata@redhat.com> - 1.37.0-3
b98e6f
- Apply a unneccessary_iostreams patch from Caolan McNamara
b98e6f
- Fix soname patch so that it applies with fuzz=0.  Use fuzz=0 option
b98e6f
  in spec file just like ordinary patches do.
b98e6f
- Resolves: #479409
b98e6f
b98e6f
* Fri Dec 19 2008 Petr Machata <pmachata@redhat.com> - 1.37.0-2
b98e6f
- Apply a function_template patch from Caolan McNamara
b98e6f
- Resolves: #477131
b98e6f
b98e6f
* Tue Dec 16 2008 Benjamin Kosnik <bkoz@redhat.com> - 1.37.0-1
b98e6f
- Fix rpmlint rpath errors.
b98e6f
- Fix rpmlint warnings on tabs and spaces.
b98e6f
- Bump SONAME to 4
b98e6f
b98e6f
* Mon Nov 17 2008 Benjamin Kosnik <bkoz@redhat.com> - 1.37.0-0.1
b98e6f
- Rebase to 1.37.0.
b98e6f
b98e6f
* Tue Oct 21 2008 Benjamin Kosnik <bkoz@redhat.com> - 1.36.0-1
b98e6f
- Rebase to 1.36.0.
b98e6f
b98e6f
* Mon Oct  6 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-17
b98e6f
- Fix gcc43 patch to apply cleanly under --fuzz=0
b98e6f
- Resolves: #465003
b98e6f
b98e6f
* Mon Aug 11 2008 Petr Machata <pmachata@redhat.com> - 1.36.0-0.1.beta1
b98e6f
- Rebase to 1.36.0.beta1
b98e6f
  - Drop boost-regex.patch and portions of boost-gcc43.patch, port the rest
b98e6f
  - Automate SONAME tracking and bump SONAME to 4
b98e6f
  - Adjust boost-configure.patch to include threading=single,multi explicitly
b98e6f
b98e6f
* Thu Jun 12 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-16
b98e6f
- Fix "changes meaning of keywords" in boost date_time
b98e6f
- Related: #450718
b98e6f
b98e6f
* Thu May 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.34.1-15
b98e6f
- fix license tag
b98e6f
b98e6f
* Thu Mar 27 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-14
b98e6f
- Change devel-static back to static.
b98e6f
- Related: #225622
b98e6f
b98e6f
* Wed Mar 26 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-13
b98e6f
- Install library doc files
b98e6f
- Revamp %%install phase to speed up overall build time
b98e6f
- Some cleanups per merge review
b98e6f
- Resolves: #437032
b98e6f
b98e6f
* Thu Feb 14 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-12
b98e6f
- Fix "changes meaning of keywords" in boost python
b98e6f
- Resolves: #432694
b98e6f
b98e6f
* Wed Feb 13 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-11
b98e6f
- Fix "changes meaning of special_values_parser" in boost date_time
b98e6f
- Resolves: #432433
b98e6f
b98e6f
* Wed Feb  6 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-10
b98e6f
- Fixes for GCC 4.3
b98e6f
- Resolves: #431609
b98e6f
b98e6f
* Mon Jan 14 2008 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-7
b98e6f
- Fixes for boost.regex (rev 42674).
b98e6f
b98e6f
* Wed Sep 19 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-5
b98e6f
- (#283771: Linking against boost libraries fails).
b98e6f
b98e6f
* Tue Aug 21 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-4
b98e6f
- Rebuild.
b98e6f
b98e6f
* Wed Aug 08 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-3
b98e6f
- Rebuild for icu 3.8 bump.
b98e6f
b98e6f
* Thu Aug 02 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-2
b98e6f
- SONAME to 3.
b98e6f
b98e6f
* Tue Jul 31 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-1
b98e6f
- Update to boost_1_34_1.
b98e6f
- Source via http.
b98e6f
- Philipp Thomas <pth.suse.de> fix for RPM_OPT_FLAGS
b98e6f
- Philipp Thomas <pth.suse.de> fix for .so sym links.
b98e6f
- (#225622) Patrice Dumas review comments.
b98e6f
b98e6f
* Tue Jun 26 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1.rc1-0.1
b98e6f
- Update to boost_1_34_1_RC1.
b98e6f
b98e6f
* Mon Apr 02 2007 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-13
b98e6f
- (#225622: Merge Review: boost)
b98e6f
  Change static to devel-static.
b98e6f
b98e6f
* Mon Mar 26 2007 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-12
b98e6f
- (#233523: libboost_python needs rebuild against python 2.5)
b98e6f
  Use patch.
b98e6f
b98e6f
* Mon Mar 26 2007 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-11
b98e6f
- (#225622: Merge Review: boost)
b98e6f
  Source to http.
b98e6f
  BuildRoot to preferred value.
b98e6f
  PreReq to post/postun -p
b98e6f
  Clarified BSL as GPL-Compatible, Free Software License.
b98e6f
  Remove Obsoletes.
b98e6f
  Add Provides boost-python.
b98e6f
  Remove mkdir -p $RPM_BUILD_ROOT%%{_docdir}
b98e6f
  Added periods for decription text.
b98e6f
  Fix Group field.
b98e6f
  Remove doc Requires boost.
b98e6f
  Preserve timestamps on install.
b98e6f
  Use %%defattr(-, root, root, -)
b98e6f
  Added static package for .a libs.
b98e6f
  Install static libs with 0644 permissions.
b98e6f
  Use %%doc for doc files.
b98e6f
b98e6f
* Mon Jan 22 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.0-0.5
b98e6f
- Update to boost.RC_1_34_0 snapshot as of 2007-01-19.
b98e6f
- Modify build procedures for boost build v2.
b98e6f
- Add *-mt variants for libraries, or at least variants that use
b98e6f
  threads (regex and thread).
b98e6f
b98e6f
* Thu Nov 23 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-10
b98e6f
- (#182414: boost: put tests in %%check section) via Rex Dieter
b98e6f
- Fix EVR with %%{?dist} tag via Gianluca Sforna
b98e6f
b98e6f
* Wed Nov 15 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-9
b98e6f
- (#154784: boost-debuginfo package is empty)
b98e6f
b98e6f
* Tue Nov 14 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-8
b98e6f
- (#205866: Revert scanner.hpp change.)
b98e6f
b98e6f
* Mon Nov 13 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-7
b98e6f
- (#205866: boost::spirit generates warnings with -Wshadow)
b98e6f
- (#205863: serialization lib generates warnings)
b98e6f
- (#204326: boost RPM missing dependencies)
b98e6f
- (#193465: [SIGNAL/BIND] Regressions with GCC 4.1)
b98e6f
- BUILD_FLAGS, add, to see actual compile line.
b98e6f
- REGEX_FLAGS, add, to compile regex with ICU support.
b98e6f
b98e6f
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-6.1
b98e6f
- rebuild
b98e6f
b98e6f
* Tue May 16 2006 Karsten Hopp <karsten@redhat.de> 1.33.1-6
b98e6f
- buildrequire python-devel for Python.h
b98e6f
b98e6f
* Thu Feb 16 2006 Florian La Roche <laroche@redhat.com> - 1.33.1-5
b98e6f
- use the real version number to point to the shared libs
b98e6f
b98e6f
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-4.2
b98e6f
- bump again for double-long bug on ppc(64)
b98e6f
b98e6f
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-4.1
b98e6f
- rebuilt for new gcc4.1 snapshot and glibc changes
b98e6f
b98e6f
* Thu Jan 05 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-4
b98e6f
- Fix symbolic links.
b98e6f
b98e6f
* Wed Jan 04 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-3
b98e6f
- Update to boost-1.33.1.
b98e6f
- (#176485: Missing BuildRequires)
b98e6f
- (#169271: /usr/lib/libboost*.so.? links missing in package)
b98e6f
b98e6f
* Thu Dec 22 2005 Jesse Keating <jkeating@redhat.com> 1.33.1-2
b98e6f
- rebuilt
b98e6f
b98e6f
* Mon Nov 14 2005 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-1
b98e6f
- Update to boost-1.33.1 beta.
b98e6f
- Run testsuite, gather results.
b98e6f
b98e6f
* Tue Oct 11 2005 Nils Philippsen <nphilipp@redhat.com> 1.33.0-4
b98e6f
- build require bzip2-devel and zlib-devel
b98e6f
b98e6f
* Tue Aug 23 2005 Benjamin Kosnik <bkoz@redhat.com> 1.33.0-3
b98e6f
- Create doc package again.
b98e6f
- Parts of the above by Neal Becker <ndbecker2@gmail.com>.
b98e6f
b98e6f
* Fri Aug 12 2005 Benjamin Kosnik <bkoz@redhat.com> 1.33.0-1
b98e6f
- Update to boost-1.33.0, update SONAME to 2 due to ABI changes.
b98e6f
- Simplified PYTHON_VERSION by Philipp Thomas <pth@suse.de>
b98e6f
b98e6f
* Tue May 24 2005 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-6
b98e6f
- (#153093: boost warns that gcc 4.0.0 is an unknown compiler)
b98e6f
- (#152205: development .so symbolic links should be in -devel subpackage)
b98e6f
- (#154783: linker .so symbolic links missing from boost-devel package)
b98e6f
b98e6f
* Fri Mar 18 2005 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-5
b98e6f
- Revert boost-base.patch to old behavior.
b98e6f
- Use SONAMEVERSION instead of dllversion.
b98e6f
b98e6f
* Wed Mar 16 2005 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-4
b98e6f
- (#142612: Compiling Boost 1.32.0 Failed in RHEL 3.0 on Itanium2)
b98e6f
- (#150069: libboost_python.so is missing)
b98e6f
- (#141617: bad patch boost-base.patch)
b98e6f
- (#122817: libboost_*.so symbolic links missing)
b98e6f
- Re-add boost-thread.patch.
b98e6f
- Change boost-base.patch to show thread tags.
b98e6f
- Change boost-gcc-tools.patch to use SOTAG, compile with dllversion.
b98e6f
- Add symbolic links to files.
b98e6f
- Sanity check can compile with gcc-3.3.x, gcc-3.4.2, gcc-4.0.x., gcc-4.1.x.
b98e6f
b98e6f
* Thu Dec 02 2004 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-3
b98e6f
- (#122817: libboost_*.so symbolic links missing)
b98e6f
- (#141574: half of the package is missing)
b98e6f
- (#141617: bad patch boost-base.patch)
b98e6f
b98e6f
* Wed Dec 01 2004 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-2
b98e6f
- Remove bogus Obsoletes.
b98e6f
b98e6f
* Mon Nov 29 2004 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-1
b98e6f
- Update to 1.32.0
b98e6f
b98e6f
* Wed Sep 22 2004 Than Ngo <than@redhat.com> 1.31.0-9
b98e6f
- cleanup specfile
b98e6f
- fix multiarch problem
b98e6f
b98e6f
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
b98e6f
- rebuilt
b98e6f
b98e6f
* Wed May 05 2004 Warren Togami <wtogami@redhat.com> 1.31.0-7
b98e6f
- missing Obsoletes boost-python
b98e6f
b98e6f
* Mon May 03 2004 Benjamin Kosnik <bkoz@redhat.com>
b98e6f
- (#121630: gcc34 patch needed)
b98e6f
b98e6f
* Wed Apr 21 2004 Warren Togami <wtogami@redhat.com>
b98e6f
- #121415 FC2 BLOCKER: Obsoletes boost-python-devel, boost-doc
b98e6f
- other cleanups
b98e6f
b98e6f
* Tue Mar 30 2004 Benjamin Kosnik <bkoz@redhat.com>
b98e6f
- Remove bjam dependency. (via Graydon).
b98e6f
- Fix installed library names.
b98e6f
- Fix SONAMEs in shared libraries.
b98e6f
- Fix installed header location.
b98e6f
- Fix installed permissions.
b98e6f
b98e6f
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
b98e6f
- rebuilt
b98e6f
b98e6f
* Mon Feb 09 2004 Benjamin Kosnik <bkoz@redhat.com> 1.31.0-2
b98e6f
- Update to boost-1.31.0
b98e6f
b98e6f
* Thu Jan 22 2004 Benjamin Kosnik <bkoz@redhat.com> 1.31.0-1
b98e6f
- Update to boost-1.31.0.rc2
b98e6f
- (#109307:  Compile Failure with boost libraries)
b98e6f
- (#104831:  Compile errors in apps using Boost.Python...)
b98e6f
- Unify into boost, boost-devel rpms.
b98e6f
- Simplify installation using bjam and prefix install.
b98e6f
b98e6f
* Tue Sep 09 2003 Nalin Dahyabhai <nalin@redhat.com> 1.30.2-2
b98e6f
- require boost-devel instead of devel in subpackages which require boost-devel
b98e6f
- remove stray Prefix: tag
b98e6f
b98e6f
* Mon Sep 08 2003 Benjamin Kosnik <bkoz@redhat.com> 1.30.2-1
b98e6f
- change license to Freely distributable
b98e6f
- verify installation of libboost_thread
b98e6f
- more boost-devel removals
b98e6f
- deal with lack of _REENTRANT on ia64/s390
b98e6f
- (#99458) rpm -e fixed via explict dir additions
b98e6f
- (#103293) update to 1.30.2
b98e6f
b98e6f
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
b98e6f
- rebuilt
b98e6f
b98e6f
* Tue May 13 2003 Florian La Roche <Florian.LaRoche@redhat.de>
b98e6f
- remove packager, change to new Group:
b98e6f
b98e6f
* Tue May 06 2003 Tim Powers <timp@redhat.com> 1.30.0-3
b98e6f
- add deffattr's so we don't have unknown users owning files