2019-06-20 19:22:11 +00:00
|
|
|
%global glib2_version 2.58.0
|
2020-01-08 09:38:27 +00:00
|
|
|
%global gobject_introspection_version 1.61.2
|
2017-02-15 10:07:44 +00:00
|
|
|
%global gtk3_version 3.20
|
2021-02-23 11:00:35 +00:00
|
|
|
%global mozjs78_version 78.8.0-1
|
2014-04-05 17:05:11 +00:00
|
|
|
|
2012-07-05 18:35:58 +00:00
|
|
|
Name: gjs
|
2021-03-15 20:09:07 +00:00
|
|
|
Version: 1.67.3
|
|
|
|
Release: 1%{?dist}
|
2012-07-05 18:35:58 +00:00
|
|
|
Summary: Javascript Bindings for GNOME
|
2011-09-21 15:11:03 +00:00
|
|
|
|
2009-08-08 09:45:10 +00:00
|
|
|
# The following files contain code from Mozilla which
|
|
|
|
# is triple licensed under MPL1.1/LGPLv2+/GPLv2+:
|
|
|
|
# The console module (modules/console.c)
|
|
|
|
# Stack printer (gjs/stack.c)
|
2012-07-05 18:35:58 +00:00
|
|
|
License: MIT and (MPLv1.1 or GPLv2+ or LGPLv2+)
|
2015-12-18 17:52:10 +00:00
|
|
|
URL: https://wiki.gnome.org/Projects/Gjs
|
2021-01-26 09:53:22 +00:00
|
|
|
Source0: https://download.gnome.org/sources/%{name}/1.67/%{name}-%{version}.tar.xz
|
2019-12-11 22:56:07 +00:00
|
|
|
|
2012-06-09 16:04:21 +00:00
|
|
|
BuildRequires: cairo-gobject-devel
|
2019-01-02 21:31:52 +00:00
|
|
|
BuildRequires: dbus-daemon
|
2019-01-08 19:39:32 +00:00
|
|
|
BuildRequires: dbus-glib-devel
|
2018-09-06 09:59:43 +00:00
|
|
|
BuildRequires: gcc-c++
|
2019-12-11 22:56:07 +00:00
|
|
|
BuildRequires: meson
|
2017-09-20 20:18:30 +00:00
|
|
|
BuildRequires: gettext
|
2017-02-15 10:07:44 +00:00
|
|
|
BuildRequires: glib2-devel >= %{glib2_version}
|
2018-09-06 09:59:43 +00:00
|
|
|
BuildRequires: gobject-introspection-devel >= %{gobject_introspection_version}
|
2017-02-15 10:07:44 +00:00
|
|
|
BuildRequires: gtk3-devel >= %{gtk3_version}
|
2020-08-17 08:46:29 +00:00
|
|
|
BuildRequires: mozjs78-devel >= %{mozjs78_version}
|
2009-08-08 09:45:10 +00:00
|
|
|
BuildRequires: pkgconfig
|
2018-09-06 09:59:43 +00:00
|
|
|
BuildRequires: readline-devel
|
2021-02-24 10:37:57 +00:00
|
|
|
BuildRequires: sysprof-capture-devel
|
2009-08-08 09:45:10 +00:00
|
|
|
|
2021-01-26 12:05:47 +00:00
|
|
|
# xvfb for test suite
|
|
|
|
BuildRequires: xorg-x11-server-Xvfb
|
|
|
|
|
2017-02-15 10:07:44 +00:00
|
|
|
Requires: glib2%{?_isa} >= %{glib2_version}
|
2014-04-05 17:05:11 +00:00
|
|
|
Requires: gobject-introspection%{?_isa} >= %{gobject_introspection_version}
|
2017-02-15 10:07:44 +00:00
|
|
|
Requires: gtk3%{?_isa} >= %{gtk3_version}
|
2020-08-17 08:46:29 +00:00
|
|
|
Requires: mozjs78%{?_isa} >= %{mozjs78_version}
|
2014-04-05 17:05:11 +00:00
|
|
|
|
2018-02-05 09:38:30 +00:00
|
|
|
# Filter provides for private libraries
|
|
|
|
%global __provides_exclude_from ^%{_libdir}/gjs/
|
|
|
|
|
2009-08-08 09:45:10 +00:00
|
|
|
%description
|
|
|
|
Gjs allows using GNOME libraries from Javascript. It's based on the
|
|
|
|
Spidermonkey Javascript engine from Mozilla and the GObject introspection
|
|
|
|
framework.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development package for %{name}
|
2014-04-05 16:58:35 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2009-08-08 09:45:10 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
Files for development with %{name}.
|
|
|
|
|
2014-09-05 18:05:06 +00:00
|
|
|
%package tests
|
|
|
|
Summary: Tests for the gjs package
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description tests
|
|
|
|
The gjs-tests package contains tests that can be used to verify
|
|
|
|
the functionality of the installed gjs package.
|
|
|
|
|
2009-08-08 09:45:10 +00:00
|
|
|
%prep
|
2017-06-14 04:37:31 +00:00
|
|
|
%autosetup -p1
|
2009-08-08 09:45:10 +00:00
|
|
|
|
|
|
|
%build
|
2019-12-11 22:56:07 +00:00
|
|
|
%meson
|
|
|
|
%meson_build
|
2009-08-08 09:45:10 +00:00
|
|
|
|
|
|
|
%install
|
2019-12-11 22:56:07 +00:00
|
|
|
%meson_install
|
2009-08-08 09:45:10 +00:00
|
|
|
|
|
|
|
%check
|
2021-02-17 22:29:49 +00:00
|
|
|
%{shrink:xvfb-run -s "-screen 0 1600x1200x24" %meson_test}
|
2009-08-08 09:45:10 +00:00
|
|
|
|
|
|
|
%files
|
2015-10-28 05:36:44 +00:00
|
|
|
%license COPYING
|
2020-01-08 09:38:27 +00:00
|
|
|
%doc NEWS README.md
|
2009-08-27 12:51:00 +00:00
|
|
|
%{_bindir}/gjs
|
2009-08-08 09:45:10 +00:00
|
|
|
%{_bindir}/gjs-console
|
|
|
|
%{_libdir}/*.so.*
|
2012-06-09 16:04:21 +00:00
|
|
|
%{_libdir}/gjs
|
2009-08-08 09:45:10 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%doc examples/*
|
|
|
|
%{_includedir}/gjs-1.0
|
|
|
|
%{_libdir}/pkgconfig/gjs-1.0.pc
|
|
|
|
%{_libdir}/*.so
|
2018-02-05 09:33:27 +00:00
|
|
|
%dir %{_datadir}/gjs-1.0
|
|
|
|
%{_datadir}/gjs-1.0/lsan/
|
|
|
|
%{_datadir}/gjs-1.0/valgrind/
|
2009-08-08 09:45:10 +00:00
|
|
|
|
2014-09-05 18:05:06 +00:00
|
|
|
%files tests
|
2020-06-05 06:39:43 +00:00
|
|
|
%{_libexecdir}/installed-tests/
|
2019-05-21 11:05:49 +00:00
|
|
|
%{_datadir}/glib-2.0/schemas/org.gnome.GjsTest.gschema.xml
|
2020-06-05 06:39:43 +00:00
|
|
|
%{_datadir}/installed-tests/
|
2014-09-05 18:05:06 +00:00
|
|
|
|
2009-08-08 09:45:10 +00:00
|
|
|
%changelog
|
2021-03-15 20:09:07 +00:00
|
|
|
* Mon Mar 15 2021 Kalev Lember <klember@redhat.com> - 1.67.3-1
|
|
|
|
- Update to 1.67.3
|
|
|
|
|
2021-02-23 11:00:35 +00:00
|
|
|
* Tue Feb 23 2021 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.67.2-2
|
|
|
|
- Rebuild against mozjs78-78.8.0-1
|
|
|
|
|
2021-02-17 22:34:13 +00:00
|
|
|
* Wed Feb 17 2021 Kalev Lember <klember@redhat.com> - 1.67.2-1
|
|
|
|
- Update to 1.67.2
|
|
|
|
|
2021-01-26 13:13:58 +00:00
|
|
|
* Tue Jan 26 2021 Kalev Lember <klember@redhat.com> - 1.67.1-3
|
|
|
|
- Simplify xvfb-run invocation
|
|
|
|
|
2021-01-26 12:05:47 +00:00
|
|
|
* Tue Jan 26 2021 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.67.1-2
|
|
|
|
- Enable tests during rpmbuild
|
|
|
|
|
2021-01-26 09:53:22 +00:00
|
|
|
* Tue Jan 26 2021 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.67.1-1
|
|
|
|
- Update to 1.67.1
|
|
|
|
- Rebuild against mozjs78-78.7.0-1
|
|
|
|
|
2021-01-26 08:12:26 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.66.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-16 20:17:51 +00:00
|
|
|
* Sat Jan 16 2021 Kalev Lember <klember@redhat.com> - 1.66.2-1
|
|
|
|
- Update to 1.66.2
|
|
|
|
|
2020-12-15 22:54:27 +00:00
|
|
|
* Tue Dec 15 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.66.1-5
|
|
|
|
- Rebuild against mozjs78-78.6.0-1
|
|
|
|
|
2020-11-18 07:48:21 +00:00
|
|
|
* Wed Nov 18 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.66.1-4
|
|
|
|
- Rebuild against mozjs78-78.5.0-1
|
|
|
|
|
2020-10-31 20:04:23 +00:00
|
|
|
* Sat Oct 31 2020 Jeff Law <law@redhat.com> - 1.66.1-3
|
|
|
|
- Fix bogus volatiles caught by gcc-11
|
|
|
|
|
2020-10-19 12:34:47 +00:00
|
|
|
* Mon Oct 19 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.66.1-2
|
|
|
|
- Rebuild against mozjs78-78.4.0-1
|
|
|
|
|
2020-10-09 06:35:48 +00:00
|
|
|
* Fri Oct 9 2020 Kalev Lember <klember@redhat.com> - 1.66.1-1
|
|
|
|
- Update to 1.66.1
|
|
|
|
|
2020-09-22 08:34:56 +00:00
|
|
|
* Tue Sep 22 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.66.0-2
|
|
|
|
- Rebuild against mozjs78-78.3.0-1
|
|
|
|
|
2020-09-12 19:47:01 +00:00
|
|
|
* Sat Sep 12 2020 Kalev Lember <klember@redhat.com> - 1.66.0-1
|
|
|
|
- Update to 1.66.0
|
|
|
|
|
2020-09-06 20:25:08 +00:00
|
|
|
* Sun Sep 06 2020 Kalev Lember <klember@redhat.com> - 1.65.92-1
|
|
|
|
- Update to 1.65.92
|
|
|
|
|
2020-08-28 20:51:45 +00:00
|
|
|
* Fri Aug 28 2020 Adam Williamson <awilliam@redhat.com> - 1.65.91-3
|
|
|
|
- Backport MR #483 to fix frequent g_variant_unref errors in journal
|
|
|
|
|
2020-08-24 19:54:27 +00:00
|
|
|
* Mon Aug 24 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.65.91-2
|
|
|
|
- Rebuild against mozjs78-78.2.0-1
|
|
|
|
|
2020-08-23 08:04:51 +00:00
|
|
|
* Sun Aug 23 2020 Kalev Lember <klember@redhat.com> - 1.65.91-1
|
|
|
|
- Update to 1.65.91
|
|
|
|
|
2020-08-17 08:46:29 +00:00
|
|
|
* Mon Aug 17 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.65.90-1
|
|
|
|
- Update to 1.65.90
|
|
|
|
- Switch over from mozjs68 to mozjs78
|
|
|
|
|
2020-07-31 12:24:13 +00:00
|
|
|
* Fri Jul 31 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.65.4-3
|
|
|
|
- Rebuild against mozjs68-68.11.0-1
|
|
|
|
|
2020-07-27 20:08:46 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.65.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-20 13:33:37 +00:00
|
|
|
* Mon Jul 20 2020 Kalev Lember <klember@redhat.com> - 1.65.4-1
|
|
|
|
- Update to 1.65.4
|
|
|
|
|
2020-06-30 17:04:38 +00:00
|
|
|
* Tue Jun 30 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.65.3-2
|
|
|
|
- Rebuild against mozjs68-68.10.0-1
|
|
|
|
|
2020-06-05 06:39:43 +00:00
|
|
|
* Fri Jun 05 2020 Kalev Lember <klember@redhat.com> - 1.65.3-1
|
|
|
|
- Update to 1.65.3
|
|
|
|
|
2020-06-02 17:19:26 +00:00
|
|
|
* Tue Jun 02 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.65.2-3
|
|
|
|
- Rebuild against mozjs68-68.9.0-1
|
|
|
|
|
2020-05-12 15:02:15 +00:00
|
|
|
* Tue May 12 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.65.2-2
|
|
|
|
- Rebuild against mozjs68-68.8.0-1
|
|
|
|
|
2020-05-05 17:55:21 +00:00
|
|
|
* Tue May 05 2020 Kalev Lember <klember@redhat.com> - 1.65.2-1
|
|
|
|
- Update to 1.65.2
|
|
|
|
|
2020-04-07 15:55:31 +00:00
|
|
|
* Tue Apr 07 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.65.1-2
|
|
|
|
- Rebuild against mozjs68-68.7.0-1
|
|
|
|
|
2020-03-28 10:23:49 +00:00
|
|
|
* Sat Mar 28 2020 Kalev Lember <klember@redhat.com> - 1.65.1-1
|
|
|
|
- Update to 1.65.1
|
|
|
|
|
2020-03-28 09:59:00 +00:00
|
|
|
* Sat Mar 28 2020 Kalev Lember <klember@redhat.com> - 1.64.1-1
|
|
|
|
- Update to 1.64.1
|
|
|
|
|
2020-03-17 09:58:11 +00:00
|
|
|
* Tue Mar 17 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.64.0-2
|
|
|
|
- Rebuild against mozjs68-68.6.0-2 (built with gcc 10)
|
|
|
|
|
2020-03-08 11:42:29 +00:00
|
|
|
* Sun Mar 08 2020 Kalev Lember <klember@redhat.com> - 1.64.0-1
|
|
|
|
- Update to 1.64.0
|
|
|
|
|
2020-03-02 18:50:29 +00:00
|
|
|
* Mon Mar 02 2020 Kalev Lember <klember@redhat.com> - 1.63.92-1
|
|
|
|
- Update to 1.63.92
|
|
|
|
|
2020-02-18 10:37:24 +00:00
|
|
|
* Tue Feb 18 2020 Kalev Lember <klember@redhat.com> - 1.63.91-1
|
|
|
|
- Update to 1.63.91
|
|
|
|
|
2020-02-03 12:45:37 +00:00
|
|
|
* Mon Feb 03 2020 Kalev Lember <klember@redhat.com> - 1.63.90-1
|
|
|
|
- Update to 1.63.90
|
|
|
|
- Switch to building with mozjs68
|
|
|
|
|
2020-01-28 22:02:57 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.63.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-08 09:38:27 +00:00
|
|
|
* Wed Jan 08 2020 Kalev Lember <klember@redhat.com> - 1.63.3-1
|
|
|
|
- Update to 1.63.3
|
|
|
|
|
2019-12-11 22:46:51 +00:00
|
|
|
* Wed Dec 11 2019 Florian Müllner <fmuellner@redhat.com> - 1.63.2-1
|
|
|
|
- Update to 1.63.2
|
|
|
|
|
2019-11-27 15:30:35 +00:00
|
|
|
* Wed Nov 27 2019 Kalev Lember <klember@redhat.com> - 1.58.3-1
|
|
|
|
- Update to 1.58.3
|
|
|
|
|
2019-10-07 07:02:53 +00:00
|
|
|
* Mon Oct 07 2019 Kalev Lember <klember@redhat.com> - 1.58.1-1
|
|
|
|
- Update to 1.58.1
|
|
|
|
|
2019-09-08 08:28:22 +00:00
|
|
|
* Sun Sep 08 2019 Kalev Lember <klember@redhat.com> - 1.58.0-1
|
|
|
|
- Update to 1.58.0
|
|
|
|
|
2019-09-04 18:41:20 +00:00
|
|
|
* Wed Sep 04 2019 Kalev Lember <klember@redhat.com> - 1.57.92-2
|
|
|
|
- Rebuild against mozjs60 60.9.0
|
|
|
|
|
2019-09-03 13:52:34 +00:00
|
|
|
* Tue Sep 03 2019 Kalev Lember <klember@redhat.com> - 1.57.92-1
|
|
|
|
- Update to 1.57.92
|
|
|
|
|
2019-08-19 12:32:37 +00:00
|
|
|
* Mon Aug 19 2019 Kalev Lember <klember@redhat.com> - 1.57.91-1
|
|
|
|
- Update to 1.57.91
|
|
|
|
|
2019-08-12 11:51:32 +00:00
|
|
|
* Mon Aug 12 2019 Kalev Lember <klember@redhat.com> - 1.57.90-1
|
|
|
|
- Update to 1.57.90
|
|
|
|
|
2019-07-25 03:32:39 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.57.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-19 04:12:49 +00:00
|
|
|
* Fri Jul 19 2019 Kalev Lember <klember@redhat.com> - 1.57.4-1
|
|
|
|
- Update to 1.57.4
|
|
|
|
- Enable sysprof capture support
|
|
|
|
|
2019-07-09 21:16:44 +00:00
|
|
|
* Tue Jul 09 2019 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.57.3-3
|
|
|
|
- Rebuild against mozjs60 60.8.0
|
|
|
|
|
2019-06-22 18:02:19 +00:00
|
|
|
* Sat Jun 22 2019 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.57.3-2
|
|
|
|
- Rebuild against mozjs60 60.7.2
|
|
|
|
|
2019-06-20 19:22:11 +00:00
|
|
|
* Thu Jun 20 2019 Kalev Lember <klember@redhat.com> - 1.57.3-1
|
|
|
|
- Update to 1.57.3
|
|
|
|
|
2019-06-19 20:11:58 +00:00
|
|
|
* Wed Jun 19 2019 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.57.2-3
|
|
|
|
- Rebuild against mozjs60 60.7.1
|
|
|
|
|
2019-05-21 20:02:09 +00:00
|
|
|
* Tue May 21 2019 Kalev Lember <klember@redhat.com> - 1.57.2-2
|
|
|
|
- Rebuild against mozjs60 60.7.0
|
|
|
|
|
2019-05-21 11:05:49 +00:00
|
|
|
* Tue May 21 2019 Kalev Lember <klember@redhat.com> - 1.57.2-1
|
|
|
|
- Update to 1.57.2
|
|
|
|
|
2019-05-09 11:54:05 +00:00
|
|
|
* Thu May 09 2019 Kalev Lember <klember@redhat.com> - 1.57.1-1
|
|
|
|
- Update to 1.57.1
|
|
|
|
|
2019-05-08 06:28:05 +00:00
|
|
|
* Wed May 08 2019 Kalev Lember <klember@redhat.com> - 1.56.2-1
|
|
|
|
- Update to 1.56.2
|
|
|
|
|
2019-04-15 07:37:41 +00:00
|
|
|
* Mon Apr 15 2019 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.56.1-2
|
|
|
|
- Rebuild against mozjs60-60.6.1
|
|
|
|
|
2019-04-08 08:08:51 +00:00
|
|
|
* Mon Apr 08 2019 Kalev Lember <klember@redhat.com> - 1.56.1-1
|
|
|
|
- Update to 1.56.1
|
|
|
|
|
2019-03-12 08:00:49 +00:00
|
|
|
* Tue Mar 12 2019 Kalev Lember <klember@redhat.com> - 1.56.0-1
|
|
|
|
- Update to 1.56.0
|
|
|
|
|
2019-03-05 07:33:28 +00:00
|
|
|
* Tue Mar 05 2019 Kalev Lember <klember@redhat.com> - 1.55.92-1
|
|
|
|
- Update to 1.55.92
|
|
|
|
|
2019-02-18 07:09:00 +00:00
|
|
|
* Mon Feb 18 2019 Kalev Lember <klember@redhat.com> - 1.55.91-1
|
|
|
|
- Update to 1.55.91
|
|
|
|
|
2019-02-17 08:30:50 +00:00
|
|
|
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.55.90-3
|
|
|
|
- Rebuild for readline 8.0
|
|
|
|
|
2019-02-14 22:10:44 +00:00
|
|
|
* Thu Feb 14 2019 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.55.90-2
|
|
|
|
- Rebuild against mozjs60 built by GCC9: ABI change detected by Taskotron/abicheck
|
|
|
|
|
2019-02-05 22:47:31 +00:00
|
|
|
* Tue Feb 05 2019 Kalev Lember <klember@redhat.com> - 1.55.90-1
|
|
|
|
- Update to 1.55.90
|
|
|
|
|
2019-01-31 22:31:39 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.55.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-08 19:38:39 +00:00
|
|
|
* Tue Jan 08 2019 Kalev Lember <klember@redhat.com> - 1.55.4-1
|
|
|
|
- Update to 1.55.4
|
|
|
|
|
2019-01-02 21:31:52 +00:00
|
|
|
* Wed Jan 02 2019 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.55.1-3
|
|
|
|
- Add BR dbus-daemon to fix running tests on F30
|
|
|
|
|
2019-01-02 20:35:30 +00:00
|
|
|
* Wed Jan 02 2019 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.55.1-2
|
|
|
|
- Rebuilt against mozjs60 60.4.0
|
|
|
|
|
2018-10-09 15:03:26 +00:00
|
|
|
* Tue Oct 09 2018 Kalev Lember <klember@redhat.com> - 1.55.1-1
|
|
|
|
- Update to 1.55.1
|
|
|
|
|
2018-10-05 06:43:20 +00:00
|
|
|
* Fri Oct 05 2018 Kalev Lember <klember@redhat.com> - 1.54.1-2
|
|
|
|
- Rebuilt against mozjs60 60.2.2
|
|
|
|
|
2018-09-24 11:44:19 +00:00
|
|
|
* Mon Sep 24 2018 Kalev Lember <klember@redhat.com> - 1.54.1-1
|
|
|
|
- Update to 1.54.1
|
|
|
|
|
2018-09-13 11:30:10 +00:00
|
|
|
* Thu Sep 13 2018 Kalev Lember <klember@redhat.com> - 1.54.0-3
|
|
|
|
- Rebuilt against mozjs60 60.2.0 that broke ABI (#1628438)
|
|
|
|
|
2018-09-10 11:44:10 +00:00
|
|
|
* Mon Sep 10 2018 Kalev Lember <klember@redhat.com> - 1.54.0-2
|
|
|
|
- Rebuilt against fixed atk (#1626575)
|
|
|
|
|
2018-09-06 09:58:40 +00:00
|
|
|
* Thu Sep 06 2018 Kalev Lember <klember@redhat.com> - 1.54.0-1
|
|
|
|
- Update to 1.54.0
|
|
|
|
- Switch to building with mozjs60
|
|
|
|
|
2018-07-13 02:28:11 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.52.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-05-08 08:12:58 +00:00
|
|
|
* Tue May 08 2018 Kalev Lember <klember@redhat.com> - 1.52.3-1
|
|
|
|
- Update to 1.52.3
|
|
|
|
|
2018-04-18 09:34:51 +00:00
|
|
|
* Wed Apr 18 2018 Kalev Lember <klember@redhat.com> - 1.52.2-1
|
|
|
|
- Update to 1.52.2
|
|
|
|
|
2018-04-10 08:50:39 +00:00
|
|
|
* Tue Apr 10 2018 Kalev Lember <klember@redhat.com> - 1.52.1-1
|
|
|
|
- Update to 1.52.1
|
|
|
|
|
2018-03-13 09:45:16 +00:00
|
|
|
* Tue Mar 13 2018 Kalev Lember <klember@redhat.com> - 1.52.0-1
|
|
|
|
- Update to 1.52.0
|
|
|
|
|
2018-03-11 13:29:09 +00:00
|
|
|
* Sun Mar 11 2018 Kalev Lember <klember@redhat.com> - 1.51.92-1
|
|
|
|
- Update to 1.51.92
|
|
|
|
|
2018-02-21 07:03:00 +00:00
|
|
|
* Wed Feb 21 2018 Kalev Lember <klember@redhat.com> - 1.51.91-1
|
|
|
|
- Update to 1.51.91
|
|
|
|
|
2018-02-07 12:40:00 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.90-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-02-05 09:33:27 +00:00
|
|
|
* Mon Feb 05 2018 Kalev Lember <klember@redhat.com> - 1.51.90-1
|
|
|
|
- Update to 1.51.90
|
2018-02-05 09:33:39 +00:00
|
|
|
- Drop ldconfig scriptlets
|
2018-02-05 09:38:30 +00:00
|
|
|
- Filter provides for private libraries
|
2018-02-05 09:33:27 +00:00
|
|
|
|
2018-02-03 12:42:04 +00:00
|
|
|
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.50.4-2
|
|
|
|
- Switch to %%ldconfig_scriptlets
|
|
|
|
|
2018-01-28 07:11:45 +00:00
|
|
|
* Sun Jan 28 2018 Kalev Lember <klember@redhat.com> - 1.50.4-1
|
|
|
|
- Update to 1.50.4
|
|
|
|
|
2018-01-18 09:54:25 +00:00
|
|
|
* Thu Jan 18 2018 Kalev Lember <klember@redhat.com> - 1.50.3-1
|
|
|
|
- Update to 1.50.3
|
|
|
|
|
2017-11-01 21:11:15 +00:00
|
|
|
* Wed Nov 01 2017 Kalev Lember <klember@redhat.com> - 1.50.2-1
|
|
|
|
- Update to 1.50.2
|
|
|
|
|
2017-10-09 08:36:25 +00:00
|
|
|
* Mon Oct 09 2017 Kalev Lember <klember@redhat.com> - 1.50.1-1
|
|
|
|
- Update to 1.50.1
|
|
|
|
|
2017-09-20 20:18:30 +00:00
|
|
|
* Wed Sep 20 2017 Kalev Lember <klember@redhat.com> - 1.50.0-1
|
|
|
|
- Update to 1.50.0
|
|
|
|
|
2017-08-02 21:43:19 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.49.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 10:13:37 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.49.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-25 15:37:12 +00:00
|
|
|
* Sun Jun 25 2017 Kalev Lember <klember@redhat.com> - 1.49.3-1
|
|
|
|
- Update to 1.49.3
|
|
|
|
|
2017-06-13 17:18:53 +00:00
|
|
|
* Tue Jun 13 2017 Bastien Nocera <bnocera@redhat.com> - 1.49.2-2
|
|
|
|
+ gjs-1.49.2-2
|
|
|
|
- Add fix for possible use-after-free crasher (bgo #781799)
|
|
|
|
|
2017-06-12 12:02:50 +00:00
|
|
|
* Mon Jun 12 2017 Kalev Lember <klember@redhat.com> - 1.49.2-1
|
|
|
|
- Update to 1.49.2
|
|
|
|
|
2017-05-15 21:02:52 +00:00
|
|
|
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.48.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
|
|
|
|
2017-05-09 21:08:08 +00:00
|
|
|
* Tue May 09 2017 Kalev Lember <klember@redhat.com> - 1.48.3-1
|
|
|
|
- Update to 1.48.3
|
|
|
|
|
2017-04-21 06:19:00 +00:00
|
|
|
* Fri Apr 21 2017 Kalev Lember <klember@redhat.com> - 1.48.2-1
|
|
|
|
- Update to 1.48.2
|
|
|
|
|
2017-04-11 12:20:36 +00:00
|
|
|
* Tue Apr 11 2017 Kalev Lember <klember@redhat.com> - 1.48.1-1
|
|
|
|
- Update to 1.48.1
|
|
|
|
|
2017-03-21 10:02:31 +00:00
|
|
|
* Tue Mar 21 2017 Kalev Lember <klember@redhat.com> - 1.48.0-1
|
|
|
|
- Update to 1.48.0
|
|
|
|
|
2017-03-16 16:12:38 +00:00
|
|
|
* Thu Mar 16 2017 Kalev Lember <klember@redhat.com> - 1.47.92-1
|
|
|
|
- Update to 1.47.92
|
|
|
|
|
2017-03-01 11:36:07 +00:00
|
|
|
* Wed Mar 01 2017 Kalev Lember <klember@redhat.com> - 1.47.91-1
|
|
|
|
- Update to 1.47.91
|
|
|
|
|
2017-02-15 10:03:08 +00:00
|
|
|
* Wed Feb 15 2017 Kalev Lember <klember@redhat.com> - 1.47.90-1
|
|
|
|
- Update to 1.47.90
|
|
|
|
- Switch to building with mozjs38
|
2017-02-15 10:07:44 +00:00
|
|
|
- Set minimum required glib2 and gtk3 versions
|
2017-02-15 10:03:08 +00:00
|
|
|
|
2017-02-10 11:02:10 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.47.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-15 13:59:30 +00:00
|
|
|
* Sun Jan 15 2017 Kalev Lember <klember@redhat.com> - 1.47.4-1
|
|
|
|
- Update to 1.47.4
|
2017-01-15 14:02:32 +00:00
|
|
|
- Remove lib64 rpaths
|
2017-01-15 13:59:30 +00:00
|
|
|
|
2017-01-12 16:30:28 +00:00
|
|
|
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.47.0-2
|
|
|
|
- Rebuild for readline 7.x
|
|
|
|
|
2016-11-10 14:32:52 +00:00
|
|
|
* Thu Nov 10 2016 Florian Müllner <fmuellner@redhat.com> - 3.47.0-1
|
|
|
|
- Update to 1.47.0
|
|
|
|
|
2016-09-21 07:53:44 +00:00
|
|
|
* Wed Sep 21 2016 Kalev Lember <klember@redhat.com> - 1.46.0-1
|
|
|
|
- Update to 1.46.0
|
2016-09-21 07:54:35 +00:00
|
|
|
- Don't set group tags
|
2016-09-21 07:55:16 +00:00
|
|
|
- Use make_install macro
|
2016-09-21 07:53:44 +00:00
|
|
|
|
2016-07-19 18:23:41 +00:00
|
|
|
* Tue Jul 19 2016 Florian Müllner <fmuellner@redhat.com> - 3.1.45.4-1
|
|
|
|
- Update to 1.45.4
|
|
|
|
|
2016-02-03 21:58:20 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.45.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-12-18 17:50:42 +00:00
|
|
|
* Fri Dec 18 2015 Kalev Lember <klember@redhat.com> - 1.45.3-1
|
|
|
|
- Update to 1.45.3
|
2015-12-18 17:52:10 +00:00
|
|
|
- Update project URL
|
2015-12-18 17:50:42 +00:00
|
|
|
|
2015-10-28 05:36:06 +00:00
|
|
|
* Wed Oct 28 2015 Kalev Lember <klember@redhat.com> - 1.44.0-1
|
|
|
|
- Update to 1.44.0
|
2015-10-28 05:36:44 +00:00
|
|
|
- Use license macro for COPYING
|
2015-10-28 05:36:06 +00:00
|
|
|
|
2015-06-17 08:18:20 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.43.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-05-02 11:56:51 +00:00
|
|
|
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.43.3-2
|
|
|
|
- Rebuilt for GCC 5 C++11 ABI change
|
|
|
|
|
2014-12-29 20:59:54 +00:00
|
|
|
* Mon Dec 29 2014 Richard Hughes <rhughes@redhat.com> - 1.43.3-1
|
|
|
|
- Update to 1.43.3
|
|
|
|
|
2014-09-29 11:13:17 +00:00
|
|
|
* Mon Sep 29 2014 Kalev Lember <kalevlember@gmail.com> - 1.42.0-1
|
|
|
|
- Update to 1.42.0
|
|
|
|
|
2014-09-05 18:05:06 +00:00
|
|
|
* Fri Sep 5 2014 Vadim Rutkovsky <vrutkovs@redhat.com> - 1.41.91-2
|
|
|
|
- Build installed tests
|
|
|
|
|
2014-09-01 21:00:29 +00:00
|
|
|
* Mon Sep 01 2014 Kalev Lember <kalevlember@gmail.com> - 1.41.91-1
|
|
|
|
- Update to 1.41.91
|
|
|
|
|
2014-08-16 16:33:17 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.41.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-22 12:44:50 +00:00
|
|
|
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 1.41.4-1
|
|
|
|
- Update to 1.41.4
|
|
|
|
|
2014-06-26 13:13:40 +00:00
|
|
|
* Thu Jun 26 2014 Richard Hughes <rhughes@redhat.com> - 1.41.3-1
|
|
|
|
- Update to 1.41.3
|
|
|
|
|
2014-06-07 15:55:32 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.40.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-15 21:53:39 +00:00
|
|
|
* Tue Apr 15 2014 Kalev Lember <kalevlember@gmail.com> - 1.40.1-1
|
|
|
|
- Update to 1.40.1
|
|
|
|
|
2014-04-05 16:58:35 +00:00
|
|
|
* Sat Apr 05 2014 Kalev Lember <kalevlember@gmail.com> - 1.40.0-2
|
|
|
|
- Tighten -devel deps
|
2014-04-05 17:05:11 +00:00
|
|
|
- Set minimum gobject-introspection version
|
2014-04-05 16:58:35 +00:00
|
|
|
|
2014-03-25 18:37:53 +00:00
|
|
|
* Tue Mar 25 2014 Richard Hughes <rhughes@redhat.com> - 1.40.0-1
|
|
|
|
- Update to 1.40.0
|
|
|
|
|
2014-03-04 19:08:17 +00:00
|
|
|
* Tue Mar 04 2014 Richard Hughes <rhughes@redhat.com> - 1.39.91-1
|
|
|
|
- Update to 1.39.91
|
|
|
|
|
2014-02-19 19:46:29 +00:00
|
|
|
* Wed Feb 19 2014 Richard Hughes <rhughes@redhat.com> - 1.39.90-1
|
|
|
|
- Update to 1.39.90
|
|
|
|
|
2014-02-05 22:04:38 +00:00
|
|
|
* Wed Feb 05 2014 Adam Williamson <awilliam@redhat.com> - 1.39.3-2
|
|
|
|
- build against mozjs24
|
|
|
|
|
2014-01-29 09:22:11 +00:00
|
|
|
* Wed Jan 29 2014 Richard Hughes <rhughes@redhat.com> - 1.39.3-1
|
|
|
|
- Update to 1.39.3
|
|
|
|
|
2014-01-09 11:51:38 +00:00
|
|
|
* Wed Nov 20 2013 Jasper St. Pierre <jstpierre@mecheye.net> - 1.39.0-1
|
|
|
|
- Update to 1.39.0
|
|
|
|
|
2013-09-25 06:59:36 +00:00
|
|
|
* Wed Sep 25 2013 Kalev Lember <kalevlember@gmail.com> - 1.38.1-1
|
|
|
|
- Update to 1.38.1
|
|
|
|
|
2013-09-24 22:13:31 +00:00
|
|
|
* Wed Sep 25 2013 Kalev Lember <kalevlember@gmail.com> - 1.38.0-1
|
|
|
|
- Update to 1.38.0
|
|
|
|
|
2013-08-21 23:06:52 +00:00
|
|
|
* Thu Aug 22 2013 Kalev Lember <kalevlember@gmail.com> - 1.37.6-1
|
|
|
|
- Update to 1.37.6
|
|
|
|
|
2013-08-03 14:30:56 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.37.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-16 13:21:40 +00:00
|
|
|
* Tue Jul 16 2013 Richard Hughes <rhughes@redhat.com> - 1.37.4-1
|
|
|
|
- Update to 1.37.4
|
|
|
|
|
2013-05-28 21:25:26 +00:00
|
|
|
* Tue May 28 2013 Colin Walters <walters@verbum.org> - 1.37.1-1
|
2013-05-28 21:33:19 +00:00
|
|
|
- Update to 1.37.1, and switch to mozjs17
|
2013-05-28 21:25:26 +00:00
|
|
|
|
2013-04-29 15:50:28 +00:00
|
|
|
* Mon Apr 29 2013 Kalev Lember <kalevlember@gmail.com> - 1.36.1-1
|
|
|
|
- Update to 1.36.1
|
|
|
|
|
2013-03-26 02:44:55 +00:00
|
|
|
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 1.36.0-1
|
|
|
|
- Update to 1.36.0
|
|
|
|
|
2013-03-21 17:40:29 +00:00
|
|
|
* Thu Mar 21 2013 Kalev Lember <kalevlember@gmail.com> - 1.35.9-1
|
|
|
|
- Update to 1.35.9
|
|
|
|
|
2013-02-20 10:42:49 +00:00
|
|
|
* Wed Feb 20 2013 Richard Hughes <rhughes@redhat.com> - 1.35.8-1
|
|
|
|
- Update to 1.35.8
|
|
|
|
|
2013-02-13 23:30:48 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.35.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-16 04:32:29 +00:00
|
|
|
* Tue Jan 15 2013 Matthias Clasen <mclasen@redhat.com> - 1.35.4-1
|
|
|
|
- Update to 1.35.4
|
|
|
|
|
2012-12-20 20:44:15 +00:00
|
|
|
* Thu Dec 20 2012 Kalev Lember <kalevlember@gmail.com> - 1.35.3-1
|
|
|
|
- Update to 1.35.3
|
|
|
|
|
2012-11-20 20:40:35 +00:00
|
|
|
* Tue Nov 20 2012 Richard Hughes <hughsient@gmail.com> - 1.35.2-1
|
|
|
|
- Update to 1.35.2
|
|
|
|
|
2012-09-25 15:43:21 +00:00
|
|
|
* Tue Sep 25 2012 Kalev Lember <kalevlember@gmail.com> - 1.34.0-1
|
|
|
|
- Update to 1.34.0
|
|
|
|
|
2012-09-19 13:12:42 +00:00
|
|
|
* Wed Sep 19 2012 Richard Hughes <hughsient@gmail.com> - 1.33.14-1
|
|
|
|
- Update to 1.33.14
|
|
|
|
|
2012-09-06 08:32:05 +00:00
|
|
|
* Thu Sep 06 2012 Richard Hughes <hughsient@gmail.com> - 1.33.10-1
|
|
|
|
- Update to 1.33.10
|
|
|
|
|
2012-08-21 17:10:32 +00:00
|
|
|
* Tue Aug 21 2012 Richard Hughes <hughsient@gmail.com> - 1.33.9-1
|
|
|
|
- Update to 1.33.9
|
|
|
|
|
2012-07-19 06:42:51 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.33.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-17 11:39:14 +00:00
|
|
|
* Tue Jul 17 2012 Richard Hughes <hughsient@gmail.com> - 1.33.4-1
|
|
|
|
- Update to 1.33.4
|
|
|
|
|
2012-07-05 18:35:58 +00:00
|
|
|
* Thu Jul 5 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.33.3-2
|
|
|
|
- Enable verbose build
|
|
|
|
|
2012-06-26 16:43:39 +00:00
|
|
|
* Tue Jun 26 2012 Richard Hughes <hughsient@gmail.com> - 1.33.3-1
|
|
|
|
- Update to 1.33.3
|
|
|
|
|
2012-06-09 16:04:21 +00:00
|
|
|
* Sat Jun 9 2012 Matthias Clasen <mclasen@redhat.com> - 1.33.2-2
|
|
|
|
- Fix the build
|
|
|
|
|
2012-06-07 00:45:04 +00:00
|
|
|
* Thu Jun 07 2012 Richard Hughes <hughsient@gmail.com> - 1.33.2-1
|
|
|
|
- Update to 1.33.2
|
|
|
|
|
2012-03-28 09:08:02 +00:00
|
|
|
* Wed Mar 28 2012 Richard Hughes <hughsient@gmail.com> - 1.32.0-1
|
|
|
|
- Update to 1.32.0
|
|
|
|
|
2012-03-21 15:49:48 +00:00
|
|
|
* Wed Mar 21 2012 Matthias Clasen <mclasen@redhat.com> - 1.31.22-1
|
|
|
|
- Update to 1.31.22
|
|
|
|
|
2012-03-06 03:07:01 +00:00
|
|
|
* Mon Mar 5 2012 Matthias Clasen <mclasen@redhat.com> - 1.31.20-1
|
|
|
|
- Update to 1.31.20
|
|
|
|
|
2012-02-07 16:03:01 +00:00
|
|
|
* Tue Feb 7 2012 Colin Walters <walters@verbum.org> - 1.31.10-2
|
|
|
|
- Drop custom .gir/.typelib directories; see upstream commit
|
|
|
|
ea4d639eab307737870479b6573d5dab9fb2915a
|
|
|
|
|
2012-01-20 02:08:47 +00:00
|
|
|
* Thu Jan 19 2012 Matthias Clasen <mclasen@redhat.com> - 1.31.10-1
|
|
|
|
- 1.31.10
|
|
|
|
|
2012-01-13 03:32:50 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.31.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-12-20 20:37:49 +00:00
|
|
|
* Tue Dec 20 2011 Matthias Clasen <mclasen@redhat.com> 1.31.6-1
|
|
|
|
- 1.31.6
|
|
|
|
|
2011-12-02 17:19:21 +00:00
|
|
|
* Fri Dec 02 2011 Karsten Hopp <karsten@redhat.com> 1.31.0-2
|
|
|
|
- fix crash on PPC, bugzilla 749604
|
|
|
|
|
2011-11-02 19:14:48 +00:00
|
|
|
* Wed Nov 2 2011 Matthias Clasen <mclasen@redhat.com> - 1.31.0-1
|
|
|
|
- Update to 1.31.0
|
|
|
|
|
2011-09-27 21:52:35 +00:00
|
|
|
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 1.30.0-1
|
|
|
|
- Update to 1.30.0
|
|
|
|
|
2011-09-21 15:11:03 +00:00
|
|
|
* Wed Sep 21 2011 Matthias Clasen <mclasen@redhat.com> 1.29.18-1
|
|
|
|
- Update to 1.29.18
|
|
|
|
|
2011-09-05 13:06:41 +00:00
|
|
|
* Mon Sep 05 2011 Luis Bazan <bazanluis20@gmail.com> 1.29.17-2
|
|
|
|
- mass rebuild
|
|
|
|
|
2011-08-31 01:12:31 +00:00
|
|
|
* Tue Aug 30 2011 Matthias Clasen <mclasen@redhat.com> 1.29.17-1
|
|
|
|
- Update to 1.29.17
|
|
|
|
|
2011-08-18 04:04:17 +00:00
|
|
|
* Thu Aug 18 2011 Matthias Clasen <mclasen@redhat.com> 1.29.16-1
|
2011-08-18 04:03:04 +00:00
|
|
|
- Update to 1.29.16
|
|
|
|
|
2011-07-28 20:02:49 +00:00
|
|
|
* Thu Jul 28 2011 Colin Walters <walters@verbum.org> - 1.29.0-3
|
|
|
|
- BR latest g-i to fix build issue
|
|
|
|
|
2011-06-27 18:43:20 +00:00
|
|
|
* Mon Jun 27 2011 Adam Williamson <awilliam@redhat.com> - 1.29.0-2
|
|
|
|
- build against js, not gecko (from f15 branch, but patch not needed)
|
|
|
|
- BR cairo-devel (also from f15)
|
|
|
|
|
2011-06-17 12:22:31 +00:00
|
|
|
* Fri Jun 17 2011 Tomas Bzatek <tbzatek@redhat.com> - 1.29.0-1
|
|
|
|
- Update to 1.29.0
|
|
|
|
|
2011-04-29 04:58:05 +00:00
|
|
|
* Thu Apr 28 2011 Christopher Aillon <caillon@redhat.com> - 0.7.14-3
|
|
|
|
- Rebuild against newer gecko
|
|
|
|
|
2011-04-14 14:04:46 +00:00
|
|
|
* Thu Apr 14 2011 Colin Walters <walters@verbum.org> - 0.7.14-2
|
|
|
|
- BR readline; closes #696254
|
|
|
|
|
2011-04-04 13:37:00 +00:00
|
|
|
* Mon Apr 4 2011 Colin Walters <walters@verbum.org> - 0.7.14-1
|
|
|
|
- Update to 0.7.14; fixes notification race condition on login
|
|
|
|
|
2011-03-22 15:59:42 +00:00
|
|
|
* Tue Mar 22 2011 Christopher Aillon <caillon@redhat.com> - 0.7.13-3
|
|
|
|
- Rebuild against newer gecko
|
|
|
|
|
2011-03-19 02:25:31 +00:00
|
|
|
* Fri Mar 18 2011 Christopher Aillon <caillon@redhat.com> - 0.7.13-2
|
|
|
|
- Rebuild against newer gecko
|
|
|
|
|
2011-03-11 16:32:55 +00:00
|
|
|
* Thu Mar 10 2011 Colin Walters <walters@verbum.org> - 0.7.13-1
|
|
|
|
- Update to 0.7.13
|
|
|
|
|
2011-03-09 22:56:02 +00:00
|
|
|
* Wed Mar 9 2011 Christopher Aillon <caillon@redhat.com> - 0.7.11-3
|
|
|
|
- Rebuild against newer gecko
|
|
|
|
|
2011-02-25 22:59:13 +00:00
|
|
|
* Fri Feb 25 2011 Christopher Aillon <caillon@redhat.com> - 0.7.11-2
|
|
|
|
- Rebuild against newer gecko
|
|
|
|
|
2011-02-23 03:40:59 +00:00
|
|
|
* Tue Feb 22 2011 Owen Taylor <otaylor@redhat.com> - 0.7.11-1
|
|
|
|
- Update to 0.7.11
|
|
|
|
|
2011-02-11 04:50:04 +00:00
|
|
|
* Thu Feb 10 2011 Christopher Aillon <caillon@redhat.com> - 0.7.10-4
|
|
|
|
- Require gecko-libs instead of xulrunner
|
|
|
|
|
2011-02-09 21:18:06 +00:00
|
|
|
* Wed Feb 9 2011 Colin Walters <walters@verbum.org> - 0.7.10-3
|
|
|
|
- Add a hardcoded Requires on xulrunner; see comment
|
|
|
|
|
2011-02-09 02:09:10 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.10-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-26 16:01:49 +00:00
|
|
|
* Tue Jan 25 2011 Colin Walters <walters@verbum.org> - 0.7.10-1
|
|
|
|
- New upstream release
|
|
|
|
|
2011-01-25 22:52:20 +00:00
|
|
|
* Tue Jan 25 2011 Christopher Aillon <caillon@redhat.com> - 0.7.9-3
|
|
|
|
- Rebuild for new xulrunner
|
|
|
|
|
2011-01-14 22:43:22 +00:00
|
|
|
* Fri Jan 14 2011 Christopher Aillon <caillon@redhat.com> - 0.7.9-2
|
|
|
|
- Rebuild for new xulrunner
|
|
|
|
|
2011-01-14 20:47:59 +00:00
|
|
|
* Fri Jan 14 2011 Colin Walters <walters@verbum.org> - 0.7.9-1
|
|
|
|
- 0.7.9
|
|
|
|
|
2011-01-12 20:39:01 +00:00
|
|
|
* Wed Jan 12 2011 Colin Walters <walters@verbum.org> - 0.7.8-1
|
|
|
|
- Update to 0.7.8
|
|
|
|
- Drop upstreamed patches
|
|
|
|
- BR latest g-i for GI_TYPE_TAG_UNICHAR
|
|
|
|
|
2010-12-29 18:13:31 +00:00
|
|
|
* Wed Dec 29 2010 Dan Williams <dcbw@redhat.com> - 0.7.7-3
|
|
|
|
- Work around Mozilla JS API changes
|
|
|
|
|
2010-12-22 21:47:12 +00:00
|
|
|
* Wed Dec 22 2010 Colin Walters <walters@verbum.org> - 0.7.7-2
|
|
|
|
- Remove rpath removal; we need an rpath on libmozjs, since
|
|
|
|
it's in a nonstandard directory.
|
|
|
|
|
2010-11-15 16:25:46 +00:00
|
|
|
* Mon Nov 15 2010 Owen Taylor <otaylor@redhat.com> - 0.7.7-1
|
|
|
|
- Update to 0.7.7
|
|
|
|
|
2010-11-09 22:32:42 +00:00
|
|
|
* Tue Nov 9 2010 Owen Taylor <otaylor@redhat.com> - 0.7.6-1
|
|
|
|
- Update to 0.7.6
|
|
|
|
|
2010-10-29 19:12:15 +00:00
|
|
|
* Fri Oct 29 2010 Owen Taylor <otaylor@redhat.com> - 0.7.5-1
|
|
|
|
- Update to 0.7.5
|
|
|
|
|
2010-10-04 20:47:15 +00:00
|
|
|
* Mon Oct 4 2010 Owen Taylor <otaylor@redhat.com> - 0.7.4-1
|
|
|
|
- Update to 0.7.4
|
|
|
|
|
2010-07-14 18:06:26 +00:00
|
|
|
* Wed Jul 14 2010 Colin Walters <walters@verbum.org> - 0.7.1-3
|
|
|
|
- Rebuild for new gobject-introspection
|
|
|
|
|
2010-07-12 21:34:50 +00:00
|
|
|
* Mon Jul 12 2010 Colin Walters <walters@verbum.org> - 0.7.1-2
|
2010-07-12 19:00:26 +00:00
|
|
|
- New upstream version
|
|
|
|
- Changes to allow builds from snapshots
|
|
|
|
|
2010-05-28 14:31:31 +00:00
|
|
|
* Fri May 28 2010 Matthias Clasen <mclasen@redhat.com> 0.7-1
|
|
|
|
- Update to 0.7
|
|
|
|
|
2010-03-25 10:36:38 +00:00
|
|
|
* Wed Mar 24 2010 Peter Robinson <pbrobinson@gmail.com> 0.6-1
|
|
|
|
- New upstream 0.6 stable release
|
|
|
|
|
2010-02-19 23:37:39 +00:00
|
|
|
* Sat Feb 20 2010 Peter Robinson <pbrobinson@gmail.com> 0.5-1
|
|
|
|
- New upstream 0.5 release
|
|
|
|
|
2010-01-14 20:09:55 +00:00
|
|
|
* Thu Jan 14 2010 Peter Robinson <pbrobinson@gmail.com> 0.5-0.1
|
|
|
|
- Move to git snapshot to fix compile against xulrunner 1.9.2.1
|
|
|
|
|
2009-08-27 12:51:00 +00:00
|
|
|
* Thu Aug 27 2009 Peter Robinson <pbrobinson@gmail.com> 0.4-1
|
|
|
|
- New upstream 0.4 release
|
|
|
|
|
2009-08-08 09:45:10 +00:00
|
|
|
* Fri Aug 7 2009 Peter Robinson <pbrobinson@gmail.com> 0.3-2
|
|
|
|
- Updates from the review request
|
|
|
|
|
|
|
|
* Wed Jul 8 2009 Peter Robinson <pbrobinson@gmail.com> 0.3-1
|
|
|
|
- New upstream release. Clarify licensing for review
|
|
|
|
|
|
|
|
* Sat Jun 27 2009 Peter Robinson <pbrobinson@gmail.com> 0.2-1
|
|
|
|
- Initial packaging
|