gobject-introspection 2.0.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (268) hide show
  1. data/Rakefile +118 -0
  2. data/ext/gobject-introspection/depend +10 -0
  3. data/ext/gobject-introspection/extconf.rb +97 -0
  4. data/ext/gobject-introspection/gobject_introspection.def +5 -0
  5. data/ext/gobject-introspection/rb-gi-arg-info.c +151 -0
  6. data/ext/gobject-introspection/rb-gi-argument.c +1015 -0
  7. data/ext/gobject-introspection/rb-gi-base-info.c +218 -0
  8. data/ext/gobject-introspection/rb-gi-boxed-info.c +48 -0
  9. data/ext/gobject-introspection/rb-gi-callable-info.c +104 -0
  10. data/ext/gobject-introspection/rb-gi-callback-info.c +48 -0
  11. data/ext/gobject-introspection/rb-gi-constant-info.c +77 -0
  12. data/ext/gobject-introspection/rb-gi-constructor-info.c +120 -0
  13. data/ext/gobject-introspection/rb-gi-conversions.h +116 -0
  14. data/ext/gobject-introspection/rb-gi-enum-info.c +145 -0
  15. data/ext/gobject-introspection/rb-gi-field-info.c +153 -0
  16. data/ext/gobject-introspection/rb-gi-flags-info.c +48 -0
  17. data/ext/gobject-introspection/rb-gi-function-info.c +658 -0
  18. data/ext/gobject-introspection/rb-gi-interface-info.c +222 -0
  19. data/ext/gobject-introspection/rb-gi-loader.c +162 -0
  20. data/ext/gobject-introspection/rb-gi-method-info.c +109 -0
  21. data/ext/gobject-introspection/rb-gi-object-info.c +345 -0
  22. data/ext/gobject-introspection/rb-gi-private.h +110 -0
  23. data/ext/gobject-introspection/rb-gi-property-info.c +77 -0
  24. data/ext/gobject-introspection/rb-gi-registered-type-info.c +86 -0
  25. data/ext/gobject-introspection/rb-gi-repository.c +164 -0
  26. data/ext/gobject-introspection/rb-gi-signal-info.c +77 -0
  27. data/ext/gobject-introspection/rb-gi-struct-info.c +190 -0
  28. data/ext/gobject-introspection/rb-gi-type-info.c +143 -0
  29. data/ext/gobject-introspection/rb-gi-type-tag.c +43 -0
  30. data/ext/gobject-introspection/rb-gi-types.h +71 -0
  31. data/ext/gobject-introspection/rb-gi-union-info.c +206 -0
  32. data/ext/gobject-introspection/rb-gi-unresolved-info.c +48 -0
  33. data/ext/gobject-introspection/rb-gi-value-info.c +57 -0
  34. data/ext/gobject-introspection/rb-gi-vfunc-info.c +91 -0
  35. data/ext/gobject-introspection/rb-gobject-introspection.c +44 -0
  36. data/ext/gobject-introspection/rb-gobject-introspection.h +57 -0
  37. data/extconf.rb +71 -0
  38. data/lib/1.9/gobject_introspection.so +0 -0
  39. data/lib/2.0/gobject_introspection.so +0 -0
  40. data/lib/gobject-introspection.rb +52 -0
  41. data/lib/gobject-introspection/callable-info.rb +91 -0
  42. data/lib/gobject-introspection/collection-reader.rb +34 -0
  43. data/lib/gobject-introspection/interface-info.rb +32 -0
  44. data/lib/gobject-introspection/loader.rb +328 -0
  45. data/lib/gobject-introspection/object-info.rb +33 -0
  46. data/lib/gobject-introspection/repository.rb +32 -0
  47. data/lib/gobject-introspection/struct-info.rb +28 -0
  48. data/lib/gobject-introspection/union-info.rb +28 -0
  49. data/test/gobject-introspection-test-utils.rb +26 -0
  50. data/test/run-test.rb +45 -0
  51. data/test/test-arg-info.rb +68 -0
  52. data/test/test-base-info.rb +31 -0
  53. data/test/test-boxed-info.rb +21 -0
  54. data/test/test-callable-info.rb +49 -0
  55. data/test/test-callback-info.rb +29 -0
  56. data/test/test-constant-info.rb +24 -0
  57. data/test/test-enum-info.rb +56 -0
  58. data/test/test-field-type.rb +42 -0
  59. data/test/test-flags-info.rb +27 -0
  60. data/test/test-function-info.rb +37 -0
  61. data/test/test-interface-info.rb +97 -0
  62. data/test/test-loader.rb +30 -0
  63. data/test/test-object-info.rb +131 -0
  64. data/test/test-property-info.rb +38 -0
  65. data/test/test-registered-type-info.rb +35 -0
  66. data/test/test-repository.rb +59 -0
  67. data/test/test-signal-info.rb +37 -0
  68. data/test/test-struct-info.rb +57 -0
  69. data/test/test-type-info.rb +62 -0
  70. data/test/test-type-tag.rb +29 -0
  71. data/test/test-union-info.rb +21 -0
  72. data/test/test-value-info.rb +28 -0
  73. data/test/test-vfunc-info.rb +42 -0
  74. data/vendor/local/bin/g-ir-compiler.exe +0 -0
  75. data/vendor/local/bin/g-ir-generate.exe +0 -0
  76. data/vendor/local/bin/libgirepository-1.0-1.dll +0 -0
  77. data/vendor/local/include/gobject-introspection-1.0/giarginfo.h +52 -0
  78. data/vendor/local/include/gobject-introspection-1.0/gibaseinfo.h +89 -0
  79. data/vendor/local/include/gobject-introspection-1.0/gicallableinfo.h +74 -0
  80. data/vendor/local/include/gobject-introspection-1.0/giconstantinfo.h +46 -0
  81. data/vendor/local/include/gobject-introspection-1.0/gienuminfo.h +56 -0
  82. data/vendor/local/include/gobject-introspection-1.0/gifieldinfo.h +52 -0
  83. data/vendor/local/include/gobject-introspection-1.0/gifunctioninfo.h +77 -0
  84. data/vendor/local/include/gobject-introspection-1.0/giinterfaceinfo.h +68 -0
  85. data/vendor/local/include/gobject-introspection-1.0/giobjectinfo.h +137 -0
  86. data/vendor/local/include/gobject-introspection-1.0/gipropertyinfo.h +44 -0
  87. data/vendor/local/include/gobject-introspection-1.0/giregisteredtypeinfo.h +53 -0
  88. data/vendor/local/include/gobject-introspection-1.0/girepository.h +179 -0
  89. data/vendor/local/include/gobject-introspection-1.0/girffi.h +80 -0
  90. data/vendor/local/include/gobject-introspection-1.0/gisignalinfo.h +45 -0
  91. data/vendor/local/include/gobject-introspection-1.0/gistructinfo.h +53 -0
  92. data/vendor/local/include/gobject-introspection-1.0/gitypeinfo.h +56 -0
  93. data/vendor/local/include/gobject-introspection-1.0/gitypelib.h +55 -0
  94. data/vendor/local/include/gobject-introspection-1.0/gitypes.h +453 -0
  95. data/vendor/local/include/gobject-introspection-1.0/giunioninfo.h +57 -0
  96. data/vendor/local/include/gobject-introspection-1.0/givfuncinfo.h +56 -0
  97. data/vendor/local/lib/girepository-1.0/DBus-1.0.typelib +0 -0
  98. data/vendor/local/lib/girepository-1.0/DBusGLib-1.0.typelib +0 -0
  99. data/vendor/local/lib/girepository-1.0/GIRepository-2.0.typelib +0 -0
  100. data/vendor/local/lib/girepository-1.0/GL-1.0.typelib +0 -0
  101. data/vendor/local/lib/girepository-1.0/GLib-2.0.typelib +0 -0
  102. data/vendor/local/lib/girepository-1.0/GModule-2.0.typelib +0 -0
  103. data/vendor/local/lib/girepository-1.0/GObject-2.0.typelib +0 -0
  104. data/vendor/local/lib/girepository-1.0/Gio-2.0.typelib +0 -0
  105. data/vendor/local/lib/girepository-1.0/cairo-1.0.typelib +0 -0
  106. data/vendor/local/lib/girepository-1.0/fontconfig-2.0.typelib +0 -0
  107. data/vendor/local/lib/girepository-1.0/freetype2-2.0.typelib +0 -0
  108. data/vendor/local/lib/girepository-1.0/libxml2-2.0.typelib +0 -0
  109. data/vendor/local/lib/girepository-1.0/xfixes-4.0.typelib +0 -0
  110. data/vendor/local/lib/girepository-1.0/xft-2.0.typelib +0 -0
  111. data/vendor/local/lib/girepository-1.0/xlib-2.0.typelib +0 -0
  112. data/vendor/local/lib/girepository-1.0/xrandr-1.3.typelib +0 -0
  113. data/vendor/local/lib/gobject-introspection/giscanner/__init__.py +24 -0
  114. data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyc +0 -0
  115. data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyo +0 -0
  116. data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.py +74 -0
  117. data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyc +0 -0
  118. data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyo +0 -0
  119. data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.py +1204 -0
  120. data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyc +0 -0
  121. data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyo +0 -0
  122. data/vendor/local/lib/gobject-introspection/giscanner/ast.py +1100 -0
  123. data/vendor/local/lib/gobject-introspection/giscanner/ast.pyc +0 -0
  124. data/vendor/local/lib/gobject-introspection/giscanner/ast.pyo +0 -0
  125. data/vendor/local/lib/gobject-introspection/giscanner/cachestore.py +196 -0
  126. data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyc +0 -0
  127. data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyo +0 -0
  128. data/vendor/local/lib/gobject-introspection/giscanner/codegen.py +140 -0
  129. data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyc +0 -0
  130. data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyo +0 -0
  131. data/vendor/local/lib/gobject-introspection/giscanner/docmain.py +60 -0
  132. data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyc +0 -0
  133. data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyo +0 -0
  134. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/class.tmpl +2 -0
  135. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/constructor.tmpl +1 -0
  136. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/default.tmpl +1 -0
  137. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/enum.tmpl +2 -0
  138. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl +61 -0
  139. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/method.tmpl +1 -0
  140. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/namespace.tmpl +1 -0
  141. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/property.tmpl +5 -0
  142. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/record.tmpl +1 -0
  143. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/signal.tmpl +5 -0
  144. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/vfunc.tmpl +4 -0
  145. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/class.tmpl +18 -0
  146. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/constructor.tmpl +1 -0
  147. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/default.tmpl +1 -0
  148. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/enum.tmpl +13 -0
  149. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/function.tmpl +48 -0
  150. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/method.tmpl +1 -0
  151. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/namespace.tmpl +2 -0
  152. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/property.tmpl +10 -0
  153. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/record.tmpl +2 -0
  154. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/signal.tmpl +37 -0
  155. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/vfunc.tmpl +27 -0
  156. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/class.tmpl +17 -0
  157. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/constructor.tmpl +1 -0
  158. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/default.tmpl +1 -0
  159. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/enum.tmpl +13 -0
  160. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/function.tmpl +53 -0
  161. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/method.tmpl +1 -0
  162. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/namespace.tmpl +2 -0
  163. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/property.tmpl +10 -0
  164. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/record.tmpl +2 -0
  165. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/signal.tmpl +42 -0
  166. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/vfunc.tmpl +33 -0
  167. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/base.tmpl +29 -0
  168. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/class.tmpl +40 -0
  169. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/namespace.tmpl +19 -0
  170. data/vendor/local/lib/gobject-introspection/giscanner/docwriter.py +635 -0
  171. data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyc +0 -0
  172. data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyo +0 -0
  173. data/vendor/local/lib/gobject-introspection/giscanner/dumper.py +363 -0
  174. data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyc +0 -0
  175. data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyo +0 -0
  176. data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.py +551 -0
  177. data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyc +0 -0
  178. data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyo +0 -0
  179. data/vendor/local/lib/gobject-introspection/giscanner/girparser.py +581 -0
  180. data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyc +0 -0
  181. data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyo +0 -0
  182. data/vendor/local/lib/gobject-introspection/giscanner/girwriter.py +584 -0
  183. data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyc +0 -0
  184. data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyo +0 -0
  185. data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.py +236 -0
  186. data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyc +0 -0
  187. data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyo +0 -0
  188. data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.py +76 -0
  189. data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyc +0 -0
  190. data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyo +0 -0
  191. data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.py +1337 -0
  192. data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyc +0 -0
  193. data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyo +0 -0
  194. data/vendor/local/lib/gobject-introspection/giscanner/message.py +185 -0
  195. data/vendor/local/lib/gobject-introspection/giscanner/message.pyc +0 -0
  196. data/vendor/local/lib/gobject-introspection/giscanner/message.pyo +0 -0
  197. data/vendor/local/lib/gobject-introspection/giscanner/odict.py +50 -0
  198. data/vendor/local/lib/gobject-introspection/giscanner/odict.pyc +0 -0
  199. data/vendor/local/lib/gobject-introspection/giscanner/odict.pyo +0 -0
  200. data/vendor/local/lib/gobject-introspection/giscanner/scannermain.py +497 -0
  201. data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyc +0 -0
  202. data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyo +0 -0
  203. data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.py +78 -0
  204. data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyc +0 -0
  205. data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyo +0 -0
  206. data/vendor/local/lib/gobject-introspection/giscanner/shlibs.py +132 -0
  207. data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyc +0 -0
  208. data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyo +0 -0
  209. data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.py +324 -0
  210. data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyc +0 -0
  211. data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyo +0 -0
  212. data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.py +119 -0
  213. data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyc +0 -0
  214. data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyo +0 -0
  215. data/vendor/local/lib/gobject-introspection/giscanner/transformer.py +999 -0
  216. data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyc +0 -0
  217. data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyo +0 -0
  218. data/vendor/local/lib/gobject-introspection/giscanner/utils.py +141 -0
  219. data/vendor/local/lib/gobject-introspection/giscanner/utils.pyc +0 -0
  220. data/vendor/local/lib/gobject-introspection/giscanner/utils.pyo +0 -0
  221. data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.py +197 -0
  222. data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyc +0 -0
  223. data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyo +0 -0
  224. data/vendor/local/lib/libgirepository-1.0.a +0 -0
  225. data/vendor/local/lib/libgirepository-1.0.dll.a +0 -0
  226. data/vendor/local/lib/libgirepository-1.0.la +41 -0
  227. data/vendor/local/lib/pkgconfig/gobject-introspection-1.0.pc +26 -0
  228. data/vendor/local/lib/pkgconfig/gobject-introspection-no-export-1.0.pc +23 -0
  229. data/vendor/local/share/aclocal/introspection.m4 +96 -0
  230. data/vendor/local/share/gir-1.0/DBus-1.0.gir +32 -0
  231. data/vendor/local/share/gir-1.0/DBusGLib-1.0.gir +18 -0
  232. data/vendor/local/share/gir-1.0/GIRepository-2.0.gir +3833 -0
  233. data/vendor/local/share/gir-1.0/GL-1.0.gir +31 -0
  234. data/vendor/local/share/gir-1.0/GLib-2.0.gir +44304 -0
  235. data/vendor/local/share/gir-1.0/GModule-2.0.gir +184 -0
  236. data/vendor/local/share/gir-1.0/GObject-2.0.gir +13947 -0
  237. data/vendor/local/share/gir-1.0/Gio-2.0.gir +73619 -0
  238. data/vendor/local/share/gir-1.0/cairo-1.0.gir +70 -0
  239. data/vendor/local/share/gir-1.0/fontconfig-2.0.gir +18 -0
  240. data/vendor/local/share/gir-1.0/freetype2-2.0.gir +22 -0
  241. data/vendor/local/share/gir-1.0/libxml2-2.0.gir +25 -0
  242. data/vendor/local/share/gir-1.0/xfixes-4.0.gir +10 -0
  243. data/vendor/local/share/gir-1.0/xft-2.0.gir +23 -0
  244. data/vendor/local/share/gir-1.0/xlib-2.0.gir +67 -0
  245. data/vendor/local/share/gir-1.0/xrandr-1.3.gir +16 -0
  246. data/vendor/local/share/gobject-introspection-1.0/Makefile.introspection +166 -0
  247. data/vendor/local/share/gobject-introspection-1.0/gdump.c +564 -0
  248. data/vendor/local/share/gobject-introspection-1.0/tests/annotation.c +835 -0
  249. data/vendor/local/share/gobject-introspection-1.0/tests/annotation.h +198 -0
  250. data/vendor/local/share/gobject-introspection-1.0/tests/drawable.c +55 -0
  251. data/vendor/local/share/gobject-introspection-1.0/tests/drawable.h +33 -0
  252. data/vendor/local/share/gobject-introspection-1.0/tests/everything.c +1473 -0
  253. data/vendor/local/share/gobject-introspection-1.0/tests/everything.h +428 -0
  254. data/vendor/local/share/gobject-introspection-1.0/tests/foo.c +790 -0
  255. data/vendor/local/share/gobject-introspection-1.0/tests/foo.h +437 -0
  256. data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.c +5256 -0
  257. data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.h +1158 -0
  258. data/vendor/local/share/gobject-introspection-1.0/tests/regress.c +4009 -0
  259. data/vendor/local/share/gobject-introspection-1.0/tests/regress.h +944 -0
  260. data/vendor/local/share/gobject-introspection-1.0/tests/utility.c +45 -0
  261. data/vendor/local/share/gobject-introspection-1.0/tests/utility.h +95 -0
  262. data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.c +33 -0
  263. data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.h +36 -0
  264. data/vendor/local/share/license/gobject-introspection/AUTHORS +9 -0
  265. data/vendor/local/share/license/gobject-introspection/COPYING +12 -0
  266. data/vendor/local/share/man/man1/g-ir-compiler.1 +51 -0
  267. data/vendor/local/share/man/man1/g-ir-generate.1 +29 -0
  268. metadata +343 -0
@@ -0,0 +1,45 @@
1
+ /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2
+ #include "utility.h"
3
+
4
+ G_DEFINE_TYPE (UtilityObject, utility_object, G_TYPE_OBJECT);
5
+
6
+ /**
7
+ * UtilityBuffer:
8
+ * @data: (type gpointer): the data
9
+ *
10
+ **/
11
+
12
+ static void
13
+ utility_object_class_init (UtilityObjectClass *klass)
14
+ {
15
+
16
+ }
17
+
18
+ static void
19
+ utility_object_init (UtilityObject *object)
20
+ {
21
+
22
+ }
23
+
24
+ void
25
+ utility_object_watch_dir (UtilityObject *object,
26
+ const char *path,
27
+ UtilityFileFunc func,
28
+ gpointer user_data,
29
+ GDestroyNotify destroy)
30
+ {
31
+
32
+ }
33
+
34
+ /**
35
+ * utility_dir_foreach:
36
+ * @path::
37
+ * @func: (scope call):
38
+ * @user_data::
39
+ *
40
+ */
41
+ void
42
+ utility_dir_foreach (const char *path, UtilityFileFunc func, gpointer user_data)
43
+ {
44
+
45
+ }
@@ -0,0 +1,95 @@
1
+ #ifndef __UTILITY_H__
2
+ #define __UTILITY_H__
3
+
4
+ #include <glib-object.h>
5
+
6
+ #define UTILITY_TYPE_OBJECT (utility_object_get_type ())
7
+ #define UTILITY_OBJECT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), UTILITY_TYPE_OBJECT, UtilityObject))
8
+ #define UTILITY_IS_OBJECT(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), UTILITY_TYPE_OBJECT))
9
+
10
+ typedef struct _UtilityObject UtilityObject;
11
+ typedef struct _UtilityObjectClass UtilityObjectClass;
12
+
13
+ struct _UtilityObject
14
+ {
15
+ GObject parent_instance;
16
+ };
17
+
18
+ struct _UtilityObjectClass
19
+ {
20
+ GObjectClass parent_class;
21
+ };
22
+
23
+ /* This one is similar to Pango.Glyph */
24
+ typedef guint32 UtilityGlyph;
25
+
26
+ typedef struct
27
+ {
28
+ int tag;
29
+ union
30
+ {
31
+ gpointer v_pointer;
32
+ double v_real;
33
+ long v_integer;
34
+ } value;
35
+ } UtilityTaggedValue;
36
+
37
+ typedef union
38
+ {
39
+ guint8 value;
40
+ struct
41
+ {
42
+ guint8 first_nibble : 4;
43
+ guint8 second_nibble : 4;
44
+ } parts;
45
+ } UtilityByte;
46
+
47
+ /* This one is similiar to Soup.Buffer */
48
+ typedef struct
49
+ {
50
+ const char *data;
51
+ gsize length;
52
+ } UtilityBuffer;
53
+
54
+ typedef void (*UtilityFileFunc)(const char *path, gpointer user_data);
55
+
56
+ GType utility_object_get_type (void) G_GNUC_CONST;
57
+ void utility_object_watch_dir (UtilityObject *object,
58
+ const char *path,
59
+ UtilityFileFunc func,
60
+ gpointer user_data,
61
+ GDestroyNotify destroy);
62
+
63
+ typedef enum
64
+ {
65
+ UTILITY_ENUM_A,
66
+ UTILITY_ENUM_B,
67
+ UTILITY_ENUM_C
68
+ } UtilityEnumType;
69
+
70
+ /* The shift operators here should imply bitfield */
71
+ typedef enum
72
+ {
73
+ UTILITY_FLAG_A = 1 << 0,
74
+ UTILITY_FLAG_B = 1 << 1,
75
+ UTILITY_FLAG_C = 1 << 2
76
+ } UtilityFlagType;
77
+
78
+ typedef struct
79
+ {
80
+ int field;
81
+ guint bitfield1 : 3;
82
+ guint bitfield2 : 2;
83
+ guint8 data[16];
84
+ } UtilityStruct;
85
+
86
+ typedef union
87
+ {
88
+ char *pointer;
89
+ glong integer;
90
+ double real;
91
+ } UtilityUnion;
92
+
93
+ void utility_dir_foreach (const char *path, UtilityFileFunc func, gpointer user_data);
94
+
95
+ #endif /* __UTILITY_H__ */
@@ -0,0 +1,33 @@
1
+ /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2
+
3
+ #include "config.h"
4
+
5
+ #include "warnlib.h"
6
+
7
+ GQuark
8
+ warnlib_unpaired_error_quark (void)
9
+ {
10
+ return g_quark_from_static_string ("warnlib-unpaired-error");
11
+ }
12
+
13
+ gboolean
14
+ warnlib_throw_unpaired (GError **error)
15
+ {
16
+ g_set_error_literal (error, warnlib_unpaired_error_quark (), 0,
17
+ "Unpaired error");
18
+ return FALSE;
19
+ }
20
+
21
+ typedef WarnLibWhateverIface WarnLibWhateverInterface;
22
+ G_DEFINE_INTERFACE (WarnLibWhatever, warnlib_whatever, G_TYPE_OBJECT)
23
+
24
+ static void
25
+ warnlib_whatever_default_init(WarnLibWhateverIface *iface)
26
+ {
27
+ }
28
+
29
+ void
30
+ warnlib_whatever_do_moo (WarnLibWhatever *self, int x, gpointer y)
31
+ {
32
+ WARNLIB_WHATEVER_GET_IFACE(self)->do_moo (self, x, y);
33
+ }
@@ -0,0 +1,36 @@
1
+ /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2
+
3
+ #ifndef __WARNLIB_H__
4
+ #define __WARNLIB_H__
5
+
6
+ #include <gio/gio.h>
7
+
8
+ #define WARNLIB_UNPAIRED_ERROR (warnlib_unpaired_error_quark ())
9
+ GQuark warnlib_unpaired_error_quark (void);
10
+
11
+ gboolean warnlib_throw_unpaired (GError **error);
12
+
13
+ /* interface */
14
+ #define WARNLIB_TYPE_WHATEVER (warnlib_whatever_get_type ())
15
+ #define WARNLIB_WHATEVER(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), WARNLIB_TYPE_WHATEVER, WarnLibWhatever))
16
+ #define WARNLIB_IS_WHATEVER(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), WARNLIB_TYPE_WHATEVER))
17
+ #define WARNLIB_WHATEVER_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), WARNLIB_TYPE_WHATEVER, WarnLibWhateverIface))
18
+
19
+ typedef struct _WarnLibWhateverIface WarnLibWhateverIface;
20
+ typedef struct _WarnLibWhatever WarnLibWhatever;
21
+
22
+ struct _WarnLibWhateverIface
23
+ {
24
+ GTypeInterface parent_iface;
25
+
26
+ /* virtual table */
27
+
28
+ /* explicitly test un-named parameters */
29
+ void (*do_moo) (WarnLibWhatever *self, int, gpointer);
30
+ };
31
+
32
+ void warnlib_whatever_do_moo (WarnLibWhatever *self, int, gpointer);
33
+
34
+ GType warnlib_whatever_get_type (void) G_GNUC_CONST;
35
+
36
+ #endif
@@ -0,0 +1,9 @@
1
+ Colin Walters <walters@verbum.org>
2
+ Johan Dahlin <johan@gnome.org>
3
+
4
+ Original girepository author:
5
+ Matthias Clasen <mclasen@redhat.com>
6
+
7
+ Original scanner author:
8
+ Jürg Billeter <j@bitron.ch>
9
+
@@ -0,0 +1,12 @@
1
+ gobject-introspection has two licenses; one for the typelib library,
2
+ and one for the tools.
3
+
4
+ The scanner (giscanner/) and typelib libraries (girepository/) are
5
+ licensed under the LGPLv2+. See the file COPYING.LGPL.
6
+
7
+ The tools (tools/) are licensed under the GPLv2+. See the file COPYING.GPL.
8
+
9
+ There is also some MIT code in giscanner/. In general where
10
+ applicable files should have headers denoting their license status; if
11
+ they do not, please file a bug at http://bugzilla.gnome.org.
12
+
@@ -0,0 +1,51 @@
1
+ .TH "g-ir-compiler" 1
2
+ .SH NAME
3
+ g-ir-compiler \- typelib compiler.
4
+ .SH SYNOPSIS
5
+ .B g-ir-compiler
6
+ [OPTION...] GIRFILE
7
+ .SH DESCRIPTION
8
+ g-ir-compiler converts one or more GIR files into one or more typelib.
9
+ It can either emit the raw typelib blob (default behavior) or C code
10
+ (--code). The output will be written to standard output unless the --output
11
+ is specified.
12
+ .SH OPTIONS
13
+ .TP
14
+ .B \---help
15
+ Show help options
16
+ .TP
17
+ .B \, ---code
18
+ Emit C code which is suitable for including in a shared library instead
19
+ of a raw typelib.
20
+ .TP
21
+ .B \, ---output=FILENAME
22
+ Save the resulting output in FILENAME.
23
+ .TP
24
+ .B \---verbose
25
+ Show verbose messages
26
+ .TP
27
+ .B \---debug
28
+ Show debug messages
29
+ .TP
30
+ .B \---no-init
31
+ Do not include an initialization snippet to register the typelib in the
32
+ respository. This can only be used if --code is also specified.
33
+ .TP
34
+ .B \---includedir=DIRECTORY
35
+ Adds a directory which will be used to find includes inside the GIR format.
36
+ .TP
37
+ .B \---module=MODULE
38
+ FIXME
39
+ .TP
40
+ .B \---shared-library=FILENAME
41
+ Specifies the shared library where the symbols in the typelib can be found.
42
+ The name of the library should not contain the leading lib prefix nor
43
+ the ending shared library suffix.
44
+ .TP
45
+ .SH BUGS
46
+ Report bugs at http://bugzilla.gnome.org/ in the glib product and
47
+ introspection component.
48
+ .SH HOMEPAGE and CONTACT
49
+ http://live.gnome.org/GObjectIntrospection
50
+ .SH AUTHORS
51
+ Mattias Clasen
@@ -0,0 +1,29 @@
1
+ .TH "g-ir-generate" 1
2
+ .SH NAME
3
+ g-ir-generate \- typelib generator
4
+ .SH SYNOPSIS
5
+ .B g-ir-generate
6
+ [OPTION...] FILES...
7
+ .SH DESCRIPTION
8
+ g-idl-generate is an GIR generator, using the repository API. It generates
9
+ GIR files from a raw typelib or in a shared library (--shlib).
10
+ The output will be written to standard output unless the --output
11
+ is specified.
12
+ .SH OPTIONS
13
+ .TP
14
+ .B \, --help
15
+ Show help options
16
+ .TP
17
+ .B \, --shlib=FILENAME
18
+ The shared library to read the symbols from.
19
+ .TP
20
+ .B \, --output=FILENAME
21
+ Save the resulting output in FILENAME.
22
+ .TP
23
+ .SH BUGS
24
+ Report bugs at http://bugzilla.gnome.org/ in the glib product and
25
+ introspection component.
26
+ .SH HOMEPAGE and CONTACT
27
+ http://live.gnome.org/GObjectIntrospection
28
+ .SH AUTHORS
29
+ Mattias Clasen
metadata ADDED
@@ -0,0 +1,343 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gobject-introspection
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.0.0
5
+ prerelease:
6
+ platform: x86-mingw32
7
+ authors:
8
+ - The Ruby-GNOME2 Project Team
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-04-29 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: glib2
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 2.0.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 2.0.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: test-unit
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '2'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '2'
46
+ description: Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection.
47
+ email: ruby-gnome2-devel-en@lists.sourceforge.net
48
+ executables: []
49
+ extensions: []
50
+ extra_rdoc_files: []
51
+ files:
52
+ - Rakefile
53
+ - extconf.rb
54
+ - lib/gobject-introspection.rb
55
+ - lib/gobject-introspection/callable-info.rb
56
+ - lib/gobject-introspection/collection-reader.rb
57
+ - lib/gobject-introspection/interface-info.rb
58
+ - lib/gobject-introspection/loader.rb
59
+ - lib/gobject-introspection/object-info.rb
60
+ - lib/gobject-introspection/repository.rb
61
+ - lib/gobject-introspection/struct-info.rb
62
+ - lib/gobject-introspection/union-info.rb
63
+ - ext/gobject-introspection/depend
64
+ - ext/gobject-introspection/extconf.rb
65
+ - ext/gobject-introspection/gobject_introspection.def
66
+ - ext/gobject-introspection/rb-gi-arg-info.c
67
+ - ext/gobject-introspection/rb-gi-argument.c
68
+ - ext/gobject-introspection/rb-gi-base-info.c
69
+ - ext/gobject-introspection/rb-gi-boxed-info.c
70
+ - ext/gobject-introspection/rb-gi-callable-info.c
71
+ - ext/gobject-introspection/rb-gi-callback-info.c
72
+ - ext/gobject-introspection/rb-gi-constant-info.c
73
+ - ext/gobject-introspection/rb-gi-constructor-info.c
74
+ - ext/gobject-introspection/rb-gi-conversions.h
75
+ - ext/gobject-introspection/rb-gi-enum-info.c
76
+ - ext/gobject-introspection/rb-gi-field-info.c
77
+ - ext/gobject-introspection/rb-gi-flags-info.c
78
+ - ext/gobject-introspection/rb-gi-function-info.c
79
+ - ext/gobject-introspection/rb-gi-interface-info.c
80
+ - ext/gobject-introspection/rb-gi-loader.c
81
+ - ext/gobject-introspection/rb-gi-method-info.c
82
+ - ext/gobject-introspection/rb-gi-object-info.c
83
+ - ext/gobject-introspection/rb-gi-private.h
84
+ - ext/gobject-introspection/rb-gi-property-info.c
85
+ - ext/gobject-introspection/rb-gi-registered-type-info.c
86
+ - ext/gobject-introspection/rb-gi-repository.c
87
+ - ext/gobject-introspection/rb-gi-signal-info.c
88
+ - ext/gobject-introspection/rb-gi-struct-info.c
89
+ - ext/gobject-introspection/rb-gi-type-info.c
90
+ - ext/gobject-introspection/rb-gi-type-tag.c
91
+ - ext/gobject-introspection/rb-gi-types.h
92
+ - ext/gobject-introspection/rb-gi-union-info.c
93
+ - ext/gobject-introspection/rb-gi-unresolved-info.c
94
+ - ext/gobject-introspection/rb-gi-value-info.c
95
+ - ext/gobject-introspection/rb-gi-vfunc-info.c
96
+ - ext/gobject-introspection/rb-gobject-introspection.c
97
+ - ext/gobject-introspection/rb-gobject-introspection.h
98
+ - test/gobject-introspection-test-utils.rb
99
+ - test/run-test.rb
100
+ - test/test-arg-info.rb
101
+ - test/test-base-info.rb
102
+ - test/test-boxed-info.rb
103
+ - test/test-callable-info.rb
104
+ - test/test-callback-info.rb
105
+ - test/test-constant-info.rb
106
+ - test/test-enum-info.rb
107
+ - test/test-field-type.rb
108
+ - test/test-flags-info.rb
109
+ - test/test-function-info.rb
110
+ - test/test-interface-info.rb
111
+ - test/test-loader.rb
112
+ - test/test-object-info.rb
113
+ - test/test-property-info.rb
114
+ - test/test-registered-type-info.rb
115
+ - test/test-repository.rb
116
+ - test/test-signal-info.rb
117
+ - test/test-struct-info.rb
118
+ - test/test-type-info.rb
119
+ - test/test-type-tag.rb
120
+ - test/test-union-info.rb
121
+ - test/test-value-info.rb
122
+ - test/test-vfunc-info.rb
123
+ - lib/1.9/gobject_introspection.so
124
+ - lib/2.0/gobject_introspection.so
125
+ - vendor/local/bin/g-ir-compiler.exe
126
+ - vendor/local/bin/g-ir-generate.exe
127
+ - vendor/local/bin/libgirepository-1.0-1.dll
128
+ - vendor/local/include/gobject-introspection-1.0/giarginfo.h
129
+ - vendor/local/include/gobject-introspection-1.0/gibaseinfo.h
130
+ - vendor/local/include/gobject-introspection-1.0/gicallableinfo.h
131
+ - vendor/local/include/gobject-introspection-1.0/giconstantinfo.h
132
+ - vendor/local/include/gobject-introspection-1.0/gienuminfo.h
133
+ - vendor/local/include/gobject-introspection-1.0/gifieldinfo.h
134
+ - vendor/local/include/gobject-introspection-1.0/gifunctioninfo.h
135
+ - vendor/local/include/gobject-introspection-1.0/giinterfaceinfo.h
136
+ - vendor/local/include/gobject-introspection-1.0/giobjectinfo.h
137
+ - vendor/local/include/gobject-introspection-1.0/gipropertyinfo.h
138
+ - vendor/local/include/gobject-introspection-1.0/giregisteredtypeinfo.h
139
+ - vendor/local/include/gobject-introspection-1.0/girepository.h
140
+ - vendor/local/include/gobject-introspection-1.0/girffi.h
141
+ - vendor/local/include/gobject-introspection-1.0/gisignalinfo.h
142
+ - vendor/local/include/gobject-introspection-1.0/gistructinfo.h
143
+ - vendor/local/include/gobject-introspection-1.0/gitypeinfo.h
144
+ - vendor/local/include/gobject-introspection-1.0/gitypelib.h
145
+ - vendor/local/include/gobject-introspection-1.0/gitypes.h
146
+ - vendor/local/include/gobject-introspection-1.0/giunioninfo.h
147
+ - vendor/local/include/gobject-introspection-1.0/givfuncinfo.h
148
+ - vendor/local/lib/girepository-1.0/DBus-1.0.typelib
149
+ - vendor/local/lib/girepository-1.0/DBusGLib-1.0.typelib
150
+ - vendor/local/lib/girepository-1.0/GIRepository-2.0.typelib
151
+ - vendor/local/lib/girepository-1.0/GL-1.0.typelib
152
+ - vendor/local/lib/girepository-1.0/GLib-2.0.typelib
153
+ - vendor/local/lib/girepository-1.0/GModule-2.0.typelib
154
+ - vendor/local/lib/girepository-1.0/GObject-2.0.typelib
155
+ - vendor/local/lib/girepository-1.0/Gio-2.0.typelib
156
+ - vendor/local/lib/girepository-1.0/cairo-1.0.typelib
157
+ - vendor/local/lib/girepository-1.0/fontconfig-2.0.typelib
158
+ - vendor/local/lib/girepository-1.0/freetype2-2.0.typelib
159
+ - vendor/local/lib/girepository-1.0/libxml2-2.0.typelib
160
+ - vendor/local/lib/girepository-1.0/xfixes-4.0.typelib
161
+ - vendor/local/lib/girepository-1.0/xft-2.0.typelib
162
+ - vendor/local/lib/girepository-1.0/xlib-2.0.typelib
163
+ - vendor/local/lib/girepository-1.0/xrandr-1.3.typelib
164
+ - vendor/local/lib/gobject-introspection/giscanner/__init__.py
165
+ - vendor/local/lib/gobject-introspection/giscanner/__init__.pyc
166
+ - vendor/local/lib/gobject-introspection/giscanner/__init__.pyo
167
+ - vendor/local/lib/gobject-introspection/giscanner/annotationmain.py
168
+ - vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyc
169
+ - vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyo
170
+ - vendor/local/lib/gobject-introspection/giscanner/annotationparser.py
171
+ - vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyc
172
+ - vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyo
173
+ - vendor/local/lib/gobject-introspection/giscanner/ast.py
174
+ - vendor/local/lib/gobject-introspection/giscanner/ast.pyc
175
+ - vendor/local/lib/gobject-introspection/giscanner/ast.pyo
176
+ - vendor/local/lib/gobject-introspection/giscanner/cachestore.py
177
+ - vendor/local/lib/gobject-introspection/giscanner/cachestore.pyc
178
+ - vendor/local/lib/gobject-introspection/giscanner/cachestore.pyo
179
+ - vendor/local/lib/gobject-introspection/giscanner/codegen.py
180
+ - vendor/local/lib/gobject-introspection/giscanner/codegen.pyc
181
+ - vendor/local/lib/gobject-introspection/giscanner/codegen.pyo
182
+ - vendor/local/lib/gobject-introspection/giscanner/docmain.py
183
+ - vendor/local/lib/gobject-introspection/giscanner/docmain.pyc
184
+ - vendor/local/lib/gobject-introspection/giscanner/docmain.pyo
185
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/class.tmpl
186
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/constructor.tmpl
187
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/default.tmpl
188
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/enum.tmpl
189
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
190
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/method.tmpl
191
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/namespace.tmpl
192
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/property.tmpl
193
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/record.tmpl
194
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/signal.tmpl
195
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/vfunc.tmpl
196
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/class.tmpl
197
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/constructor.tmpl
198
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/default.tmpl
199
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/enum.tmpl
200
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/function.tmpl
201
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/method.tmpl
202
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/namespace.tmpl
203
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/property.tmpl
204
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/record.tmpl
205
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/signal.tmpl
206
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/vfunc.tmpl
207
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/class.tmpl
208
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/constructor.tmpl
209
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/default.tmpl
210
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/enum.tmpl
211
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/function.tmpl
212
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/method.tmpl
213
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/namespace.tmpl
214
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/property.tmpl
215
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/record.tmpl
216
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/signal.tmpl
217
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/vfunc.tmpl
218
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/base.tmpl
219
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/class.tmpl
220
+ - vendor/local/lib/gobject-introspection/giscanner/doctemplates/namespace.tmpl
221
+ - vendor/local/lib/gobject-introspection/giscanner/docwriter.py
222
+ - vendor/local/lib/gobject-introspection/giscanner/docwriter.pyc
223
+ - vendor/local/lib/gobject-introspection/giscanner/docwriter.pyo
224
+ - vendor/local/lib/gobject-introspection/giscanner/dumper.py
225
+ - vendor/local/lib/gobject-introspection/giscanner/dumper.pyc
226
+ - vendor/local/lib/gobject-introspection/giscanner/dumper.pyo
227
+ - vendor/local/lib/gobject-introspection/giscanner/gdumpparser.py
228
+ - vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyc
229
+ - vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyo
230
+ - vendor/local/lib/gobject-introspection/giscanner/girparser.py
231
+ - vendor/local/lib/gobject-introspection/giscanner/girparser.pyc
232
+ - vendor/local/lib/gobject-introspection/giscanner/girparser.pyo
233
+ - vendor/local/lib/gobject-introspection/giscanner/girwriter.py
234
+ - vendor/local/lib/gobject-introspection/giscanner/girwriter.pyc
235
+ - vendor/local/lib/gobject-introspection/giscanner/girwriter.pyo
236
+ - vendor/local/lib/gobject-introspection/giscanner/introspectablepass.py
237
+ - vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyc
238
+ - vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyo
239
+ - vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.py
240
+ - vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyc
241
+ - vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyo
242
+ - vendor/local/lib/gobject-introspection/giscanner/maintransformer.py
243
+ - vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyc
244
+ - vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyo
245
+ - vendor/local/lib/gobject-introspection/giscanner/message.py
246
+ - vendor/local/lib/gobject-introspection/giscanner/message.pyc
247
+ - vendor/local/lib/gobject-introspection/giscanner/message.pyo
248
+ - vendor/local/lib/gobject-introspection/giscanner/odict.py
249
+ - vendor/local/lib/gobject-introspection/giscanner/odict.pyc
250
+ - vendor/local/lib/gobject-introspection/giscanner/odict.pyo
251
+ - vendor/local/lib/gobject-introspection/giscanner/scannermain.py
252
+ - vendor/local/lib/gobject-introspection/giscanner/scannermain.pyc
253
+ - vendor/local/lib/gobject-introspection/giscanner/scannermain.pyo
254
+ - vendor/local/lib/gobject-introspection/giscanner/sectionparser.py
255
+ - vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyc
256
+ - vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyo
257
+ - vendor/local/lib/gobject-introspection/giscanner/shlibs.py
258
+ - vendor/local/lib/gobject-introspection/giscanner/shlibs.pyc
259
+ - vendor/local/lib/gobject-introspection/giscanner/shlibs.pyo
260
+ - vendor/local/lib/gobject-introspection/giscanner/sourcescanner.py
261
+ - vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyc
262
+ - vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyo
263
+ - vendor/local/lib/gobject-introspection/giscanner/testcodegen.py
264
+ - vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyc
265
+ - vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyo
266
+ - vendor/local/lib/gobject-introspection/giscanner/transformer.py
267
+ - vendor/local/lib/gobject-introspection/giscanner/transformer.pyc
268
+ - vendor/local/lib/gobject-introspection/giscanner/transformer.pyo
269
+ - vendor/local/lib/gobject-introspection/giscanner/utils.py
270
+ - vendor/local/lib/gobject-introspection/giscanner/utils.pyc
271
+ - vendor/local/lib/gobject-introspection/giscanner/utils.pyo
272
+ - vendor/local/lib/gobject-introspection/giscanner/xmlwriter.py
273
+ - vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyc
274
+ - vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyo
275
+ - vendor/local/lib/libgirepository-1.0.a
276
+ - vendor/local/lib/libgirepository-1.0.dll.a
277
+ - vendor/local/lib/libgirepository-1.0.la
278
+ - vendor/local/lib/pkgconfig/gobject-introspection-1.0.pc
279
+ - vendor/local/lib/pkgconfig/gobject-introspection-no-export-1.0.pc
280
+ - vendor/local/share/aclocal/introspection.m4
281
+ - vendor/local/share/gir-1.0/DBus-1.0.gir
282
+ - vendor/local/share/gir-1.0/DBusGLib-1.0.gir
283
+ - vendor/local/share/gir-1.0/GIRepository-2.0.gir
284
+ - vendor/local/share/gir-1.0/GL-1.0.gir
285
+ - vendor/local/share/gir-1.0/GLib-2.0.gir
286
+ - vendor/local/share/gir-1.0/GModule-2.0.gir
287
+ - vendor/local/share/gir-1.0/GObject-2.0.gir
288
+ - vendor/local/share/gir-1.0/Gio-2.0.gir
289
+ - vendor/local/share/gir-1.0/cairo-1.0.gir
290
+ - vendor/local/share/gir-1.0/fontconfig-2.0.gir
291
+ - vendor/local/share/gir-1.0/freetype2-2.0.gir
292
+ - vendor/local/share/gir-1.0/libxml2-2.0.gir
293
+ - vendor/local/share/gir-1.0/xfixes-4.0.gir
294
+ - vendor/local/share/gir-1.0/xft-2.0.gir
295
+ - vendor/local/share/gir-1.0/xlib-2.0.gir
296
+ - vendor/local/share/gir-1.0/xrandr-1.3.gir
297
+ - vendor/local/share/gobject-introspection-1.0/Makefile.introspection
298
+ - vendor/local/share/gobject-introspection-1.0/gdump.c
299
+ - vendor/local/share/gobject-introspection-1.0/tests/annotation.c
300
+ - vendor/local/share/gobject-introspection-1.0/tests/annotation.h
301
+ - vendor/local/share/gobject-introspection-1.0/tests/drawable.c
302
+ - vendor/local/share/gobject-introspection-1.0/tests/drawable.h
303
+ - vendor/local/share/gobject-introspection-1.0/tests/everything.c
304
+ - vendor/local/share/gobject-introspection-1.0/tests/everything.h
305
+ - vendor/local/share/gobject-introspection-1.0/tests/foo.c
306
+ - vendor/local/share/gobject-introspection-1.0/tests/foo.h
307
+ - vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.c
308
+ - vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.h
309
+ - vendor/local/share/gobject-introspection-1.0/tests/regress.c
310
+ - vendor/local/share/gobject-introspection-1.0/tests/regress.h
311
+ - vendor/local/share/gobject-introspection-1.0/tests/utility.c
312
+ - vendor/local/share/gobject-introspection-1.0/tests/utility.h
313
+ - vendor/local/share/gobject-introspection-1.0/tests/warnlib.c
314
+ - vendor/local/share/gobject-introspection-1.0/tests/warnlib.h
315
+ - vendor/local/share/license/gobject-introspection/AUTHORS
316
+ - vendor/local/share/license/gobject-introspection/COPYING
317
+ - vendor/local/share/man/man1/g-ir-compiler.1
318
+ - vendor/local/share/man/man1/g-ir-generate.1
319
+ homepage: http://ruby-gnome2.sourceforge.jp/
320
+ licenses: []
321
+ post_install_message:
322
+ rdoc_options: []
323
+ require_paths:
324
+ - lib
325
+ required_ruby_version: !ruby/object:Gem::Requirement
326
+ none: false
327
+ requirements:
328
+ - - ! '>='
329
+ - !ruby/object:Gem::Version
330
+ version: 1.8.5
331
+ required_rubygems_version: !ruby/object:Gem::Requirement
332
+ none: false
333
+ requirements:
334
+ - - ! '>='
335
+ - !ruby/object:Gem::Version
336
+ version: '0'
337
+ requirements: []
338
+ rubyforge_project:
339
+ rubygems_version: 1.8.23
340
+ signing_key:
341
+ specification_version: 3
342
+ summary: Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection.
343
+ test_files: []