2018-01-24 22:25:58 +00:00
|
|
|
# https://github.com/rust-lang/rust/issues/47714
|
|
|
|
%undefine _strict_symbol_defs_build
|
|
|
|
|
|
|
|
# We want verbose builds
|
|
|
|
%global _configure_disable_silent_rules 1
|
|
|
|
|
2018-08-08 09:06:25 +00:00
|
|
|
# Use bundled deps as we don't ship the exact right versions for all the
|
|
|
|
# required rust libraries
|
2019-03-13 14:14:53 +00:00
|
|
|
%global bundled_rust_deps 1
|
2018-08-08 09:06:25 +00:00
|
|
|
|
2019-05-14 20:42:47 +00:00
|
|
|
%global cairo_version 1.16.0
|
2018-10-26 06:15:55 +00:00
|
|
|
|
2010-10-26 16:31:42 +00:00
|
|
|
Name: librsvg2
|
|
|
|
Summary: An SVG library based on cairo
|
2021-05-05 18:12:47 +00:00
|
|
|
Version: 2.50.5
|
2021-01-28 17:53:25 +00:00
|
|
|
Release: 1%{?dist}
|
2010-03-30 01:33:51 +00:00
|
|
|
|
|
|
|
License: LGPLv2+
|
2015-02-16 15:53:24 +00:00
|
|
|
URL: https://wiki.gnome.org/Projects/LibRsvg
|
2020-09-11 11:55:32 +00:00
|
|
|
Source0: https://download.gnome.org/sources/librsvg/2.50/librsvg-%{version}.tar.xz
|
2018-01-24 22:25:58 +00:00
|
|
|
|
2018-08-08 09:09:27 +00:00
|
|
|
BuildRequires: chrpath
|
2018-01-24 22:25:58 +00:00
|
|
|
BuildRequires: gcc
|
2019-09-20 05:11:41 +00:00
|
|
|
BuildRequires: git-core
|
2018-01-24 22:25:58 +00:00
|
|
|
BuildRequires: gobject-introspection-devel
|
2021-01-29 16:00:44 +00:00
|
|
|
BuildRequires: make
|
2018-10-26 06:15:55 +00:00
|
|
|
BuildRequires: pkgconfig(cairo) >= %{cairo_version}
|
2019-07-08 07:57:13 +00:00
|
|
|
BuildRequires: pkgconfig(cairo-gobject) >= %{cairo_version}
|
2018-10-26 06:15:55 +00:00
|
|
|
BuildRequires: pkgconfig(cairo-png) >= %{cairo_version}
|
2018-01-24 22:25:58 +00:00
|
|
|
BuildRequires: pkgconfig(fontconfig)
|
2018-08-08 09:09:27 +00:00
|
|
|
BuildRequires: pkgconfig(gdk-pixbuf-2.0)
|
|
|
|
BuildRequires: pkgconfig(gio-2.0)
|
|
|
|
BuildRequires: pkgconfig(gio-unix-2.0)
|
|
|
|
BuildRequires: pkgconfig(glib-2.0)
|
|
|
|
BuildRequires: pkgconfig(gthread-2.0)
|
|
|
|
BuildRequires: pkgconfig(libxml-2.0)
|
|
|
|
BuildRequires: pkgconfig(pangocairo)
|
|
|
|
BuildRequires: pkgconfig(pangoft2)
|
|
|
|
BuildRequires: vala
|
2018-08-08 09:06:25 +00:00
|
|
|
%if 0%{?bundled_rust_deps}
|
|
|
|
BuildRequires: cargo
|
|
|
|
BuildRequires: rust
|
|
|
|
%else
|
2018-01-24 22:25:58 +00:00
|
|
|
BuildRequires: rust-packaging
|
2018-08-08 09:06:25 +00:00
|
|
|
%endif
|
2004-09-09 07:40:29 +00:00
|
|
|
|
2019-07-08 07:57:13 +00:00
|
|
|
Requires: cairo%{?_isa} >= %{cairo_version}
|
|
|
|
Requires: cairo-gobject%{?_isa} >= %{cairo_version}
|
2018-08-08 09:19:16 +00:00
|
|
|
# We install a gdk-pixbuf svg loader
|
|
|
|
Requires: gdk-pixbuf2%{?_isa}
|
2014-10-13 19:11:37 +00:00
|
|
|
|
2004-09-09 07:40:29 +00:00
|
|
|
%description
|
2005-12-09 12:21:53 +00:00
|
|
|
An SVG library based on cairo.
|
2004-09-09 07:40:29 +00:00
|
|
|
|
|
|
|
%package devel
|
2010-03-30 01:33:51 +00:00
|
|
|
Summary: Libraries and include files for developing with librsvg
|
2014-09-14 10:34:39 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2004-09-09 07:40:29 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package provides the necessary development libraries and include
|
|
|
|
files to allow you to develop with librsvg.
|
|
|
|
|
2013-05-11 19:43:35 +00:00
|
|
|
%package tools
|
|
|
|
Summary: Extra tools for librsvg
|
2014-09-14 10:34:39 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2013-05-11 19:43:35 +00:00
|
|
|
|
|
|
|
%description tools
|
|
|
|
This package provides extra utilities based on the librsvg library.
|
|
|
|
|
2004-09-09 07:40:29 +00:00
|
|
|
%prep
|
2019-09-20 05:11:41 +00:00
|
|
|
%autosetup -n librsvg-%{version} -p1 -Sgit
|
2018-08-08 09:06:25 +00:00
|
|
|
%if 0%{?bundled_rust_deps}
|
2018-08-08 10:01:20 +00:00
|
|
|
# Use the bundled deps
|
2018-08-08 09:06:25 +00:00
|
|
|
%else
|
2018-01-24 22:25:58 +00:00
|
|
|
# No bundled deps
|
2019-02-19 06:29:08 +00:00
|
|
|
rm -vrf vendor .cargo Cargo.lock
|
|
|
|
pushd rsvg_internals
|
|
|
|
%cargo_prep
|
|
|
|
mv .cargo ..
|
|
|
|
popd
|
2018-08-08 09:06:25 +00:00
|
|
|
%endif
|
2004-09-09 07:40:29 +00:00
|
|
|
|
2020-02-23 07:32:32 +00:00
|
|
|
%if ! 0%{?bundled_rust_deps}
|
|
|
|
%generate_buildrequires
|
|
|
|
pushd rsvg_internals >/dev/null
|
|
|
|
%cargo_generate_buildrequires
|
|
|
|
popd >/dev/null
|
|
|
|
%endif
|
|
|
|
|
2004-09-09 07:40:29 +00:00
|
|
|
%build
|
2010-10-26 16:31:42 +00:00
|
|
|
%configure --disable-static \
|
2018-06-24 11:35:29 +00:00
|
|
|
--disable-gtk-doc \
|
|
|
|
--enable-introspection \
|
|
|
|
--enable-vala
|
2018-01-24 22:25:58 +00:00
|
|
|
%make_build
|
2004-09-09 07:40:29 +00:00
|
|
|
|
|
|
|
%install
|
2014-10-13 19:14:50 +00:00
|
|
|
%make_install
|
2018-01-24 22:25:58 +00:00
|
|
|
find %{buildroot} -type f -name '*.la' -print -delete
|
2004-09-09 07:40:58 +00:00
|
|
|
|
2019-01-09 12:36:16 +00:00
|
|
|
%find_lang librsvg
|
|
|
|
|
2017-04-11 12:10:41 +00:00
|
|
|
# Remove lib64 rpaths
|
2018-01-24 22:25:58 +00:00
|
|
|
chrpath --delete %{buildroot}%{_bindir}/rsvg-convert
|
|
|
|
chrpath --delete %{buildroot}%{_libdir}/gdk-pixbuf-2.0/*/loaders/libpixbufloader-svg.so
|
2017-04-11 12:10:41 +00:00
|
|
|
|
2018-01-27 10:40:29 +00:00
|
|
|
# we install own docs
|
|
|
|
rm -vrf %{buildroot}%{_datadir}/doc
|
|
|
|
|
2019-01-09 12:36:16 +00:00
|
|
|
%files -f librsvg.lang
|
2018-03-05 22:42:36 +00:00
|
|
|
%doc CONTRIBUTING.md README.md
|
2019-10-23 22:15:18 +00:00
|
|
|
%license COPYING.LIB
|
2010-06-11 13:13:30 +00:00
|
|
|
%{_libdir}/librsvg-2.so.*
|
2010-06-29 01:04:27 +00:00
|
|
|
%{_libdir}/gdk-pixbuf-2.0/*/loaders/libpixbufloader-svg.so
|
2018-01-24 22:25:58 +00:00
|
|
|
%dir %{_libdir}/girepository-1.0
|
|
|
|
%{_libdir}/girepository-1.0/Rsvg-2.0.typelib
|
2017-04-11 12:10:18 +00:00
|
|
|
%dir %{_datadir}/thumbnailers
|
|
|
|
%{_datadir}/thumbnailers/librsvg.thumbnailer
|
2004-09-09 07:40:29 +00:00
|
|
|
|
|
|
|
%files devel
|
2010-06-11 13:13:30 +00:00
|
|
|
%{_libdir}/librsvg-2.so
|
2018-01-24 22:25:58 +00:00
|
|
|
%{_includedir}/librsvg-2.0/
|
2004-09-09 07:40:29 +00:00
|
|
|
%{_libdir}/pkgconfig/librsvg-2.0.pc
|
2018-01-24 22:25:58 +00:00
|
|
|
%dir %{_datadir}/gir-1.0
|
|
|
|
%{_datadir}/gir-1.0/Rsvg-2.0.gir
|
2012-09-22 22:18:35 +00:00
|
|
|
%dir %{_datadir}/vala
|
|
|
|
%dir %{_datadir}/vala/vapi
|
|
|
|
%{_datadir}/vala/vapi/librsvg-2.0.vapi
|
2018-01-24 22:25:58 +00:00
|
|
|
%dir %{_datadir}/gtk-doc
|
|
|
|
%dir %{_datadir}/gtk-doc/html
|
|
|
|
%{_datadir}/gtk-doc/html/rsvg-2.0
|
2010-06-11 13:13:30 +00:00
|
|
|
|
2013-05-11 19:43:35 +00:00
|
|
|
%files tools
|
|
|
|
%{_bindir}/rsvg-convert
|
|
|
|
%{_mandir}/man1/rsvg-convert.1*
|
|
|
|
|
2004-09-09 07:40:29 +00:00
|
|
|
%changelog
|
2021-05-05 18:12:47 +00:00
|
|
|
* Wed May 05 2021 Kalev Lember <klember@redhat.com> - 2.50.5-1
|
|
|
|
- Update to 2.50.5
|
|
|
|
|
2021-04-13 13:29:08 +00:00
|
|
|
* Tue Apr 13 2021 Kalev Lember <klember@redhat.com> - 2.50.4-1
|
|
|
|
- Update to 2.50.4
|
|
|
|
|
2021-01-28 17:53:25 +00:00
|
|
|
* Thu Jan 28 2021 Kalev Lember <klember@redhat.com> - 2.50.3-1
|
|
|
|
- Update to 2.50.3
|
|
|
|
|
2021-01-26 17:56:24 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.50.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-11-25 09:09:01 +00:00
|
|
|
* Wed Nov 25 2020 Kalev Lember <klember@redhat.com> - 2.50.2-1
|
|
|
|
- Update to 2.50.2
|
|
|
|
|
2020-10-05 19:48:16 +00:00
|
|
|
* Mon Oct 5 2020 Kalev Lember <klember@redhat.com> - 2.50.1-1
|
|
|
|
- Update to 2.50.1
|
|
|
|
|
2020-09-11 11:55:32 +00:00
|
|
|
* Fri Sep 11 2020 Kalev Lember <klember@redhat.com> - 2.50.0-1
|
|
|
|
- Update to 2.50.0
|
|
|
|
|
2020-07-28 05:31:51 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.48.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-20 12:56:18 +00:00
|
|
|
* Mon Jul 20 2020 Kalev Lember <klember@redhat.com> - 2.48.8-1
|
|
|
|
- Update to 2.48.8
|
|
|
|
|
2020-06-05 05:16:52 +00:00
|
|
|
* Fri Jun 05 2020 Kalev Lember <klember@redhat.com> - 2.48.7-1
|
|
|
|
- Update to 2.48.7
|
|
|
|
|
2020-06-02 20:04:12 +00:00
|
|
|
* Tue Jun 02 2020 Kalev Lember <klember@redhat.com> - 2.48.6-1
|
|
|
|
- Update to 2.48.6
|
|
|
|
|
2020-06-01 18:24:55 +00:00
|
|
|
* Mon Jun 01 2020 Kalev Lember <klember@redhat.com> - 2.48.5-1
|
|
|
|
- Update to 2.48.5
|
|
|
|
|
2020-04-24 08:26:32 +00:00
|
|
|
* Fri Apr 24 2020 Kalev Lember <klember@redhat.com> - 2.48.4-1
|
|
|
|
- Update to 2.48.4
|
|
|
|
|
2020-04-10 12:40:48 +00:00
|
|
|
* Fri Apr 10 2020 Kalev Lember <klember@redhat.com> - 2.48.3-1
|
|
|
|
- Update to 2.48.3
|
|
|
|
|
2020-03-31 21:04:31 +00:00
|
|
|
* Tue Mar 31 2020 Kalev Lember <klember@redhat.com> - 2.48.2-1
|
|
|
|
- Update to 2.48.2
|
|
|
|
|
2020-03-28 03:14:34 +00:00
|
|
|
* Sat Mar 28 2020 Kalev Lember <klember@redhat.com> - 2.48.1-1
|
|
|
|
- Update to 2.48.1
|
|
|
|
|
2020-03-07 07:45:55 +00:00
|
|
|
* Sat Mar 07 2020 Kalev Lember <klember@redhat.com> - 2.48.0-1
|
|
|
|
- Update to 2.48.0
|
|
|
|
|
2020-01-29 10:17:22 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.46.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-11-27 16:08:55 +00:00
|
|
|
* Wed Nov 27 2019 Kalev Lember <klember@redhat.com> - 2.46.4-1
|
|
|
|
- Update to 2.46.4
|
|
|
|
|
2019-10-23 22:15:18 +00:00
|
|
|
* Wed Oct 23 2019 Kalev Lember <klember@redhat.com> - 2.46.3-1
|
|
|
|
- Update to 2.46.3
|
|
|
|
|
2019-10-14 17:26:40 +00:00
|
|
|
* Mon Oct 14 2019 Kalev Lember <klember@redhat.com> - 2.46.2-1
|
|
|
|
- Update to 2.46.2
|
|
|
|
|
2019-10-07 16:54:05 +00:00
|
|
|
* Mon Oct 07 2019 Kalev Lember <klember@redhat.com> - 2.46.1-1
|
|
|
|
- Update to 2.46.1
|
|
|
|
|
2019-09-20 05:11:41 +00:00
|
|
|
* Fri Sep 20 2019 Kalev Lember <klember@redhat.com> - 2.46.0-2
|
|
|
|
- Backport a patch to fix svg rendering in gnome-initial-setup (#1753183)
|
|
|
|
|
2019-09-09 18:20:16 +00:00
|
|
|
* Mon Sep 09 2019 Kalev Lember <klember@redhat.com> - 2.46.0-1
|
|
|
|
- Update to 2.46.0
|
|
|
|
|
2019-09-03 13:48:03 +00:00
|
|
|
* Tue Sep 03 2019 Kalev Lember <klember@redhat.com> - 2.45.92-1
|
|
|
|
- Update to 2.45.92
|
|
|
|
|
2019-08-19 12:24:41 +00:00
|
|
|
* Mon Aug 19 2019 Kalev Lember <klember@redhat.com> - 2.45.91-1
|
|
|
|
- Update to 2.45.91
|
|
|
|
|
2019-08-04 20:22:10 +00:00
|
|
|
* Sun Aug 04 2019 Pete Walter <pwalter@fedoraproject.org> - 2.45.90-1
|
|
|
|
- Update to 2.45.90
|
|
|
|
|
2019-07-26 11:20:33 +00:00
|
|
|
* Fri Jul 26 2019 Pete Walter <pwalter@fedoraproject.org> - 2.45.8-1
|
|
|
|
- Update to 2.45.8
|
|
|
|
|
2019-07-25 14:18:14 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.45.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-08 07:12:24 +00:00
|
|
|
* Mon Jul 08 2019 Kalev Lember <klember@redhat.com> - 2.45.7-1
|
|
|
|
- Update to 2.45.7
|
|
|
|
|
2019-05-14 20:32:20 +00:00
|
|
|
* Tue May 14 2019 Kalev Lember <klember@redhat.com> - 2.45.6-1
|
|
|
|
- Update to 2.45.6
|
|
|
|
|
2019-03-13 14:14:53 +00:00
|
|
|
* Wed Mar 13 2019 Kalev Lember <klember@redhat.com> - 2.45.5-4
|
|
|
|
- Go back to using bundled rust deps
|
|
|
|
|
2019-02-19 15:36:28 +00:00
|
|
|
* Tue Feb 19 2019 Kalev Lember <klember@redhat.com> - 2.45.5-3
|
|
|
|
- Rebuilt against fixed atk (#1626575)
|
|
|
|
|
2019-02-19 06:29:08 +00:00
|
|
|
* Tue Feb 19 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.45.5-2
|
|
|
|
- Unbundle Rust deps
|
|
|
|
|
2019-02-16 06:07:46 +00:00
|
|
|
* Sat Feb 16 2019 Kalev Lember <klember@redhat.com> - 2.45.5-1
|
|
|
|
- Update to 2.45.5
|
|
|
|
|
2019-02-01 08:08:51 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.45.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-09 15:00:33 +00:00
|
|
|
* Wed Jan 09 2019 Kalev Lember <klember@redhat.com> - 2.45.4-1
|
|
|
|
- Update to 2.45.4
|
|
|
|
|
2019-01-09 14:16:33 +00:00
|
|
|
* Wed Jan 09 2019 Kalev Lember <klember@redhat.com> - 2.45.3-2
|
|
|
|
- Fix accidental soname bump
|
|
|
|
|
2019-01-09 12:36:16 +00:00
|
|
|
* Wed Jan 09 2019 Kalev Lember <klember@redhat.com> - 2.45.3-1
|
|
|
|
- Update to 2.45.3
|
|
|
|
|
2018-12-29 18:52:10 +00:00
|
|
|
* Sat Dec 29 2018 Kalev Lember <klember@redhat.com> - 2.44.11-1
|
|
|
|
- Update to 2.44.11
|
|
|
|
|
2018-12-18 14:51:57 +00:00
|
|
|
* Tue Dec 18 2018 Kalev Lember <klember@redhat.com> - 2.44.10-1
|
|
|
|
- Update to 2.44.10
|
|
|
|
|
2018-11-14 08:10:38 +00:00
|
|
|
* Wed Nov 14 2018 Kalev Lember <klember@redhat.com> - 2.44.9-1
|
|
|
|
- Update to 2.44.9
|
|
|
|
|
2018-10-26 06:15:55 +00:00
|
|
|
* Fri Oct 26 2018 Kalev Lember <klember@redhat.com> - 2.44.8-1
|
|
|
|
- Update to 2.44.8
|
|
|
|
|
2018-10-09 20:14:57 +00:00
|
|
|
* Tue Oct 09 2018 Kalev Lember <klember@redhat.com> - 2.44.7-1
|
|
|
|
- Update to 2.44.7
|
|
|
|
|
2018-09-28 05:13:39 +00:00
|
|
|
* Fri Sep 28 2018 Kalev Lember <klember@redhat.com> - 2.44.6-1
|
|
|
|
- Update to 2.44.6
|
|
|
|
|
2018-09-26 07:43:51 +00:00
|
|
|
* Wed Sep 26 2018 Kalev Lember <klember@redhat.com> - 2.44.4-1
|
|
|
|
- Update to 2.44.4
|
|
|
|
|
2018-09-20 09:27:45 +00:00
|
|
|
* Thu Sep 20 2018 Kalev Lember <klember@redhat.com> - 2.44.3-1
|
|
|
|
- Update to 2.44.3
|
|
|
|
|
2018-09-07 21:29:25 +00:00
|
|
|
* Fri Sep 07 2018 Kalev Lember <klember@redhat.com> - 2.44.2-2
|
|
|
|
- Rebuilt against fixed atk (#1626575)
|
|
|
|
|
2018-09-05 17:51:46 +00:00
|
|
|
* Wed Sep 05 2018 Kalev Lember <klember@redhat.com> - 2.44.2-1
|
|
|
|
- Update to 2.44.2
|
|
|
|
|
2018-08-08 09:40:09 +00:00
|
|
|
* Wed Aug 08 2018 Kalev Lember <klember@redhat.com> - 2.43.4-1
|
|
|
|
- Update to 2.43.4
|
2018-08-08 09:06:25 +00:00
|
|
|
- Use bundled rust deps
|
2018-08-08 09:40:09 +00:00
|
|
|
|
2018-07-13 08:47:00 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.43.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-01 11:18:29 +00:00
|
|
|
* Sun Jul 01 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.43.1-2
|
|
|
|
- Bump cssparser to 0.24
|
|
|
|
|
2018-06-24 11:35:29 +00:00
|
|
|
* Sun Jun 24 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.43.1-1
|
|
|
|
- Update to 2.43.1
|
|
|
|
|
2018-05-08 13:56:33 +00:00
|
|
|
* Tue May 08 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.42.4-1
|
|
|
|
- Update to 2.42.4
|
|
|
|
|
2018-05-04 05:02:26 +00:00
|
|
|
* Thu May 03 2018 Josh Stone <jistone@redhat.com> - 2.42.3-2
|
|
|
|
- Update rust dependencies.
|
|
|
|
|
2018-03-05 22:42:36 +00:00
|
|
|
* Mon Mar 05 2018 Kalev Lember <klember@redhat.com> - 2.42.3-1
|
|
|
|
- Update to 2.42.3
|
|
|
|
|
2018-02-07 23:15:30 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.42.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-02-02 09:12:44 +00:00
|
|
|
* Fri Feb 02 2018 Kalev Lember <klember@redhat.com> - 2.42.2-1
|
|
|
|
- Update to 2.42.2
|
|
|
|
|
2018-01-31 14:41:39 +00:00
|
|
|
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.42.1-2
|
|
|
|
- Switch to %%ldconfig_scriptlets
|
|
|
|
|
2018-01-24 22:25:58 +00:00
|
|
|
* Wed Jan 24 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.42.1-1
|
|
|
|
- Update to 2.42.1
|
|
|
|
|
2017-12-16 08:00:37 +00:00
|
|
|
* Sat Dec 16 2017 Kalev Lember <klember@redhat.com> - 2.40.20-1
|
|
|
|
- Update to 2.40.20
|
|
|
|
|
2017-10-09 08:45:27 +00:00
|
|
|
* Mon Oct 09 2017 Kalev Lember <klember@redhat.com> - 2.40.19-1
|
|
|
|
- Update to 2.40.19
|
|
|
|
|
2017-08-03 02:12:52 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.40.18-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 19:39:47 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.40.18-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-20 08:09:30 +00:00
|
|
|
* Thu Jul 20 2017 Kalev Lember <klember@redhat.com> - 2.40.18-1
|
|
|
|
- Update to 2.40.18
|
|
|
|
|
2017-04-11 12:10:18 +00:00
|
|
|
* Tue Apr 11 2017 Kalev Lember <klember@redhat.com> - 2.40.17-1
|
|
|
|
- Update to 2.40.17
|
2017-04-11 12:10:41 +00:00
|
|
|
- Remove lib64 rpaths
|
2017-04-11 12:10:18 +00:00
|
|
|
|
2017-02-10 19:24:20 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.40.16-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-09-22 05:45:59 +00:00
|
|
|
* Thu Sep 22 2016 Kalev Lember <klember@redhat.com> - 2.40.16-2
|
|
|
|
- BR vala instead of obsolete vala-tools subpackage
|
|
|
|
|
2016-06-09 07:49:21 +00:00
|
|
|
* Thu Jun 09 2016 Kalev Lember <klember@redhat.com> - 2.40.16-1
|
|
|
|
- Update to 2.40.16
|
|
|
|
|
2016-04-02 05:51:44 +00:00
|
|
|
* Sat Apr 02 2016 David King <amigadave@amigadave.com> - 2.40.15-1
|
|
|
|
- Update to 2.40.15
|
|
|
|
|
2016-02-04 03:52:10 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.40.13-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-08 08:10:19 +00:00
|
|
|
* Fri Jan 08 2016 David King <amigadave@amigadave.com> - 2.40.13-1
|
|
|
|
- Update to 2.40.13
|
2016-01-08 08:11:37 +00:00
|
|
|
- Fix bogus date in changelog
|
2016-01-08 08:10:19 +00:00
|
|
|
|
2015-12-02 09:06:41 +00:00
|
|
|
* Wed Dec 02 2015 David King <amigadave@amigadave.com> - 2.40.12-1
|
|
|
|
- Update to 2.40.12
|
|
|
|
|
2015-10-08 13:08:50 +00:00
|
|
|
* Thu Oct 08 2015 Kalev Lember <klember@redhat.com> - 2.40.11-1
|
|
|
|
- Update to 2.40.11
|
2015-10-08 13:10:10 +00:00
|
|
|
- Drop ancient librsvg3 obsoletes
|
2015-10-08 13:08:50 +00:00
|
|
|
|
2015-08-08 09:54:13 +00:00
|
|
|
* Sat Aug 08 2015 Kalev Lember <klember@redhat.com> - 2.40.10-1
|
|
|
|
- Update to 2.40.10
|
|
|
|
|
2015-08-05 19:36:14 +00:00
|
|
|
* Wed Aug 5 2015 Matthias Clasen <mclasen@redhat.com> - 2.40.9-3
|
|
|
|
- Rely on gdk-pixbuf2 file triggers
|
|
|
|
|
2015-06-17 16:32:04 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.40.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-03-26 22:19:50 +00:00
|
|
|
* Thu Mar 26 2015 Kalev Lember <kalevlember@gmail.com> - 2.40.9-1
|
|
|
|
- Update to 2.40.9
|
|
|
|
|
2015-02-27 17:01:23 +00:00
|
|
|
* Fri Feb 27 2015 David King <amigadave@amigadave.com> - 2.40.8-1
|
|
|
|
- Update to 2.40.8
|
|
|
|
|
2015-02-16 15:37:16 +00:00
|
|
|
* Mon Feb 16 2015 David King <amigadave@amigadave.com> - 2.40.7-1
|
|
|
|
- Update to 2.40.7
|
2015-02-16 15:38:08 +00:00
|
|
|
- Use license macro for COPYING and COPYING.LIB
|
2015-02-16 15:42:08 +00:00
|
|
|
- Use pkgconfig for BuildRequires
|
2015-02-16 15:53:24 +00:00
|
|
|
- Add URL
|
2015-02-16 15:37:16 +00:00
|
|
|
|
2014-12-03 10:32:51 +00:00
|
|
|
* Wed Dec 03 2014 Richard Hughes <rhughes@redhat.com> - 2.40.6-1
|
|
|
|
- Update to 2.40.6
|
|
|
|
|
2014-10-13 19:09:03 +00:00
|
|
|
* Mon Oct 13 2014 Kalev Lember <kalevlember@gmail.com> - 2.40.5-1
|
|
|
|
- Update to 2.40.5
|
|
|
|
|
2014-09-14 10:33:04 +00:00
|
|
|
* Sun Sep 14 2014 Kalev Lember <kalevlember@gmail.com> - 2.40.4-1
|
|
|
|
- Update to 2.40.4
|
2014-09-14 10:34:39 +00:00
|
|
|
- Tighten subpackage deps with the _isa macro
|
2014-09-14 10:33:04 +00:00
|
|
|
|
2014-08-18 21:21:51 +00:00
|
|
|
* Mon Aug 18 2014 Kalev Lember <kalevlember@gmail.com> - 2.40.3-1
|
|
|
|
- Update to 2.40.3
|
|
|
|
|
2014-08-17 05:51:29 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.40.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-22 17:54:40 +00:00
|
|
|
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 2.40.2-3
|
|
|
|
- Rebuilt for gobject-introspection 1.41.4
|
|
|
|
|
2014-06-07 05:20:39 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.40.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-03-18 15:46:01 +00:00
|
|
|
* Tue Mar 18 2014 Richard Hughes <rhughes@redhat.com> - 2.40.2-1
|
|
|
|
- Update to 2.40.2
|
|
|
|
|
2013-11-25 18:50:34 +00:00
|
|
|
* Mon Nov 25 2013 Richard Hughes <rhughes@redhat.com> - 2.40.1-1
|
|
|
|
- Update to 2.40.1
|
|
|
|
|
2013-10-29 03:51:42 +00:00
|
|
|
* Tue Oct 29 2013 Richard Hughes <rhughes@redhat.com> - 2.40.0-1
|
|
|
|
- Update to 2.40.0
|
|
|
|
|
2013-08-22 18:59:00 +00:00
|
|
|
* Thu Aug 22 2013 Kalev Lember <kalevlember@gmail.com> - 2.39.0-1
|
|
|
|
- Update to 2.39.0
|
|
|
|
|
2013-08-03 06:54:48 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.37.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-05-11 19:43:35 +00:00
|
|
|
* Sat May 11 2013 Kalev Lember <kalevlember@gmail.com> - 2.37.0-3
|
|
|
|
- Split rsvg-view-3 and rsvg-convert to a -tools subpackage (#915403)
|
|
|
|
|
2013-02-14 05:11:42 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.37.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-16 01:17:54 +00:00
|
|
|
* Tue Jan 15 2013 Matthias Clasen <mclasen@redhat.com> - 2.37.0-1
|
|
|
|
- Update to 2.37.0
|
|
|
|
|
2012-10-16 17:27:20 +00:00
|
|
|
* Tue Oct 16 2012 Kalev Lember <kalevlember@gmail.com> - 2.36.4-1
|
|
|
|
- Update to 2.36.4
|
|
|
|
|
2012-09-22 22:18:35 +00:00
|
|
|
* Sun Sep 23 2012 Kalev Lember <kalevlember@gmail.com> - 2.36.3-1
|
|
|
|
- Update to 2.36.3
|
|
|
|
- Package the librsvg Vala bindings
|
|
|
|
|
2012-07-19 21:06:03 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.36.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-04-16 20:47:21 +00:00
|
|
|
* Tue Apr 17 2012 Kalev Lember <kalevlember@gmail.com> - 2.36.1-1
|
|
|
|
- Update to 2.36.1
|
|
|
|
- Removed unrecognized configure options
|
|
|
|
- Include the man page in the rpm
|
|
|
|
|
2012-03-26 22:37:51 +00:00
|
|
|
* Tue Mar 27 2012 Kalev Lember <kalevlember@gmail.com> - 2.36.0-1
|
|
|
|
- Update to 2.36.0
|
|
|
|
|
2012-02-07 01:07:26 +00:00
|
|
|
* Mon Feb 6 2012 Matthias Clasen <mclasen@redhat.com> - 2.35.2-1
|
|
|
|
- Update to 2.35.2
|
|
|
|
|
2012-01-13 08:23:16 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.35.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-12-20 20:13:40 +00:00
|
|
|
* Tue Dec 20 2011 Matthias Clasen <mclasen@redhat.com> - 2.35.1-1
|
|
|
|
- Update to 2.35.1
|
|
|
|
|
2011-12-10 09:06:22 +00:00
|
|
|
* Sat Dec 10 2011 Hans de Goede <hdegoede@redhat.com> - 2.35.0-3
|
|
|
|
- Fix including rsvg.h always causing a deprecated warning, as this breaks
|
|
|
|
apps compiling with -Werror
|
|
|
|
|
2011-11-25 19:00:20 +00:00
|
|
|
* Fri Nov 25 2011 Daniel Drake <dsd@laptop.org> - 2.35.0-2
|
|
|
|
- Build gobject-introspection bindings
|
|
|
|
|
2011-11-22 21:49:57 +00:00
|
|
|
* Tue Nov 22 2011 Matthias Clasen <mclasen@redhat.com> - 2.35.0-1
|
|
|
|
- Update to 2.35.0
|
|
|
|
|
2011-11-07 17:45:43 +00:00
|
|
|
* Mon Nov 7 2011 Matthias Clasen <mclasen@redhat.com> - 2.34.1-2
|
|
|
|
- Rebuild against new libpng
|
|
|
|
|
2011-09-07 03:09:49 +00:00
|
|
|
* Tue Sep 6 2011 Matthias Clasen <mclasen@redhat.com> - 2.34.1-1
|
|
|
|
- Update to 2.34.1
|
|
|
|
|
2011-04-04 02:04:30 +00:00
|
|
|
* Sun Apr 3 2011 Christopher Aillon <caillon@redhat.com> - 2.34.0-1
|
|
|
|
- Update to 2.34.0
|
|
|
|
|
2011-02-18 22:59:16 +00:00
|
|
|
* Fri Feb 18 2011 Matthias Clasen <mclasen@redhat.com> - 2.32.1-3
|
|
|
|
- Fix a crash (#603183)
|
|
|
|
|
2011-02-08 11:14:23 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.32.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-03 05:10:05 +00:00
|
|
|
* Fri Dec 3 2010 Matthias Clasen <mclasen@redhat.com> - 2.32.1-1
|
|
|
|
- Update to 2.32.1
|
|
|
|
|
2010-10-26 16:31:42 +00:00
|
|
|
* Mon Oct 18 2010 Parag Nemade <paragn AT fedoraproject.org> - 2.32.0-2
|
|
|
|
- Merge-review cleanup (#226040)
|
|
|
|
|
2010-09-29 21:43:28 +00:00
|
|
|
* Wed Sep 29 2010 Matthias Clasen <mclasen@redhat.com> 2.32.0-1
|
|
|
|
- Update to 2.32.0
|
|
|
|
|
2010-07-19 08:07:59 +00:00
|
|
|
* Mon Jul 19 2010 Bastien Nocera <bnocera@redhat.com> 2.31.0-2
|
|
|
|
- Fix rawhide upgrade path with librsvg3
|
|
|
|
|
2010-07-03 01:40:49 +00:00
|
|
|
* Fri Jul 2 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.0-1
|
|
|
|
- Update to 2.31.0
|
|
|
|
|
2010-07-02 13:06:10 +00:00
|
|
|
* Fri Jul 02 2010 Adam Tkac <atkac redhat com> - 2.31.0-0.3.20100628git
|
|
|
|
- fix crash in rsvg-gobject.c:instance_dispose function
|
|
|
|
(https://bugzilla.gnome.org/show_bug.cgi?id=623383)
|
|
|
|
|
2010-07-01 01:36:40 +00:00
|
|
|
* Wed Jun 30 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.0-0.2.20100628git
|
|
|
|
- Fix the .pc file to require gdk-pixbuf-2.0
|
|
|
|
|
2010-06-29 00:07:19 +00:00
|
|
|
* Mon Jun 28 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.0-0.1.20100628git
|
|
|
|
- Update to a git snapshot that builds against standalone gdk-pixbuf
|
|
|
|
- Drop librsvg3 package
|
|
|
|
- Drop svg theme engine
|
|
|
|
|
2010-06-11 13:48:46 +00:00
|
|
|
* Fri Jun 11 2010 Bastien Nocera <bnocera@redhat.com> 2.26.3-3
|
|
|
|
- Add missing scriptlets for librsvg3
|
|
|
|
- Fix requires for librsvg3-devel package
|
|
|
|
|
2010-06-11 13:13:30 +00:00
|
|
|
* Fri Jun 11 2010 Bastien Nocera <bnocera@redhat.com> 2.26.3-2
|
|
|
|
- Add GTK3 port of the libraries
|
|
|
|
|
2010-05-01 16:40:39 +00:00
|
|
|
* Sat May 1 2010 Matthias Clasen <mclasen@redhat.com> - 2.26.3-1
|
|
|
|
- Update to 2.26.3
|
|
|
|
|
2010-03-30 22:41:07 +00:00
|
|
|
* Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 2.26.2-1
|
|
|
|
- Update to 2.26.2
|
|
|
|
|
2010-03-30 01:33:51 +00:00
|
|
|
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> - 2.26.1-1
|
|
|
|
- Update to 2.26.1
|
|
|
|
|
2010-02-14 19:14:31 +00:00
|
|
|
* Sun Feb 14 2010 Matthias Clasen <mclasen@redhat.com> - 2.26.0-4
|
|
|
|
- Add missing libs
|
|
|
|
|
2009-08-10 09:18:34 +00:00
|
|
|
* Mon Aug 10 2009 Ville Skyttä <ville.skytta@iki.fi> - 2.26.0-3
|
|
|
|
- Convert specfile to UTF-8.
|
|
|
|
|
2009-07-25 08:33:29 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.26.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-03-16 18:38:13 +00:00
|
|
|
* Mon Mar 16 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-1
|
|
|
|
- Update to 2.26.0
|
|
|
|
|
2009-02-25 17:49:49 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.22.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-09-23 01:24:50 +00:00
|
|
|
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.3-1
|
|
|
|
- Update to 2.22.3
|
|
|
|
|
2008-09-18 18:45:02 +00:00
|
|
|
* Thu Sep 18 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.2-2
|
|
|
|
- Plug a memory leak
|
|
|
|
|
2008-03-05 01:17:28 +00:00
|
|
|
* Tue Mar 4 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.2-1
|
|
|
|
- Update to 2.22.2
|
|
|
|
|
2008-02-24 21:44:21 +00:00
|
|
|
* Sun Feb 24 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.1-1
|
|
|
|
- Update to 2.22.1
|
|
|
|
|
2008-02-21 20:15:23 +00:00
|
|
|
* Thu Feb 21 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-1
|
|
|
|
- Update to 2.22.0
|
|
|
|
|
2008-02-18 21:05:37 +00:00
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.20.0-2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-21 04:27:24 +00:00
|
|
|
* Sun Jan 20 2008 Matthias Clasen <mclasen@redhat.com> - 2.20.0-1
|
|
|
|
- Update to 2.20.0
|
|
|
|
|
2007-09-11 14:26:07 +00:00
|
|
|
* Tue Sep 11 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.2-2
|
|
|
|
- Plug memory leaks
|
|
|
|
|
2007-09-04 03:38:15 +00:00
|
|
|
* Mon Sep 3 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.2-1
|
|
|
|
- Update to 2.18.2
|
|
|
|
|
2007-09-04 03:11:47 +00:00
|
|
|
* Mon Sep 3 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.1-1
|
|
|
|
- Update to 2.18.1
|
|
|
|
|
2007-08-23 17:25:41 +00:00
|
|
|
* Thu Aug 23 2007 Adam Jackson <ajax@redhat.com> - 2.18.0-4
|
|
|
|
- Rebuild for build ID
|
|
|
|
|
2007-08-08 01:36:17 +00:00
|
|
|
* Tue Aug 7 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0-3
|
|
|
|
- Update license field
|
|
|
|
|
2007-08-02 02:03:13 +00:00
|
|
|
* Wed Aug 1 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0-2
|
|
|
|
- Don't let scriptlets fail (#243185)
|
|
|
|
|
2007-07-27 17:31:20 +00:00
|
|
|
* Fri Jul 27 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0-1
|
|
|
|
- Update to 2.18.0
|
|
|
|
|
2006-11-04 20:36:12 +00:00
|
|
|
* Sat Nov 4 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-1
|
|
|
|
- Update to 2.16.1
|
|
|
|
|
2006-09-06 02:25:03 +00:00
|
|
|
* Tue Sep 5 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-2.fc6
|
|
|
|
- Fix multilib issues
|
|
|
|
|
2006-08-31 17:05:56 +00:00
|
|
|
* Thu Aug 31 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-1.fc6
|
|
|
|
- Update to 2.16.0
|
|
|
|
- Require pkgconfig in the -devel package
|
|
|
|
|
2006-08-03 17:09:37 +00:00
|
|
|
* Thu Aug 3 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.90-1.fc6
|
|
|
|
- Update to 2.15.90
|
|
|
|
|
2006-07-12 06:55:42 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.15.0-3.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-06-18 12:09:17 +00:00
|
|
|
* Sun Jun 18 2006 Florian La Roche <laroche@redhat.com>
|
|
|
|
- change to separate Requires(post/postun) lines
|
|
|
|
|
2006-06-13 02:35:24 +00:00
|
|
|
* Mon Jun 12 2006 Bill Nottingham <notting@redhat.com> 2.15.0-2
|
|
|
|
- remove libtool, automake14 buildreqs
|
|
|
|
|
2006-05-11 04:05:18 +00:00
|
|
|
* Wed May 10 2006 Matthias Clasen <mclasen@redhat.com> 2.15.0-1
|
|
|
|
- Update to 2.15.0
|
|
|
|
- Don't ship static libs
|
|
|
|
|
2006-05-05 18:19:16 +00:00
|
|
|
* Fri May 5 2006 Matthias Clasen <mclasen@redhat.com> 2.14.3-3
|
|
|
|
- Rebuild against new GTK+
|
|
|
|
- Require GTK+ 2.9.0
|
|
|
|
|
2006-04-04 18:59:00 +00:00
|
|
|
* Tue Apr 4 2006 Matthias Clasen <mclasen@redhat.com> 2.14.3-2
|
|
|
|
- Update to 2.14.3
|
2006-03-21 08:33:46 +00:00
|
|
|
|
2006-03-12 19:39:44 +00:00
|
|
|
* Sun Mar 12 2006 Ray Strode <rstrode@redhat.com> 2.14.2-1
|
|
|
|
- Update to 2.14.2
|
|
|
|
|
2006-03-11 07:52:21 +00:00
|
|
|
* Sat Mar 11 2006 Bill Nottingham <notting@redhat.com> 2.14.1-2
|
|
|
|
- fix bad libart dep
|
|
|
|
|
2006-03-01 02:24:24 +00:00
|
|
|
* Tue Feb 28 2006 Matthias Clasen <mclasen@redhat.com> 2.14.1-1
|
|
|
|
- Update to 2.14.1
|
|
|
|
|
2006-02-26 02:03:01 +00:00
|
|
|
* Sat Feb 25 2006 Matthias Clasen <mclasen@redhat.com> 2.14.0-1
|
|
|
|
- Update to 2.14.0
|
|
|
|
|
2016-01-08 08:11:37 +00:00
|
|
|
* Mon Feb 13 2006 Matthias Clasen <mclasen@redhat.com> 2.13.93-1
|
2006-02-11 20:40:54 +00:00
|
|
|
- Update to 2.13.93
|
|
|
|
|
2006-02-11 04:11:56 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.13.92-1.1
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 03:35:34 +00:00
|
|
|
* Mon Feb 6 2006 Matthias Clasen <mclasen@redhat.com> 2.13.92-1
|
|
|
|
- Update to 2.13.92
|
|
|
|
|
2006-01-13 19:07:19 +00:00
|
|
|
* Fri Jan 13 2006 Matthias Clasen <mclasen@redhat.com> 2.13.5-1
|
|
|
|
- Update to 2.13.5
|
|
|
|
|
2006-01-03 19:22:16 +00:00
|
|
|
* Tue Jan 3 2006 Jesse Keating <jkeating@redhat.com> 2.13.3-4
|
|
|
|
- Rebuilt on new gcc
|
|
|
|
|
2005-12-09 12:21:53 +00:00
|
|
|
* Fri Dec 9 2005 Alexander Larsson <alexl@redhat.com> 2.13.3-3
|
|
|
|
- Update dependencies (now cairo only, not libart)
|
|
|
|
|
2005-12-02 14:21:56 +00:00
|
|
|
* Fri Dec 2 2005 Matthias Clasen <mclasen@redhat.com> - 2.13.3-2
|
|
|
|
- Compile with svgz support
|
|
|
|
|
2005-11-30 19:16:28 +00:00
|
|
|
* Wed Nov 30 2005 Matthias Clasen <mclasen@redhat.com> - 2.13.3-1
|
|
|
|
- Update to 2.13.3
|
|
|
|
|
2005-10-12 04:43:04 +00:00
|
|
|
* Wed Oct 12 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.7-1
|
|
|
|
- Newer upstream version
|
|
|
|
|
2005-10-06 22:19:49 +00:00
|
|
|
* Thu Oct 6 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.5-1
|
|
|
|
- New upstream version
|
|
|
|
|
2005-10-06 04:18:03 +00:00
|
|
|
* Thu Oct 6 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.4-1
|
|
|
|
- New upstream version
|
|
|
|
|
2005-09-30 03:34:02 +00:00
|
|
|
* Thu Sep 29 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.3-1
|
|
|
|
- New upstream version
|
|
|
|
|
2005-08-31 16:46:16 +00:00
|
|
|
* Wed Aug 31 2005 Matthias Clasen <mclasen@redhat.com> - 2.11.1-1
|
|
|
|
- New upstream version
|
|
|
|
|
2005-03-02 17:18:55 +00:00
|
|
|
* Wed Mar 2 2005 Matthias Clasen <mclasen@redhat.com> - 2.9.5-2
|
|
|
|
- Rebuild with gcc4
|
|
|
|
|
2005-01-26 17:44:38 +00:00
|
|
|
* Wed Jan 26 2005 Matthias Clasen <mclasen@redhat.com> - 2.9.5-1
|
|
|
|
- update to 2.9.5
|
|
|
|
|
2004-11-03 15:47:58 +00:00
|
|
|
* Thu Sep 23 2004 Matthias Clasen <mclasen@redhat.com> - 2.8.1-2
|
|
|
|
- Must use the same rpm macro for the host triplet as the
|
|
|
|
gtk2 package, otherwise things can fall apart. (#137676)
|
|
|
|
|
2004-09-23 12:09:57 +00:00
|
|
|
* Thu Sep 23 2004 Alexander Larsson <alexl@redhat.com> - 2.8.1-1
|
|
|
|
- update to 2.8.1
|
|
|
|
|
2004-09-09 07:44:06 +00:00
|
|
|
* Fri Jul 30 2004 Matthias Clasen <mclasen@redhat.com> - 2.7.2-1
|
|
|
|
- Update to 2.7.2
|
|
|
|
- Fix up changelog section
|
|
|
|
|
2004-09-09 07:43:48 +00:00
|
|
|
* Mon Jun 28 2004 Dan Williams <dcbw@redhat.com> - 2.6.4-7
|
2004-09-09 07:44:06 +00:00
|
|
|
- Fix usage of "%%{_bindir}/update-gdk-pixbuf-loaders %%{_host}"
|
|
|
|
to point to right place and architecture
|
2004-09-09 07:43:48 +00:00
|
|
|
|
2004-09-09 07:43:46 +00:00
|
|
|
* Thu Jun 24 2004 Matthias Clasen <mclasen@redhat.com> 2.6.4-6
|
|
|
|
- Properly handle updating of arch-dependent config
|
|
|
|
files. (#124483)
|
|
|
|
|
|
|
|
* Wed Jun 23 2004 Matthias Clasen <mclasen@redhat.com> 2.6.4-5
|
2004-09-09 07:43:38 +00:00
|
|
|
- PreReq gtk2 instead of just requiring it (#90697)
|
|
|
|
|
2004-09-09 07:43:31 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 07:43:23 +00:00
|
|
|
* Fri May 21 2004 Matthias Clasen <mclasen@redhat.com> 2.6.4-3
|
|
|
|
- rebuild
|
|
|
|
|
2004-09-09 07:43:11 +00:00
|
|
|
* Mon Apr 5 2004 Warren Togami <wtogami@redhat.com> 2.6.4-2
|
|
|
|
- BuildRequires libtool, libgnomeui-devel, there may be more
|
|
|
|
- -devel req libcroco-devel
|
|
|
|
|
|
|
|
* Thu Apr 1 2004 Alex Larsson <alexl@redhat.com> 2.6.4-1
|
|
|
|
- update to 2.6.4
|
|
|
|
|
2004-09-09 07:42:26 +00:00
|
|
|
* Wed Mar 17 2004 Alex Larsson <alexl@redhat.com> 2.6.1-2
|
|
|
|
- rebuild to get new gtk bin age
|
|
|
|
|
|
|
|
* Mon Mar 15 2004 Alex Larsson <alexl@redhat.com> 2.6.1-1
|
|
|
|
- update to 2.6.1
|
|
|
|
|
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 07:41:53 +00:00
|
|
|
* Tue Jan 27 2004 Jonathan Blandford <jrb@redhat.com> 2.4.0-3
|
|
|
|
- update version
|
|
|
|
- Buildrequire libcroco
|
|
|
|
|
2004-09-09 07:41:46 +00:00
|
|
|
* Fri Oct 24 2003 Alexander Larsson <alexl@redhat.com> 2.4.0-3
|
|
|
|
- Fix libcroco in link line. Fixes #107875.
|
|
|
|
- Properly require libgsf and libcroco
|
|
|
|
|
|
|
|
* Tue Oct 21 2003 Florian La Roche <Florian.LaRoche@redhat.de> 2.4.0-2
|
|
|
|
- BuildReq libcroco-devel, seems this _can_ get picked up
|
|
|
|
|
|
|
|
* Mon Sep 8 2003 Jonathan Blandford <jrb@redhat.com> 2.4.0-1
|
|
|
|
- bump to 2.4.0
|
|
|
|
|
|
|
|
* Thu Sep 4 2003 Alexander Larsson <alexl@redhat.com> 2.3.1-3
|
|
|
|
- Don't use the epoch, thats implicitly zero and not defined
|
|
|
|
|
|
|
|
* Thu Sep 4 2003 Alexander Larsson <alexl@redhat.com> 2.3.1-2
|
|
|
|
- full version in -devel requires (#102063)
|
|
|
|
|
|
|
|
* Wed Aug 13 2003 Jonathan Blandford <jrb@redhat.com> 2.3.1-1
|
|
|
|
- new version for GNOME 2.4
|
|
|
|
|
|
|
|
* Fri Aug 8 2003 Alexander Larsson <alexl@redhat.com> 2.2.3-5
|
|
|
|
- BuildRequire libgsf-devel
|
|
|
|
|
|
|
|
* Wed Aug 6 2003 Elliot Lee <sopwith@redhat.com> 2.2.3-4
|
|
|
|
- Fix libtool
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 07:41:26 +00:00
|
|
|
* Tue Apr 8 2003 Matt Wilson <msw@redhat.com> 2.2.3-2
|
|
|
|
- use system libtool (#88339)
|
|
|
|
|
2004-09-09 07:40:58 +00:00
|
|
|
* Wed Feb 5 2003 Alexander Larsson <alexl@redhat.com> 2.2.3-1
|
|
|
|
- 2.2.3
|
|
|
|
- Moved engine and loaders from devel package
|
|
|
|
|
|
|
|
* Mon Feb 3 2003 Alexander Larsson <alexl@redhat.com> 2.2.2.1-2
|
|
|
|
- Move docs to rpm docdir
|
|
|
|
|
|
|
|
* Mon Feb 3 2003 Alexander Larsson <alexl@redhat.com> 2.2.2.1-1
|
|
|
|
- Update to 2.2.2.1, crash fixes
|
|
|
|
|
|
|
|
* Fri Jan 31 2003 Alexander Larsson <alexl@redhat.com> 2.2.1-1
|
|
|
|
- Update to 2.2.1, fixes crash
|
|
|
|
- Removed temporary manpage hack
|
|
|
|
|
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue Jan 21 2003 Alexander Larsson <alexl@redhat.com> 2.2.0-3
|
|
|
|
- Manpage were installed in the wrong place
|
|
|
|
|
|
|
|
* Tue Jan 21 2003 Alexander Larsson <alexl@redhat.com> 2.2.0-2
|
|
|
|
- Add manpage
|
|
|
|
|
|
|
|
* Tue Jan 21 2003 Alexander Larsson <alexl@redhat.com> 2.2.0-1
|
|
|
|
- Update to 2.2.0
|
|
|
|
|
|
|
|
* Fri Jan 17 2003 Alexander Larsson <alexl@redhat.com> 2.1.3-3
|
|
|
|
- Require gtk2 2.2.0 for the pixbuf loader (#80857)
|
|
|
|
|
|
|
|
* Thu Jan 16 2003 Alexander Larsson <alexl@redhat.com> 2.1.3-2
|
|
|
|
- own includedir/librsvg-2
|
|
|
|
|
|
|
|
* Thu Jan 9 2003 Alexander Larsson <alexl@redhat.com> 2.1.3-1
|
|
|
|
- update to 2.1.3
|
|
|
|
|
|
|
|
* Tue Dec 17 2002 Owen Taylor <otaylor@redhat.com>
|
2004-09-09 07:44:06 +00:00
|
|
|
- Don't package gdk-pixbuf.loaders, it gets generated
|
|
|
|
in the %%post
|
2004-09-09 07:40:58 +00:00
|
|
|
|
|
|
|
* Mon Dec 9 2002 Alexander Larsson <alexl@redhat.com> 2.1.2-1
|
|
|
|
- Update to 2.1.2
|
|
|
|
|
2004-09-09 07:40:55 +00:00
|
|
|
* Sat Jul 27 2002 Havoc Pennington <hp@redhat.com>
|
|
|
|
- 2.0.1
|
|
|
|
|
2004-09-09 07:40:44 +00:00
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Sun May 26 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
|
|
|
|
- rebuild in different environment
|
|
|
|
|
|
|
|
* Thu May 02 2002 Havoc Pennington <hp@redhat.com>
|
|
|
|
- rebuild in different environment
|
|
|
|
|
2004-09-09 07:40:36 +00:00
|
|
|
* Thu Apr 18 2002 Havoc Pennington <hp@redhat.com>
|
|
|
|
- 1.1.6
|
|
|
|
|
|
|
|
* Mon Feb 11 2002 Alex Larsson <alexl@redhat.com> 1.1.3-1
|
|
|
|
- Update to 1.1.3
|
|
|
|
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2004-09-09 07:40:29 +00:00
|
|
|
* Wed Jan 2 2002 Havoc Pennington <hp@redhat.com>
|
|
|
|
- new CVS snap 1.1.0.91
|
|
|
|
- remove automake/autoconf calls
|
|
|
|
|
|
|
|
* Mon Nov 26 2001 Havoc Pennington <hp@redhat.com>
|
|
|
|
- convert to librsvg2 RPM
|
|
|
|
|
|
|
|
* Tue Oct 23 2001 Havoc Pennington <hp@redhat.com>
|
|
|
|
- 1.0.2
|
|
|
|
|
|
|
|
* Fri Jul 27 2001 Alexander Larsson <alexl@redhat.com>
|
|
|
|
- Add a patch that moves the includes to librsvg-1/librsvg
|
|
|
|
- in preparation for a later librsvg 2 library.
|
|
|
|
|
|
|
|
* Tue Jul 24 2001 Havoc Pennington <hp@redhat.com>
|
|
|
|
- build requires gnome-libs-devel, #49509
|
|
|
|
|
|
|
|
* Thu Jul 19 2001 Havoc Pennington <hp@redhat.com>
|
|
|
|
- own /usr/include/librsvg
|
|
|
|
|
|
|
|
* Wed Jul 18 2001 Akira TAGOH <tagoh@redhat.com> 1.0.0-4
|
|
|
|
- fixed the linefeed problem in multibyte environment. (Bug#49310)
|
|
|
|
|
|
|
|
* Mon Jul 09 2001 Havoc Pennington <hp@redhat.com>
|
|
|
|
- put .la file back in package
|
|
|
|
|
2009-08-10 09:18:34 +00:00
|
|
|
* Fri Jul 6 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 07:40:29 +00:00
|
|
|
- Put changelog at the end
|
|
|
|
- Move .so files to devel subpackage
|
|
|
|
- Don't mess with ld.so.conf
|
|
|
|
- Don't use %%{prefix}, this isn't a relocatable package
|
|
|
|
- Don't define a bad docdir
|
|
|
|
- Add BuildRequires
|
|
|
|
- Use %%{_tmppath}
|
2004-09-09 07:44:06 +00:00
|
|
|
- Don't define name, version etc. on top of the file (why
|
|
|
|
do so many do that?)
|
2004-09-09 07:40:29 +00:00
|
|
|
- s/Copyright/License/
|
|
|
|
|
|
|
|
* Wed May 9 2001 Jonathan Blandford <jrb@redhat.com>
|
|
|
|
- Put into Red Hat Build system
|
|
|
|
|
|
|
|
* Tue Oct 10 2000 Robin Slomkowski <rslomkow@eazel.com>
|
2004-09-09 07:44:06 +00:00
|
|
|
- removed obsoletes from sub packages and added mozilla and
|
|
|
|
trilobite subpackages
|
2004-09-09 07:40:29 +00:00
|
|
|
|
|
|
|
* Wed Apr 26 2000 Ramiro Estrugo <ramiro@eazel.com>
|
|
|
|
- created this thing
|
|
|
|
|