Accepting request 19718 from GNOME:Factory
Copy from GNOME:Factory/gjs based on submit request 19718 from user vuntz OBS-URL: https://build.opensuse.org/request/show/19718 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gjs?expand=0&rev=3
This commit is contained in:
parent
851bf106c8
commit
e98f3a8b67
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:767c7736b1e821c9b65d456a649d2dfaaf3dc613eea5976dd671456f7c270dde
|
|
||||||
size 421641
|
|
3
gjs-0.4.tar.bz2
Normal file
3
gjs-0.4.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:78c3116cfb0feba08c79b4beea4b6ef16bfca3be9b59efcfa7e6eca79911aca6
|
||||||
|
size 401868
|
20
gjs.changes
20
gjs.changes
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 26 09:41:31 CEST 2009 - vuntz@novell.com
|
||||||
|
|
||||||
|
- Update to version 0.4:
|
||||||
|
+ Use g_boxed methods for GValue copying/freeing
|
||||||
|
+ Add symbolic link from gjs to gjs-console in $(bindir)
|
||||||
|
+ Use gssize in gjs_string_from_utf8/gjs_string_from_filename
|
||||||
|
+ Don't use undefined variable in dbus exception
|
||||||
|
+ Add gjs_parse_args
|
||||||
|
+ Add a gettext module
|
||||||
|
+ Better toString() for introspection objects
|
||||||
|
+ Port modules/mainloop to gjs_parse_args
|
||||||
|
+ scripts: don't hardcode path to python
|
||||||
|
+ switch DEBUG_DBUS_MARSHAL log messages to be compiled out by
|
||||||
|
default
|
||||||
|
+ bgo#560048 - Use JS_SetPropertyAttributes to seal imports
|
||||||
|
+ autoconf-2.64 compat: Don't use $(builddir) or
|
||||||
|
$(abs_top_builddir)
|
||||||
|
+ Fix gjs_crash_after_timeout() problems
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 6 16:14:41 CEST 2009 - vuntz@novell.com
|
Thu Aug 6 16:14:41 CEST 2009 - vuntz@novell.com
|
||||||
|
|
||||||
|
19
gjs.spec
19
gjs.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gjs (Version 0.3)
|
# spec file for package gjs (Version 0.4)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -15,7 +15,6 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
%if 0%{suse_version} > 1110
|
%if 0%{suse_version} > 1110
|
||||||
%define xulrunner_ver 191
|
%define xulrunner_ver 191
|
||||||
@ -24,17 +23,17 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: gjs
|
Name: gjs
|
||||||
|
Version: 0.4
|
||||||
|
Release: 1
|
||||||
|
License: MIT License (or similar)
|
||||||
|
Summary: JavaScript bindings based on gobject-introspection and Mozilla
|
||||||
|
Group: Development/Libraries/GNOME
|
||||||
|
Source: %{name}-%{version}.tar.bz2
|
||||||
BuildRequires: dbus-1-glib-devel
|
BuildRequires: dbus-1-glib-devel
|
||||||
BuildRequires: gobject-introspection-devel
|
BuildRequires: gobject-introspection-devel
|
||||||
BuildRequires: mozilla-xulrunner%{xulrunner_ver}-devel
|
BuildRequires: mozilla-xulrunner%{xulrunner_ver}-devel
|
||||||
BuildRequires: python
|
BuildRequires: python
|
||||||
BuildRequires: readline-devel
|
BuildRequires: readline-devel
|
||||||
License: MIT License (or similar)
|
|
||||||
Group: Development/Libraries/GNOME
|
|
||||||
Version: 0.3
|
|
||||||
Release: 2
|
|
||||||
Summary: JavaScript bindings based on gobject-introspection and Mozilla
|
|
||||||
Source: %{name}-%{version}.tar.bz2
|
|
||||||
Requires: libgjs-0 = %{version}
|
Requires: libgjs-0 = %{version}
|
||||||
Recommends: gir-repository
|
Recommends: gir-repository
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -56,8 +55,8 @@ Mozilla SpiderMonkey JavaScript engine.
|
|||||||
License: MIT License (or similar)
|
License: MIT License (or similar)
|
||||||
Summary: JavaScript bindings based on gobject-introspection and Mozilla
|
Summary: JavaScript bindings based on gobject-introspection and Mozilla
|
||||||
Group: Development/Libraries/GNOME
|
Group: Development/Libraries/GNOME
|
||||||
Requires: libgjs-0 = %{version}
|
|
||||||
Requires: gobject-introspection-devel
|
Requires: gobject-introspection-devel
|
||||||
|
Requires: libgjs-0 = %{version}
|
||||||
Requires: mozilla-xulrunner%{xulrunner_ver}-devel
|
Requires: mozilla-xulrunner%{xulrunner_ver}-devel
|
||||||
# Just a helper provides
|
# Just a helper provides
|
||||||
Provides: gjs-devel
|
Provides: gjs-devel
|
||||||
@ -76,7 +75,7 @@ Mozilla SpiderMonkey JavaScript engine.
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%makeinstall
|
%makeinstall
|
||||||
find %{buildroot} -type f -name "*.la" -exec %{__rm} -fv {} +
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf %{buildroot}
|
rm -rf %{buildroot}
|
||||||
|
Loading…
Reference in New Issue
Block a user