Blame SPECS/gjs.spec

9c76f3
%global glib2_version 2.50.0
756c26
%global gobject_introspection_version 1.41.4
9c76f3
%global gtk3_version 3.20
9c76f3
9c76f3
%global bundled_mozjs 1
9c76f3
9c76f3
%if 0%{?bundled_mozjs}
9c76f3
%global mozjs_major 52
9c76f3
%global mozjs_version 52.6.0
9c76f3
9c76f3
# Big endian platforms
9c76f3
%ifarch ppc ppc64 s390 s390x
9c76f3
%define big_endian 1
9c76f3
%endif
9c76f3
%endif
756c26
9fb0c6
Name:          gjs
9c76f3
Version:       1.50.4
9c76f3
Release:       4%{?dist}
9fb0c6
Summary:       Javascript Bindings for GNOME
9fb0c6
9fb0c6
# The following files contain code from Mozilla which
9fb0c6
# is triple licensed under MPL1.1/LGPLv2+/GPLv2+:
9fb0c6
# The console module (modules/console.c)
9fb0c6
# Stack printer (gjs/stack.c)
9c76f3
%if 0%{?bundled_mozjs}
9c76f3
License:       MIT and (MPLv1.1 or GPLv2+ or LGPLv2+) and MPLv2.0 and MPLv1.1 and BSD and GPLv2+ and GPLv3+ and LGPLv2.1 and LGPLv2.1+ and AFL and ASL 2.0
9c76f3
%else
9fb0c6
License:       MIT and (MPLv1.1 or GPLv2+ or LGPLv2+)
9c76f3
%endif
f89c91
URL:           https://wiki.gnome.org/Projects/Gjs
9c76f3
Source0:       https://download.gnome.org/sources/%{name}/1.50/%{name}-%{version}.tar.xz
9c76f3
9c76f3
%if 0%{?bundled_mozjs}
9c76f3
Source1:       https://ftp.mozilla.org/pub/firefox/releases/%{mozjs_version}esr/source/firefox-%{mozjs_version}esr.source.tar.xz
9c76f3
Provides:      bundled(mozjs) = %{mozjs_version}
9c76f3
9c76f3
# https://bugzilla.redhat.com/show_bug.cgi?id=1510876
9c76f3
Patch0001:     gjs-mozjs-dont-export-abort.patch
9c76f3
9c76f3
# Patches from Debian mozjs52_52.3.1-4.debian.tar.xz:
9c76f3
Patch0002:     copy-headers.patch
9c76f3
9c76f3
# Downstream RHEL patches
9c76f3
Patch0003:     disable-extra-threads.patch
9c76f3
Patch0004:     disable-destoyed-object-criticals.patch
9c76f3
9c76f3
# Patches from https://github.com/ptomato/mozjs / Debian mozjs52_52.3.1-4.debian.tar.xz
9c76f3
Patch0101:     disable-mozglue.patch
9c76f3
Patch0104:     include-configure-script.patch
9c76f3
9c76f3
# Patches from Fedora firefox package:
9c76f3
Patch18:       xulrunner-24.0-jemalloc-ppc.patch
9c76f3
Patch19:       xulrunner-24.0-s390-inlines.patch
9c76f3
Patch26:       build-icu-big-endian.patch
9c76f3
Patch36:       build-missing-xlocale-h.patch
9c76f3
Patch304:      mozilla-1253216.patch
9c76f3
%endif
9fb0c6
9fb0c6
BuildRequires: cairo-gobject-devel
9c76f3
BuildRequires: chrpath
756c26
BuildRequires: gobject-introspection-devel >= %{gobject_introspection_version}
9fb0c6
BuildRequires: readline-devel
9fb0c6
BuildRequires: dbus-glib-devel
9c76f3
BuildRequires: gettext
9c76f3
BuildRequires: glib2-devel >= %{glib2_version}
9c76f3
BuildRequires: gtk3-devel >= %{gtk3_version}
9c76f3
%if 0%{?bundled_mozjs}
9c76f3
BuildRequires: autoconf213
9c76f3
BuildRequires: perl-devel
9c76f3
BuildRequires: pkgconfig(libffi)
9c76f3
BuildRequires: pkgconfig(zlib)
9c76f3
BuildRequires: python2-devel
9c76f3
BuildRequires: readline-devel
9c76f3
BuildRequires: /usr/bin/zip
9c76f3
%else
9c76f3
BuildRequires: mozjs52-devel
9c76f3
%endif
9fb0c6
BuildRequires: pkgconfig
9fb0c6
9c76f3
Requires: glib2%{?_isa} >= %{glib2_version}
756c26
Requires: gobject-introspection%{?_isa} >= %{gobject_introspection_version}
9c76f3
Requires: gtk3%{?_isa} >= %{gtk3_version}
9c76f3
9c76f3
%if 0%{?bundled_mozjs}
9c76f3
# Firefox does not allow to build with system version of jemalloc
9c76f3
Provides: bundled(jemalloc) = 4.3.1
9c76f3
9c76f3
# Make sure we don't add requires/provides for private libraries
9c76f3
%global __provides_exclude_from ^%{_libdir}/gjs/
9c76f3
%global __requires_exclude ^libmozjs-%{mozjs_major}\\.so.*
9c76f3
%endif
756c26
9fb0c6
%description
9fb0c6
Gjs allows using GNOME libraries from Javascript. It's based on the
9fb0c6
Spidermonkey Javascript engine from Mozilla and the GObject introspection
9fb0c6
framework.
9fb0c6
9fb0c6
%package devel
9fb0c6
Summary: Development package for %{name}
756c26
Requires: %{name}%{?_isa} = %{version}-%{release}
9fb0c6
9fb0c6
%description devel
9fb0c6
Files for development with %{name}.
9fb0c6
f89c91
%package tests
f89c91
Summary: Tests for the gjs package
f89c91
Requires: %{name}%{?_isa} = %{version}-%{release}
f89c91
f89c91
%description tests
f89c91
The gjs-tests package contains tests that can be used to verify
f89c91
the functionality of the installed gjs package.
f89c91
9fb0c6
%prep
9fb0c6
%setup -q
9fb0c6
9c76f3
%if 0%{?bundled_mozjs}
9c76f3
# Extract mozjs archive
9c76f3
tar -xf %{S:1}
9c76f3
9c76f3
# Apply mozjs patches
9c76f3
pushd firefox-%{mozjs_version}esr
9c76f3
%patch0001 -p1
9c76f3
%patch0002 -p1
9c76f3
%patch0003 -p1
9c76f3
9c76f3
%patch0101 -p1
9c76f3
%patch0104 -p1
9c76f3
9c76f3
%patch18 -p1 -b .jemalloc-ppc
9c76f3
%patch19 -p2 -b .s390-inlines
9c76f3
9c76f3
# Patch for big endian platforms only
9c76f3
%if 0%{?big_endian}
9c76f3
%patch26 -p1 -b .icu
9c76f3
%patch36 -p2 -b .xlocale
9c76f3
%endif
9c76f3
9c76f3
%patch304 -p1 -b .1253216
9c76f3
9c76f3
# Remove zlib directory (to be sure using system version)
9c76f3
rm -rf modules/zlib
9c76f3
popd
9c76f3
9c76f3
%patch0004 -p1 -b .debug
9c76f3
%endif
9c76f3
9fb0c6
%build
9c76f3
%if 0%{?bundled_mozjs}
9c76f3
pushd firefox-%{mozjs_version}esr/js/src
9c76f3
# Disable null pointer gcc6 optimization in gcc6 (rhbz#1328045)
9c76f3
export CFLAGS="%{optflags} -fno-tree-vrp -fno-strict-aliasing -fno-delete-null-pointer-checks"
9c76f3
export CXXFLAGS=$CFLAGS
9c76f3
LINKFLAGS="%{?__global_ldflags}"
9c76f3
export PYTHON=/usr/bin/python2
9c76f3
9c76f3
autoconf-2.13
9c76f3
%configure \
9c76f3
  --without-system-icu \
9c76f3
  --enable-posix-nspr-emulation \
9c76f3
  --with-system-zlib \
9c76f3
  --enable-tests \
9c76f3
  --disable-strip \
9c76f3
  --with-intl-api \
9c76f3
  --enable-readline \
9c76f3
  --enable-shared-js \
9c76f3
  --disable-optimize \
9c76f3
  --enable-pie \
9c76f3
%ifarch s390 s390x
9c76f3
  --disable-jemalloc \
9c76f3
%endif
9c76f3
%ifarch %{arm} aarch64 ppc ppc64 ppc64le
9c76f3
  --disable-ion
9c76f3
%endif
9c76f3
9c76f3
%if 0%{?big_endian}
9c76f3
echo "Generate big endian version of config/external/icu/data/icud58l.dat"
9c76f3
pushd ../..
9c76f3
  ./mach python intl/icu_sources_data.py .
9c76f3
  ls -l config/external/icu/data
9c76f3
  rm -f config/external/icu/data/icudt*l.dat
9c76f3
popd
9c76f3
%endif
9c76f3
9c76f3
%make_build
9c76f3
popd
9c76f3
9c76f3
cat > mozjs-%{mozjs_major}.pc << EOF
9c76f3
Name: SpiderMonkey %{mozjs_version}
9c76f3
Description: The Mozilla library for JavaScript
9c76f3
Version: %{mozjs_version}
9c76f3
9c76f3
Libs: -L`pwd`/firefox-%{mozjs_version}esr/js/src/dist/sdk/lib -Wl,-rpath=%{_libdir}/gjs -lmozjs-%{mozjs_major}
9c76f3
Cflags: -include `pwd`/firefox-%{mozjs_version}esr/js/src/dist/include/js/RequiredDefines.h -I`pwd`/firefox-%{mozjs_version}esr/js/src/dist/include
9c76f3
EOF
9c76f3
%endif
9c76f3
9c76f3
%if 0%{?bundled_mozjs}
9c76f3
export PKG_CONFIG_PATH=`pwd`
9c76f3
export LD_LIBRARY_PATH=`pwd`/firefox-%{mozjs_version}esr/js/src/dist/sdk/lib
9c76f3
export LDFLAGS="%{?__global_ldflags} -Wl,--as-needed"
9c76f3
%endif
9c76f3
%configure --disable-static --enable-installed-tests --without-dbus-tests
9fb0c6
9fb0c6
make %{?_smp_mflags} V=1
9c76f3
%if 0%{?bundled_mozjs}
9c76f3
sed -i -e 's/ mozjs-%{mozjs_major}//g' gjs-1.0.pc
9c76f3
%endif
9fb0c6
9fb0c6
%install
9c76f3
%if 0%{?bundled_mozjs}
9c76f3
mkdir -p %{buildroot}%{_libdir}/gjs
9c76f3
cp -a firefox-%{mozjs_version}esr/js/src/js/src/libmozjs-%{mozjs_major}.so %{buildroot}%{_libdir}/gjs/
9c76f3
%endif
f89c91
%make_install
9fb0c6
9c76f3
# Remove lib64 rpaths
9c76f3
chrpath --delete %{buildroot}%{_bindir}/gjs-console
9c76f3
chrpath --delete %{buildroot}%{_libexecdir}/gjs/installed-tests/minijasmine
9c76f3
9fb0c6
find %{buildroot} -name '*.la' -exec rm -f {} ';'
9fb0c6
9fb0c6
%check
9c76f3
%if 0%{?bundled_mozjs}
9c76f3
pushd firefox-%{mozjs_version}esr/js/src
9c76f3
# Run SpiderMonkey tests
9c76f3
%ifarch %{ix86} x86_64 %{arm} aarch64
9c76f3
tests/jstests.py -d -s -t 1800 --no-progress ../../js/src/js/src/shell/js
9c76f3
%else
9c76f3
tests/jstests.py -d -s -t 1800 --no-progress ../../js/src/js/src/shell/js || :
9c76f3
%endif
9c76f3
9c76f3
# Run basic JIT tests
9c76f3
%ifarch %{ix86} x86_64 %{arm} aarch64
9c76f3
jit-test/jit_test.py -s -t 1800 --no-progress ../../js/src/js/src/shell/js basic
9c76f3
%else
9c76f3
jit-test/jit_test.py -s -t 1800 --no-progress ../../js/src/js/src/shell/js basic || :
9c76f3
%endif
9c76f3
popd
9c76f3
%endif
9fb0c6
#make check
9fb0c6
9fb0c6
%post -p /sbin/ldconfig
9fb0c6
9fb0c6
%postun -p /sbin/ldconfig
9fb0c6
9fb0c6
%files
f89c91
%license COPYING
f89c91
%doc NEWS README
9fb0c6
%{_bindir}/gjs
9fb0c6
%{_bindir}/gjs-console
9fb0c6
%{_libdir}/*.so.*
9fb0c6
%{_libdir}/gjs
9fb0c6
9fb0c6
%files devel
9fb0c6
%doc examples/*
9fb0c6
%{_includedir}/gjs-1.0
9fb0c6
%{_libdir}/pkgconfig/gjs-1.0.pc
9fb0c6
%{_libdir}/*.so
9fb0c6
f89c91
%files tests
f89c91
%{_libexecdir}/gjs/installed-tests
f89c91
%{_datadir}/installed-tests
f89c91
9fb0c6
%changelog
9c76f3
* Fri Feb 16 2018 Kalev Lember <klember@redhat.com> - 1.50.4-4
9c76f3
- Avoid emitting critical warnings for finalized objects
9c76f3
  Resolves: #1546059
9c76f3
9c76f3
* Mon Feb 12 2018 Ray Strode <rstrode@redhat.com> - 1.50.4-3
9c76f3
- Fix ppc64le architecture check
9c76f3
  Related: #1523121
9c76f3
9c76f3
* Thu Feb 08 2018 Ray Strode <rstrode@redhat.com> - 1.50.4-2
9c76f3
- Diasble JS Helper threads on ppc64le
9c76f3
  Related: #1523121
9c76f3
9c76f3
* Thu Feb 01 2018 Kalev Lember <klember@redhat.com> - 1.50.4-1
9c76f3
- Update to 1.50.4
9c76f3
- Update mozjs52 to 52.6.0
9c76f3
- Related: #1525499
9c76f3
9c76f3
* Thu Feb 01 2018 Kalev Lember <klember@redhat.com> - 1.50.2-4
9c76f3
- Fix /usr/bin/gjs-console multilib file conflict
9c76f3
- Resolves: #1517890
9c76f3
9c76f3
* Mon Dec 04 2017 Debarshi Ray <rishi@fedoraproject.org> - 1.50.2-3
9c76f3
- Fix start-up on aarch64
9c76f3
- Resolves: #1510876
9c76f3
9c76f3
* Wed Nov 08 2017 Kalev Lember <klember@redhat.com> - 1.50.2-2
9c76f3
- Fix /usr/bin/gjs linking with bundled mozjs52
9c76f3
- Resolves: #1510876
9c76f3
9c76f3
* Wed Nov 01 2017 Kalev Lember <klember@redhat.com> - 1.50.2-1
9c76f3
- Update to 1.50.2
9c76f3
- Related: #1505747
9c76f3
9c76f3
* Mon Oct 30 2017 Kalev Lember <klember@redhat.com> - 1.50.1-1
9c76f3
- Update to 1.50.1
9c76f3
- Bundle mozjs52 52.4.0 as a private library
9c76f3
- Resolves: #1505747
9c76f3
9c76f3
* Tue Oct 24 2017 Florian Müllner <fmuellner@redhat.com> - 1.47.0-1
9c76f3
- Update to 1.47.0
9c76f3
- Related: #1481381
9c76f3
f89c91
* Wed Sep 21 2016 Kalev Lember <klember@redhat.com> - 1.46.0-1
f89c91
- Update to 1.46.0
f89c91
- Resolves: #1386870
f89c91
756c26
* Thu Mar 19 2015 Richard Hughes <rhughes@redhat.com> - 1.42.0-1
756c26
- Update to 1.42.0
756c26
- Resolves: #1174518
756c26
665750
* Tue Mar 18 2014 Colin Walters <walters@redhat> - 1.36.1-2
665750
- Revert previous attempts to build 1.37.1, just go back to 1.36.1-2
665750
- Resolves: #1070805
665750
9fb0c6
* Mon Apr 29 2013 Kalev Lember <kalevlember@gmail.com> - 1.36.1-1
9fb0c6
- Update to 1.36.1
9fb0c6
9fb0c6
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 1.36.0-1
9fb0c6
- Update to 1.36.0
9fb0c6
9fb0c6
* Thu Mar 21 2013 Kalev Lember <kalevlember@gmail.com> - 1.35.9-1
9fb0c6
- Update to 1.35.9
9fb0c6
9fb0c6
* Wed Feb 20 2013 Richard Hughes <rhughes@redhat.com> - 1.35.8-1
9fb0c6
- Update to 1.35.8
9fb0c6
9fb0c6
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.35.4-2
9fb0c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
9fb0c6
9fb0c6
* Tue Jan 15 2013 Matthias Clasen <mclasen@redhat.com> - 1.35.4-1
9fb0c6
- Update to 1.35.4
9fb0c6
9fb0c6
* Thu Dec 20 2012 Kalev Lember <kalevlember@gmail.com> - 1.35.3-1
9fb0c6
- Update to 1.35.3
9fb0c6
9fb0c6
* Tue Nov 20 2012 Richard Hughes <hughsient@gmail.com> - 1.35.2-1
9fb0c6
- Update to 1.35.2
9fb0c6
9fb0c6
* Tue Sep 25 2012 Kalev Lember <kalevlember@gmail.com> - 1.34.0-1
9fb0c6
- Update to 1.34.0
9fb0c6
9fb0c6
* Wed Sep 19 2012 Richard Hughes <hughsient@gmail.com> - 1.33.14-1
9fb0c6
- Update to 1.33.14
9fb0c6
9fb0c6
* Thu Sep 06 2012 Richard Hughes <hughsient@gmail.com> - 1.33.10-1
9fb0c6
- Update to 1.33.10
9fb0c6
9fb0c6
* Tue Aug 21 2012 Richard Hughes <hughsient@gmail.com> - 1.33.9-1
9fb0c6
- Update to 1.33.9
9fb0c6
9fb0c6
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.33.4-2
9fb0c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
9fb0c6
9fb0c6
* Tue Jul 17 2012 Richard Hughes <hughsient@gmail.com> - 1.33.4-1
9fb0c6
- Update to 1.33.4
9fb0c6
9fb0c6
* Thu Jul  5 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.33.3-2
9fb0c6
- Enable verbose build
9fb0c6
9fb0c6
* Tue Jun 26 2012 Richard Hughes <hughsient@gmail.com> - 1.33.3-1
9fb0c6
- Update to 1.33.3
9fb0c6
9fb0c6
* Sat Jun  9 2012 Matthias Clasen <mclasen@redhat.com> - 1.33.2-2
9fb0c6
- Fix the build
9fb0c6
9fb0c6
* Thu Jun 07 2012 Richard Hughes <hughsient@gmail.com> - 1.33.2-1
9fb0c6
- Update to 1.33.2
9fb0c6
9fb0c6
* Wed Mar 28 2012 Richard Hughes <hughsient@gmail.com> - 1.32.0-1
9fb0c6
- Update to 1.32.0
9fb0c6
9fb0c6
* Wed Mar 21 2012 Matthias Clasen <mclasen@redhat.com> - 1.31.22-1
9fb0c6
- Update to 1.31.22
9fb0c6
9fb0c6
* Mon Mar  5 2012 Matthias Clasen <mclasen@redhat.com> - 1.31.20-1
9fb0c6
- Update to 1.31.20
9fb0c6
9fb0c6
* Tue Feb  7 2012 Colin Walters <walters@verbum.org> - 1.31.10-2
9fb0c6
- Drop custom .gir/.typelib directories; see upstream commit
9fb0c6
  ea4d639eab307737870479b6573d5dab9fb2915a
9fb0c6
9fb0c6
* Thu Jan 19 2012 Matthias Clasen <mclasen@redhat.com> - 1.31.10-1
9fb0c6
- 1.31.10
9fb0c6
9fb0c6
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.31.6-2
9fb0c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
9fb0c6
9fb0c6
* Tue Dec 20 2011 Matthias Clasen <mclasen@redhat.com> 1.31.6-1
9fb0c6
- 1.31.6
9fb0c6
9fb0c6
* Fri Dec 02 2011 Karsten Hopp <karsten@redhat.com> 1.31.0-2
9fb0c6
- fix crash on PPC, bugzilla 749604
9fb0c6
9fb0c6
* Wed Nov  2 2011 Matthias Clasen <mclasen@redhat.com> - 1.31.0-1
9fb0c6
- Update to 1.31.0
9fb0c6
9fb0c6
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 1.30.0-1
9fb0c6
- Update to 1.30.0
9fb0c6
9fb0c6
* Wed Sep 21 2011 Matthias Clasen <mclasen@redhat.com> 1.29.18-1
9fb0c6
- Update to 1.29.18
9fb0c6
9fb0c6
* Mon Sep 05 2011 Luis Bazan <bazanluis20@gmail.com> 1.29.17-2
9fb0c6
- mass rebuild
9fb0c6
9fb0c6
* Tue Aug 30 2011 Matthias Clasen <mclasen@redhat.com> 1.29.17-1
9fb0c6
- Update to 1.29.17
9fb0c6
9fb0c6
* Thu Aug 18 2011 Matthias Clasen <mclasen@redhat.com> 1.29.16-1
9fb0c6
- Update to 1.29.16
9fb0c6
9fb0c6
* Thu Jul 28 2011 Colin Walters <walters@verbum.org> - 1.29.0-3
9fb0c6
- BR latest g-i to fix build issue
9fb0c6
9fb0c6
* Mon Jun 27 2011 Adam Williamson <awilliam@redhat.com> - 1.29.0-2
9fb0c6
- build against js, not gecko (from f15 branch, but patch not needed)
9fb0c6
- BR cairo-devel (also from f15)
9fb0c6
9fb0c6
* Fri Jun 17 2011 Tomas Bzatek <tbzatek@redhat.com> - 1.29.0-1
9fb0c6
- Update to 1.29.0
9fb0c6
9fb0c6
* Thu Apr 28 2011 Christopher Aillon <caillon@redhat.com> - 0.7.14-3
9fb0c6
- Rebuild against newer gecko
9fb0c6
9fb0c6
* Thu Apr 14 2011 Colin Walters <walters@verbum.org> - 0.7.14-2
9fb0c6
- BR readline; closes #696254
9fb0c6
9fb0c6
* Mon Apr  4 2011 Colin Walters <walters@verbum.org> - 0.7.14-1
9fb0c6
- Update to 0.7.14; fixes notification race condition on login
9fb0c6
9fb0c6
* Tue Mar 22 2011 Christopher Aillon <caillon@redhat.com> - 0.7.13-3
9fb0c6
- Rebuild against newer gecko
9fb0c6
9fb0c6
* Fri Mar 18 2011 Christopher Aillon <caillon@redhat.com> - 0.7.13-2
9fb0c6
- Rebuild against newer gecko
9fb0c6
9fb0c6
* Thu Mar 10 2011 Colin Walters <walters@verbum.org> - 0.7.13-1
9fb0c6
- Update to 0.7.13
9fb0c6
9fb0c6
* Wed Mar  9 2011 Christopher Aillon <caillon@redhat.com> - 0.7.11-3
9fb0c6
- Rebuild against newer gecko
9fb0c6
9fb0c6
* Fri Feb 25 2011 Christopher Aillon <caillon@redhat.com> - 0.7.11-2
9fb0c6
- Rebuild against newer gecko
9fb0c6
9fb0c6
* Tue Feb 22 2011 Owen Taylor <otaylor@redhat.com> - 0.7.11-1
9fb0c6
- Update to 0.7.11
9fb0c6
9fb0c6
* Thu Feb 10 2011 Christopher Aillon <caillon@redhat.com> - 0.7.10-4
9fb0c6
- Require gecko-libs instead of xulrunner
9fb0c6
9fb0c6
* Wed Feb  9 2011 Colin Walters <walters@verbum.org> - 0.7.10-3
9fb0c6
- Add a hardcoded Requires on xulrunner; see comment
9fb0c6
9fb0c6
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.10-2
9fb0c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
9fb0c6
9fb0c6
* Tue Jan 25 2011 Colin Walters <walters@verbum.org> - 0.7.10-1
9fb0c6
- New upstream release
9fb0c6
9fb0c6
* Tue Jan 25 2011 Christopher Aillon <caillon@redhat.com> - 0.7.9-3
9fb0c6
- Rebuild for new xulrunner
9fb0c6
9fb0c6
* Fri Jan 14 2011 Christopher Aillon <caillon@redhat.com> - 0.7.9-2
9fb0c6
- Rebuild for new xulrunner
9fb0c6
9fb0c6
* Fri Jan 14 2011 Colin Walters <walters@verbum.org> - 0.7.9-1
9fb0c6
- 0.7.9
9fb0c6
9fb0c6
* Wed Jan 12 2011 Colin Walters <walters@verbum.org> - 0.7.8-1
9fb0c6
- Update to 0.7.8
9fb0c6
- Drop upstreamed patches
9fb0c6
- BR latest g-i for GI_TYPE_TAG_UNICHAR
9fb0c6
9fb0c6
* Wed Dec 29 2010 Dan Williams <dcbw@redhat.com> - 0.7.7-3
9fb0c6
- Work around Mozilla JS API changes
9fb0c6
9fb0c6
* Wed Dec 22 2010 Colin Walters <walters@verbum.org> - 0.7.7-2
9fb0c6
- Remove rpath removal; we need an rpath on libmozjs, since
9fb0c6
  it's in a nonstandard directory.
9fb0c6
9fb0c6
* Mon Nov 15 2010 Owen Taylor <otaylor@redhat.com> - 0.7.7-1
9fb0c6
- Update to 0.7.7
9fb0c6
9fb0c6
* Tue Nov  9 2010 Owen Taylor <otaylor@redhat.com> - 0.7.6-1
9fb0c6
- Update to 0.7.6
9fb0c6
9fb0c6
* Fri Oct 29 2010 Owen Taylor <otaylor@redhat.com> - 0.7.5-1
9fb0c6
- Update to 0.7.5
9fb0c6
9fb0c6
* Mon Oct  4 2010 Owen Taylor <otaylor@redhat.com> - 0.7.4-1
9fb0c6
- Update to 0.7.4
9fb0c6
9fb0c6
* Wed Jul 14 2010 Colin Walters <walters@verbum.org> - 0.7.1-3
9fb0c6
- Rebuild for new gobject-introspection
9fb0c6
9fb0c6
* Mon Jul 12 2010 Colin Walters <walters@verbum.org> - 0.7.1-2
9fb0c6
- New upstream version
9fb0c6
- Changes to allow builds from snapshots
9fb0c6
9fb0c6
* Fri May 28 2010 Matthias Clasen <mclasen@redhat.com> 0.7-1
9fb0c6
- Update to 0.7
9fb0c6
9fb0c6
* Wed Mar 24 2010 Peter Robinson <pbrobinson@gmail.com> 0.6-1
9fb0c6
- New upstream 0.6 stable release
9fb0c6
9fb0c6
* Sat Feb 20 2010 Peter Robinson <pbrobinson@gmail.com> 0.5-1
9fb0c6
- New upstream 0.5 release
9fb0c6
9fb0c6
* Thu Jan 14 2010 Peter Robinson <pbrobinson@gmail.com> 0.5-0.1
9fb0c6
- Move to git snapshot to fix compile against xulrunner 1.9.2.1
9fb0c6
9fb0c6
* Thu Aug 27 2009 Peter Robinson <pbrobinson@gmail.com> 0.4-1
9fb0c6
- New upstream 0.4 release
9fb0c6
9fb0c6
* Fri Aug  7 2009 Peter Robinson <pbrobinson@gmail.com> 0.3-2
9fb0c6
- Updates from the review request
9fb0c6
9fb0c6
* Wed Jul  8 2009 Peter Robinson <pbrobinson@gmail.com> 0.3-1
9fb0c6
- New upstream release. Clarify licensing for review
9fb0c6
9fb0c6
* Sat Jun 27 2009 Peter Robinson <pbrobinson@gmail.com> 0.2-1
9fb0c6
- Initial packaging