Author: fpeters Date: Sat Feb 16 11:59:23 2008 New Revision: 375 URL: http://svn.gnome.org/viewvc/library-web?rev=375&view=rev
Log: * src/lgo.py, data/extra-tarballs, data/overlay.xml.in: added GNet (and added looking for gtkdoc-scan to get gtk-doc modules) (closes: #515774) and Glom (closes: #512672), moved gio to the platform and added a description, marked GnomeVFS for deprecation, moved gdl as a desktop library and added a description (closes: #515731). Modified: trunk/ChangeLog trunk/data/extra-tarballs trunk/data/overlay.xml.in trunk/src/lgo.py Modified: trunk/data/extra-tarballs ============================================================================== --- trunk/data/extra-tarballs (original) +++ trunk/data/extra-tarballs Sat Feb 16 11:59:23 2008 @@ -8,3 +8,5 @@ gnome://libepc gnome://gmime?min=2.2 http://www.0d.be/~fred/public/jhbuild-2.21.5.tar.gz +gnome://glom?min=1.6 +gnome://gnet Modified: trunk/data/overlay.xml.in ============================================================================== --- trunk/data/overlay.xml.in (original) +++ trunk/data/overlay.xml.in Sat Feb 16 11:59:23 2008 @@ -110,6 +110,14 @@ GObject provides the object system used for Pango and GTK+. </_abstract> </document> + <document doc_module="gio" channel="devel" weight="0.94"> + <subsection>api-platform</subsection> + <_abstract> + GIO provides a modern and easy-to-use VFS API. It provides a file + system abstraction which allows applications to access local and + remote files with a single consistent API. + </_abstract> + </document> <document doc_module="atk" channel="devel" weight="0.93"> <subsection>api-platform</subsection> <_abstract> @@ -219,7 +227,7 @@ <keyword>upcoming-deprecation</keyword> </keywords> </document> - <document doc_module="gnome-vfs-2.0" channel="devel" weight="0.81"> + <document doc_module="gnome-vfs-2.0" channel="devel" weight="0.15"> <subsection>api-platform</subsection> <_abstract> GnomeVFS is the core library used to access files and folders in GNOME @@ -227,6 +235,9 @@ applications to access local and remote files with a single consistent API. </_abstract> + <keywords> + <keyword>upcoming-deprecation</keyword> + </keywords> </document> <document doc_module="gconf" channel="devel" weight="0.80"> <subsection>api-platform</subsection> @@ -337,6 +348,14 @@ </_abstract> </document> + <document doc_module="gdl" channel="devel"> + <subsection>api-desktop</subsection> + <_abstract> + The GNOME Devtools Library package provides components useful to GNOME + development tools, such as a symbol browser and a docking widget. + </_abstract> + </document> + <document channel="devel" category="api"> <subsection>api-desktop</subsection> <_title>GStreamer Reference Manual</_title> @@ -580,10 +599,6 @@ <subsection>api-others</subsection> </document> - <document doc_module="gio" channel="devel" category="api"> - <subsection>api-others</subsection> - </document> - <document doc_module="gvfs" channel="devel" category="api"> <subsection>api-others</subsection> </document> @@ -597,6 +612,14 @@ </_abstract> </document> + <document doc_module="gnet" channel="devel" category="api"> + <subsection>api-others</subsection> + <_abstract> + GNet is a network library, written in C, object-oriented, and + built upon GLib. + </_abstract> + </document> + <document doc_module="gmime" channel="devel" category="api"> <subsection>api-others</subsection> <_abstract> Modified: trunk/src/lgo.py ============================================================================== --- trunk/src/lgo.py (original) +++ trunk/src/lgo.py Sat Feb 16 11:59:23 2008 @@ -1614,7 +1614,8 @@ 'include $(top_srcdir)/gnome-doc-utils.make' in makefile_am: logging.debug('found usage of gnome-doc-utils in %s' % tarinfo.name) doc = GnomeDocUtilsModule(tar, tarinfo, makefile_am) - elif 'include $(top_srcdir)/gtk-doc.make' in makefile_am: + elif 'include $(top_srcdir)/gtk-doc.make' in makefile_am or \ + 'gtkdoc-scan' in makefile_am: logging.debug('found usage of gtk-doc in %s' % tarinfo.name) doc = GtkDocModule(tar, tarinfo, makefile_am) elif 'SUBDIRS = C' in makefile_am and \ _______________________________________________ SVN-commits-list mailing list (read only) http://mail.gnome.org/mailman/listinfo/svn-commits-list Want to limit the commits to a few modules? Go to above URL, log in to edit your options and select the modules ('topics') you want. Module maintainer? It is possible to set the reply-to to your development mailing list. Email [EMAIL PROTECTED] if interested.