| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: libseed0 | Distribution: openSUSE 11.2 |
| Version: 2.28.1 | Vendor: openSUSE |
| Release: 0.1.1 | Build date: Thu Jan 21 19:55:44 2010 |
| Group: Development/Libraries/GNOME | Build host: build20 |
| Size: 1341465 | Source RPM: seed-2.28.1-0.1.1.src.rpm |
| Packager: http://bugs.opensuse.org | |
| Summary: JavaScript bindings based on gobject-introspection and WebKit | |
Seed is a library and interpreter, dynamically bridging (through gobject-introspection) the WebKit JavaScriptCore engine with the GObject type system. In a more concrete sense, Seed enables you to immediately write applications around a significant portion of the GNOME platform, and easily embed JavaScript as a scripting language in your GObject library.
LGPLv3+
* Fri Dec 11 2009 dimstar@opensuse.org
- Update to version 2.28.1:
+ Version bump to stay in sync.
* Mon Oct 05 2009 dimstar@opensuse.org
- Add seed-find_extensions_in_libdir.patch - libseed uses wrong
path to load extensions. This solves partially bnc#540240.
* Thu Oct 01 2009 dimstar@opensuse.org
- Rename libseed-0 to libseed0 to follow SHLib policy.
- Add matching Provides/Obsoletes to libseed0 package.
* Mon Sep 21 2009 dimstar@opensuse.org
- Update to version 2.28.0:
+ First official stable release.
* Tue Sep 08 2009 dimstar@opensuse.org
- Update to version 2.27.92:
+ bgo#592936 - Implement instanceof for GObject constructors and
named GObject constructors
+ bgo#584321 - Implement G_TYPE_STRV in
seed_gvalue_from_seed_value
+ Add seed_engine_destroy
+ Build as loadable modules, instead of fully-versioned libraries
* Sat Aug 22 2009 dimstar@opensuse.org
- Update to version 2.27.91:
+ Use LDFLAGS instead of CFLAGS when appropriate
+ Use AM_SILENT_RULES instead of shave.
+ Add seed_context_create, which just wraps JSGarbageCollect
* Thu Aug 13 2009 vuntz@novell.com
- Remove GPLv3 file: the seed application was relicensed to LGPLv3.
- Remove Requires on libseed-0: it should be automatic.
* Wed Aug 12 2009 captain.magnus@opensuse.org
- Update to version 2.27.90:
+ Expanded and updated documentation
+ All JavaScript contexts now have a __script_path__ property,
which exposes the absolute, canonical path to the evaluated
script
+ Add __init__.js functionality; if an imported folder contains
__init__.js, it will be evaluated with the imported context as
the 'this' object
+ Fix bug which caused inheritance from a GType created in Seed
to fail
+ Add "pretty" property installation
+ New FFI module, provides an interface for calling
non-introspected native C functions from JavaScript
* Wed Aug 05 2009 vuntz@novell.com
- Fix licenses of the various subpackages, and add a GPLv3 file for
the seed package since it's missing upstream (bnc#528274,
bgo#590810).
* Thu Jul 30 2009 vuntz@novell.com
- Update to version 0.8.5:
+ Significant reorganization and expansion of the reference
documentation
+ New native modules:
- gettext
- MPFR (partially complete)
+ Same Seed has moved to the gsoc-seed-games branch of Gnome
Games (and will eventually move to master)
+ Add seed-module.h, which includes a handful of macros to make
writing modules slightly more attractive. Look at gettext or
the reference docs for examples.
+ Prefix native modules with seed_ (libseed_readline.so, etc.);
this fixes the need to incessantly 'make clean' seed and cuts
down on ambiguity in naming.
+ Add 'seed_value_is_string', 'seed_value_is_number', and
'seed_value_is_object_of_class' to libseed
+ Update examples to latest (now frozen) Clutter API changes.
+ Fixes a bug with the importer search path which resulted in the
search path being overwritten each time something was imported
+ The importer now also searches the directory in which the
script being executed is located by default.
- Changes from version 0.8:
+ Importer now supports constructing directory objects, to avoid
manipulation of search path. Importer directory objects now
support property enumeration.
+ Fix small leak in GObject wrapper initialization. (and also
simplify the process).
+ GtkBuilder module to handle GtkBuilder automatic signal
connection.
+ *_init methods now take normal arrays (by value) in addition to
the special Seed.argv array.
+ GObject constructors (init methods) now take "self" as a
parameter.
+ Passing non gobject-properties to a GObject constructor will
set the properties on the GObject wrapper.
+ Module documentation rewritten in docbook, and builds one nice
manual.
+ New Cairo module, supports most of the cairo API, with
automatic memory management and everything you would expect.
+ Fix a reference count leak introduced in the last few releases.
in some cases with non INITIALLY_UNOWNED objects.
+ Some work on ClutterPad examples, and writing examples which
live inside of it (lots of fun to play with!, cairo
example...fun spring example...ClutterBox2D)
+ Working around a WebKit bug (which is actually fixed in SVN
now), should prevent a crash that happened sometimes with C
modules.
+ Clutter animatev wrapper looks up property type wrapper now, so
as to avoid having to pass [GObject.TYPE_FOO, bar]
+ Implement some varargs functions which can be implemented on
top of non-vararg variants in JavaScript extensions.
+ JSON stuff (stringify,parse) is now in gnome-js-common.
+ Add seed_value_to_format to API, for converting an Array of
SeedValue based on a format string.
+ Install seed-debug.h so modules can make use of it.
+ Search path now works in nonstandard prefix, default search
path includes gnome-js-common moduledir (from pkgconfig).
+ Support to/from Date objects to time_t.
- Add gnome-js-common and mpfr-devel BuildRequires.
- Add Recommends gnome-js-common to libseed-0.
* Thu May 14 2009 vuntz@novell.com
- Update to version 0.7:
+ Support for library init methods.
+ The REPL now supports multi-line entry.
+ Signal disconnection.
+ Significant Gtk-Doc reorganization.
+ New C modules:
- sandbox - provides sandboxed JavaScriptCore contexts.
- DBus - Client side DBus bindings.
- libxml - XML parsing, XPath, etc.
+ Examples:
- New: ClutterPad (initially by Johan Euphrosine).
- New: dbus-banshee, dbus-consolekit, dbus-networkmanager
- New: xml-dom.js xml-tree.js, xml-xpath.js.
- Pango examples have returned.
- Same Seed performance is increased significantly.
- Many examples now use "recent" style; some were completely
rewritten
+ Improvements to test system, and quite a few more tests.
+ Improvements to error checking/handling in signal code.
+ Reorganization of API related to GClosure handling, much
cleaner and easier now.
+ Several new API methods.
+ GC related crash fixes.
+ Improvements to seed_value_to_string (mostly formatting
improvements).
+ Void methods now properly return undefined instead of null.
+ seed_make_exception takes format strings now.
- Add BuildRequires: dbus-1-glib-devel, libxml2-devel.
- Drop seed-return-value.patch: fixed upstream.
* Sat May 02 2009 vuntz@novell.com
- Fix build on x86_64: the seed modules are installed in /usr/lib
on 64-bits machines too.
* Fri May 01 2009 vuntz@novell.com
- Initial package.
/usr/lib/libseed.so.0 /usr/lib/libseed.so.0.0.0 /usr/lib/seed /usr/lib/seed/libseed_cairo.so /usr/lib/seed/libseed_canvas.so /usr/lib/seed/libseed_dbusnative.so /usr/lib/seed/libseed_example.so /usr/lib/seed/libseed_ffi.so /usr/lib/seed/libseed_gettext.so /usr/lib/seed/libseed_gtkbuilder.so /usr/lib/seed/libseed_libxml.so /usr/lib/seed/libseed_mpfr.so /usr/lib/seed/libseed_multiprocessing.so /usr/lib/seed/libseed_os.so /usr/lib/seed/libseed_readline.so /usr/lib/seed/libseed_sandbox.so /usr/lib/seed/libseed_sqlite.so /usr/share/doc/packages/libseed0 /usr/share/doc/packages/libseed0/AUTHORS /usr/share/doc/packages/libseed0/COPYING /usr/share/doc/packages/libseed0/ChangeLog /usr/share/doc/packages/libseed0/README /usr/share/seed /usr/share/seed/dbus.js /usr/share/seed/extensions /usr/share/seed/extensions/Clutter.js /usr/share/seed/extensions/GObject.js /usr/share/seed/extensions/Gio.js /usr/share/seed/extensions/Gst.js /usr/share/seed/extensions/Gtk.js /usr/share/seed/extensions/Seed.js /usr/share/seed/extensions/xml.js /usr/share/seed/lang.js /usr/share/seed/repl.js
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon May 20 05:47:33 2013