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