cvsdist f8f00b
Name: boost
cvsdist f8f00b
Summary: The Boost C++ Libraries
Benjamin Kosnik 39a7eb
Version: 1.34.1
Benjamin Kosnik 39a7eb
Release: 1%{?dist}
Benjamin Kosnik dff01f
License: Boost Software License (GPL-Compatible, Free Software License)
cvsdist f8f00b
URL: http://www.boost.org/
cvsdist f8f00b
Group: System Environment/Libraries
Benjamin Kosnik 39a7eb
#Source: %{name}_1_34_1.tar.bz2
Benjamin Kosnik 39a7eb
Source: http://downloads.sourceforge.net/boost/boost_1_34_1.tar.bz2
Benjamin Kosnik 39a7eb
Obsoletes: boost-doc <= 1.30.2
Benjamin Kosnik 39a7eb
Obsoletes: boost-python <= 1.30.2
Benjamin Kosnik dff01f
Provides: boost-python = %{version}-%{release}
Benjamin Kosnik 39a7eb
Provides: boost-doc = %{version}-%{release}
Benjamin Kosnik dff01f
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
Benjamin Kosnik dff01f
BuildRequires: libstdc++-devel
Benjamin Kosnik ace5fb
BuildRequires: bzip2-libs
Nils Philippsen cd0735
BuildRequires: bzip2-devel
Benjamin Kosnik 4da827
BuildRequires: zlib
Nils Philippsen cd0735
BuildRequires: zlib-devel
Benjamin Kosnik dff01f
BuildRequires: python
Karsten Hopp 53b71d
BuildRequires: python-devel
Benjamin Kosnik 4da827
BuildRequires: libicu
Benjamin Kosnik 4da827
BuildRequires: libicu-devel
Benjamin Kosnik 39a7eb
Patch0: boost-configure.patch
Benjamin Kosnik 39a7eb
Patch1: boost-gcc-soname.patch
Benjamin Kosnik 39a7eb
Patch2: boost-use-rpm-optflags.patch
Benjamin Kosnik 39a7eb
Patch3: boost-run-tests.patch
cvsdist f8f00b
cvsdist f8f00b
%description
cvsdist 34404a
Boost provides free peer-reviewed portable C++ source libraries.  The
cvsdist 34404a
emphasis is on libraries which work well with the C++ Standard
Benjamin Kosnik 785083
Library, in the hopes of establishing "existing practice" for
Benjamin Kosnik 785083
extensions and providing reference implementations so that the Boost
Benjamin Kosnik 785083
libraries are suitable for eventual standardization. (Some of the
Benjamin Kosnik 785083
libraries have already been proposed for inclusion in the C++
Benjamin Kosnik 785083
Standards Committee's upcoming C++ Standard Library Technical Report.)
cvsdist f8f00b
cvsdist f8f00b
%package devel
Benjamin Kosnik dff01f
Summary: The Boost C++ headers and shared development libraries
Benjamin Kosnik dff01f
Group: Development/Libraries
cvsdist afeb5b
Requires: boost = %{version}-%{release}
cvsdist afeb5b
Provides: boost-python-devel = %{version}-%{release}
cvsdist f8f00b
cvsdist f8f00b
%description devel
Benjamin Kosnik dff01f
Headers and shared object symlinks for the Boost C++ libraries.
Benjamin Kosnik dff01f
Benjamin Kosnik 07b7f8
%package devel-static
Benjamin Kosnik dff01f
Summary: The Boost C++ static development libraries
Benjamin Kosnik dff01f
Group: Development/Libraries
Benjamin Kosnik dff01f
Requires: boost = %{version}-%{release}
Benjamin Kosnik dff01f
Provides: boost-python-devel = %{version}-%{release}
Benjamin Kosnik dff01f
Benjamin Kosnik 07b7f8
%description devel-static
Benjamin Kosnik dff01f
Static libraries for the Boost C++ libraries.
Benjamin Kosnik 546a43
Benjamin Kosnik 546a43
%package doc
Benjamin Kosnik 546a43
Summary: The Boost C++ html docs
Benjamin Kosnik dff01f
Group: Documentation
Benjamin Kosnik 546a43
Provides: boost-python-docs = %{version}-%{release}
Benjamin Kosnik 546a43
Benjamin Kosnik 546a43
%description doc
Benjamin Kosnik dff01f
HTML documentation files for Boost C++ libraries.
cvsdist f8f00b
cvsdist f8f00b
%prep
Benjamin Kosnik dff01f
rm -rf %{buildroot}
cvsdist f8f00b
Benjamin Kosnik 39a7eb
%setup -q -n %{name}_1_34_1
cvsdist f8f00b
%patch0 -p0
cvsdist afeb5b
%patch1 -p0
Benjamin Kosnik 9cec08
%patch2 -p0
Benjamin Kosnik 0513b8
%patch3 -p0
cvsdist f8f00b
cvsdist f8f00b
%build
Benjamin Kosnik 39a7eb
BOOST_ROOT=`pwd`
Benjamin Kosnik 39a7eb
staged_dir=stage
Benjamin Kosnik 39a7eb
export BOOST_ROOT
Benjamin Kosnik 39a7eb
Benjamin Kosnik 39a7eb
# build make tools, ie bjam, necessary for building libs, docs, and testing
Benjamin Kosnik 39a7eb
(cd tools/jam/src && ./build.sh)
Benjamin Kosnik 39a7eb
BJAM=`find tools/jam/src/ -name bjam -a -type f`
Benjamin Kosnik 39a7eb
Benjamin Kosnik 39a7eb
#BUILD_FLAGS="--with-toolset=gcc --prefix=$RPM_BUILD_ROOT%{_prefix}"
Benjamin Kosnik 39a7eb
BUILD_FLAGS="--with-toolset=gcc"
Benjamin Kosnik 78bcf4
PYTHON_VERSION=$(python -c 'import sys; print sys.version[:3]')
Benjamin Kosnik 39a7eb
PYTHON_FLAGS="--with-python-root=/usr --with-python-version=$PYTHON_VERSION"
Benjamin Kosnik 39a7eb
REGEX_FLAGS="--with-icu"
Benjamin Kosnik 39a7eb
./configure $BUILD_FLAGS $PYTHON_FLAGS $REGEX_FLAGS 
Benjamin Kosnik 39a7eb
make all
Benjamin Kosnik 39a7eb
Benjamin Kosnik 39a7eb
# build docs, requires a network connection for docbook XSLT stylesheets
Benjamin Kosnik 39a7eb
#cd ./doc
Benjamin Kosnik 39a7eb
#chmod +x ../tools/boostbook/setup_boostbook.sh
Benjamin Kosnik 39a7eb
#../tools/boostbook/setup_boostbook.sh
Benjamin Kosnik 39a7eb
#$BOOST_ROOT/$BJAM --v2 -sICU_PATH=/usr --user-config=../user-config.jam html
Benjamin Kosnik 39a7eb
#cd ..
cvsdist f8f00b
Benjamin Kosnik ed539c
%check
Benjamin Kosnik 39a7eb
# --with tests activates checking
Benjamin Kosnik 39a7eb
%define with_tests %{?_with_tests:1}%{!?_with_tests:0}
Benjamin Kosnik 39a7eb
%define without_tests %{!?_with_tests:1}%{?_with_tests:0}
Benjamin Kosnik 39a7eb
Benjamin Kosnik 39a7eb
%if %{with_tests}
Benjamin Kosnik 39a7eb
echo "

" `uname -a` "

" > status/regression_comment.html
Benjamin Kosnik 39a7eb
echo "" >> status/regression_comment.html
Benjamin Kosnik 39a7eb
echo "

" `g++ --version` "

" >> status/regression_comment.html
Benjamin Kosnik 39a7eb
echo "" >> status/regression_comment.html
Benjamin Kosnik 39a7eb
Benjamin Kosnik 39a7eb
chmod +x tools/regression/run_tests.sh
Benjamin Kosnik 39a7eb
./tools/regression/run_tests.sh
Benjamin Kosnik 39a7eb
Benjamin Kosnik 39a7eb
results1=status/cs-`uname`.html
Benjamin Kosnik 39a7eb
results2=status/cs-`uname`-links.html
Benjamin Kosnik 39a7eb
email=benjamin.kosnik@gmail.com
Benjamin Kosnik 39a7eb
if [ -f $results1 ] && [ -f $results2 ]; then
Benjamin Kosnik 39a7eb
  echo "sending results starting"
Benjamin Kosnik 39a7eb
  testdate=`date +%Y%m%d`
Benjamin Kosnik 39a7eb
  testarch=`uname -m`
Benjamin Kosnik 39a7eb
  results=boost-results-$testdate-$testarch.tar.bz2
Benjamin Kosnik 39a7eb
  tar -cvf boost-results-$testdate-$testarch.tar $results1 $results2
Benjamin Kosnik 39a7eb
  bzip2 -f boost-results-$testdate-$testarch.tar 
Benjamin Kosnik 39a7eb
  echo | mutt -s "$testdate boost regression $testarch" -a $results $email 
Benjamin Kosnik 39a7eb
  echo "sending results finished"
Benjamin Kosnik 39a7eb
else
Benjamin Kosnik 39a7eb
  echo "error sending results"
Benjamin Kosnik 785083
fi
Benjamin Kosnik 39a7eb
%endif
Benjamin Kosnik 785083
cvsdist f8f00b
%install
Benjamin Kosnik 39a7eb
rm -rf $RPM_BUILD_ROOT
Than Ngo e17834
mkdir -p $RPM_BUILD_ROOT%{_libdir}
Than Ngo e17834
mkdir -p $RPM_BUILD_ROOT%{_includedir}
Benjamin Kosnik 546a43
mkdir -p $RPM_BUILD_ROOT%{_docdir}/boost-%{version}
Than Ngo e17834
Than Ngo e17834
# install lib
Benjamin Kosnik 7e774a
for i in `find stage -type f -name \*.a`; do
Benjamin Kosnik 7e774a
  NAME=`basename $i`;
Benjamin Kosnik dff01f
  install -p -m 0644 $i $RPM_BUILD_ROOT%{_libdir}/$NAME;
cvsdist afeb5b
done;
Benjamin Kosnik 39a7eb
for i in `find stage -type f -name \*.so`; do
Benjamin Kosnik 39a7eb
  NAME=$i;
Benjamin Kosnik 39a7eb
  SONAME=$i.2;
Benjamin Kosnik 39a7eb
  VNAME=$i.%{version};
Benjamin Kosnik 39a7eb
  base=`basename $i`;
Benjamin Kosnik 39a7eb
  NAMEbase=$base;
Benjamin Kosnik 39a7eb
  SONAMEbase=$base.2;
Benjamin Kosnik 39a7eb
  VNAMEbase=$base.%{version};
Benjamin Kosnik 39a7eb
  mv $i $VNAME;
Benjamin Kosnik 39a7eb
  ln -s $VNAMEbase $SONAME;
Benjamin Kosnik 39a7eb
  ln -s $VNAMEbase $NAME;
Benjamin Kosnik 39a7eb
  install -p -m 755 $VNAME $RPM_BUILD_ROOT%{_libdir}/$VNAMEbase;
Benjamin Kosnik 39a7eb
  mv $SONAME $RPM_BUILD_ROOT%{_libdir}/$SONAMEbase;
Benjamin Kosnik 39a7eb
  mv $NAME $RPM_BUILD_ROOT%{_libdir}/$NAMEbase;
Benjamin Kosnik ce250c
done;
Than Ngo e17834
Than Ngo e17834
# install include files
cvsdist afeb5b
for i in `find boost -type d`; do
Benjamin Kosnik 7e774a
  mkdir -p $RPM_BUILD_ROOT%{_includedir}/$i
cvsdist afeb5b
done
cvsdist afeb5b
for i in `find boost -type f`; do
Benjamin Kosnik dff01f
  install -p -m 644 $i $RPM_BUILD_ROOT%{_includedir}/$i
cvsdist afeb5b
done
Than Ngo e17834
Benjamin Kosnik 546a43
#install doc files
Benjamin Kosnik 546a43
cd doc/html; 
Benjamin Kosnik 546a43
for i in `find . -type d`; do
Benjamin Kosnik 546a43
  mkdir -p $RPM_BUILD_ROOT%{_docdir}/boost-%{version}/$i
Benjamin Kosnik 546a43
done
Benjamin Kosnik 546a43
for i in `find . -type f`; do
Benjamin Kosnik dff01f
  install -p -m 644 $i $RPM_BUILD_ROOT%{_docdir}/boost-%{version}/$i
Benjamin Kosnik 546a43
done
Benjamin Kosnik 546a43
cd ../..;
Benjamin Kosnik 546a43
Benjamin Kosnik 39a7eb
# remove scripts used to generate include files 
Benjamin Kosnik 39a7eb
find $RPM_BUILD_ROOT%{_includedir}/ \( -name '*.pl' -o -name '*.sh' \) -exec rm {} \;
Benjamin Kosnik 39a7eb
cvsdist f8f00b
%clean
Benjamin Kosnik 39a7eb
rm -rf $RPM_BUILD_ROOT
cvsdist f8f00b
Benjamin Kosnik 39a7eb
%post -p /sbin/ldconfig
cvsdist f8f00b
Benjamin Kosnik 39a7eb
%postun -p /sbin/ldconfig
cvsdist f8f00b
Benjamin Kosnik 9cec08
%files 
Benjamin Kosnik dff01f
%defattr(-, root, root, -)
Benjamin Kosnik 0513b8
%{_libdir}/*.so.%{version}
Benjamin Kosnik ace5fb
%{_libdir}/*.so.2
cvsdist f8f00b
Than Ngo e17834
%files devel
Benjamin Kosnik dff01f
%defattr(-, root, root, -)
Than Ngo e17834
%{_includedir}/boost
Benjamin Kosnik 0513b8
%{_libdir}/*.so
cvsdist f8f00b
Benjamin Kosnik 07b7f8
%files devel-static
Benjamin Kosnik dff01f
%defattr(-, root, root, -)
Benjamin Kosnik dff01f
%{_libdir}/*.a
Benjamin Kosnik dff01f
Benjamin Kosnik 546a43
%files doc
Benjamin Kosnik dff01f
%defattr(-, root, root, -)
Benjamin Kosnik dff01f
%doc %{_docdir}/boost-%{version}
Benjamin Kosnik 546a43
cvsdist f8f00b
%changelog
Benjamin Kosnik 39a7eb
* Tue Jul 31 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-1
Benjamin Kosnik 39a7eb
- Update to boost_1_34_1.
Benjamin Kosnik 39a7eb
- Source via http.
Benjamin Kosnik 39a7eb
- Philipp Thomas <pth.suse.de> fix for RPM_OPT_FLAGS
Benjamin Kosnik 39a7eb
- Philipp Thomas <pth.suse.de> fix for .so sym links.
Benjamin Kosnik 39a7eb
- (#225622) Patrice Dumas review comments. 
Benjamin Kosnik 39a7eb
Benjamin Kosnik 39a7eb
* Tue Jun 26 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1.rc1-0.1
Benjamin Kosnik 39a7eb
- Update to boost_1_34_1_RC1.
Benjamin Kosnik 39a7eb
Benjamin Kosnik 07b7f8
* Mon Apr 02 2007 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-13
Benjamin Kosnik 07b7f8
- (#225622: Merge Review: boost)
Benjamin Kosnik 07b7f8
  Change static to devel-static.
Benjamin Kosnik 07b7f8
Benjamin Kosnik e50998
* Mon Mar 26 2007 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-12
Benjamin Kosnik dff01f
- (#233523: libboost_python needs rebuild against python 2.5)
Benjamin Kosnik e50998
  Use patch.
Benjamin Kosnik e50998
Benjamin Kosnik e50998
* Mon Mar 26 2007 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-11
Benjamin Kosnik dff01f
- (#225622: Merge Review: boost)
Benjamin Kosnik dff01f
  Source to http.
Benjamin Kosnik dff01f
  BuildRoot to preferred value.
Benjamin Kosnik dff01f
  PreReq to post/postun -p
Benjamin Kosnik dff01f
  Clarified BSL as GPL-Compatible, Free Software License.
Benjamin Kosnik dff01f
  Remove Obsoletes.
Benjamin Kosnik dff01f
  Add Provides boost-python.
Benjamin Kosnik dff01f
  Remove mkdir -p $RPM_BUILD_ROOT%{_docdir}
Benjamin Kosnik dff01f
  Added periods for decription text. 
Benjamin Kosnik dff01f
  Fix Group field.
Benjamin Kosnik dff01f
  Remove doc Requires boost.
Benjamin Kosnik dff01f
  Preserve timestamps on install.
Benjamin Kosnik dff01f
  Use %defattr(-, root, root, -)
Benjamin Kosnik dff01f
  Added static package for .a libs.
Benjamin Kosnik dff01f
  Install static libs with 0644 permissions.
Benjamin Kosnik dff01f
  Use %doc for doc files.
Benjamin Kosnik dff01f
Benjamin Kosnik 39a7eb
* Mon Jan 22 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.0-0.5
Benjamin Kosnik 39a7eb
- Update to boost.RC_1_34_0 snapshot as of 2007-01-19.
Benjamin Kosnik 39a7eb
- Modify build procedures for boost build v2.
Benjamin Kosnik 39a7eb
- Add *-mt variants for libraries, or at least variants that use
Benjamin Kosnik 39a7eb
  threads (regex and thread).
Benjamin Kosnik 39a7eb
Benjamin Kosnik ed539c
* Thu Nov 23 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-10
Benjamin Kosnik ed539c
- (#182414: boost: put tests in %check section) via Rex Dieter
Benjamin Kosnik ed539c
- Fix EVR with %{?dist} tag via Gianluca Sforna
Benjamin Kosnik ed539c
Benjamin Kosnik 044bf8
* Wed Nov 15 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-9
Benjamin Kosnik 044bf8
- (#154784: boost-debuginfo package is empty)
Benjamin Kosnik 044bf8
Benjamin Kosnik a9a85c
* Tue Nov 14 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-8
Benjamin Kosnik a9a85c
- (#205866: Revert scanner.hpp change.)
Benjamin Kosnik a9a85c
Benjamin Kosnik 4da827
* Mon Nov 13 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-7
Benjamin Kosnik 4da827
- (#205866: boost::spirit generates warnings with -Wshadow)
Benjamin Kosnik 4da827
- (#205863: serialization lib generates warnings)
Benjamin Kosnik 4da827
- (#204326: boost RPM missing dependencies)
Benjamin Kosnik 4da827
- (#193465: [SIGNAL/BIND] Regressions with GCC 4.1)
Benjamin Kosnik 4da827
- BUILD_FLAGS, add, to see actual compile line.
Benjamin Kosnik 4da827
- REGEX_FLAGS, add, to compile regex with ICU support.
Benjamin Kosnik 4da827
Jesse Keating 3cbaf6
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-6.1
Jesse Keating 3cbaf6
- rebuild
Jesse Keating 3cbaf6
Karsten Hopp 53b71d
* Tue May 16 2006 Karsten Hopp <karsten@redhat.de> 1.33.1-6
Karsten Hopp 53b71d
- buildrequire python-devel for Python.h
Karsten Hopp 53b71d
Florian La Roche 2bd1c2
* Thu Feb 16 2006 Florian La Roche <laroche@redhat.com> - 1.33.1-5
Florian La Roche 2bd1c2
- use the real version number to point to the shared libs
Florian La Roche 2bd1c2
Jesse Keating ce3b97
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-4.2
Jesse Keating ce3b97
- bump again for double-long bug on ppc(64)
Jesse Keating ce3b97
Jesse Keating 64350a
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-4.1
Jesse Keating 64350a
- rebuilt for new gcc4.1 snapshot and glibc changes
Jesse Keating 64350a
Benjamin Kosnik ce250c
* Thu Jan 05 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-4
Benjamin Kosnik ce250c
- Fix symbolic links.
Benjamin Kosnik ce250c
Benjamin Kosnik ace5fb
* Wed Jan 04 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-3
Benjamin Kosnik ace5fb
- Update to boost-1.33.1.
Benjamin Kosnik ace5fb
- (#176485: Missing BuildRequires)
Benjamin Kosnik ace5fb
- (#169271: /usr/lib/libboost*.so.? links missing in package)
Benjamin Kosnik ace5fb
Jesse Keating e2021c
* Thu Dec 22 2005 Jesse Keating <jkeating@redhat.com> 1.33.1-2
Jesse Keating e2021c
- rebuilt
Jesse Keating e2021c
Benjamin Kosnik 785083
* Mon Nov 14 2005 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-1
Benjamin Kosnik 785083
- Update to boost-1.33.1 beta.
Benjamin Kosnik 785083
- Run testsuite, gather results.
Benjamin Kosnik 785083
Nils Philippsen cd0735
* Tue Oct 11 2005 Nils Philippsen <nphilipp@redhat.com> 1.33.0-4
Nils Philippsen cd0735
- build require bzip2-devel and zlib-devel
Nils Philippsen cd0735
Benjamin Kosnik 546a43
* Tue Aug 23 2005 Benjamin Kosnik <bkoz@redhat.com> 1.33.0-3
Benjamin Kosnik 546a43
- Create doc package again.
Benjamin Kosnik 546a43
- Parts of the above by Neal Becker <ndbecker2@gmail.com>.
Benjamin Kosnik 546a43
Benjamin Kosnik 78bcf4
* Fri Aug 12 2005 Benjamin Kosnik <bkoz@redhat.com> 1.33.0-1
Benjamin Kosnik 88523b
- Update to boost-1.33.0, update SONAME to 2 due to ABI changes.
Benjamin Kosnik 78bcf4
- Simplified PYTHON_VERSION by Philipp Thomas <pth@suse.de>
Benjamin Kosnik 78bcf4
Benjamin Kosnik 0513b8
* Tue May 24 2005 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-6
Benjamin Kosnik 0513b8
- (#153093: boost warns that gcc 4.0.0 is an unknown compiler)
Benjamin Kosnik 0513b8
- (#152205: development .so symlinks should be in -devel subpackage)
Benjamin Kosnik 0513b8
- (#154783: linker .so symlinks missing from boost-devel package)
Benjamin Kosnik 0513b8
Benjamin Kosnik fd51ec
* Fri Mar 18 2005 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-5
Benjamin Kosnik fd51ec
- Revert boost-base.patch to old behavior.
Benjamin Kosnik fd51ec
- Use SONAMEVERSION instead of dllversion.
Benjamin Kosnik fd51ec
Benjamin Kosnik 9cec08
* Wed Mar 16 2005 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-4
Benjamin Kosnik 9cec08
- (#142612: Compiling Boost 1.32.0 Failed in RHEL 3.0 on Itanium2) 
Benjamin Kosnik 9cec08
- (#150069: libboost_python.so is missing)
Benjamin Kosnik 9cec08
- (#141617: bad patch boost-base.patch)
Benjamin Kosnik 9cec08
- (#122817: libboost_*.so symlinks missing)
Benjamin Kosnik 9cec08
- Re-add boost-thread.patch.
Benjamin Kosnik 9cec08
- Change boost-base.patch to show thread tags.
Benjamin Kosnik 9cec08
- Change boost-gcc-tools.patch to use SOTAG, compile with dllversion.
Benjamin Kosnik 9cec08
- Add symbolic links to files.
Benjamin Kosnik fd51ec
- Sanity check can compile with gcc-3.3.x, gcc-3.4.2, gcc-4.0.x., gcc-4.1.x.
Benjamin Kosnik 9cec08
Benjamin Kosnik a609a1
* Thu Dec 02 2004 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-3
Benjamin Kosnik a609a1
- (#122817: libboost_*.so symlinks missing)
Benjamin Kosnik a609a1
- (#141574: half of the package is missing)
Benjamin Kosnik a609a1
- (#141617: bad patch boost-base.patch)
Benjamin Kosnik a609a1
Benjamin Kosnik b11f6e
* Wed Dec 01 2004 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-2
Benjamin Kosnik b11f6e
- Remove bogus Obsoletes.
Benjamin Kosnik b11f6e
Benjamin Kosnik 7e774a
* Mon Nov 29 2004 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-1
Benjamin Kosnik 7e774a
- Update to 1.32.0
Benjamin Kosnik 7e774a
Than Ngo e17834
* Wed Sep 22 2004 Than Ngo <than@redhat.com> 1.31.0-9
Than Ngo e17834
- cleanup specfile
Than Ngo e17834
- fix multiarch problem
Than Ngo e17834
cvsdist 71247b
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 71247b
- rebuilt
cvsdist 71247b
cvsdist afeb5b
* Wed May 05 2004 Warren Togami <wtogami@redhat.com> 1.31.0-7
cvsdist afeb5b
- missing Obsoletes boost-python
cvsdist afeb5b
cvsdist afeb5b
* Mon May 03 2004 Benjamin Kosnik <bkoz@redhat.com> 
cvsdist afeb5b
- (#121630: gcc34 patch needed)
cvsdist afeb5b
cvsdist afeb5b
* Wed Apr 21 2004 Warren Togami <wtogami@redhat.com>
cvsdist afeb5b
- #121415 FC2 BLOCKER: Obsoletes boost-python-devel, boost-doc
cvsdist afeb5b
- other cleanups
cvsdist afeb5b
cvsdist afeb5b
* Tue Mar 30 2004 Benjamin Kosnik <bkoz@redhat.com> 
cvsdist afeb5b
- Remove bjam dependency. (via Graydon).
cvsdist afeb5b
- Fix installed library names.
cvsdist afeb5b
- Fix SONAMEs in shared libraries.
cvsdist afeb5b
- Fix installed header location.
cvsdist afeb5b
- Fix installed permissions.
cvsdist afeb5b
cvsdist afeb5b
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist afeb5b
- rebuilt
cvsdist afeb5b
cvsdist afeb5b
* Mon Feb 09 2004 Benjamin Kosnik <bkoz@redhat.com> 1.31.0-2
cvsdist bba1d3
- Update to boost-1.31.0
cvsdist bba1d3
cvsdist afeb5b
* Thu Jan 22 2004 Benjamin Kosnik <bkoz@redhat.com> 1.31.0-1
cvsdist 34404a
- Update to boost-1.31.0.rc2
cvsdist 34404a
- (#109307:  Compile Failure with boost libraries)
cvsdist 34404a
- (#104831:  Compile errors in apps using Boost.Python...)
cvsdist 34404a
- Unify into boost, boost-devel rpms.
cvsdist 34404a
- Simplify installation using bjam and prefix install.
cvsdist 34404a
cvsdist afeb5b
* Tue Sep 09 2003 Nalin Dahyabhai <nalin@redhat.com> 1.30.2-2
cvsdist f8f00b
- require boost-devel instead of devel in subpackages which require boost-devel
cvsdist f8f00b
- remove stray Prefix: tag
cvsdist f8f00b
cvsdist afeb5b
* Mon Sep 08 2003 Benjamin Kosnik <bkoz@redhat.com> 1.30.2-1
cvsdist f8f00b
- change license to Freely distributable
cvsdist f8f00b
- verify installation of libboost_thread
cvsdist f8f00b
- more boost-devel removals
cvsdist f8f00b
- deal with lack of _REENTRANT on ia64/s390
cvsdist f8f00b
- (#99458) rpm -e fixed via explict dir additions
cvsdist f8f00b
- (#103293) update to 1.30.2
cvsdist f8f00b
cvsdist f8f00b
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist f8f00b
- rebuilt
cvsdist f8f00b
cvsdist f8f00b
* Tue May 13 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist f8f00b
- remove packager, change to new Group:
cvsdist f8f00b
cvsdist afeb5b
* Tue May 06 2003 Tim Powers <timp@redhat.com> 1.30.0-3
cvsdist f8f00b
- add deffattr's so we don't have unknown users owning files