408862e
%bcond_with tests
408862e
cvsdist f8f00b8
Name: boost
cvsdist f8f00b8
Summary: The Boost C++ Libraries
1b86749
Version: 1.34.1
13d9b03
Release: 17%{?dist}
ed00540
License: Boost
cvsdist f8f00b8
URL: http://www.boost.org/
cvsdist f8f00b8
Group: System Environment/Libraries
1b86749
Source: http://downloads.sourceforge.net/boost/boost_1_34_1.tar.bz2
39a7ebf
Obsoletes: boost-doc <= 1.30.2
39a7ebf
Obsoletes: boost-python <= 1.30.2
dff01fc
Provides: boost-python = %{version}-%{release}
39a7ebf
Provides: boost-doc = %{version}-%{release}
7bc91ee
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
dff01fc
BuildRequires: libstdc++-devel
ace5fba
BuildRequires: bzip2-libs
cd07356
BuildRequires: bzip2-devel
cd07356
BuildRequires: zlib-devel
53b71d1
BuildRequires: python-devel
4da8270
BuildRequires: libicu-devel
39a7ebf
Patch0: boost-configure.patch
1b86749
Patch1: boost-gcc-soname.patch
39a7ebf
Patch2: boost-use-rpm-optflags.patch
39a7ebf
Patch3: boost-run-tests.patch
1b86749
Patch4: boost-regex.patch
73ed8a2
Patch5: boost-gcc43.patch
cvsdist f8f00b8
cvsdist f8f00b8
%description
cvsdist 34404a6
Boost provides free peer-reviewed portable C++ source libraries.  The
cvsdist 34404a6
emphasis is on libraries which work well with the C++ Standard
7850836
Library, in the hopes of establishing "existing practice" for
7850836
extensions and providing reference implementations so that the Boost
7850836
libraries are suitable for eventual standardization. (Some of the
7850836
libraries have already been proposed for inclusion in the C++
7850836
Standards Committee's upcoming C++ Standard Library Technical Report.)
cvsdist f8f00b8
cvsdist f8f00b8
%package devel
dff01fc
Summary: The Boost C++ headers and shared development libraries
dff01fc
Group: Development/Libraries
cvsdist afeb5b1
Requires: boost = %{version}-%{release}
cvsdist afeb5b1
Provides: boost-python-devel = %{version}-%{release}
cvsdist f8f00b8
cvsdist f8f00b8
%description devel
dff01fc
Headers and shared object symlinks for the Boost C++ libraries.
dff01fc
408862e
%package static
dff01fc
Summary: The Boost C++ static development libraries
dff01fc
Group: Development/Libraries
7bc91ee
Requires: boost-devel = %{version}-%{release}
408862e
Obsoletes: boost-devel-static < 1.34.1-14
408862e
Provides: boost-devel-static = %{version}-%{release}
dff01fc
408862e
%description static
408862e
Static Boost C++ libraries.
546a43a
546a43a
%package doc
546a43a
Summary: The Boost C++ html docs
dff01fc
Group: Documentation
546a43a
Provides: boost-python-docs = %{version}-%{release}
546a43a
546a43a
%description doc
dff01fc
HTML documentation files for Boost C++ libraries.
cvsdist f8f00b8
cvsdist f8f00b8
%prep
1b86749
%setup -q -n %{name}_1_34_1
cvsdist f8f00b8
%patch0 -p0
1b86749
%patch1 -p0
1b86749
%patch2 -p0
0513b8f
%patch3 -p0
1b86749
%patch4 -p0
7bb17cb
%patch5 -p1
cvsdist f8f00b8
cvsdist f8f00b8
%build
39a7ebf
BOOST_ROOT=`pwd`
39a7ebf
staged_dir=stage
39a7ebf
export BOOST_ROOT
39a7ebf
39a7ebf
# build make tools, ie bjam, necessary for building libs, docs, and testing
39a7ebf
(cd tools/jam/src && ./build.sh)
39a7ebf
BJAM=`find tools/jam/src/ -name bjam -a -type f`
39a7ebf
39a7ebf
#BUILD_FLAGS="--with-toolset=gcc --prefix=$RPM_BUILD_ROOT%{_prefix}"
39a7ebf
BUILD_FLAGS="--with-toolset=gcc"
78bcf4a
PYTHON_VERSION=$(python -c 'import sys; print sys.version[:3]')
39a7ebf
PYTHON_FLAGS="--with-python-root=/usr --with-python-version=$PYTHON_VERSION"
39a7ebf
REGEX_FLAGS="--with-icu"
39a7ebf
./configure $BUILD_FLAGS $PYTHON_FLAGS $REGEX_FLAGS 
39a7ebf
make all
39a7ebf
39a7ebf
# build docs, requires a network connection for docbook XSLT stylesheets
39a7ebf
#cd ./doc
39a7ebf
#chmod +x ../tools/boostbook/setup_boostbook.sh
39a7ebf
#../tools/boostbook/setup_boostbook.sh
39a7ebf
#$BOOST_ROOT/$BJAM --v2 -sICU_PATH=/usr --user-config=../user-config.jam html
39a7ebf
#cd ..
cvsdist f8f00b8
ed539c2
%check
7bc91ee
%if %{with tests}
39a7ebf
echo "

" `uname -a` "

" > status/regression_comment.html
39a7ebf
echo "" >> status/regression_comment.html
39a7ebf
echo "

" `g++ --version` "

" >> status/regression_comment.html
39a7ebf
echo "" >> status/regression_comment.html
39a7ebf
39a7ebf
chmod +x tools/regression/run_tests.sh
39a7ebf
./tools/regression/run_tests.sh
39a7ebf
39a7ebf
results1=status/cs-`uname`.html
39a7ebf
results2=status/cs-`uname`-links.html
39a7ebf
email=benjamin.kosnik@gmail.com
39a7ebf
if [ -f $results1 ] && [ -f $results2 ]; then
39a7ebf
  echo "sending results starting"
39a7ebf
  testdate=`date +%Y%m%d`
39a7ebf
  testarch=`uname -m`
39a7ebf
  results=boost-results-$testdate-$testarch.tar.bz2
39a7ebf
  tar -cvf boost-results-$testdate-$testarch.tar $results1 $results2
39a7ebf
  bzip2 -f boost-results-$testdate-$testarch.tar 
39a7ebf
  echo | mutt -s "$testdate boost regression $testarch" -a $results $email 
39a7ebf
  echo "sending results finished"
39a7ebf
else
39a7ebf
  echo "error sending results"
7850836
fi
39a7ebf
%endif
7850836
cvsdist f8f00b8
%install
39a7ebf
rm -rf $RPM_BUILD_ROOT
e178341
mkdir -p $RPM_BUILD_ROOT%{_libdir}
e178341
mkdir -p $RPM_BUILD_ROOT%{_includedir}
7bc91ee
mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
e178341
e178341
# install lib
7e774a9
for i in `find stage -type f -name \*.a`; do
7e774a9
  NAME=`basename $i`;
dff01fc
  install -p -m 0644 $i $RPM_BUILD_ROOT%{_libdir}/$NAME;
cvsdist afeb5b1
done;
39a7ebf
for i in `find stage -type f -name \*.so`; do
39a7ebf
  NAME=$i;
1b86749
  SONAME=$i.3;
39a7ebf
  VNAME=$i.%{version};
39a7ebf
  base=`basename $i`;
39a7ebf
  NAMEbase=$base;
1b86749
  SONAMEbase=$base.3;
39a7ebf
  VNAMEbase=$base.%{version};
39a7ebf
  mv $i $VNAME;
39a7ebf
  ln -s $VNAMEbase $SONAME;
39a7ebf
  ln -s $VNAMEbase $NAME;
39a7ebf
  install -p -m 755 $VNAME $RPM_BUILD_ROOT%{_libdir}/$VNAMEbase;
39a7ebf
  mv $SONAME $RPM_BUILD_ROOT%{_libdir}/$SONAMEbase;
39a7ebf
  mv $NAME $RPM_BUILD_ROOT%{_libdir}/$NAMEbase;
ce250c8
done;
e178341
e178341
# install include files
7bc91ee
find %{name} -type d | while read a; do
7bc91ee
  mkdir -p $RPM_BUILD_ROOT%{_includedir}/$a
7bc91ee
  find $a -mindepth 1 -maxdepth 1 -type f \
7bc91ee
    | xargs -r install -m 644 -p -t $RPM_BUILD_ROOT%{_includedir}/$a
cvsdist afeb5b1
done
e178341
7bc91ee
# install doc files
7bc91ee
DOCPATH=$RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/
408862e
find libs doc more -type f \( -name \*.htm -o -name \*.html \) \
7bc91ee
    | sed -n '/\//{s,/[^/]*$,,;p}' \
7bc91ee
    | sort -u > tmp-doc-directories
7bc91ee
sed "s:^:$DOCPATH:" tmp-doc-directories | xargs -r mkdir -p
7bc91ee
cat tmp-doc-directories | while read a; do
7bc91ee
    find $a -mindepth 1 -maxdepth 1 -name \*.htm\* \
7bc91ee
	 | xargs install -m 644 -p -t $DOCPATH$a
546a43a
done
7bc91ee
rm tmp-doc-directories
7bc91ee
install -p -m 644 -t $DOCPATH LICENSE_1_0.txt index.htm
546a43a
7bc91ee
# remove scripts used to generate include files
39a7ebf
find $RPM_BUILD_ROOT%{_includedir}/ \( -name '*.pl' -o -name '*.sh' \) -exec rm {} \;
39a7ebf
cvsdist f8f00b8
%clean
39a7ebf
rm -rf $RPM_BUILD_ROOT
cvsdist f8f00b8
39a7ebf
%post -p /sbin/ldconfig
cvsdist f8f00b8
39a7ebf
%postun -p /sbin/ldconfig
cvsdist f8f00b8
7bc91ee
%files
dff01fc
%defattr(-, root, root, -)
0513b8f
%{_libdir}/*.so.%{version}
1b86749
%{_libdir}/*.so.3
cvsdist f8f00b8
e178341
%files devel
dff01fc
%defattr(-, root, root, -)
e178341
%{_includedir}/boost
0513b8f
%{_libdir}/*.so
cvsdist f8f00b8
408862e
%files static
dff01fc
%defattr(-, root, root, -)
dff01fc
%{_libdir}/*.a
dff01fc
546a43a
%files doc
dff01fc
%defattr(-, root, root, -)
7bc91ee
%doc %{_docdir}/%{name}-%{version}
546a43a
cvsdist f8f00b8
%changelog
13d9b03
* Mon Oct  6 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-17
13d9b03
- Fix gcc43 patch to apply cleanly under --fuzz=0
13d9b03
- Resolves: #465003
13d9b03
a595586
* Thu Jun 12 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-16
a595586
- Fix "changes meaning of keywords" in boost date_time
a595586
- Related: #450718
a595586
ed00540
* Thu May 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.34.1-15
ed00540
- fix license tag
ed00540
408862e
* Thu Mar 27 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-14
408862e
- Change devel-static back to static.
408862e
- Related: #225622
408862e
7bc91ee
* Wed Mar 26 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-13
7bc91ee
- Install library doc files
7bc91ee
- Revamp %%install phase to speed up overall build time
7bc91ee
- Some cleanups per merge review
7bc91ee
- Resolves: #437032
7bc91ee
ac5861b
* Thu Feb 14 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-12
ac5861b
- Fix "changes meaning of keywords" in boost python
ac5861b
- Resolves: #432694
ac5861b
eb542eb
* Wed Feb 13 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-11
eb542eb
- Fix "changes meaning of special_values_parser" in boost date_time
eb542eb
- Resolves: #432433
eb542eb
c693092
* Wed Feb  6 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-10
73ed8a2
- Fixes for GCC 4.3
7bb17cb
- Resolves: #431609
7bb17cb
a94fed9
* Mon Jan 14 2008 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-7
8b63e4c
- Fixes for boost.regex (rev 42674).
8b63e4c
f6f76de
* Wed Sep 19 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-5
f6f76de
- (#283771: Linking against boost libraries fails).
f6f76de
b1c34ba
* Tue Aug 21 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-4
b1c34ba
- Rebuild.
b1c34ba
26fa8e5
* Wed Aug 08 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-3
26fa8e5
- Rebuild for icu 3.8 bump.
26fa8e5
9e0e852
* Thu Aug 02 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-2
9e0e852
- SONAME to 3.
9e0e852
39a7ebf
* Tue Jul 31 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1-1
39a7ebf
- Update to boost_1_34_1.
39a7ebf
- Source via http.
39a7ebf
- Philipp Thomas <pth.suse.de> fix for RPM_OPT_FLAGS
39a7ebf
- Philipp Thomas <pth.suse.de> fix for .so sym links.
39a7ebf
- (#225622) Patrice Dumas review comments. 
39a7ebf
39a7ebf
* Tue Jun 26 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.1.rc1-0.1
39a7ebf
- Update to boost_1_34_1_RC1.
39a7ebf
07b7f88
* Mon Apr 02 2007 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-13
07b7f88
- (#225622: Merge Review: boost)
07b7f88
  Change static to devel-static.
07b7f88
e509989
* Mon Mar 26 2007 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-12
dff01fc
- (#233523: libboost_python needs rebuild against python 2.5)
e509989
  Use patch.
e509989
e509989
* Mon Mar 26 2007 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-11
dff01fc
- (#225622: Merge Review: boost)
dff01fc
  Source to http.
dff01fc
  BuildRoot to preferred value.
dff01fc
  PreReq to post/postun -p
dff01fc
  Clarified BSL as GPL-Compatible, Free Software License.
dff01fc
  Remove Obsoletes.
dff01fc
  Add Provides boost-python.
73ed8a2
  Remove mkdir -p $RPM_BUILD_ROOT%%{_docdir}
dff01fc
  Added periods for decription text. 
dff01fc
  Fix Group field.
dff01fc
  Remove doc Requires boost.
dff01fc
  Preserve timestamps on install.
73ed8a2
  Use %%defattr(-, root, root, -)
dff01fc
  Added static package for .a libs.
dff01fc
  Install static libs with 0644 permissions.
73ed8a2
  Use %%doc for doc files.
dff01fc
39a7ebf
* Mon Jan 22 2007 Benjamin Kosnik <bkoz@redhat.com> 1.34.0-0.5
39a7ebf
- Update to boost.RC_1_34_0 snapshot as of 2007-01-19.
39a7ebf
- Modify build procedures for boost build v2.
39a7ebf
- Add *-mt variants for libraries, or at least variants that use
39a7ebf
  threads (regex and thread).
39a7ebf
ed539c2
* Thu Nov 23 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-10
73ed8a2
- (#182414: boost: put tests in %%check section) via Rex Dieter
73ed8a2
- Fix EVR with %%{?dist} tag via Gianluca Sforna
ed539c2
044bf8b
* Wed Nov 15 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-9
044bf8b
- (#154784: boost-debuginfo package is empty)
044bf8b
a9a85c8
* Tue Nov 14 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-8
a9a85c8
- (#205866: Revert scanner.hpp change.)
a9a85c8
4da8270
* Mon Nov 13 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-7
4da8270
- (#205866: boost::spirit generates warnings with -Wshadow)
4da8270
- (#205863: serialization lib generates warnings)
4da8270
- (#204326: boost RPM missing dependencies)
4da8270
- (#193465: [SIGNAL/BIND] Regressions with GCC 4.1)
4da8270
- BUILD_FLAGS, add, to see actual compile line.
4da8270
- REGEX_FLAGS, add, to compile regex with ICU support.
4da8270
3cbaf60
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-6.1
3cbaf60
- rebuild
3cbaf60
53b71d1
* Tue May 16 2006 Karsten Hopp <karsten@redhat.de> 1.33.1-6
53b71d1
- buildrequire python-devel for Python.h
53b71d1
Florian La Roche 2bd1c23
* Thu Feb 16 2006 Florian La Roche <laroche@redhat.com> - 1.33.1-5
Florian La Roche 2bd1c23
- use the real version number to point to the shared libs
Florian La Roche 2bd1c23
ce3b97b
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-4.2
ce3b97b
- bump again for double-long bug on ppc(64)
ce3b97b
64350af
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.33.1-4.1
64350af
- rebuilt for new gcc4.1 snapshot and glibc changes
64350af
ce250c8
* Thu Jan 05 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-4
ce250c8
- Fix symbolic links.
ce250c8
ace5fba
* Wed Jan 04 2006 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-3
ace5fba
- Update to boost-1.33.1.
ace5fba
- (#176485: Missing BuildRequires)
ace5fba
- (#169271: /usr/lib/libboost*.so.? links missing in package)
ace5fba
e2021cd
* Thu Dec 22 2005 Jesse Keating <jkeating@redhat.com> 1.33.1-2
e2021cd
- rebuilt
e2021cd
7850836
* Mon Nov 14 2005 Benjamin Kosnik <bkoz@redhat.com> 1.33.1-1
7850836
- Update to boost-1.33.1 beta.
7850836
- Run testsuite, gather results.
7850836
cd07356
* Tue Oct 11 2005 Nils Philippsen <nphilipp@redhat.com> 1.33.0-4
cd07356
- build require bzip2-devel and zlib-devel
cd07356
546a43a
* Tue Aug 23 2005 Benjamin Kosnik <bkoz@redhat.com> 1.33.0-3
546a43a
- Create doc package again.
546a43a
- Parts of the above by Neal Becker <ndbecker2@gmail.com>.
546a43a
78bcf4a
* Fri Aug 12 2005 Benjamin Kosnik <bkoz@redhat.com> 1.33.0-1
88523be
- Update to boost-1.33.0, update SONAME to 2 due to ABI changes.
78bcf4a
- Simplified PYTHON_VERSION by Philipp Thomas <pth@suse.de>
78bcf4a
0513b8f
* Tue May 24 2005 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-6
0513b8f
- (#153093: boost warns that gcc 4.0.0 is an unknown compiler)
0513b8f
- (#152205: development .so symlinks should be in -devel subpackage)
0513b8f
- (#154783: linker .so symlinks missing from boost-devel package)
0513b8f
fd51ecb
* Fri Mar 18 2005 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-5
fd51ecb
- Revert boost-base.patch to old behavior.
fd51ecb
- Use SONAMEVERSION instead of dllversion.
fd51ecb
9cec083
* Wed Mar 16 2005 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-4
9cec083
- (#142612: Compiling Boost 1.32.0 Failed in RHEL 3.0 on Itanium2) 
9cec083
- (#150069: libboost_python.so is missing)
9cec083
- (#141617: bad patch boost-base.patch)
9cec083
- (#122817: libboost_*.so symlinks missing)
9cec083
- Re-add boost-thread.patch.
9cec083
- Change boost-base.patch to show thread tags.
9cec083
- Change boost-gcc-tools.patch to use SOTAG, compile with dllversion.
9cec083
- Add symbolic links to files.
fd51ecb
- Sanity check can compile with gcc-3.3.x, gcc-3.4.2, gcc-4.0.x., gcc-4.1.x.
9cec083
a609a15
* Thu Dec 02 2004 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-3
a609a15
- (#122817: libboost_*.so symlinks missing)
a609a15
- (#141574: half of the package is missing)
a609a15
- (#141617: bad patch boost-base.patch)
a609a15
b11f6e7
* Wed Dec 01 2004 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-2
b11f6e7
- Remove bogus Obsoletes.
b11f6e7
7e774a9
* Mon Nov 29 2004 Benjamin Kosnik <bkoz@redhat.com> 1.32.0-1
7e774a9
- Update to 1.32.0
7e774a9
e178341
* Wed Sep 22 2004 Than Ngo <than@redhat.com> 1.31.0-9
e178341
- cleanup specfile
e178341
- fix multiarch problem
e178341
cvsdist 71247bf
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 71247bf
- rebuilt
cvsdist 71247bf
cvsdist afeb5b1
* Wed May 05 2004 Warren Togami <wtogami@redhat.com> 1.31.0-7
cvsdist afeb5b1
- missing Obsoletes boost-python
cvsdist afeb5b1
cvsdist afeb5b1
* Mon May 03 2004 Benjamin Kosnik <bkoz@redhat.com> 
cvsdist afeb5b1
- (#121630: gcc34 patch needed)
cvsdist afeb5b1
cvsdist afeb5b1
* Wed Apr 21 2004 Warren Togami <wtogami@redhat.com>
cvsdist afeb5b1
- #121415 FC2 BLOCKER: Obsoletes boost-python-devel, boost-doc
cvsdist afeb5b1
- other cleanups
cvsdist afeb5b1
cvsdist afeb5b1
* Tue Mar 30 2004 Benjamin Kosnik <bkoz@redhat.com> 
cvsdist afeb5b1
- Remove bjam dependency. (via Graydon).
cvsdist afeb5b1
- Fix installed library names.
cvsdist afeb5b1
- Fix SONAMEs in shared libraries.
cvsdist afeb5b1
- Fix installed header location.
cvsdist afeb5b1
- Fix installed permissions.
cvsdist afeb5b1
cvsdist afeb5b1
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist afeb5b1
- rebuilt
cvsdist afeb5b1
cvsdist afeb5b1
* Mon Feb 09 2004 Benjamin Kosnik <bkoz@redhat.com> 1.31.0-2
cvsdist bba1d3f
- Update to boost-1.31.0
cvsdist bba1d3f
cvsdist afeb5b1
* Thu Jan 22 2004 Benjamin Kosnik <bkoz@redhat.com> 1.31.0-1
cvsdist 34404a6
- Update to boost-1.31.0.rc2
cvsdist 34404a6
- (#109307:  Compile Failure with boost libraries)
cvsdist 34404a6
- (#104831:  Compile errors in apps using Boost.Python...)
cvsdist 34404a6
- Unify into boost, boost-devel rpms.
cvsdist 34404a6
- Simplify installation using bjam and prefix install.
cvsdist 34404a6
cvsdist afeb5b1
* Tue Sep 09 2003 Nalin Dahyabhai <nalin@redhat.com> 1.30.2-2
cvsdist f8f00b8
- require boost-devel instead of devel in subpackages which require boost-devel
cvsdist f8f00b8
- remove stray Prefix: tag
cvsdist f8f00b8
cvsdist afeb5b1
* Mon Sep 08 2003 Benjamin Kosnik <bkoz@redhat.com> 1.30.2-1
cvsdist f8f00b8
- change license to Freely distributable
cvsdist f8f00b8
- verify installation of libboost_thread
cvsdist f8f00b8
- more boost-devel removals
cvsdist f8f00b8
- deal with lack of _REENTRANT on ia64/s390
cvsdist f8f00b8
- (#99458) rpm -e fixed via explict dir additions
cvsdist f8f00b8
- (#103293) update to 1.30.2
cvsdist f8f00b8
cvsdist f8f00b8
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist f8f00b8
- rebuilt
cvsdist f8f00b8
cvsdist f8f00b8
* Tue May 13 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist f8f00b8
- remove packager, change to new Group:
cvsdist f8f00b8
cvsdist afeb5b1
* Tue May 06 2003 Tim Powers <timp@redhat.com> 1.30.0-3
cvsdist f8f00b8
- add deffattr's so we don't have unknown users owning files