Dominique Leuenberger
20c6f72436
- Update to version 1.56.2: + Crash in BoxedInstance when struct could not be allocated directly. + Cairo conversion bugs fixed. + Gjs crashes when binding inherited property to js added gobject-property. + console: Don't accept --profile after the script name. OBS-URL: https://build.opensuse.org/request/show/701519 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gjs?expand=0&rev=166
133 lines
4.2 KiB
RPMSpec
133 lines
4.2 KiB
RPMSpec
#
|
|
# spec file for package gjs
|
|
#
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
# TODO: systemtap/dtrace is currently (1.53.91) failing, when
|
|
# https://gitlab.gnome.org/GNOME/gjs/issues/196 gets fixed and released,
|
|
# remove all conditional macros and enable systemtap.
|
|
%bcond_with systemtap
|
|
Name: gjs
|
|
Version: 1.56.2
|
|
Release: 0
|
|
Summary: JavaScript bindings based on gobject-introspection and Mozilla
|
|
License: MIT AND LGPL-2.0-or-later
|
|
Group: Development/Libraries/GNOME
|
|
URL: https://wiki.gnome.org/Projects/Gjs
|
|
Source0: https://download.gnome.org/sources/gjs/1.56/%{name}-%{version}.tar.xz
|
|
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: python
|
|
BuildRequires: readline-devel
|
|
BuildRequires: systemtap-sdt-devel
|
|
BuildRequires: pkgconfig(cairo)
|
|
BuildRequires: pkgconfig(cairo-gobject)
|
|
BuildRequires: pkgconfig(cairo-xlib)
|
|
BuildRequires: pkgconfig(dbus-glib-1)
|
|
BuildRequires: pkgconfig(gio-2.0) >= 2.50.0
|
|
BuildRequires: pkgconfig(glib-2.0) >= 2.50.0
|
|
BuildRequires: pkgconfig(gobject-2.0) >= 2.50.0
|
|
BuildRequires: pkgconfig(gobject-introspection-1.0) >= 1.53.4
|
|
BuildRequires: pkgconfig(gthread-2.0) >= 2.50.0
|
|
BuildRequires: pkgconfig(gtk+-3.0) >= 3.20
|
|
BuildRequires: pkgconfig(libffi)
|
|
BuildRequires: pkgconfig(mozjs-60)
|
|
Requires: libgjs0 = %{version}
|
|
ExcludeArch: s390
|
|
|
|
%description
|
|
This module contains JavaScript bindings based on gobject-introspection and the
|
|
Mozilla SpiderMonkey JavaScript engine.
|
|
|
|
%package -n libgjs0
|
|
Summary: JavaScript bindings based on gobject-introspection and Mozilla
|
|
License: LGPL-2.0-or-later
|
|
Group: System/Libraries
|
|
Provides: libgjs-0 = %{version}
|
|
Obsoletes: libgjs-0 < %{version}
|
|
|
|
%description -n libgjs0
|
|
This module contains JavaScript bindings based on gobject-introspection and the
|
|
Mozilla SpiderMonkey JavaScript engine.
|
|
|
|
%package -n typelib-1_0-GjsPrivate-1_0
|
|
Summary: Introspection bindings for the GJS library
|
|
# The tyeplib was renamed in gnome 3.6, to reflect it is a private lib.
|
|
License: MIT AND LGPL-2.0-or-later
|
|
Group: System/Libraries
|
|
Obsoletes: typelib-1_0-GjsDBus-1_0 < %{version}
|
|
|
|
%description -n typelib-1_0-GjsPrivate-1_0
|
|
This module contains JavaScript bindings based on gobject-introspection and the
|
|
Mozilla SpiderMonkey JavaScript engine.
|
|
|
|
%package -n libgjs-devel
|
|
Summary: Development files for the GJS library
|
|
License: MIT AND LGPL-2.0-or-later
|
|
Group: Development/Libraries/GNOME
|
|
Requires: %{name} = %{version}
|
|
Requires: libgjs0 = %{version}
|
|
Requires: typelib-1_0-GjsPrivate-1_0 = %{version}
|
|
# Just a helper provides
|
|
Provides: gjs-devel = %{version}
|
|
|
|
%description -n libgjs-devel
|
|
This module contains JavaScript bindings based on gobject-introspection and the
|
|
Mozilla SpiderMonkey JavaScript engine.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
%configure \
|
|
--disable-static \
|
|
--%{?with_systemtap:enable}%{!?with_systemtap:disable}-systemtap
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
|
|
%post -n libgjs0 -p /sbin/ldconfig
|
|
%postun -n libgjs0 -p /sbin/ldconfig
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc NEWS README
|
|
%{_bindir}/gjs
|
|
%{_bindir}/gjs-console
|
|
|
|
%files -n libgjs0
|
|
%license COPYING.LGPL
|
|
%{_libdir}/*.so.*
|
|
|
|
%files -n typelib-1_0-GjsPrivate-1_0
|
|
%dir %{_libdir}/gjs
|
|
%dir %{_libdir}/gjs/girepository-1.0/
|
|
%{_libdir}/gjs/girepository-1.0/GjsPrivate-1.0.typelib
|
|
|
|
%files -n libgjs-devel
|
|
%{_includedir}/*
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/*.pc
|
|
%{_datadir}/%{name}-1.0/
|
|
%if %{with systemtap}
|
|
%{_datadir}/systemtap/tapset/*.stp
|
|
%endif
|
|
|
|
%changelog
|