2021-02-19 11:19:13 +00:00
|
|
|
%global tarball_version %%(echo %{version} | tr '~' '.')
|
|
|
|
|
2007-02-03 15:58:35 +00:00
|
|
|
Name: devhelp
|
2010-11-15 12:39:49 +00:00
|
|
|
Epoch: 1
|
2021-10-02 19:38:25 +00:00
|
|
|
Version: 41.2
|
2022-01-20 00:33:24 +00:00
|
|
|
Release: 2%{?dist}
|
2016-09-21 11:14:56 +00:00
|
|
|
Summary: API documentation browser
|
2007-02-03 15:58:35 +00:00
|
|
|
|
2021-06-07 18:25:30 +00:00
|
|
|
License: GPLv3+
|
2016-08-17 12:04:34 +00:00
|
|
|
URL: https://wiki.gnome.org/Apps/Devhelp
|
2021-08-20 20:04:03 +00:00
|
|
|
Source0: https://download.gnome.org/sources/%{name}/41/%{name}-%{tarball_version}.tar.xz
|
2007-02-03 15:58:35 +00:00
|
|
|
|
2014-08-22 18:24:27 +00:00
|
|
|
BuildRequires: chrpath
|
2018-09-07 09:28:35 +00:00
|
|
|
BuildRequires: desktop-file-utils
|
2007-02-03 15:58:35 +00:00
|
|
|
BuildRequires: gettext
|
2021-08-20 20:04:03 +00:00
|
|
|
BuildRequires: gi-docgen
|
2017-02-28 14:02:49 +00:00
|
|
|
BuildRequires: gobject-introspection-devel
|
2018-03-06 00:29:31 +00:00
|
|
|
BuildRequires: itstool
|
2018-09-07 09:28:35 +00:00
|
|
|
BuildRequires: meson
|
2017-06-12 11:33:48 +00:00
|
|
|
BuildRequires: pkgconfig(gsettings-desktop-schemas)
|
2015-02-16 09:04:34 +00:00
|
|
|
BuildRequires: pkgconfig(gtk+-3.0)
|
|
|
|
BuildRequires: pkgconfig(webkit2gtk-4.0)
|
2015-03-30 16:41:20 +00:00
|
|
|
BuildRequires: libappstream-glib
|
2007-02-03 15:58:35 +00:00
|
|
|
|
2018-10-31 08:16:50 +00:00
|
|
|
Requires: devhelp-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
2018-10-08 13:58:49 +00:00
|
|
|
|
2004-09-09 04:10:14 +00:00
|
|
|
%description
|
2009-09-07 22:54:35 +00:00
|
|
|
Devhelp is an API documentation browser for the GNOME desktop.
|
2008-11-21 22:40:03 +00:00
|
|
|
It works natively with API documentation generated by gtk-doc.
|
2004-09-09 04:10:14 +00:00
|
|
|
|
2016-04-02 10:29:08 +00:00
|
|
|
%package libs
|
2008-11-21 22:40:03 +00:00
|
|
|
Summary: Library to embed Devhelp in other applications
|
2004-09-09 04:10:40 +00:00
|
|
|
|
2016-04-02 10:29:08 +00:00
|
|
|
%description libs
|
2009-09-24 01:35:41 +00:00
|
|
|
Devhelp is an API documentation browser for the GNOME desktop.
|
|
|
|
This package contains a library that can be used for embedding devhelp
|
2008-11-21 22:40:03 +00:00
|
|
|
into other applications such as IDEs.
|
2004-09-09 04:10:40 +00:00
|
|
|
|
2016-04-02 10:29:08 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Library to embed Devhelp in other applications - Development files
|
|
|
|
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release}
|
2018-10-31 08:16:50 +00:00
|
|
|
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
|
2016-04-02 10:29:08 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
Devhelp is an API documentation browser for the GNOME desktop.
|
|
|
|
This package contains the development files for the library that can be used
|
|
|
|
for embedding devhelp into other applications such as IDEs.
|
|
|
|
|
2004-09-09 04:10:14 +00:00
|
|
|
%prep
|
2021-02-19 11:19:13 +00:00
|
|
|
%autosetup -p1 -n %{name}-%{tarball_version}
|
2004-09-09 04:10:14 +00:00
|
|
|
|
|
|
|
%build
|
2019-06-10 08:08:16 +00:00
|
|
|
%meson \
|
|
|
|
%if 0%{?flatpak}
|
2019-06-10 08:16:49 +00:00
|
|
|
-Dflatpak_build=true \
|
2019-06-10 08:08:16 +00:00
|
|
|
%endif
|
2021-02-19 11:19:13 +00:00
|
|
|
-Dgtk_doc=true \
|
|
|
|
-Dplugin_gedit=true \
|
|
|
|
%{nil}
|
2019-06-10 08:08:16 +00:00
|
|
|
|
2018-09-07 09:28:35 +00:00
|
|
|
%meson_build
|
2004-09-09 04:10:14 +00:00
|
|
|
|
|
|
|
%install
|
2018-09-07 09:28:35 +00:00
|
|
|
%meson_install
|
2004-09-09 04:10:14 +00:00
|
|
|
|
2006-11-26 04:38:33 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/devhelp/books
|
|
|
|
|
2014-08-22 18:24:27 +00:00
|
|
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/devhelp
|
|
|
|
|
2018-03-06 00:16:42 +00:00
|
|
|
%find_lang devhelp --with-gnome
|
2004-09-09 04:10:14 +00:00
|
|
|
|
2015-06-24 14:21:23 +00:00
|
|
|
%check
|
2021-08-20 20:04:03 +00:00
|
|
|
appstream-util validate-relax --nonet $RPM_BUILD_ROOT%{_datadir}/metainfo/org.gnome.Devhelp*.appdata.xml
|
|
|
|
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/org.gnome.Devhelp*.desktop
|
2013-02-05 23:50:44 +00:00
|
|
|
|
2016-04-02 10:29:08 +00:00
|
|
|
%files
|
2020-02-04 03:13:45 +00:00
|
|
|
%license LICENSES/*
|
2021-08-20 20:04:03 +00:00
|
|
|
%doc NEWS README.md
|
2004-09-09 04:10:14 +00:00
|
|
|
%{_bindir}/devhelp
|
2021-08-20 20:04:03 +00:00
|
|
|
%{_datadir}/applications/org.gnome.Devhelp*.desktop
|
|
|
|
%{_datadir}/dbus-1/services/org.gnome.Devhelp*.service
|
|
|
|
%{_datadir}/devhelp/
|
2018-09-07 09:28:35 +00:00
|
|
|
%{_datadir}/glib-2.0/schemas/org.gnome.devhelp.gschema.xml
|
2021-08-20 20:04:03 +00:00
|
|
|
%{_datadir}/icons/hicolor/scalable/apps/org.gnome.Devhelp*.svg
|
|
|
|
%{_datadir}/icons/hicolor/symbolic/apps/org.gnome.Devhelp*-symbolic.svg
|
|
|
|
%{_datadir}/metainfo/org.gnome.Devhelp*.appdata.xml
|
2011-10-11 17:19:53 +00:00
|
|
|
%dir %{_libdir}/gedit
|
|
|
|
%dir %{_libdir}/gedit/plugins
|
2011-02-22 16:56:15 +00:00
|
|
|
%{_libdir}/gedit/plugins/devhelp.*
|
2015-06-24 14:08:58 +00:00
|
|
|
%{_mandir}/man1/devhelp.1*
|
2006-07-29 15:04:41 +00:00
|
|
|
|
2016-04-02 10:29:08 +00:00
|
|
|
%files libs -f devhelp.lang
|
2018-09-07 09:28:35 +00:00
|
|
|
%{_libdir}/libdevhelp-3.so.6*
|
2017-02-28 14:02:49 +00:00
|
|
|
%{_libdir}/girepository-1.0/Devhelp-3.0.typelib
|
2018-09-07 09:28:35 +00:00
|
|
|
%{_datadir}/glib-2.0/schemas/org.gnome.libdevhelp-3.gschema.xml
|
2016-04-02 10:29:08 +00:00
|
|
|
|
2004-09-09 04:10:40 +00:00
|
|
|
%files devel
|
2018-09-07 09:28:35 +00:00
|
|
|
%{_includedir}/devhelp-3/
|
2017-08-06 14:53:14 +00:00
|
|
|
%{_libdir}/libdevhelp-3.so
|
2004-09-09 04:10:40 +00:00
|
|
|
%{_libdir}/pkgconfig/*
|
2021-08-20 20:04:03 +00:00
|
|
|
%{_datadir}/doc/devhelp-3/
|
2017-02-28 14:02:49 +00:00
|
|
|
%{_datadir}/gir-1.0/Devhelp-3.0.gir
|
2004-09-09 04:10:40 +00:00
|
|
|
|
2004-09-09 04:10:14 +00:00
|
|
|
%changelog
|
2022-01-20 00:33:24 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:41.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-10-02 19:38:25 +00:00
|
|
|
* Sat Oct 02 2021 Kalev Lember <klember@redhat.com> - 1:41.2-1
|
|
|
|
- Update to 41.2
|
|
|
|
|
2021-09-20 19:13:38 +00:00
|
|
|
* Mon Sep 20 2021 Kalev Lember <klember@redhat.com> - 1:41.1-2
|
|
|
|
- Switch to re-uploaded 41.1 tarball
|
|
|
|
|
2021-09-17 14:14:04 +00:00
|
|
|
* Fri Sep 17 2021 Kalev Lember <klember@redhat.com> - 1:41.1-1
|
|
|
|
- Update to 41.1
|
|
|
|
|
2021-09-17 13:45:42 +00:00
|
|
|
* Fri Sep 17 2021 Kalev Lember <klember@redhat.com> - 1:41.0-1
|
|
|
|
- Update to 41.0
|
|
|
|
|
2021-09-08 20:03:07 +00:00
|
|
|
* Wed Sep 08 2021 Kalev Lember <klember@redhat.com> - 1:41~rc-1
|
|
|
|
- Update to 41.rc
|
|
|
|
|
2021-08-20 20:04:03 +00:00
|
|
|
* Fri Aug 20 2021 Kalev Lember <klember@redhat.com> - 1:41~beta-1
|
|
|
|
- Update to 41.beta
|
|
|
|
|
2021-07-21 20:41:04 +00:00
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:40.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-04-15 14:42:27 +00:00
|
|
|
* Thu Apr 15 2021 Ray Strode <rstrode@redhat.com> - 1:40.0-1
|
|
|
|
- Update to 40.0
|
|
|
|
- Drop amtk dependency
|
|
|
|
|
2021-02-19 11:19:13 +00:00
|
|
|
* Fri Feb 19 2021 Kalev Lember <klember@redhat.com> - 1:40~alpha-1
|
|
|
|
- Update to 40.alpha
|
|
|
|
|
2021-01-26 03:17:32 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.38.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-11-25 08:46:26 +00:00
|
|
|
* Wed Nov 25 2020 Kalev Lember <klember@redhat.com> - 1:3.38.1-1
|
|
|
|
- Update to 3.38.1
|
|
|
|
|
2020-09-11 07:36:19 +00:00
|
|
|
* Fri Sep 11 2020 Kalev Lember <klember@redhat.com> - 1:3.38.0-1
|
|
|
|
- Update to 3.38.0
|
|
|
|
|
2020-07-27 15:17:35 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.37.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-05-29 15:46:06 +00:00
|
|
|
* Fri May 29 2020 Kalev Lember <klember@redhat.com> - 1:3.37.1-1
|
|
|
|
- Update to 3.37.1
|
|
|
|
|
2020-04-25 17:35:15 +00:00
|
|
|
* Sat Apr 25 2020 Kalev Lember <klember@redhat.com> - 1:3.36.2-1
|
|
|
|
- Update to 3.36.2
|
|
|
|
|
2020-03-27 21:58:10 +00:00
|
|
|
* Fri Mar 27 2020 Kalev Lember <klember@redhat.com> - 1:3.36.1-1
|
|
|
|
- Update to 3.36.1
|
|
|
|
|
2020-03-05 09:02:36 +00:00
|
|
|
* Thu Mar 05 2020 Kalev Lember <klember@redhat.com> - 1:3.36.0-1
|
|
|
|
- Update to 3.36.0
|
|
|
|
|
2020-02-04 03:13:45 +00:00
|
|
|
* Tue Feb 04 2020 Kalev Lember <klember@redhat.com> - 1:3.35.90-1
|
|
|
|
- Update to 3.35.90
|
|
|
|
|
2020-01-28 15:43:07 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.34.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-09-09 14:10:36 +00:00
|
|
|
* Mon Sep 09 2019 Kalev Lember <klember@redhat.com> - 1:3.34.0-1
|
|
|
|
- Update to 3.34.0
|
|
|
|
|
2019-07-24 21:52:41 +00:00
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.32.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-03-11 09:09:07 +00:00
|
|
|
* Mon Mar 11 2019 Kalev Lember <klember@redhat.com> - 1:3.32.0-1
|
|
|
|
- Update to 3.32.0
|
|
|
|
|
2019-01-31 17:07:15 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.30.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-10-31 08:16:50 +00:00
|
|
|
* Wed Oct 31 2018 Kalev Lember <klember@redhat.com> - 1:3.30.1-2
|
|
|
|
- Fix typo that prevented macro expansion
|
|
|
|
|
2018-10-26 06:19:54 +00:00
|
|
|
* Fri Oct 26 2018 Kalev Lember <klember@redhat.com> - 1:3.30.1-1
|
|
|
|
- Update to 3.30.1
|
|
|
|
|
2018-09-07 21:20:25 +00:00
|
|
|
* Fri Sep 07 2018 Kalev Lember <klember@redhat.com> - 1:3.30.0-2
|
|
|
|
- Rebuilt against fixed atk (#1626575)
|
|
|
|
|
2018-09-07 09:28:35 +00:00
|
|
|
* Fri Sep 07 2018 Kalev Lember <klember@redhat.com> - 1:3.30.0-1
|
|
|
|
- Update to 3.30.0
|
|
|
|
- Switch to the meson build system
|
2018-09-07 11:47:40 +00:00
|
|
|
- Use upstream screenshots in appdata
|
2018-09-07 11:48:09 +00:00
|
|
|
- Drop ldconfig scriptlets
|
2018-09-07 09:28:35 +00:00
|
|
|
|
2018-07-12 22:48:15 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.28.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-04-08 20:50:51 +00:00
|
|
|
* Sun Apr 08 2018 Kalev Lember <klember@redhat.com> - 1:3.28.1-1
|
|
|
|
- Update to 3.28.1
|
|
|
|
|
2018-03-11 14:37:01 +00:00
|
|
|
* Sun Mar 11 2018 Kalev Lember <klember@redhat.com> - 1:3.28.0-1
|
|
|
|
- Update to 3.28.0
|
|
|
|
|
2018-03-06 00:16:42 +00:00
|
|
|
* Tue Mar 06 2018 Kalev Lember <klember@redhat.com> - 1:3.27.90-1
|
|
|
|
- Update to 3.27.90
|
|
|
|
|
2018-02-07 06:42:38 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.26.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-02-03 12:16:10 +00:00
|
|
|
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:3.26.1-3
|
|
|
|
- Switch to %%ldconfig_scriptlets
|
|
|
|
|
2018-01-05 22:50:57 +00:00
|
|
|
* Fri Jan 05 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:3.26.1-2
|
|
|
|
- Remove obsolete scriptlets
|
|
|
|
|
2017-12-11 10:38:11 +00:00
|
|
|
* Mon Dec 11 2017 Kalev Lember <klember@redhat.com> - 1:3.26.1-1
|
|
|
|
- Update to 3.26.1
|
|
|
|
|
2017-09-10 20:12:50 +00:00
|
|
|
* Sun Sep 10 2017 Kalev Lember <klember@redhat.com> - 1:3.26.0-1
|
|
|
|
- Update to 3.26.0
|
|
|
|
|
2017-08-25 05:26:35 +00:00
|
|
|
* Fri Aug 25 2017 Kalev Lember <klember@redhat.com> - 1:3.25.91-1
|
|
|
|
- Update to 3.25.91
|
|
|
|
|
2017-08-06 14:51:34 +00:00
|
|
|
* Sun Aug 06 2017 Kalev Lember <klember@redhat.com> - 1:3.25.2-1
|
|
|
|
- Update to 3.25.2
|
2017-08-06 14:53:14 +00:00
|
|
|
- Tighten soname globs
|
2017-08-06 14:51:34 +00:00
|
|
|
|
2017-08-02 19:33:05 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.25.2-0.3.git56f8389
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 06:07:02 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.25.2-0.2.git56f8389
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-19 08:26:18 +00:00
|
|
|
* Wed Jul 19 2017 Kalev Lember <klember@redhat.com> - 1:3.25.2-0.1.git56f8389
|
|
|
|
- Update to 3.25.2 git snapshot
|
|
|
|
|
2017-06-12 11:23:04 +00:00
|
|
|
* Mon Jun 12 2017 Kalev Lember <klember@redhat.com> - 1:3.25.1-1
|
|
|
|
- Update to 3.25.1
|
|
|
|
|
2017-03-21 08:36:23 +00:00
|
|
|
* Tue Mar 21 2017 Kalev Lember <klember@redhat.com> - 1:3.24.0-1
|
|
|
|
- Update to 3.24.0
|
|
|
|
|
2017-03-16 15:41:30 +00:00
|
|
|
* Thu Mar 16 2017 Kalev Lember <klember@redhat.com> - 1:3.23.92-1
|
|
|
|
- Update to 3.23.92
|
|
|
|
|
2017-02-27 21:26:31 +00:00
|
|
|
* Mon Feb 27 2017 Richard Hughes <rhughes@redhat.com> - 1:3.23.91-1
|
|
|
|
- Update to 3.23.91
|
|
|
|
|
2017-02-10 08:19:38 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.22.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-09-19 13:13:00 +00:00
|
|
|
* Mon Sep 19 2016 Kalev Lember <klember@redhat.com> - 1:3.22.0-1
|
|
|
|
- Update to 3.22.0
|
|
|
|
|
2016-09-15 18:44:50 +00:00
|
|
|
* Thu Sep 15 2016 Kalev Lember <klember@redhat.com> - 1:3.21.92-1
|
|
|
|
- Update to 3.21.92
|
|
|
|
|
2016-08-31 07:45:31 +00:00
|
|
|
* Wed Aug 31 2016 David King <amigadave@amigadave.com> - 3.21.91-1
|
|
|
|
- Update to 3.21.91
|
|
|
|
|
2016-08-17 12:02:58 +00:00
|
|
|
* Wed Aug 17 2016 Kalev Lember <klember@redhat.com> - 1:3.21.90-1
|
|
|
|
- Update to 3.21.90
|
|
|
|
|
2016-08-17 12:01:26 +00:00
|
|
|
* Wed Aug 17 2016 Kalev Lember <klember@redhat.com> - 1:3.20.0-3
|
|
|
|
- Run ldconfig for the new -libs subpackage
|
|
|
|
|
2016-04-02 10:29:08 +00:00
|
|
|
* Sat Apr 02 2016 Mathieu Bridon <bochecha@daitauha.fr> - 1:3.20.0-2
|
|
|
|
- Split the libs into their own subpackages, so that installing a dependent
|
|
|
|
application (e.g Builder) does not bring in the Devhelp app.
|
|
|
|
|
2016-03-20 16:23:40 +00:00
|
|
|
* Sun Mar 20 2016 Kalev Lember <klember@redhat.com> - 1:3.20.0-1
|
|
|
|
- Update to 3.20.0
|
|
|
|
|
2016-03-15 10:19:40 +00:00
|
|
|
* Tue Mar 15 2016 Richard Hughes <rhughes@redhat.com> - 1:3.19.92-1
|
|
|
|
- Update to 3.19.92
|
|
|
|
|
2016-02-15 11:39:06 +00:00
|
|
|
* Mon Feb 15 2016 David King <amigadave@amigadave.com> - 3.19.90-1
|
|
|
|
- Update to 3.19.90
|
|
|
|
|
2016-02-03 18:39:01 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.19.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-12-14 21:17:02 +00:00
|
|
|
* Mon Dec 14 2015 Kalev Lember <klember@redhat.com> - 1:3.19.3-1
|
|
|
|
- Update to 3.19.3
|
|
|
|
|
2015-10-13 15:08:55 +00:00
|
|
|
* Tue Oct 13 2015 Kalev Lember <klember@redhat.com> - 1:3.18.1-1
|
|
|
|
- Update to 3.18.1
|
|
|
|
|
2015-09-21 07:27:47 +00:00
|
|
|
* Mon Sep 21 2015 Kalev Lember <klember@redhat.com> - 1:3.18.0-1
|
|
|
|
- Update to 3.18.0
|
|
|
|
|
2015-09-01 08:54:43 +00:00
|
|
|
* Tue Sep 01 2015 Kalev Lember <klember@redhat.com> - 1:3.17.91-1
|
|
|
|
- Update to 3.17.91
|
2015-09-01 08:55:09 +00:00
|
|
|
- Use make_install macro
|
2015-09-01 08:54:43 +00:00
|
|
|
|
2015-06-24 14:08:58 +00:00
|
|
|
* Wed Jun 24 2015 David King <amigadave@amigadave.com> - 1:3.17.3-1
|
|
|
|
- Update to 3.17.3
|
2015-06-24 14:21:23 +00:00
|
|
|
- Add AppData validation in check
|
2015-06-24 14:22:08 +00:00
|
|
|
- Preserve timestamps during install
|
2015-06-24 14:08:58 +00:00
|
|
|
|
2015-06-17 03:57:51 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.16.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-04-14 11:28:01 +00:00
|
|
|
* Tue Apr 14 2015 Kalev Lember <kalevlember@gmail.com> - 1:3.16.1-1
|
|
|
|
- Update to 3.16.1
|
|
|
|
|
2015-03-30 16:41:20 +00:00
|
|
|
* Mon Mar 30 2015 Richard Hughes <rhughes@redhat.com> - 1:3.16.0-2
|
|
|
|
- Use better AppData screenshots
|
|
|
|
|
2015-03-23 11:49:14 +00:00
|
|
|
* Mon Mar 23 2015 Kalev Lember <kalevlember@gmail.com> - 1:3.16.0-1
|
|
|
|
- Update to 3.16.0
|
|
|
|
|
2015-03-17 20:38:42 +00:00
|
|
|
* Tue Mar 17 2015 Kalev Lember <kalevlember@gmail.com> - 1:3.15.92-1
|
|
|
|
- Update to 3.15.92
|
|
|
|
|
2015-03-04 10:02:39 +00:00
|
|
|
* Wed Mar 04 2015 Kalev Lember <kalevlember@gmail.com> - 1:3.15.91-1
|
|
|
|
- Update to 3.15.91
|
|
|
|
|
2015-02-16 09:00:04 +00:00
|
|
|
* Mon Feb 16 2015 David King <amigadave@amigadave.com> - 1:3.15.90-1
|
|
|
|
- Update to 3.15.90
|
2015-02-16 09:01:25 +00:00
|
|
|
- Update URL
|
2015-02-16 09:02:12 +00:00
|
|
|
- Use license macro for COPYING
|
2015-02-16 09:04:34 +00:00
|
|
|
- Use pkgconfig for BuildRequires
|
2015-02-16 09:00:04 +00:00
|
|
|
|
2014-09-22 21:42:34 +00:00
|
|
|
* Mon Sep 22 2014 Kalev Lember <kalevlember@gmail.com> - 1:3.14.0-1
|
|
|
|
- Update to 3.14.0
|
|
|
|
|
2014-09-16 20:10:05 +00:00
|
|
|
* Tue Sep 16 2014 Kalev Lember <kalevlember@gmail.com> - 1:3.13.92-1
|
|
|
|
- Update to 3.13.92
|
|
|
|
|
2014-08-24 18:20:16 +00:00
|
|
|
* Sun Aug 24 2014 Kalev Lember <kalevlember@gmail.com> - 1:3.13.90-1
|
|
|
|
- Update to 3.13.90
|
|
|
|
|
2014-08-22 21:03:38 +00:00
|
|
|
* Fri Aug 22 2014 Kalev Lember <kalevlember@gmail.com> - 1:3.13.4-4
|
|
|
|
- Update pkgconfig deps for webkitgtk4
|
|
|
|
|
2014-08-22 18:18:25 +00:00
|
|
|
* Fri Aug 22 2014 Kalev Lember <kalevlember@gmail.com> - 1:3.13.4-3
|
|
|
|
- Switch to webkitgtk4
|
2014-08-22 18:24:27 +00:00
|
|
|
- Remove lib64 rpaths
|
2014-08-22 18:18:25 +00:00
|
|
|
|
2014-08-16 02:36:13 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.13.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-22 14:54:23 +00:00
|
|
|
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 1:3.13.4-1
|
|
|
|
- Update to 3.13.4
|
|
|
|
|
2014-06-07 07:12:14 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.12.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-15 22:31:22 +00:00
|
|
|
* Wed Apr 16 2014 Kalev Lember <kalevlember@gmail.com> - 1:3.12.1-1
|
|
|
|
- Update to 3.12.1
|
|
|
|
|
2014-03-24 21:34:33 +00:00
|
|
|
* Mon Mar 24 2014 Richard Hughes <rhughes@redhat.com> - 1:3.12.0-1
|
|
|
|
- Update to 3.12.0
|
|
|
|
|
2014-03-18 18:45:34 +00:00
|
|
|
* Tue Mar 18 2014 Richard Hughes <rhughes@redhat.com> - 1:3.11.92-1
|
|
|
|
- Update to 3.11.92
|
|
|
|
|
2014-03-04 23:10:43 +00:00
|
|
|
* Tue Mar 04 2014 Richard Hughes <rhughes@redhat.com> - 1:3.11.91-1
|
|
|
|
- Update to 3.11.91
|
|
|
|
|
2014-01-15 15:27:20 +00:00
|
|
|
* Wed Jan 15 2014 Richard Hughes <rhughes@redhat.com> - 1:3.11.4-1
|
|
|
|
- Update to 3.11.4
|
|
|
|
|
2013-11-14 17:02:16 +00:00
|
|
|
* Thu Nov 14 2013 Richard Hughes <rhughes@redhat.com> - 1:3.10.2-1
|
|
|
|
- Update to 3.10.2
|
|
|
|
|
2013-10-13 21:57:28 +00:00
|
|
|
* Sun Oct 13 2013 Matthew Barnes <mbarnes@redhat.com> - 1:3.10.0-2
|
|
|
|
- Package vim and emacs support files. (#980448)
|
|
|
|
|
2013-09-24 22:42:20 +00:00
|
|
|
* Wed Sep 25 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.10.0-1
|
|
|
|
- Update to 3.10.0
|
|
|
|
|
2013-09-03 22:17:01 +00:00
|
|
|
* Tue Sep 03 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.9.91-1
|
|
|
|
- Update to 3.9.91
|
|
|
|
|
2013-08-21 23:18:21 +00:00
|
|
|
* Thu Aug 22 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.9.90-1
|
|
|
|
- Update to 3.9.90
|
|
|
|
|
2013-08-09 21:41:43 +00:00
|
|
|
* Fri Aug 09 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.9.5-1
|
|
|
|
- Update to 3.9.5
|
|
|
|
|
2013-08-03 07:03:37 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.9.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-17 02:53:58 +00:00
|
|
|
* Tue Jul 16 2013 Matthias Clasen <mclasen@redhat.com> - 1:3.9.4-2
|
|
|
|
- Update url
|
|
|
|
|
2013-07-16 12:34:30 +00:00
|
|
|
* Tue Jul 16 2013 Richard Hughes <rhughes@redhat.com> - 1:3.9.4-1
|
|
|
|
- Update to 3.9.4
|
|
|
|
|
2013-05-21 22:06:57 +00:00
|
|
|
* Wed May 22 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.8.2-1
|
|
|
|
- Update to 3.8.2
|
|
|
|
|
2013-04-17 15:05:08 +00:00
|
|
|
* Wed Apr 17 2013 Richard Hughes <rhughes@redhat.com> - 1:3.8.1-1
|
|
|
|
- Update to 3.8.1
|
|
|
|
|
2013-03-27 18:32:44 +00:00
|
|
|
* Wed Mar 27 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.8.0-2
|
|
|
|
- Rebuilt for libwebkit2gtk soname bump
|
|
|
|
|
2013-03-26 03:29:11 +00:00
|
|
|
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.8.0-1
|
|
|
|
- Update to 3.8.0
|
|
|
|
|
2013-03-07 21:16:09 +00:00
|
|
|
* Thu Mar 7 2013 Matthias Clasen <mclasen@redhat.com> - 1:3.7.91-1
|
|
|
|
- Update to 3.7.91
|
|
|
|
|
2013-02-22 19:07:37 +00:00
|
|
|
* Fri Feb 22 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.7.5-2
|
|
|
|
- Rebuilt for libwebkit2gtk soname bump
|
|
|
|
|
2013-02-05 23:47:49 +00:00
|
|
|
* Wed Feb 06 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.7.5-1
|
|
|
|
- Update to 3.7.5
|
2013-02-05 23:50:44 +00:00
|
|
|
- Remove the desktop file vendor prefix
|
2013-02-05 23:47:49 +00:00
|
|
|
|
2012-12-20 23:14:22 +00:00
|
|
|
* Fri Dec 21 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.7.3-1
|
|
|
|
- Update to 3.7.3
|
|
|
|
- Adapt for the GConf to gsettings conversion
|
|
|
|
|
2012-11-14 16:29:38 +00:00
|
|
|
* Wed Nov 14 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.6.1-1
|
|
|
|
- Update to 3.6.1
|
|
|
|
- Drop manual requires from -devel package; these are all picked up
|
|
|
|
automatically with recent rpmbuild
|
|
|
|
|
2012-09-25 17:25:40 +00:00
|
|
|
* Tue Sep 25 2012 Richard Hughes <hughsient@gmail.com> - 1:3.6.0-1
|
|
|
|
- Update to 3.6.0
|
|
|
|
|
2012-09-18 13:17:12 +00:00
|
|
|
* Tue Sep 18 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.5.92-1
|
|
|
|
- Update to 3.5.92
|
|
|
|
|
2012-08-21 15:37:36 +00:00
|
|
|
* Tue Aug 21 2012 Richard Hughes <hughsient@gmail.com> - 1:3.5.5-1
|
|
|
|
- Update to 3.5.5
|
|
|
|
|
2012-07-23 13:04:52 +00:00
|
|
|
* Mon Jul 23 2012 Matthias Clasen <mclasen@redhat.com> - 1:3.4.1-3
|
|
|
|
- Fix build (don't install icon cache)
|
|
|
|
|
2012-07-18 20:35:37 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.4.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-04-16 14:37:50 +00:00
|
|
|
* Mon Apr 16 2012 Richard Hughes <hughsient@gmail.com> - 1:3.4.1-1
|
|
|
|
- Update to 3.4.1
|
|
|
|
|
2012-03-27 11:46:13 +00:00
|
|
|
* Tue Mar 27 2012 Debarshi Ray <rishi@fedoraproject.org> - 1:3.4.0-1
|
|
|
|
- Update to 3.4.0
|
|
|
|
|
2012-03-07 03:23:36 +00:00
|
|
|
* Tue Mar 6 2012 Matthias Clasen <mclasen@redhat.com> - 1:3.3.91-1
|
|
|
|
- Update to 3.3.91
|
|
|
|
|
2012-01-13 00:31:03 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.3.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-12-21 11:48:11 +00:00
|
|
|
* Wed Dec 21 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.3.3-1
|
|
|
|
- Update to 3.3.3
|
|
|
|
|
2011-10-11 17:19:53 +00:00
|
|
|
* Tue Oct 11 2011 Matthew Barnes <mbarnes@redhat.com> - 1:3.2.0-2
|
|
|
|
- Own /usr/lib/gedit and /usr/lib/gedit/plugins (RH bug #744884).
|
|
|
|
|
2011-09-28 01:33:19 +00:00
|
|
|
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 1:3.2.0-1
|
|
|
|
- Update to 3.2.0
|
|
|
|
|
2011-05-08 01:08:05 +00:00
|
|
|
* Sat May 07 2011 Christopher Aillon <caillon@redhat.com> - 1:3.0.0-2
|
|
|
|
- Update icon cache scriptlet
|
|
|
|
|
2011-04-04 16:53:21 +00:00
|
|
|
* Mon Apr 4 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.0.0-1
|
|
|
|
- Update to 3.0.0
|
|
|
|
|
2011-03-23 23:41:45 +00:00
|
|
|
* Wed Mar 23 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.92-1
|
|
|
|
- Update to 2.91.92
|
|
|
|
|
2011-03-08 13:30:39 +00:00
|
|
|
* Tue Mar 8 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.91.2-1
|
|
|
|
- Update to 2.91.91.2
|
|
|
|
|
2011-03-08 10:53:04 +00:00
|
|
|
* Tue Mar 8 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.91.1-1
|
|
|
|
- Update to 2.91.91.1
|
|
|
|
|
2011-03-08 05:32:05 +00:00
|
|
|
* Tue Mar 8 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.91-1
|
|
|
|
- Update to 2.91.91
|
|
|
|
|
2011-02-22 16:18:38 +00:00
|
|
|
* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.90-1
|
|
|
|
- 2.91.90
|
|
|
|
|
2011-02-11 03:41:54 +00:00
|
|
|
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.5-4
|
|
|
|
- Rebuild for newer gtk
|
|
|
|
|
2011-02-08 13:35:54 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.91.5-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-03 02:46:16 +00:00
|
|
|
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.5-2
|
|
|
|
- Rebuild
|
|
|
|
|
2011-01-10 16:07:39 +00:00
|
|
|
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.5-1
|
|
|
|
- Update to 2.91.5
|
|
|
|
|
2011-01-10 01:31:50 +00:00
|
|
|
* Sun Jan 9 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.4-1
|
|
|
|
- Update to 2.91.4
|
|
|
|
|
2010-12-03 18:38:57 +00:00
|
|
|
* Fri Dec 3 2010 Matthias Clasen <mclasen@redhat.com> - 2.91.3-1
|
|
|
|
- Update to 2.91.3
|
|
|
|
|
2010-11-15 12:39:49 +00:00
|
|
|
* Mon Nov 15 2010 Kalev Lember <kalev@smartlink.ee> - 2.90.5-6
|
|
|
|
- Carry epoch over from F14 branch to preserve upgrade path
|
2010-11-15 12:50:06 +00:00
|
|
|
- Backported upstream patches to fix build with latest gtk3
|
2010-11-15 12:39:49 +00:00
|
|
|
|
2010-09-09 14:37:04 +00:00
|
|
|
* Thu Sep 09 2010 Bastien Nocera <bnocera@redhat.com> 2.90.5-5
|
|
|
|
- Fix broken schemas file, and "disabled_books" usage (#624198)
|
|
|
|
|
2010-08-23 17:07:47 +00:00
|
|
|
* Mon Aug 23 2010 Matthias Clasen <mclasen@redhat.com> - 2.90.5-4
|
2010-08-23 16:00:42 +00:00
|
|
|
- Incorporate a few upstream fixes
|
|
|
|
|
2010-08-11 21:20:45 +00:00
|
|
|
* Wed Aug 11 2010 David Malcolm <dmalcolm@redhat.com> - 2.90.5-3
|
|
|
|
- recompiling .py files against Python 2.7 (rhbz#623286)
|
|
|
|
|
2010-07-14 20:35:03 +00:00
|
|
|
* Wed Jul 14 2010 Matthias Clasen <mclasen@redhat.com> - 2.90.5-2
|
|
|
|
- Fix platform check to work with GTK3
|
|
|
|
|
2010-07-14 20:06:07 +00:00
|
|
|
* Wed Jul 14 2010 Matthias Clasen <mclasen@redhat.com> - 2.90.5-1
|
|
|
|
- Update to 2.90.5
|
|
|
|
|
2010-07-03 06:05:30 +00:00
|
|
|
* Sat Jul 3 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.0-2
|
|
|
|
- Rebuild against new webkit
|
|
|
|
|
2010-03-29 14:58:09 +00:00
|
|
|
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.0-1
|
|
|
|
- Update to 2.30.0
|
|
|
|
|
2010-02-09 00:19:04 +00:00
|
|
|
* Mon Feb 08 2010 Matthew Barnes <mbarnes@redhat.com> - 2.29.90-1
|
|
|
|
- Update to 2.29.90
|
2010-02-09 02:32:18 +00:00
|
|
|
- Remove patch for RH bug #543177 (fixed upstream).
|
2010-02-09 00:19:04 +00:00
|
|
|
|
2009-12-02 16:56:06 +00:00
|
|
|
* Wed Dec 02 2009 Matthew Barnes <mbarnes@redhat.com> - 2.29.3-2
|
|
|
|
- Add patch for RH bug #543177 (missing webkit-1.0 requirement).
|
|
|
|
|
2009-12-01 14:45:05 +00:00
|
|
|
* Tue Dec 01 2009 Bastien Nocera <bnocera@redhat.com> 2.29.3-1
|
|
|
|
- Update to 2.29.3
|
|
|
|
|
2009-09-22 03:09:58 +00:00
|
|
|
* Mon Sep 21 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-1
|
|
|
|
- Update to 2.28.0
|
|
|
|
|
2009-09-07 22:27:50 +00:00
|
|
|
* Mon Sep 7 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.92-1
|
|
|
|
- Update to 2.27.92
|
|
|
|
|
2009-08-21 18:37:01 +00:00
|
|
|
* Fri Aug 21 2009 Matthew Barnes <mbarnes@redhat.com> - 0.23.1-2
|
|
|
|
- Remove patch for GNOME bug #572022 to help fix RH bug #518481.
|
|
|
|
|
2009-08-13 01:23:36 +00:00
|
|
|
* Wed Aug 12 2009 Matthew Barnes <mbarnes@redhat.com> - 0.23.1-1
|
|
|
|
- Update to 0.23.1
|
|
|
|
- Remove patch for GNOME bug #588655 (fixed upstream).
|
|
|
|
|
2009-07-24 20:11:20 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.23-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-15 13:51:03 +00:00
|
|
|
* Wed Jul 15 2009 Matthew Barnes <mbarnes@redhat.com> - 0.23-8
|
|
|
|
- Add patch for GNOME bug #588655 (work around GLib deprecations).
|
|
|
|
|
2009-07-02 06:24:09 +00:00
|
|
|
* Thu Jul 2 2009 Matthias Clasen <mclasen@redhat.com> - 0.23-7
|
|
|
|
- Shrink GConf schemas
|
|
|
|
|
2009-03-08 13:11:08 +00:00
|
|
|
* Sun Mar 08 2009 Rakesh Pandit <rakesh@fedoraproject.org> - 0.23-6
|
|
|
|
Bumped to consume new soname in webkit library.
|
|
|
|
|
2009-02-24 11:33:30 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.23-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-16 17:59:57 +00:00
|
|
|
* Mon Feb 16 2009 Matthew Barnes <mbarnes@redhat.com> - 0.23-4
|
|
|
|
- Disable strict-aliasing checks due to what looks like GLib breakage.
|
|
|
|
|
2009-02-16 15:51:20 +00:00
|
|
|
* Mon Feb 16 2009 - Bastien Nocera <bnocera@redhat.com> - 0.23-3
|
|
|
|
- Fix displaying web pages, WebKit doesn't like local filenames as URIs
|
2009-02-16 16:00:47 +00:00
|
|
|
- Add missing Gconf2-devel BR
|
2009-02-16 15:51:20 +00:00
|
|
|
|
2009-01-24 00:11:32 +00:00
|
|
|
* Fri Jan 23 2009 Matthias Clasen <mclasen@redhat.com> - 0.23-2
|
|
|
|
- Cosmetic spec fixes
|
|
|
|
|
2009-01-20 01:43:11 +00:00
|
|
|
* Mon Jan 19 2009 Matthew Barnes <mbarnes@redhat.com> - 0.23-1
|
|
|
|
- Update to 0.23
|
|
|
|
|
|
|
|
* Fri Dec 05 2008 Matthew Barnes <mbarnes@redhat.com> - 0.22-2
|
2008-12-05 15:06:58 +00:00
|
|
|
- Drop the gecko requirement, since it uses WebKit now.
|
|
|
|
|
2008-12-01 20:27:10 +00:00
|
|
|
* Mon Dec 01 2008 Matthew Barnes <mbarnes@redhat.com> - 0.22-1
|
|
|
|
- Update to 0.22
|
2008-12-01 23:55:46 +00:00
|
|
|
- Add BR: WebKit-gtk-devel
|
2008-12-01 20:27:10 +00:00
|
|
|
|
2008-12-01 15:00:19 +00:00
|
|
|
* Mon Dec 01 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.21-4
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-11-21 22:40:03 +00:00
|
|
|
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> - 0.21-3
|
|
|
|
- Tweak description
|
|
|
|
|
2008-09-24 16:40:34 +00:00
|
|
|
* Wed Sep 24 2008 Matthias Clasen <mclasen@redhat.com> - 0.21-2
|
|
|
|
- Rebuild against newer gecko
|
|
|
|
|
2008-09-22 16:08:46 +00:00
|
|
|
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 0.21-1
|
|
|
|
- Update to 0.21
|
|
|
|
|
2008-09-08 16:15:03 +00:00
|
|
|
* Mon Sep 8 2008 Matthias Clasen <mclasen@redhat.com> - 0.20-1
|
|
|
|
- Update to 0.20
|
|
|
|
|
2008-07-23 20:58:10 +00:00
|
|
|
* Wed Jul 23 2008 Christopher Aillon <caillon@redhat.com> - 0.19.1-3
|
|
|
|
- Rebuild against newer gecko
|
|
|
|
|
2008-07-07 20:58:39 +00:00
|
|
|
* Mon Jul 07 2008 Matthew Barnes <mbarnes@redhat.com> - 0.19.1-2
|
|
|
|
- Rebuild, just to keep up with F9 package.
|
|
|
|
|
2008-05-26 16:28:09 +00:00
|
|
|
* Mon May 26 2008 Matthew Barnes <mbarnes@redhat.com> - 0.19.1-1
|
|
|
|
- Update to 0.19.1
|
|
|
|
|
2008-05-04 23:43:56 +00:00
|
|
|
* Sun May 4 2008 Matthias Clasen <mclasen@redhat.com> - 0.19-5
|
|
|
|
- Fix source url
|
|
|
|
|
2008-02-26 11:26:58 +00:00
|
|
|
* Tue Feb 26 2008 Martin Stransky <stransky@redhat.com> - 0.19-4
|
|
|
|
- Rebuild against xulrunner
|
|
|
|
|
2008-02-19 13:14:21 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.19-3
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-02-17 16:13:50 +00:00
|
|
|
* Sun Feb 17 2008 Matthew Barnes <mbarnes@redhat.com> - 0.19-2.fc9
|
|
|
|
- Rebuild with GCC 4.3
|
|
|
|
|
|
|
|
* Thu Feb 07 2008 Matthew Barnes <mbarnes@redhat.com> - 0.19-1.fc9
|
2008-02-07 13:39:21 +00:00
|
|
|
- Update to 0.19
|
|
|
|
|
2008-01-31 03:32:40 +00:00
|
|
|
* Wed Jan 30 2008 Matthias Clasen <mclasen@redhat.com> - 0.18-1
|
|
|
|
- Update to 0.18
|
|
|
|
|
2008-01-17 02:12:33 +00:00
|
|
|
* Wed Jan 16 2008 Matthew Barnes <mbarnes@redhat.com> - 0.17-2.fc9
|
|
|
|
- Update version requirements based on configure.in.
|
|
|
|
|
|
|
|
* Mon Jan 07 2008 Matthew Barnes <mbarnes@redhat.com> - 0.17-1.fc9
|
2008-01-07 18:09:17 +00:00
|
|
|
- Update to 0.17
|
|
|
|
- Remove patch for GNOME bug #499050 (fixed upstream).
|
|
|
|
|
2007-12-31 05:48:34 +00:00
|
|
|
* Mon Dec 31 2007 Jeremy Katz <katzj@redhat.com> - 0.16.1-5
|
|
|
|
- Rebuild against newer xulrunner
|
|
|
|
|
2007-11-22 11:50:34 +00:00
|
|
|
* Thu Nov 22 2007 Martin Stransky <stransky@redhat.com> - 0.16.1-4.fc9
|
|
|
|
- Rebuild against xulrunner
|
|
|
|
|
2007-11-09 13:03:36 +00:00
|
|
|
* Fri Nov 09 2007 Matthew Barnes <mbarnes@redhat.com> - 0.16.1-3.fc9
|
|
|
|
- Rebuild against gecko-libs 1.8.1.9.
|
|
|
|
|
2007-11-01 16:39:18 +00:00
|
|
|
* Thu Nov 01 2007 Matthew Barnes <mbarnes@redhat.com> - 0.16.1-2.fc9
|
|
|
|
- Rebuild against gecko-libs 1.8.1.8.
|
|
|
|
|
2007-10-06 22:51:20 +00:00
|
|
|
* Sat Oct 06 2007 Matthew Barnes <mbarnes@redhat.com> - 0.16.1-1.fc8
|
|
|
|
- Update to 0.16.1
|
|
|
|
|
2007-09-11 15:49:00 +00:00
|
|
|
* Tue Sep 11 2007 Matthew Barnes <mbarnes@redhat.com> - 0.16-1.fc8
|
|
|
|
- Update to 0.16
|
|
|
|
|
2007-08-08 19:54:22 +00:00
|
|
|
* Wed Aug 8 2007 Christopher Aillon <caillon@redhat.com> - 0.15-4
|
|
|
|
- Rebuild against newer gecko
|
|
|
|
|
2007-08-06 05:14:04 +00:00
|
|
|
* Mon Aug 6 2007 Matthias Clasen <mclasen@redhat.com> - 0.15-3
|
|
|
|
- Update license field
|
|
|
|
|
2007-07-20 03:20:46 +00:00
|
|
|
* Fri Jul 20 2007 Kai Engert <kengert@redhat.com> - 0.15-2.fc8
|
|
|
|
- Rebuild against newer gecko
|
|
|
|
|
2007-06-18 19:38:43 +00:00
|
|
|
* Mon Jun 18 2007 Matthew Barnes <mbarnes@redhat.com> - 0.15-1.fc8
|
|
|
|
- Update to 0.15
|
|
|
|
|
2007-06-06 03:13:57 +00:00
|
|
|
* Tue Jun 05 2007 - Bastien Nocera <bnocera@redhat.com> - 0.14-4
|
|
|
|
- Rebuild again
|
|
|
|
|
2007-06-04 20:20:17 +00:00
|
|
|
* Mon Jun 04 2007 - Bastien Nocera <bnocera@redhat.com> - 0.14-3
|
|
|
|
- Rebuild against new libwnck
|
|
|
|
|
2007-05-25 23:57:55 +00:00
|
|
|
* Fri May 25 2007 Christopher Aillon <caillon@redhat.com> - 0.14-2
|
|
|
|
- Rebuild against newer gecko
|
|
|
|
|
2007-05-18 19:25:17 +00:00
|
|
|
* Fri May 18 2007 Matthew Barnes <mbarnes@redhat.com> - 0.14-1.fc8
|
|
|
|
- Update to 0.14
|
|
|
|
- Remove patch for RH bug #230837 (fixed upstream).
|
|
|
|
|
2007-04-23 19:11:21 +00:00
|
|
|
* Mon Apr 23 2007 Matthew Barnes <mbarnes@redhat.com> - 0.13-7.fc7
|
|
|
|
- Add patch for RH bug #230837 (initialize GThread).
|
|
|
|
|
2007-04-22 00:43:45 +00:00
|
|
|
* Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> - 0.13-6
|
|
|
|
- Don't install INSTALL
|
|
|
|
|
2007-03-23 15:25:57 +00:00
|
|
|
* Fri Mar 23 2007 Christopher Aillon <caillon@redhat.com> - 0.13-5
|
|
|
|
- Rebuild against newer gecko
|
|
|
|
|
2007-02-28 12:40:34 +00:00
|
|
|
* Wed Feb 28 2007 Matthew Barnes <mbarnes@redhat.com> - 0.13-4
|
|
|
|
- Rebuild against newer gecko.
|
|
|
|
|
2007-02-05 14:44:50 +00:00
|
|
|
* Mon Feb 5 2007 Matthias Clasen <mclasen@redhat.com> - 0.13-3
|
|
|
|
- Fix scriptlet errors
|
|
|
|
|
2007-02-04 16:16:06 +00:00
|
|
|
* Sun Feb 04 2007 Matthew Barnes <mbarnes@redhat.com> - 0.13-2.fc7
|
|
|
|
- Incorporate suggestions from package review.
|
|
|
|
|
2007-02-03 15:58:35 +00:00
|
|
|
* Sat Feb 03 2007 Matthew Barnes <mbarnes@redhat.com> - 0.13-1.fc7
|
|
|
|
- Update to 0.13
|
|
|
|
- Clean up the spec file.
|
|
|
|
- Remove devhelp-0.12-transparent.patch (fixed upstream).
|
|
|
|
|
2006-12-23 03:14:47 +00:00
|
|
|
* Thu Dec 21 2006 Christopher Aillon <caillon@redhat.com> 0.12-10
|
|
|
|
- Rebuild against newer gecko
|
|
|
|
|
2006-11-26 04:38:33 +00:00
|
|
|
* Sat Nov 25 2006 Matthias Clasen <mclasen@redhat.com> - 0.12-9
|
|
|
|
- Own the /usr/share/devhelp/books directory
|
|
|
|
|
|
|
|
* Fri Oct 27 2006 Christopher Aillon <caillon@redhat.com> - 0.12-8
|
2006-10-27 19:36:19 +00:00
|
|
|
- Rebuild against newer gecko
|
|
|
|
|
2006-11-26 04:38:33 +00:00
|
|
|
* Wed Oct 18 2006 Matthias Clasen <mclasen@redhat.com> - 0.12-7
|
2006-10-18 15:54:53 +00:00
|
|
|
- Fix scripts according to the packaging guidelines
|
|
|
|
- Require pkgconfig in the -devel package
|
|
|
|
|
2006-10-12 17:33:45 +00:00
|
|
|
* Thu Oct 12 2006 Christopher Aillon <caillon@redhat.com> - 0.12-6.fc6
|
|
|
|
- Update requires to the virtual gecko version instead of a specific app
|
|
|
|
|
2006-09-14 19:30:13 +00:00
|
|
|
* Thu Sep 14 2006 Christopher Aillon <caillon@redhat.com> - 0.12-5.fc6
|
|
|
|
- Rebuild
|
|
|
|
|
2006-08-15 03:35:04 +00:00
|
|
|
* Mon Aug 14 2006 Matthias Clasen <mclasen@redhat.com> - 0.12-4.fc6
|
|
|
|
- Fix transparent headers
|
|
|
|
|
2006-08-14 14:55:10 +00:00
|
|
|
* Mon Aug 14 2006 Matthew Barnes <mbarnes@redhat.com> - 0.12-3
|
|
|
|
- Add missing Requires to devel package.
|
|
|
|
|
2006-08-10 15:16:51 +00:00
|
|
|
* Thu Aug 10 2006 Matthew Barnes <mbarnes@redhat.com> - 0.12-2
|
|
|
|
- Rebuild against firefox, again.
|
|
|
|
|
2006-07-29 04:14:08 +00:00
|
|
|
* Sat Jul 29 2006 Matthias Clasen <mclasen@redhat.com> - 0.12-1
|
|
|
|
- Update to 0.12
|
|
|
|
- Rebuild against firefox
|
|
|
|
|
2006-07-12 21:10:35 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.11-4
|
2006-07-12 05:35:14 +00:00
|
|
|
- rebuild
|
2006-07-12 21:10:35 +00:00
|
|
|
- bump mozver
|
2006-07-12 05:35:14 +00:00
|
|
|
|
2006-02-12 17:17:44 +00:00
|
|
|
* Sun Feb 12 2006 Christopher Aillon <caillon@redhat.com> - 0.11-2
|
|
|
|
- Rebuild
|
|
|
|
|
2006-02-07 11:22:32 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.11-1.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2005-12-18 19:42:43 +00:00
|
|
|
* Sun Dec 18 2005 Ray Strode <rstrode@redhat.com> - 0.11-1
|
|
|
|
- Update to 0.11
|
|
|
|
|
2005-12-09 22:40:10 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-10-18 19:11:13 +00:00
|
|
|
* Tue Oct 18 2005 Christopher Aillon <caillon@redhat.com> - 0.10-6
|
|
|
|
- Build on ppc64
|
|
|
|
|
2005-08-18 02:43:17 +00:00
|
|
|
* Wed Aug 17 2005 Jeremy Katz <katzj@redhat.com> - 0.10-5
|
|
|
|
- fix the build
|
|
|
|
|
2005-08-17 12:57:21 +00:00
|
|
|
* Wed Aug 17 2005 Ray Strode <rstrode@redhat.com> 0.10.0-4
|
|
|
|
- rebuild
|
|
|
|
|
2005-07-31 17:45:50 +00:00
|
|
|
* Sun Jul 31 2005 Christopher Aillon <caillon@redhat.com> 0.10.0-3
|
|
|
|
- Rebuild against new mozilla
|
|
|
|
|
2005-07-20 03:26:01 +00:00
|
|
|
* Tue Jul 19 2005 Christopher Aillon <caillon@redhat.com> 0.10.0-2
|
|
|
|
- Rebuild against new mozilla
|
|
|
|
- Add builds for ia64 s390 s390x
|
|
|
|
|
2005-05-19 15:55:42 +00:00
|
|
|
* Thu May 19 2005 Ray Strode <rstrode@redhat.com> 0.10.0-1
|
|
|
|
- Update to 0.10.0 (bug #157753)
|
|
|
|
|
2005-05-13 16:14:06 +00:00
|
|
|
* Fri May 13 2005 Christopher Aillon <caillon@redhat.com> 0.9.3-7
|
|
|
|
- Depend on mozilla 1.7.8
|
|
|
|
|
2005-04-16 22:53:05 +00:00
|
|
|
* Sat Apr 16 2005 Christopher Aillon <caillon@redhat.com> 0.9.3-6
|
|
|
|
- Depend on mozilla 1.7.7
|
|
|
|
|
2005-04-14 19:49:35 +00:00
|
|
|
* Thu Apr 14 2005 Ray Strode <rstrode@redhat.com> 0.9.3-5
|
|
|
|
- Don't crash on typeahead (bug #154398)
|
|
|
|
|
2005-03-10 05:06:49 +00:00
|
|
|
* Wed Mar 9 2005 Christopher Aillon <caillon@redhat.com> 0.9.3-4
|
|
|
|
- Depend on mozilla 1.7.6
|
|
|
|
|
2005-03-05 09:13:23 +00:00
|
|
|
* Sat Mar 5 2005 Christopher Aillon <caillon@redhat.com> 0.9.3-3
|
|
|
|
- Rebuild against GCC 4.0
|
|
|
|
|
2004-12-20 02:15:23 +00:00
|
|
|
* Sun Dec 19 2004 Christopher Aillon <caillon@redhat.com> 0.9.3-2
|
|
|
|
- Require mozilla 1.7.5
|
|
|
|
|
2004-12-20 02:03:46 +00:00
|
|
|
* Sun Dec 19 2004 Christopher Aillon <caillon@redhat.com> 0.9.3-1
|
|
|
|
- Update to 0.9.3
|
|
|
|
|
2004-10-14 06:53:07 +00:00
|
|
|
* Mon Oct 11 2004 Christopher Aillon <caillon@redhat.com> 0.9.2-2
|
|
|
|
- Rebuild to add ppc once again.
|
|
|
|
|
2004-09-29 08:59:42 +00:00
|
|
|
* Wed Sep 29 2004 Christopher Aillon <caillon@redhat.com> 0.9.2-1
|
|
|
|
- Update to 0.9.2
|
|
|
|
- Remove accel patch; its upstreamed now.
|
|
|
|
|
2004-09-26 18:03:27 +00:00
|
|
|
* Sun Sep 26 2004 Christopher Blizzard <blizzard@redhat.com> 0.9.1-6
|
|
|
|
- Rebuild without explicit mozilla release
|
|
|
|
|
2004-09-24 21:26:23 +00:00
|
|
|
* Fri Sep 24 2004 Christopher Blizzard <blizzard@redhat.com> 0.9.1-5
|
|
|
|
- Rebuild with explicit Mozilla version requires
|
|
|
|
|
2004-09-23 07:26:01 +00:00
|
|
|
* Wed Sep 22 2004 Christopher Aillon <caillon@redhat.com> 0.9.1-4
|
|
|
|
- Rebuilt to pick up new mozilla changes
|
|
|
|
- Drop ppc from the build since mozilla doesn't build there anymore.
|
|
|
|
|
2004-09-09 04:12:28 +00:00
|
|
|
* Wed Aug 25 2004 Christopher Aillon <caillon@redhat.com> 0.9.1-3
|
|
|
|
- Add Johan Svedberg's patch to add accelerators for back and forward
|
|
|
|
|
2004-09-09 04:12:22 +00:00
|
|
|
* Mon Aug 09 2004 Christopher Aillon <caillon@redhat.com>
|
|
|
|
- Rebuild
|
|
|
|
|
2004-09-09 04:12:19 +00:00
|
|
|
* Wed Aug 04 2004 Christopher Aillon <caillon@redhat.com>
|
|
|
|
- Update to 0.9.1
|
|
|
|
- Remove ld-library patch. It is upstream now.
|
|
|
|
|
2004-09-09 04:11:47 +00:00
|
|
|
* Wed Jun 23 2004 Christopher Aillon <caillon@redhat.com>
|
|
|
|
- Update ExclusiveArch
|
|
|
|
|
|
|
|
* Tue Jun 22 2004 Christopher Aillon <caillon@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 04:11:34 +00:00
|
|
|
* Wed Apr 21 2004 Colin Walters <walters@redhat.com> 0.9-3
|
|
|
|
- Update patch to avoid (unlikely) security issue noticed
|
|
|
|
by Jeremy Katz.
|
|
|
|
|
2015-03-04 10:59:25 +00:00
|
|
|
* Thu Apr 15 2004 Colin Walters <walters@redhat.com> 0.9-2
|
2004-09-09 04:11:34 +00:00
|
|
|
- Apply patch from George Karabin <gkarabin@pobox.com> to
|
|
|
|
export LD_LIBRARY_PATH (closes bug 120220).
|
|
|
|
|
|
|
|
* Fri Apr 2 2004 Mark McLoughlin <markmc@redhat.com> 0.9-1
|
|
|
|
- Update to 0.9
|
|
|
|
- Install the schemas correctly
|
|
|
|
- Package /usr/bin/devhelp-bin
|
|
|
|
- Update requires/buildrequires
|
|
|
|
- Only build on platforms where mozilla is available
|
|
|
|
|
2004-09-09 04:10:40 +00:00
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Thu Feb 26 2004 Alexander Larsson <alexl@redhat.com> 0.8.1-1
|
|
|
|
- update to 0.8.1
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Mon Dec 1 2003 Jonathan Blandford <jrb@redhat.com> 0.7.0-1
|
|
|
|
- new version
|
|
|
|
- Remove .la and .a files.
|
|
|
|
|
2004-09-09 04:10:14 +00:00
|
|
|
* Wed Jul 30 2003 Jonathan Blandford <jrb@redhat.com>
|
|
|
|
- remove original devhelp desktop file.
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Sat May 24 2003 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- add find_lang
|