Path to this page:
./
textproc/json-glib,
JSON parser for GLib-based libraries and applications
Branch: CURRENT,
Version: 1.2.8,
Package name: json-glib-1.2.8,
Maintainer: pkgsrc-usersJSON-GLib is a library providing serialization and deserialization support for
the JavaScript Object Notation (JSON) format described by RFC 4627
JSON-GLib uses GLib native data types and the generic value container GValue for
ease of development. It also provides integration with the GObject classes for
direct serialization into, and deserialization from, JSON data streams.
Required to run:[
devel/glib2]
Required to build:[
devel/gobject-introspection] [
pkgtools/cwrappers]
Package options: introspection, nls
Master sites: (Expand)
SHA1: f340a7d4c645bb26ec1b0feccb80346094ee2f05
RMD160: c13f30676cb2ca224f1c21e4ef4f9aa77c19a0c5
Filesize: 590.172 KB
Version history: (Expand)
- (2017-11-23) Package has been reborn
- (2017-09-09) Updated to version: json-glib-1.2.8
- (2015-07-01) Updated to version: json-glib-1.0.4
- (2015-03-13) Updated to version: json-glib-1.0.2
- (2014-04-20) Updated to version: json-glib-1.0.0
- (2014-01-02) Updated to version: json-glib-0.16.2
CVS history: (Expand)
2018-01-07 14:04:44 by Roland Illig | Files touched by this commit (583) |
Log message:
Fix indentation in buildlink3.mk files.
The actual fix as been done by "pkglint -F */*/buildlink3.mk", and was
reviewed manually.
There are some .include lines that still are indented with zero spaces
although the surrounding .if is indented. This is existing practice.
|
2017-10-16 01:19:14 by Patrick Welche | Files touched by this commit (38) |
Log message:
Revert buildtool.mk additions for glib-{mkenums,genmarshal} using packages
Add TOOL_DEPENDS+=glib2-tools to glib2/buildlink3.mk
|
2017-10-14 23:17:54 by Patrick Welche | Files touched by this commit (1) |
Log message:
json-glib: requires glib-mkenums which is now in py-glib2-tools
|
2017-09-09 08:15:37 by Ryo ONODERA | Files touched by this commit (3) |  |
Log message:
Update to 1.2.8
Changelog:
* Add json_node_* functions
And some new features and bugfixes
|
2015-11-04 03:00:17 by Alistair G. Crooks | Files touched by this commit (797) |
Log message:
Add SHA512 digests for distfiles for textproc category
Problems found locating distfiles:
Package cabocha: missing distfile cabocha-0.68.tar.bz2
Package convertlit: missing distfile clit18src.zip
Package php-enchant: missing distfile php-enchant/enchant-1.1.0.tgz
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
|
2015-07-01 11:32:36 by Thomas Klausner | Files touched by this commit (5) |  |
Log message:
Update to 1.0.4:
Release JSON-GLib 1.0.4
build: Enable subdir-objects
We need to remove the path specification inside the sources listing, and
modify the enumeration type and marshallers generation rules to cope
with it (by adding the $(srcdir) when needed). This is similar to the
changes there were made to Clutter.
Added Bosnian translation
build: Enable gtkdoc-check
We can verify that the documentation is correct and up to date every
time we distcheck by turning on the gtk-doc check tool.
build: Clean up gtk-doc stanzas
We need to ensure that gtk-doc looks into both the srcdir and the
builddir in order to find all annotations.
We also don't need to have the .types file under revision control:
gtk-doc is perfectly capable of rebuilding it by itself.
docs: Add missing symbol indices
docs: Add missing annotations
configure: test(1) uses = to test for string equality
https://bugzilla.gnome.org/show_bug.cgi?id=711600
https://bugzilla.gnome.org/show_bug.cgi?id=746143
Updated Slovak translation
MSVC Builds: Rename "Install" Projects
Rename the install projects as json-glib-install, so that it would be
easier for one to integrate the project set in a grand solution that can be
used to build the entire stack, such as for Clutter.
MSVC Builds: "Install" the .pdb Files
"Install" the .pdb files for the json-glib DLL and the tools to ease
debugging people developing or using json-glib, as the .pdb files are
already generated for all builds.
MSVC 2010 Projects: Clean Up "Installation"
The empty lines in the property sheets are not really needed, so remove
them.
MSVC Builds: Speed Up Release Builds
Use the multiprocessor compilation (/MP) option, which can cut down release
build times by quite a bit. This will emit a brief warning on debug
builds, but otherwise the build will proceed as normal.
Also use the /d2Zi+ option for MSVC 2010 (and later) builds so that more
useful information can be logged to the .pdb files for the release builds.
json-gvariant: Parse json doubles that are whole numbers
The json gvariant serializer encodes whole number doubles without
a dot. The deserializer needs to be able to parse these as well.
Fix problem, and add test cases.
https://bugzilla.gnome.org/show_bug.cgi?id=724319
builder: Add missing (transfer) annotation to json_builder_add_value()
Document and annotate the fact that json_builder_add_value() takes
ownership of the JsonNode passed in to it.
https://bugzilla.gnome.org/show_bug.cgi?id=743475
reader: Maintain a stack of member names
This fixes the case where, with nested objects, we call:
json_reader_read_member (reader, "outer");
// json_reader_get_member_name (reader) == "outer"
json_reader_read_member (reader, "inner");
// json_reader_get_member_name (reader) == "inner"
// do something useful
json_reader_end_member (reader);
but at the end, the following assertion no longer holds:
// json_reader_get_member_name (reader) == "outer"
even though the JsonReader state should have been reset after ending the
inner node.
Fix it by maintaining a stack of member names. This works with both
json_reader_read_member() and json_reader_read_element(). Updates to the
unit tests are included.
https://bugzilla.gnome.org/show_bug.cgi?id=741824
Handle serialization/deserialization of glong gulong and guint64
Long and unsigned long was properly serialized but not deserialized, guint64
handling is not ideal as the type is cast into a gint64, however this is
better than not handling the fundamental type at all.
https://bugzilla.gnome.org/show_bug.cgi?id=725972
Drop unnecessary '_' prefix from json_marshal
It's not public API anyway, and we use annotations instead of the '_'
prefix.
Updated Turkish translation
Updated Swedish translation
Updated Assamese translation
Updated German translation
doap category core
Clean up the enumeration type template
Include "config.h" in the enum types template
Expands the symbol annotation correctly.
Updated Greek translation
MSVC 2010+ Projects: Update "Installation" Process
Currently, due to the way that Visual Studio 2010+ projects are handled,
the "install" project does not re-build upon changes to the \
sources, as it
does not believe that its dependencies have changed, although the changed
sources are automatically recompiled. This means that if a part or more
of the solution does not build, or if the sources need some other fixes
or enhancements, the up-to-date build is not copied automatically, which
can be misleading.
Improve on the situation by forcing the "install" project to \
trigger its
rebuild, so that the updated binaries can be copied. This does trigger an
MSBuild warning, but having that warning is way better than not having an
up-to-date build, especially during testing and development.
[l10n] Update Catalan translation
Post-release version bump to 1.0.3
|
2015-03-13 12:21:39 by Patrick Welche | Files touched by this commit (4) |  |
Log message:
Update json-glib to 1.0.2
parser: Use the right length for parsing the stream contents
json-parser: use length parameter when validating utf-8
generator: Escape Object key names correctly
generator: Escape the control characters correctly
generator: Add tests for updated string escaping routine
build: Include enum-types.[ch] in the introspection sources
translation updates
|
2014-08-09 22:07:07 by Richard PALO | Files touched by this commit (1) |  |
Log message:
avoid auto manpage generation until PLIST is updated
|