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