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