687b7c
%define with_python %{?_without_python: 0} %{?!_without_python: 1}
687b7c
%define with_php %{?_without_php: 0} %{?!_without_php: 1}
687b7c
%define with_tcl %{?_without_tcl: 0} %{?!_without_tcl: 1}
687b7c
%define with_ruby %{?_without_ruby: 0} %{?!_without_ruby: 1}
687b7c
%define with_lua %{?_without_lua: 0} %{?!_without_lua: 1}
687b7c
%define php_extdir %(php-config --extension-dir 2>/dev/null || echo %{_libdir}/php4)
687b7c
%define svnrev r1190
687b7c
#define pretag 1.2.99908020600
687b7c
687b7c
# Private libraries are not be exposed globally by RPM
687b7c
# RPM 4.9
687b7c
%global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}%{php_extdir}/.*\\.so$
687b7c
687b7c
687b7c
Summary: Round Robin Database Tool to store and display time-series data
687b7c
Name: rrdtool
687b7c
Version: 1.4.8
687b7c
Release: 9%{?dist}
687b7c
License: GPLv2+ with exceptions
687b7c
Group: Applications/Databases
687b7c
URL: http://oss.oetiker.ch/rrdtool/
687b7c
Source0: http://oss.oetiker.ch/%{name}/pub/%{name}-%{version}.tar.gz
687b7c
Source1: php4-%{svnrev}.tar.gz
687b7c
Patch1: rrdtool-1.4.4-php54.patch
687b7c
# workaround for rhbz#92165
687b7c
Patch2: rrdtool-1.4.7-ruby-2-fix.patch
687b7c
# disable logo for php 5.5.
687b7c
Patch3: rrdtool-1.4.7-php55.patch
687b7c
Patch4: rrdtool-1.4.7-autoconf-fix.patch
687b7c
# patch merged upstream, http://github.com/oetiker/rrdtool-1.x/pull/397
687b7c
Patch6: rrdtool-1.4.8-imginfo-check.patch
687b7c
# patch sent upstream
687b7c
Patch7: rrdtool-1.4.8-doc-fix.patch
687b7c
687b7c
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
687b7c
Requires: dejavu-sans-mono-fonts
687b7c
BuildRequires: gcc-c++, openssl-devel, freetype-devel
687b7c
BuildRequires: libpng-devel, zlib-devel, intltool >= 0.35.0
687b7c
BuildRequires: cairo-devel >= 1.4.6, pango-devel >= 1.17
687b7c
BuildRequires: libtool, groff
687b7c
BuildRequires: gettext, libxml2-devel
687b7c
BuildRequires: perl-ExtUtils-MakeMaker, perl-devel, automake, autoconf
687b7c
687b7c
%description
687b7c
RRD is the Acronym for Round Robin Database. RRD is a system to store and
687b7c
display time-series data (i.e. network bandwidth, machine-room temperature,
687b7c
server load average). It stores the data in a very compact way that will not
687b7c
expand over time, and it presents useful graphs by processing the data to
687b7c
enforce a certain data density. It can be used either via simple wrapper
687b7c
scripts (from shell or Perl) or via frontends that poll network devices and
687b7c
put a friendly user interface on it.
687b7c
687b7c
%package devel
687b7c
Summary: RRDtool libraries and header files
687b7c
Group: Development/Libraries
687b7c
Requires: %{name} = %{version}-%{release}
687b7c
Requires: pkgconfig
687b7c
687b7c
%description devel
687b7c
RRD is the Acronym for Round Robin Database. RRD is a system to store and
687b7c
display time-series data (i.e. network bandwidth, machine-room temperature,
687b7c
server load average). This package allow you to use directly this library.
687b7c
687b7c
%package doc
687b7c
Summary: RRDtool documentation
687b7c
Group: Documentation
687b7c
687b7c
%description doc
687b7c
RRD is the Acronym for Round Robin Database. RRD is a system to store and
687b7c
display time-series data (i.e. network bandwidth, machine-room temperature,
687b7c
server load average). This package contains documentation on using RRD.
687b7c
687b7c
%package perl
687b7c
Summary: Perl RRDtool bindings
687b7c
Group: Development/Languages
687b7c
Requires: %{name} = %{version}-%{release}
687b7c
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
687b7c
Obsoletes: perl-%{name} < %{version}-%{release}
687b7c
Provides: perl-%{name} = %{version}-%{release}
687b7c
687b7c
%description perl
687b7c
The Perl RRDtool bindings
687b7c
687b7c
%if %{with_python}
687b7c
# Make sure the runtime python is newer than the build one;
687b7c
# give a default value to handle parsing in cases when python is not present:
687b7c
%{!?rrd_python_version: %define rrd_python_version %(%{__python} -c 'import sys; print sys.version.split(" ")[0]' || echo "3.14")}
687b7c
687b7c
%package python
687b7c
Summary: Python RRDtool bindings
687b7c
Group: Development/Languages
687b7c
BuildRequires: python-devel
687b7c
Requires: python >= %{rrd_python_version}
687b7c
Requires: %{name} = %{version}-%{release}
687b7c
Obsoletes: python-%{name} < %{version}-%{release}
687b7c
Provides: python-%{name} = %{version}-%{release}
687b7c
687b7c
%description python
687b7c
Python RRDtool bindings.
687b7c
%endif
687b7c
687b7c
%ifarch %{power64}
687b7c
# php bits busted on ppc64 at the moment
687b7c
%define with_php 0
687b7c
%endif
687b7c
687b7c
%if %{with_php}
687b7c
%package php
687b7c
Summary: PHP RRDtool bindings
687b7c
Group: Development/Languages
687b7c
BuildRequires: php-devel >= 4.0
687b7c
Requires: php >= 4.0
687b7c
Requires: %{name} = %{version}-%{release}
687b7c
Requires: php(zend-abi) = %{php_zend_api}
687b7c
Requires: php(api) = %{php_core_api}
687b7c
Obsoletes: php-%{name} < %{version}-%{release}
687b7c
Provides: php-%{name} = %{version}-%{release}
687b7c
Provides: php-pecl(rrdtool)
687b7c
687b7c
%description php
687b7c
The %{name}-php package includes a dynamic shared object (DSO) that adds
687b7c
RRDtool bindings to the PHP HTML-embedded scripting language.
687b7c
%endif
687b7c
687b7c
%if %{with_tcl}
687b7c
%package tcl
687b7c
Summary: Tcl RRDtool bindings
687b7c
Group: Development/Languages
687b7c
BuildRequires: tcl-devel >= 8.0
687b7c
Requires: tcl >= 8.0
687b7c
Requires: %{name} = %{version}-%{release}
687b7c
Obsoletes: tcl-%{name} < %{version}-%{release}
687b7c
Provides: tcl-%{name} = %{version}-%{release}
687b7c
687b7c
%description tcl
687b7c
The %{name}-tcl package includes RRDtool bindings for Tcl.
687b7c
%endif
687b7c
687b7c
%if %{with_ruby}
687b7c
687b7c
%package ruby
687b7c
Summary: Ruby RRDtool bindings
687b7c
Group: Development/Languages
687b7c
BuildRequires: ruby, ruby-devel
687b7c
Requires: %{name} = %{version}-%{release}
687b7c
687b7c
%description ruby
687b7c
The %{name}-ruby package includes RRDtool bindings for Ruby.
687b7c
%endif
687b7c
687b7c
%if %{with_lua}
687b7c
%define luaver 5.1
687b7c
%define lualibdir %{_libdir}/lua/%{luaver}
687b7c
%define luapkgdir %{_datadir}/lua/%{luaver}
687b7c
687b7c
%package lua
687b7c
Summary: Lua RRDtool bindings
687b7c
Group: Development/Languages
687b7c
BuildRequires: lua, lua-devel
687b7c
Requires: lua(abi) = %{luaver}
687b7c
Requires: %{name} = %{version}-%{release}
687b7c
687b7c
%description lua
687b7c
The %{name}-lua package includes RRDtool bindings for Lua.
687b7c
%endif
687b7c
687b7c
%prep
687b7c
%setup -q -n %{name}-%{version} %{?with_php: -a 1}
687b7c
%if %{with_php}
687b7c
%patch1 -p1 -b .php54
687b7c
%patch3 -p1 -b .php55
687b7c
%endif
687b7c
%patch2 -p1 -b .ruby-2-fix
687b7c
%patch4 -p1 -b .autoconf-fix
687b7c
%patch6 -p1 -b .imginfo-check
687b7c
%patch7 -p1 -b .doc-fix
687b7c
687b7c
# Fix to find correct python dir on lib64
687b7c
%{__perl} -pi -e 's|get_python_lib\(0,0,prefix|get_python_lib\(1,0,prefix|g' \
687b7c
    configure
687b7c
687b7c
# Most edits shouldn't be necessary when using --libdir, but
687b7c
# w/o, some introduce hardcoded rpaths where they shouldn't
687b7c
%{__perl} -pi.orig -e 's|/lib\b|/%{_lib}|g' \
687b7c
    configure Makefile.in php4/configure php4/ltconfig*
687b7c
687b7c
# Perl 5.10 seems to not like long version strings, hack around it
687b7c
%{__perl} -pi.orig -e 's|1.299907080300|1.29990708|' \
687b7c
    bindings/perl-shared/RRDs.pm bindings/perl-piped/RRDp.pm
687b7c
687b7c
#
687b7c
# fix config files for php4 bindings
687b7c
# workaround needed due to https://bugzilla.redhat.com/show_bug.cgi?id=211069
687b7c
cp -p /usr/lib/rpm/config.{guess,sub} php4/
687b7c
687b7c
%build
687b7c
./autogen.sh
687b7c
%configure \
687b7c
    --with-perl-options='INSTALLDIRS="vendor"' \
687b7c
    --disable-rpath \
687b7c
%if %{with_tcl}
687b7c
    --enable-tcl-site \
687b7c
    --with-tcllib=%{_libdir} \
687b7c
%else
687b7c
    --disable-tcl \
687b7c
%endif
687b7c
%if %{with_python}
687b7c
    --enable-python \
687b7c
%else
687b7c
    --disable-python \
687b7c
%endif
687b7c
%if %{with_ruby}
687b7c
    --enable-ruby \
687b7c
%else
687b7c
    --disable-ruby \
687b7c
%endif
687b7c
    --disable-static \
687b7c
    --with-pic
687b7c
687b7c
# Fix another rpath issue
687b7c
%{__perl} -pi.orig -e 's|-Wl,--rpath -Wl,\$rp||g' \
687b7c
    bindings/perl-shared/Makefile.PL
687b7c
687b7c
%if %{with_ruby}
687b7c
# Remove Rpath from Ruby
687b7c
%{__perl} -pi.orig -e 's|-Wl,--rpath -Wl,\$\(EPREFIX\)/lib||g' \
687b7c
    bindings/ruby/extconf.rb
687b7c
sed -i 's| extconf.rb| extconf.rb --vendor |' bindings/Makefile
687b7c
%endif
687b7c
687b7c
# Force RRDp bits where we want 'em, not sure yet why the
687b7c
# --with-perl-options and --libdir don't take
687b7c
pushd bindings/perl-piped/
687b7c
%{__perl} Makefile.PL INSTALLDIRS=vendor
687b7c
%{__perl} -pi.orig -e 's|/lib/perl|/%{_lib}/perl|g' Makefile
687b7c
popd
687b7c
687b7c
#{__make} %{?_smp_mflags}
687b7c
make
687b7c
687b7c
# Build the php module, the tmp install is required
687b7c
%if %{with_php}
687b7c
%define rrdtmp %{_tmppath}/%{name}-%{version}-tmpinstall
687b7c
%{__make} install DESTDIR="%{rrdtmp}"
687b7c
pushd php4/
687b7c
%configure \
687b7c
    --with-rrdtool="%{rrdtmp}%{_prefix}" \
687b7c
    --disable-static
687b7c
#{__make} %{?_smp_mflags}
687b7c
make
687b7c
popd
687b7c
%{__rm} -rf %{rrdtmp}
687b7c
%endif
687b7c
687b7c
# Fix @perl@ and @PERL@
687b7c
find examples/ -type f \
687b7c
    -exec %{__perl} -pi -e 's|^#! \@perl\@|#!%{__perl}|gi' {} \;
687b7c
find examples/ -name "*.pl" \
687b7c
    -exec %{__perl} -pi -e 's|\015||gi' {} \;
687b7c
687b7c
%install
687b7c
rm -rf $RPM_BUILD_ROOT
687b7c
make DESTDIR="$RPM_BUILD_ROOT" install
687b7c
687b7c
# Install the php module
687b7c
%if %{with_php}
687b7c
%{__install} -D -m0755 php4/modules/rrdtool.so \
687b7c
    %{buildroot}%{php_extdir}/rrdtool.so
687b7c
# Clean up the examples for inclusion as docs
687b7c
%{__rm} -rf php4/examples/.svn
687b7c
# Put the php config bit into place
687b7c
%{__mkdir_p} %{buildroot}%{_sysconfdir}/php.d
687b7c
%{__cat} << __EOF__ > %{buildroot}%{_sysconfdir}/php.d/rrdtool.ini
687b7c
; Enable rrdtool extension module
687b7c
extension=rrdtool.so
687b7c
__EOF__
687b7c
%endif
687b7c
687b7c
# Pesky RRDp.pm...
687b7c
%{__mv} $RPM_BUILD_ROOT%{perl_vendorlib}/RRDp.pm $RPM_BUILD_ROOT%{perl_vendorarch}/
687b7c
687b7c
# Dunno why this is getting installed here...
687b7c
%{__rm} -f $RPM_BUILD_ROOT%{perl_vendorlib}/leaktest.pl
687b7c
687b7c
# We only want .txt and .html files for the main documentation
687b7c
%{__mkdir_p} doc2/html doc2/txt
687b7c
%{__cp} -a doc/*.txt doc2/txt/
687b7c
%{__cp} -a doc/*.html doc2/html/
687b7c
687b7c
# Put perl docs in perl package
687b7c
%{__mkdir_p} doc3/html
687b7c
%{__mv} doc2/html/RRD*.html doc3/html/
687b7c
687b7c
# Clean up the examples
687b7c
%{__rm} -f examples/Makefile* examples/*.in
687b7c
687b7c
# This is so rpm doesn't pick up perl module dependencies automatically
687b7c
find examples/ -type f -exec chmod 0644 {} \;
687b7c
687b7c
# Clean up the buildroot
687b7c
%{__rm} -rf $RPM_BUILD_ROOT%{_docdir}/%{name}-* \
687b7c
        $RPM_BUILD_ROOT%{perl_vendorarch}/ntmake.pl \
687b7c
        $RPM_BUILD_ROOT%{perl_archlib}/perllocal.pod \
687b7c
        $RPM_BUILD_ROOT%{_datadir}/%{name}/examples \
687b7c
        $RPM_BUILD_ROOT%{perl_vendorarch}/auto/*/{.packlist,*.bs}
687b7c
687b7c
%check
687b7c
# minimal load test for the PHP extension
687b7c
%if %{with_php}
687b7c
LD_LIBRARY_PATH=%{buildroot}%{_libdir} php -n \
687b7c
    -d extension_dir=%{buildroot}%{php_extdir} \
687b7c
    -d extension=rrdtool.so -m \
687b7c
    | grep rrdtool
687b7c
%endif
687b7c
687b7c
687b7c
%clean
687b7c
%{__rm} -rf $RPM_BUILD_ROOT
687b7c
687b7c
%post -p /sbin/ldconfig
687b7c
687b7c
%postun -p /sbin/ldconfig
687b7c
687b7c
%files
687b7c
%defattr(-,root,root,-)
687b7c
%{_bindir}/*
687b7c
%{_libdir}/*.so.*
687b7c
%{_datadir}/%{name}
687b7c
%{_mandir}/man1/*
687b7c
687b7c
%files devel
687b7c
%defattr(-,root,root,-)
687b7c
%{_includedir}/*.h
687b7c
%exclude %{_libdir}/*.la
687b7c
%{_libdir}/lib*.so
687b7c
%{_libdir}/pkgconfig/*.pc
687b7c
687b7c
%files doc
687b7c
%defattr(-,root,root,-)
687b7c
%doc CONTRIBUTORS COPYING COPYRIGHT README TODO NEWS THREADS
687b7c
%doc examples doc2/html doc2/txt
687b7c
687b7c
%files perl
687b7c
%defattr(-,root,root,-)
687b7c
%doc doc3/html
687b7c
%{_mandir}/man3/*
687b7c
%{perl_vendorarch}/*.pm
687b7c
%attr(0755,root,root) %{perl_vendorarch}/auto/RRDs/
687b7c
687b7c
%if %{with_python}
687b7c
%files python
687b7c
%defattr(-,root,root,-)
687b7c
%doc bindings/python/AUTHORS bindings/python/COPYING bindings/python/README
687b7c
%{python_sitearch}/rrdtoolmodule.so
687b7c
%{python_sitearch}/py_rrdtool-*.egg-info
687b7c
%endif
687b7c
687b7c
%if %{with_php}
687b7c
%files php
687b7c
%defattr(-,root,root,0755)
687b7c
%doc php4/examples php4/README
687b7c
%config(noreplace) %{_sysconfdir}/php.d/rrdtool.ini
687b7c
%{php_extdir}/rrdtool.so
687b7c
%endif
687b7c
687b7c
%if %{with_tcl}
687b7c
%files tcl
687b7c
%defattr(-,root,root,-)
687b7c
%doc bindings/tcl/README
687b7c
%{_libdir}/tclrrd*.so
687b7c
%{_libdir}/rrdtool/*.tcl
687b7c
%endif
687b7c
687b7c
%if %{with_ruby}
687b7c
%files ruby
687b7c
%defattr(-,root,root,-)
687b7c
%doc bindings/ruby/README
687b7c
%{ruby_vendorarchdir}/RRD.so
687b7c
%endif
687b7c
687b7c
%if %{with_lua}
687b7c
%files lua
687b7c
%defattr(-,root,root,-)
687b7c
%doc bindings/lua/README
687b7c
%exclude %{lualibdir}/*.la
687b7c
%{lualibdir}/*
687b7c
%endif
687b7c
687b7c
%changelog
687b7c
* Tue Aug 12 2014 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.8-9
687b7c
- Fixing build on ppc64le
687b7c
  Resolves: rhbz#1125670
687b7c
687b7c
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.4.8-8
687b7c
- Mass rebuild 2014-01-24
687b7c
687b7c
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.4.8-7
687b7c
- Mass rebuild 2013-12-27
687b7c
687b7c
* Mon Nov  4 2013 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.8-6
687b7c
- Fixed multilib problems
687b7c
  Resolves: rhbz#881248
687b7c
687b7c
* Tue Oct 15 2013 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.8-5
687b7c
- Fixed twice packaging of tclrrd1.4.8.so
687b7c
  Resolves: rhbz#1018169
687b7c
687b7c
* Fri Aug 30 2013 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.8-4
687b7c
- Rebuild due to php macros change
687b7c
  Resolves: rhbz#1002882
687b7c
687b7c
* Mon Jul  1 2013 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.8-3
687b7c
- Minor doc / man fixes
687b7c
687b7c
* Fri Jun  7 2013 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.8-2
687b7c
- Added imginfo format check
687b7c
  Resolves: CVE-2013-2131
687b7c
687b7c
* Thu May 23 2013 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.8-1
687b7c
- New version
687b7c
  Resolves: rhbz#966639
687b7c
- Updated and defuzzified patches
687b7c
- Still use lua-5.1 (fedoras < f20)
687b7c
687b7c
* Mon May 20 2013 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.7-17
687b7c
- Require lua abi instead of package version
687b7c
687b7c
* Wed May 15 2013 Tom Callaway <spot@fedoraproject.org> - 1.4.7-16
687b7c
- lua 5.2
687b7c
687b7c
* Tue May  7 2013 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.7-15
687b7c
- Removed unneccassary dejavu-lgc-sans-mono-fonts requirement
687b7c
  Resolves: rhbz#922467
687b7c
687b7c
* Tue Mar 26 2013 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.7-14
687b7c
- Fixed autoconf (by autoconf-fix patch)
687b7c
- Added support for aarch64
687b7c
  Resolves: rhbz#926455
687b7c
687b7c
* Mon Mar 25 2013 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.7-13
687b7c
- Fixed build failure
687b7c
  Resolves: rhbz#926037
687b7c
687b7c
* Fri Mar 22 2013 Remi Collet <rcollet@redhat.com> - 1.4.7-12
687b7c
- rebuild for http://fedoraproject.org/wiki/Features/Php55
687b7c
- remove rrdtool_logo_guid function
687b7c
687b7c
* Tue Mar 19 2013 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.7-11
687b7c
- Dropped ruby(abi) explicit requirement
687b7c
687b7c
* Mon Mar 18 2013 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.7-10
687b7c
- Fixed build failure with ruby-2.0 (by ruby-2-fix patch)
687b7c
- Fixed bogus date in changelog
687b7c
687b7c
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.7-9
687b7c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
687b7c
687b7c
* Tue Jan  8 2013 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.7-8
687b7c
- Removed libtool archive from the lua subpackage
687b7c
687b7c
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.7-7
687b7c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
687b7c
687b7c
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 1.4.7-6
687b7c
- Perl 5.16 rebuild
687b7c
687b7c
* Thu Feb  9 2012 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.7-5
687b7c
- Changed ruby(abi) to 1.9.1
687b7c
687b7c
* Wed Feb  8 2012 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.7-4
687b7c
- Used ruby_vendorarchdir instead of ruby_sitearch
687b7c
687b7c
* Wed Feb  8 2012 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.7-3
687b7c
- Fixed ruby(abi) requires
687b7c
687b7c
* Tue Feb  7 2012 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.7-2
687b7c
- Rebuilt for new ruby
687b7c
687b7c
* Thu Jan 26 2012 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.7-1
687b7c
- New version
687b7c
  Resolves: rhbz#783553
687b7c
- Dropped fix-tcl-site-option patch (upstreamed)
687b7c
687b7c
* Thu Jan 19 2012 Remi Collet <remi@fedoraproject.org> - 1.4.4-9
687b7c
- build with php 5.4
687b7c
687b7c
* Thu Dec 29 2011 Remi Collet <remi@fedoraproject.org> - 1.4.4-8
687b7c
- add patch for php 5.4
687b7c
- add minimal load test for PHP extension
687b7c
- add provides filters
687b7c
687b7c
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 1.4.4-7
687b7c
- Rebuild for new libpng
687b7c
687b7c
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.4-6
687b7c
- Perl mass rebuild
687b7c
687b7c
* Sat Jun 11 2011 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.4-5
687b7c
- Fixed build failure due to change in php_zend_api macro type
687b7c
687b7c
* Fri Jun 10 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.4-4
687b7c
- Perl 5.14 mass rebuild
687b7c
687b7c
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.4-3
687b7c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
687b7c
687b7c
* Tue Nov 23 2010 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.4-2
687b7c
- Fixed mixed tabs and spaces rpmlint warning
687b7c
- Fixed tcl-site configure option (upstream ticket #281)
687b7c
- Removed Rpath from Ruby
687b7c
- Enabled Lua bindings (#656080), thanks to Tim Niemueller
687b7c
687b7c
* Tue Nov 16 2010 Jaroslav Å karvada <jskarvad@redhat.com> - 1.4.4-1
687b7c
- Update to rrdtool 1.4.4
687b7c
687b7c
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.3.8-8
687b7c
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
687b7c
687b7c
* Wed Jun 02 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.3.8-7
687b7c
- Mass rebuild with perl-5.12.0
687b7c
687b7c
* Wed Jan 13 2010 Stepan Kasal <skasal@redhat.com> - 1.3.8-6
687b7c
- remove python_* macros clashing with the built-in ones
687b7c
- fix for new vendorlib directory
687b7c
687b7c
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 1.3.8-5
687b7c
- rebuild against perl 5.10.1
687b7c
687b7c
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.8-4
687b7c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
687b7c
687b7c
* Mon Jul 13 2009 Remi Collet <Fedora@FamilleCollet.com> 1.3.8-3
687b7c
- rebuild for new PHP 5.3.0 ABI (20090626)
687b7c
687b7c
* Tue May 26 2009 Jarod Wilson <jarod@redhat.com> 1.3.8-2
687b7c
- Update dejavu font deps yet again, hopefully for the last time... (#473551)
687b7c
687b7c
* Tue May 19 2009 Jarod Wilson <jarod@redhat.com> 1.3.8-1
687b7c
- Update to rrdtool 1.3.8
687b7c
687b7c
* Thu Apr 09 2009 Jarod Wilson <jarod@redhat.com> 1.3.7-1
687b7c
- Update to rrdtool 1.3.7
687b7c
687b7c
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.6-2
687b7c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
687b7c
687b7c
* Mon Jan 19 2009 Jarod Wilson <jarod@redhat.com> 1.3.6-1
687b7c
- Update to rrdtool 1.3.6
687b7c
687b7c
* Fri Jan 16 2009 Jarod Wilson <jarod@redhat.com> 1.3.5-2
687b7c
- dejavu font package names changed again...
687b7c
687b7c
* Tue Dec 16 2008 Jarod Wilson <jarod@redhat.com> 1.3.5-1
687b7c
- Update to rrdtool 1.3.5
687b7c
687b7c
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.3.4-5
687b7c
- Rebuild for Python 2.6
687b7c
687b7c
* Mon Dec 01 2008 Jarod Wilson <jarod@redhat.com> 1.3.4-4
687b7c
- Update dejavu font dependencies (#473551)
687b7c
687b7c
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.3.4-3
687b7c
- Rebuild for Python 2.6
687b7c
687b7c
* Mon Oct 20 2008 Jarod Wilson <jarod@redhat.com> 1.3.4-2
687b7c
- Drop php bindings patch, rrd_update changed back to its
687b7c
  prior prototype post-beta (#467593)
687b7c
687b7c
* Mon Oct 06 2008 Jarod Wilson <jarod@redhat.com> 1.3.4-1
687b7c
- Update to rrdtool 1.3.4
687b7c
687b7c
* Mon Sep 15 2008 Jarod Wilson <jarod@redhat.com> 1.3.3-1
687b7c
- Update to rrdtool 1.3.3
687b7c
  * fixes segfault on graph creation regression in 1.3.2 (#462301)
687b7c
687b7c
* Sat Sep 06 2008 Jarod Wilson <jwilson@redhat.com> 1.3.2-1
687b7c
- Update to rrdtool 1.3.2
687b7c
  * fixes a data corruption bug when rrd wraps around
687b7c
  * make imginfo behave the same as docs say it does
687b7c
  * fixes for numerous memory leaks
687b7c
687b7c
* Tue Aug 12 2008 Jarod Wilson <jwilson@redhat.com> 1.3.1-1
687b7c
- Update to rrdtool 1.3.1
687b7c
687b7c
* Mon Jun 16 2008 Chris Ricker <kaboom@oobleck.net> 1.3.0-1
687b7c
- Update to rrdtool 1.3.0
687b7c
687b7c
* Sun Jun 08 2008 Jarod Wilson <jwilson@redhat.com> 1.3-0.20.rc9
687b7c
- Update to rrdtool 1.3 rc9
687b7c
- Minor spec tweaks to permit building on older EL
687b7c
687b7c
* Wed Jun 04 2008 Chris Ricker <kaboom@oobleck.net> 1.3-0.19.rc7
687b7c
- Update to rrdtool 1.3 rc7
687b7c
687b7c
* Tue May 27 2008 Chris Ricker <kaboom@oobleck.net> 1.3-0.18.rc6
687b7c
- Update to rrdtool 1.3 rc6
687b7c
687b7c
* Wed May 21 2008 Chris Ricker <kaboom@oobleck.net> 1.3-0.17.rc4
687b7c
- Bump version and rebuild
687b7c
687b7c
* Wed May 21 2008 Chris Ricker <kaboom@oobleck.net> 1.3-0.16.rc4
687b7c
- Fix php bindings compile on x86_64
687b7c
687b7c
* Mon May 19 2008 Chris Ricker <kaboom@oobleck.net> 1.3-0.15.rc4
687b7c
- Update to rrdtool 1.3 rc4
687b7c
687b7c
* Tue May 13 2008 Jarod Wilson <jwilson@redhat.com> 1.3-0.15.rc1
687b7c
- Update to rrdtool 1.3 rc1
687b7c
- Fix versioning in changelog entries, had an extra 0 in there...
687b7c
- Drop cairo and python patches, they're in 1.3 rc1
687b7c
- Add Requires: gettext and libxml2-devel for new translations
687b7c
687b7c
* Wed Apr 30 2008 Jarod Wilson <jwilson@redhat.com> 1.3-0.14.beta4
687b7c
- Drop some conditional flags, they're not working at the moment...
687b7c
687b7c
* Wed Apr 30 2008 Jarod Wilson <jwilson@redhat.com> 1.3-0.13.beta4
687b7c
- Fix problem with cairo_save/cairo_restore (#444827)
687b7c
687b7c
* Wed Apr 23 2008 Jarod Wilson <jwilson@redhat.com> 1.3-0.12.beta4
687b7c
- Fix python bindings rrdtool info implementation (#435468)
687b7c
687b7c
* Tue Apr 08 2008 Jarod Wilson <jwilson@redhat.com> 1.3-0.11.beta4
687b7c
- Work around apparent version string length issue w/perl 5.10 (#441359)
687b7c
687b7c
* Sat Apr 05 2008 Jarod Wilson <jwilson@redhat.com> 1.3-0.10.beta4
687b7c
- Fix use of rrd_update in php bindings (#437558)
687b7c
687b7c
* Mon Mar  3 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.3-0.9.beta4
687b7c
- rebuild for new perl (again)
687b7c
687b7c
* Wed Feb 13 2008 Jarod Wilson <jwilson@redhat.com> 1.3-0.8.beta4
687b7c
- Update to rrdtool 1.3 beta4
687b7c
687b7c
* Tue Feb 05 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.3-0.7.beta3
687b7c
- rebuild for new perl (and fix license tag)
687b7c
687b7c
* Mon Feb 04 2008 Jarod Wilson <jwilson@redhat.com> 1.3-0.6.beta3
687b7c
- Plug memory leak (#430879)
687b7c
687b7c
* Mon Jan 07 2008 Jarod Wilson <jwilson@redhat.com> 1.3-0.5.beta3
687b7c
- Fix right-aligned text alignment and scaling (Resolves: #427609)
687b7c
687b7c
* Wed Jan 02 2008 Jarod Wilson <jwilson@redhat.com> 1.3-0.4.beta3
687b7c
- Add newly built python egg to %%files
687b7c
687b7c
* Wed Jan 02 2008 Jarod Wilson <jwilson@redhat.com> 1.3-0.3.beta3
687b7c
- Update to rrdtool 1.3 beta3
687b7c
- Return properly from errors in RRDp.pm (Resolves: #427040)
687b7c
- Requires: dejavu-lgc-fonts (Resolves: #426935)
687b7c
687b7c
* Thu Dec 06 2007 Jarod Wilson <jwilson@redhat.com> 1.3-0.2.beta2
687b7c
- Update to rrdtool 1.3 beta2
687b7c
687b7c
* Wed Aug 08 2007 Jarod Wilson <jwilson@redhat.com> 1.3-0.1.beta1
687b7c
- Update to rrdtool 1.3 beta1
687b7c
687b7c
* Tue Jul 10 2007 Jarod Wilson <jwilson@redhat.com> 1.2.999-0.3.r1144
687b7c
- Update to latest rrdtool pre-1.3 svn snapshot (svn r1144)
687b7c
- Add php abi check (Resolves: #247339)
687b7c
687b7c
* Fri Jun 15 2007 Jarod Wilson <jwilson@redhat.com> 1.2.999-0.2.r1127
687b7c
- Fix up BuildRequires
687b7c
687b7c
* Fri Jun 15 2007 Jarod Wilson <jwilson@redhat.com> 1.2.999-0.1.r1127
687b7c
- Update to rrdtool pre-1.3 svn snapshot (svn r1127)
687b7c
687b7c
* Mon May 21 2007 Jarod Wilson <jwilson@redhat.com> 1.2.23-5
687b7c
- BR: ruby so %%ruby_sitearch gets set
687b7c
687b7c
* Mon May 21 2007 Jarod Wilson <jwilson@redhat.com> 1.2.23-4
687b7c
- Build ruby bindings
687b7c
687b7c
* Thu May 03 2007 Jarod Wilson <jwilson@redhat.com> 1.2.23-3
687b7c
- Disable php bits on ppc64 for now, they fail to build
687b7c
687b7c
* Thu May 03 2007 Jarod Wilson <jwilson@redhat.com> 1.2.23-2
687b7c
- Add BR: perl-devel for Fedora 7 and later
687b7c
687b7c
* Tue May 01 2007 Jarod Wilson <jwilson@redhat.com> 1.2.23-1
687b7c
- New upstream release
687b7c
687b7c
* Tue May 01 2007 Jarod Wilson <jwilson@redhat.com> 1.2.21-1
687b7c
- New upstream release
687b7c
687b7c
* Wed Apr 25 2007 Jarod Wilson <jwilson@redhat.com> 1.2.19-2
687b7c
- Define %%python_version *before* its needed (#237826)
687b7c
687b7c
* Mon Apr 09 2007 Jarod Wilson <jwilson@redhat.com> 1.2.19-1
687b7c
- New upstream release
687b7c
687b7c
* Tue Jan 23 2007 Jarod Wilson <jwilson@redhat.com> 1.2.18-1
687b7c
- New upstream release
687b7c
687b7c
* Mon Jan 22 2007 Jarod Wilson <jwilson@redhat.com> 1.2.17-1
687b7c
- New upstream release
687b7c
687b7c
* Tue Jan 02 2007 Jarod Wilson <jwilson@redhat.com> 1.2.15-9
687b7c
- Fix crash with long error strings (upstream
687b7c
  changesets 929 and 935)
687b7c
687b7c
* Thu Dec 14 2006 Jarod Wilson <jwilson@redhat.com> 1.2.15-8
687b7c
- Fix for log grid memory leak (#201241)
687b7c
687b7c
* Tue Dec 12 2006 Jarod Wilson <jwilson@redhat.com> 1.2.15-7
687b7c
- Rebuild for python 2.5
687b7c
687b7c
* Tue Nov 14 2006 Jarod Wilson <jwilson@redhat.com> 1.2.15-6
687b7c
- Conditionalize python, php and tcl bits (Resolves #203275)
687b7c
687b7c
* Wed Oct 25 2006 Jarod Wilson <jwilson@redhat.com> 1.2.15-5
687b7c
- Add tcl sub-package (#203275)
687b7c
687b7c
* Tue Sep 05 2006 Jarod Wilson <jwilson@redhat.com> 1.2.15-4
687b7c
- Rebuild for new glibc
687b7c
687b7c
* Wed Aug 02 2006 Jarod Wilson <jwilson@redhat.com> 1.2.15-3
687b7c
- One more addition to initrrdtool patch, to fully revert
687b7c
  and correct upstream changeset 839
687b7c
- Fix for no python in minimal fc4 buildroots
687b7c
687b7c
* Tue Aug  1 2006 Mihai Ibanescu <misa@redhat.com> 1.2.15-2
687b7c
- Fixed rrdtool-python to import the module properly (patch
687b7c
  rrdtool-1.2.15-initrrdtool.patch)
687b7c
687b7c
* Mon Jul 17 2006 Jarod Wilson <jwilson@redhat.com> 1.2.15-1
687b7c
- Update to 1.2.15
687b7c
- Minor spec cleanups
687b7c
687b7c
* Sat Jun 24 2006 Jarod Wilson <jwilson@redhat.com> 1.2.13-7
687b7c
- Fix up Obsoletes
687b7c
687b7c
* Mon Jun 19 2006 Jarod Wilson <jwilson@redhat.com> 1.2.13-6
687b7c
- Flip perl, php and python sub-package names around to 
687b7c
  conform with general practices
687b7c
687b7c
* Sat Jun 10 2006 Jarod Wilson <jwilson@redhat.com> 1.2.13-5
687b7c
- Minor fixes to make package own created directories
687b7c
687b7c
* Wed Jun 07 2006 Jarod Wilson <jwilson@redhat.com> 1.2.13-4
687b7c
- Add php bits back into the mix
687b7c
687b7c
* Mon Jun 05 2006 Jarod Wilson <jwilson@redhat.com> 1.2.13-3
687b7c
- Merge spec fixes from bz 185909
687b7c
687b7c
* Sun Jun 04 2006 Jarod Wilson <jwilson@redhat.com> 1.2.13-2
687b7c
- Remove explicit perl dep, version grabbing using rpm during
687b7c
  rpmbuild not guaranteed to work (fails on ppc in plague),
687b7c
  and auto-gen perl deps are sufficient
687b7c
687b7c
* Sat Jun 03 2006 Jarod Wilson <jwilson@redhat.com> 1.2.13-1
687b7c
- Update to release 1.2.13
687b7c
- Merge spec changes from dag, atrpms and mdk builds
687b7c
- Additional hacktastic contortions for lib64 & rpath messiness
687b7c
- Add missing post/postun ldconfig
687b7c
- Fix a bunch of rpmlint errors
687b7c
- Disable static libs, per FE guidelines
687b7c
- Split off docs
687b7c
687b7c
* Wed Apr 19 2006 Chris Ricker <kaboom@oobleck.net> 1.2.12-1
687b7c
- Rev to 1.2
687b7c
687b7c
* Fri May 20 2005 Matthias Saou <http://freshrpms.net/> 1.0.49-5
687b7c
- Include patch from Michael to fix perl module compilation on FC4 (#156242).
687b7c
687b7c
* Fri May 20 2005 Matthias Saou <http://freshrpms.net/> 1.0.49-4
687b7c
- Fix for the php module patch (Joe Pruett, Dag Wieers), #156716.
687b7c
- Update source URL to new location since 1.2 is now the default stable.
687b7c
- Don't (yet) update to 1.0.50, as it introduces some changes in the perl
687b7c
  modules install.
687b7c
687b7c
* Mon Jan 31 2005 Matthias Saou <http://freshrpms.net/> 1.0.49-3
687b7c
- Put perl modules in vendor_perl and not site_perl. #146513
687b7c
687b7c
* Thu Jan 13 2005 Matthias Saou <http://freshrpms.net/> 1.0.49-2
687b7c
- Minor cleanups.
687b7c
687b7c
* Wed Aug 25 2004 Dag Wieers <dag@wieers.com> - 1.0.49-1
687b7c
- Updated to release 1.0.49.
687b7c
687b7c
* Wed Aug 25 2004 Dag Wieers <dag@wieers.com> - 1.0.48-3
687b7c
- Fixes for x86_64. (Garrick Staples)
687b7c
687b7c
* Fri Jul  2 2004 Matthias Saou <http://freshrpms.net/> 1.0.48-3
687b7c
- Actually apply the patch for fixing the php module, doh!
687b7c
687b7c
* Thu May 27 2004 Matthias Saou <http://freshrpms.net/> 1.0.48-2
687b7c
- Added php.d config entry to load the module once installed.
687b7c
687b7c
* Thu May 13 2004 Dag Wieers <dag@wieers.com> - 1.0.48-1
687b7c
- Updated to release 1.0.48.
687b7c
687b7c
* Tue Apr 06 2004 Dag Wieers <dag@wieers.com> - 1.0.47-1
687b7c
- Updated to release 1.0.47.
687b7c
687b7c
* Thu Mar  4 2004 Matthias Saou <http://freshrpms.net/> 1.0.46-2
687b7c
- Change the strict dependency on perl to fix problem with the recent
687b7c
  update.
687b7c
687b7c
* Mon Jan  5 2004 Matthias Saou <http://freshrpms.net/> 1.0.46-1
687b7c
- Update to 1.0.46.
687b7c
- Use system libpng and zlib instead of bundled ones.
687b7c
- Added php-rrdtool sub-package for the php4 module.
687b7c
687b7c
* Fri Dec  5 2003 Matthias Saou <http://freshrpms.net/> 1.0.45-4
687b7c
- Added epoch to the perl dependency to work with rpm > 4.2.
687b7c
- Fixed the %% escaping in the perl dep.
687b7c
687b7c
* Mon Nov 17 2003 Matthias Saou <http://freshrpms.net/> 1.0.45-2
687b7c
- Rebuild for Fedora Core 1.
687b7c
687b7c
* Sun Aug  3 2003 Matthias Saou <http://freshrpms.net/>
687b7c
- Update to 1.0.45.
687b7c
687b7c
* Wed Apr 16 2003 Matthias Saou <http://freshrpms.net/>
687b7c
- Update to 1.0.42.
687b7c
687b7c
* Mon Mar 31 2003 Matthias Saou <http://freshrpms.net/>
687b7c
- Rebuilt for Red Hat Linux 9.
687b7c
687b7c
* Wed Mar  5 2003 Matthias Saou <http://freshrpms.net/>
687b7c
- Added explicit perl version dependency.
687b7c
687b7c
* Sun Feb 23 2003 Matthias Saou <http://freshrpms.net/>
687b7c
- Update to 1.0.41.
687b7c
687b7c
* Fri Jan 31 2003 Matthias Saou <http://freshrpms.net/>
687b7c
- Update to 1.0.40.
687b7c
- Spec file cleanup.
687b7c
687b7c
* Fri Jul 05 2002 Henri Gomez <hgomez@users.sourceforge.net>
687b7c
- 1.0.39
687b7c
687b7c
* Mon Jun 03 2002 Henri Gomez <hgomez@users.sourceforge.net>
687b7c
- 1.0.38
687b7c
687b7c
* Fri Apr 19 2002 Henri Gomez <hgomez@users.sourceforge.net>
687b7c
- 1.0.37
687b7c
687b7c
* Tue Mar 12 2002 Henri Gomez <hgomez@users.sourceforge.net>
687b7c
- 1.0.34
687b7c
- rrdtools include zlib 1.1.4 which fix vulnerabilities in 1.1.3
687b7c