glib2-vl.spec 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. Summary: A library of handy utility functions.
  3. Name: glib2
  4. Version: 2.48.1
  5. Release: 1%{?_dist_release}
  6. License: LGPLv2+
  7. Group: System Environment/Libraries
  8. Source: http://ftp.gnome.org/pub/GNOME/sources/glib/2.48/glib-%{version}.tar.xz
  9. Source2: glib2.sh
  10. Source3: glib2.csh
  11. Patch0: glib-2.32.1-dconf-path.patch
  12. BuildRoot: %{_tmppath}/glib-%{version}-root
  13. BuildRequires: pkgconfig >= 0.14
  14. BuildRequires: dbus-devel
  15. BuildRequires: gamin-devel
  16. BuildRequires: libffi-devel
  17. BuildRequires: zlib-devel
  18. BuildRequires: python-devel
  19. BuildRequires: pcre-devel >= 8.13
  20. BuildRequires: gtk-doc
  21. Obsoletes: glib-gtkbeta
  22. # for gio-querymodules
  23. Requires(post,postun): libffi
  24. URL: http://www.gtk.org
  25. Vendor: Project Vine
  26. Distribution: Vine Linux
  27. Packager: Daisuke SUZUKI <daisuke@linux.or.jp>, Takemikaduchi
  28. %description
  29. GLib is the low-level core library that forms the basis
  30. for projects such as GTK+ and GNOME. It provides data structure
  31. handling for C, portability wrappers, and interfaces for such runtime
  32. functionality as an event loop, threads, dynamic loading, and an
  33. object system.
  34. This package provides version 2.48 of GLib.
  35. %package devel
  36. Summary: Development files for the GLib library
  37. Group: Development/Libraries
  38. Requires: %{name} = %{version}
  39. Requires: pkgconfig >= 0.14
  40. Requires: libffi-devel
  41. Requires: zlib-devel
  42. Obsoletes: glib-gtkbeta-devel
  43. Conflicts: glib-devel <= 1.2.8
  44. %description devel
  45. The glib-devel package includes the header files for
  46. version 2.48 of the GLib library.
  47. ## to build compat32 for x86_64 architecture support
  48. %package -n compat32-%{name}
  49. Summary: A library of handy utility functions.
  50. Group: System Environment/Libraries
  51. %description -n compat32-%{name}
  52. GLib is the low-level core library that forms the basis
  53. for projects such as GTK+ and GNOME. It provides data structure
  54. handling for C, portability wrappers, and interfaces for such runtime
  55. functionality as an event loop, threads, dynamic loading, and an
  56. object system.
  57. This package provides version 2.48 of GLib.
  58. %package -n compat32-%{name}-devel
  59. Summary: Development files for the GLib library
  60. Group: Development/Libraries
  61. Requires: pkgconfig >= 0.14
  62. Requires: compat32-%{name} = %{version}
  63. Conflicts: glib-devel <= 1.2.8
  64. %description -n compat32-%{name}-devel
  65. The glib-devel package includes the header files for
  66. version 2.48 of the GLib library.
  67. %prep
  68. %setup -q -n glib-%{version}
  69. %patch0 -p1
  70. %build
  71. NOCONFIGURE=1 ./autogen.sh
  72. %configure --disable-selinux --enable-static --enable-systemtap
  73. make %{?_smp_mflags}
  74. %install
  75. rm -rf $RPM_BUILD_ROOT
  76. mkdir -p $RPM_BUILD_ROOT%{_bindir}
  77. make install DESTDIR=$RPM_BUILD_ROOT
  78. ## glib2.sh and glib2.csh
  79. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
  80. install -m 755 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
  81. install -m 755 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
  82. #mkdir -p $RPM_BUILD_ROOT%{python_sitearch}
  83. #ln -sf %{_libdir}/gdbus-2.0/codegen $RPM_BUILD_ROOT%{python_sitearch}/codegen
  84. touch $RPM_BUILD_ROOT%{_libdir}/gio/modules/giomodule.cache
  85. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  86. rm -f $RPM_BUILD_ROOT%{_libdir}/gio/modules/lib*.{a,la}
  87. rm -f $RPM_BUILD_ROOT%{_libdir}/gio/modules/*.cache
  88. %find_lang glib20
  89. %clean
  90. rm -rf $RPM_BUILD_ROOT
  91. %post
  92. /sbin/ldconfig
  93. gio-querymodules %{_libdir}/gio/modules
  94. %postun
  95. /sbin/ldconfig
  96. gio-querymodules %{_libdir}/gio/modules
  97. %post -n compat32-%{name} -p /sbin/ldconfig
  98. %postun -n compat32-%{name} -p /sbin/ldconfig
  99. %files -f glib20.lang
  100. %defattr(-, root, root)
  101. %doc AUTHORS COPYING ChangeLog NEWS README
  102. %{_bindir}/gapplication
  103. %{_bindir}/gdbus
  104. %{_bindir}/gio-querymodules
  105. %{_bindir}/glib-compile-schemas
  106. %{_bindir}/gsettings
  107. %{_libdir}/libglib-2.0.so.*
  108. %{_libdir}/libgthread-2.0.so.*
  109. %{_libdir}/libgmodule-2.0.so.*
  110. %{_libdir}/libgobject-2.0.so.*
  111. %{_libdir}/libgio-2.0.so.*
  112. %{_libdir}/gio/modules/lib*.so
  113. %{_sysconfdir}/profile.d/*
  114. %{_datadir}/bash-completion/completions/gapplication
  115. %{_datadir}/bash-completion/completions/gdbus
  116. %{_datadir}/bash-completion/completions/gsettings
  117. %files devel
  118. %defattr(-, root, root)
  119. %{_bindir}/gdbus-codegen
  120. %{_bindir}/glib-compile-resources
  121. %{_bindir}/glib-genmarshal
  122. %{_bindir}/glib-gettextize
  123. %{_bindir}/glib-mkenums
  124. %{_bindir}/gobject-query
  125. %{_bindir}/gresource
  126. %{_bindir}/gtester
  127. %{_bindir}/gtester-report
  128. %{_libdir}/lib*.so
  129. %{_libdir}/lib*.a
  130. #%{_libdir}/gdbus-2.0/codegen/*
  131. %{_libdir}/glib-2.0
  132. %{_libdir}/pkgconfig/*
  133. #%{python_sitearch}/codegen
  134. %{_includedir}/*
  135. %{_datadir}/aclocal/*
  136. %{_datadir}/glib-2.0
  137. %{_datadir}/gettext/its/gschema.its
  138. %{_datadir}/gettext/its/gschema.loc
  139. %doc %{_datadir}/gtk-doc/html/*
  140. %doc %{_mandir}/man1/*
  141. %{_datadir}/gdb/auto-load%{_libdir}/libglib-2.0.so.*-gdb.py*
  142. %{_datadir}/gdb/auto-load%{_libdir}/libgobject-2.0.so.*-gdb.py*
  143. %{_datadir}/bash-completion/completions/gresource
  144. %if %{build_compat32}
  145. %files -n compat32-%{name}
  146. %defattr(-, root, root)
  147. %{_libdir}/libglib-2.0.so.*
  148. %{_libdir}/libgthread-2.0.so.*
  149. %{_libdir}/libgmodule-2.0.so.*
  150. %{_libdir}/libgobject-2.0.so.*
  151. %{_libdir}/libgio-2.0.so.*
  152. %{_libdir}/gio/modules/lib*.so
  153. %files -n compat32-%{name}-devel
  154. %defattr(-, root, root)
  155. %{_libdir}/lib*.so
  156. %{_libdir}/lib*.a
  157. %{_libdir}/glib-2.0
  158. %endif
  159. %changelog
  160. * Thu Jul 14 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.48.1-1
  161. - new upstream release
  162. - add BuildRequires: pcre-devel
  163. * Sun May 08 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.46.2-2
  164. - add Requires: libffi
  165. * Fri Nov 13 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.46.2-1
  166. - new upstream release
  167. * Thu Oct 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.46.1-1
  168. - new upstream release
  169. * Thu May 14 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.44.1-1
  170. - new upstream release
  171. * Sat Mar 28 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.44.0-1
  172. - new upstream release
  173. * Sun Mar 08 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.42.2-1
  174. - new upstream release
  175. * Sun Nov 16 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.42.1-1
  176. - new upstream release
  177. * Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.42.0-1
  178. - new upstream release
  179. * Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.40.0-2
  180. - rebuild with libffi-3.0.13
  181. * Fri Mar 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.40.0-1
  182. - new upstream release
  183. * Sun Nov 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.38.2-1
  184. - new upstream release
  185. * Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.38.1-1
  186. - new upstream release
  187. * Sun Aug 11 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.36.4-1
  188. - new upstream release
  189. - remove Patch1 (glib-2.36.3-revert-g_file_set_contents.patch) from upstream
  190. * Mon Jul 15 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.36.3-1
  191. - new upstream release
  192. - add Patch1 (glib-2.36.3-revert-g_file_set_contents.patch) from upstream
  193. * Sat May 18 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.36.2-1
  194. - new upstream release
  195. * Wed Apr 17 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.36.1-1
  196. - new upstream release
  197. * Wed Jan 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.34.3-1
  198. - new upstream release
  199. * Sat Nov 10 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.34.2-1
  200. - new upstream release
  201. * Tue Oct 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.34.1-1
  202. - new upstream release
  203. * Wed Sep 26 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.34.0-1
  204. - new upstream release
  205. * Mon Jul 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.4-1
  206. - new upstream release
  207. * Sun May 20 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.3-1
  208. - new upstream release
  209. * Wed May 02 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.2-1
  210. - new upstream release
  211. * Sat Apr 21 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.1-1
  212. - new upstream release
  213. - add BuildRequires: python-devel
  214. - add Patch0 (glib-2.32.1-dconf-path.patch)
  215. * Wed Nov 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-1
  216. - new upstream release
  217. * Sun Oct 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-1
  218. - new upstream release
  219. * Wed Sep 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
  220. - new upstream release
  221. - add Requires: libffi-devel, zlib-devel (-devel sub package)
  222. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.29.92-1
  223. - new upstream release
  224. * Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.29.18-1
  225. - new upstream release
  226. - remove Patch0,1
  227. * Sun Aug 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.29.16-1
  228. - new upstream release
  229. - Patch0: glib-2.29.16-fixes-bug-656387.patch
  230. - Patch1: glib-2.29.16-fixes-bug-656675.patch
  231. * Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.29.14-1
  232. - new upstream release
  233. - add BuildRequires: libffi-devel, dbus-devel
  234. * Sat Jun 18 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.8-1
  235. - new upstream release
  236. * Fri Apr 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.6-1
  237. - new upstream release
  238. * Sun Apr 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.5-1
  239. - new upstream release
  240. * Wed Mar 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.4-1
  241. - new upstream release
  242. * Sat Mar 19 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.3-1
  243. - new upstream release
  244. * Sun Mar 13 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.2-1
  245. - new upstream release
  246. * Sat Feb 19 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.1-1
  247. - new upstream release
  248. * Sat Feb 12 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.0-1
  249. - new upstream release
  250. * Fri Dec 10 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.26.1-2
  251. - move the following files from glib2-devel to glib2 package
  252. (gdbus, gio-querymodules, glib-compile-schemas, gsettings)
  253. * Sat Nov 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.26.1-1
  254. - new upstream release
  255. * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.26.0-1
  256. - new upstream release
  257. - fix Source (add URL)
  258. - fix %files to add /etc/bash_completion.d files
  259. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 2.24.2-2
  260. - build with rpm-4.8.1-1 for pkg-config file
  261. * Sat Aug 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.2-1
  262. - new upstream release
  263. * Tue May 11 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.1-1
  264. - new upstream release
  265. * Sun Mar 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.0-1
  266. - new upstream release
  267. - add BuildRequires: zlib-devel
  268. * Sun Mar 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.22.5-1
  269. - new upstream release
  270. * Mon Jan 11 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.22.4-1
  271. - new upstream release
  272. * Thu Jan 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.22.3-1
  273. - new upstream release
  274. * Sun Oct 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.2-1
  275. - new upstream release
  276. * Thu Sep 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.0-1
  277. - new upstream release
  278. * Mon Jun 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.4-1
  279. - new upstream release
  280. * Tue Jun 09 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.3-1
  281. - new upstream release
  282. * Thu May 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.2-1
  283. - new upstream release
  284. * Sat Apr 11 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.20.1-1
  285. - new upstream release
  286. * Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.0-1
  287. - new upstream release
  288. * Sun Jan 18 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.18.4-1
  289. - new upstream release
  290. * Tue Nov 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.3-1
  291. - new upstream release
  292. * Tue Oct 21 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.2-1
  293. - new upstream release
  294. * Sat Sep 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-1
  295. - new upstream release
  296. * Fri Sep 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.0-1
  297. - new upstream release
  298. * Mon Jul 7 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.16.4-1
  299. - new upstream release
  300. * Sat May 10 2008 NAKAMURA Kenta <kenta@vinelinux.org> 2.16.3-2
  301. - updated %%if %%{build_compat32} case related statements
  302. * Wed Apr 9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.16.3-1vl5
  303. - new upstream release
  304. - removed lib*.la files from devel package
  305. * Sun Apr 6 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.16.2-1vl5
  306. - new upstream release
  307. * Thu Mar 20 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.16.1-1vl5
  308. - added %%{?_dist_release}
  309. - BuildRequires: gamin-devel
  310. * Tue Mar 11 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.16.1-0vl1
  311. - new upstream release
  312. * Thu Feb 7 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.6-0vl1
  313. - new upstream release
  314. * Wed Jan 9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.5-0vl1
  315. - new upstream release
  316. * Wed Nov 14 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.3-0vl1
  317. - new upstream release
  318. * Thu Oct 18 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.2-0vl1
  319. - new upstream release
  320. - removed BuildRequires: automake17
  321. * Thu Sep 20 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.1-0vl1
  322. - new upstream release
  323. * Sun Aug 19 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.0-0vl1
  324. - new upstream release
  325. * Wed Jul 18 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.13-0vl1
  326. - new upstream release
  327. * Sun May 20 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.12-0vl2
  328. - rebuild with new environment
  329. * Thu May 03 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.12-0vl1
  330. - new upstream release
  331. * Thu Mar 15 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.11-0vl1
  332. - new upstream release
  333. * Mon Jan 08 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.7-0vl1
  334. - new upstream release
  335. * Mon Dec 25 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.6-0vl1
  336. - new upstream release
  337. * Thu Aug 31 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.3-0vl1
  338. - new upstream release
  339. * Wed Aug 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.2-0vl1
  340. - new upstream release
  341. * Sat Aug 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.1-0vl1
  342. - new upstream release
  343. * Mon Jun 26 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.10.3-0vl3
  344. - rebuild
  345. * Sun Jun 11 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.3-0vl2
  346. - update glib2.{sh,csh}
  347. - add EUC-JP,CP932,UTF-8 to G_FILENAME_ENCODING
  348. * Fri Jun 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.3-0vl1
  349. - new upstream release
  350. * Sat Apr 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.2-0vl1
  351. - new upstream release
  352. * Thu Mar 09 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.1-0vl1
  353. - new upstream release
  354. * Sun Mar 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.0-0vl1
  355. - new upstream release
  356. * Mon Feb 27 2006 Shu KONNO <owa@bg.wakwak.com> 2.8.6-0vl2
  357. - added compat32-* packages for x86_64 architecture support
  358. - chaged G_ATOMIC_X86_64 to I486 in config.h before making compat32
  359. * Sun Jan 29 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.6-0vl1
  360. - new upstream release
  361. * Thu Jan 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.5-0vl1
  362. - new upstream release
  363. * Wed Nov 30 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.4-0vl1
  364. - new upstream release
  365. * Tue Sep 27 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.2-0vl1
  366. - new upstream release
  367. * Tue Sep 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.1-0vl3
  368. - fixed typo in glib2.csh
  369. * Sun Sep 18 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.1-0vl2
  370. - update glib2.{sh,csh} to use G_FILENAME_ENCODING instead of
  371. G_BROKEN_FILENAMES.
  372. * Wed Aug 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.1-0vl1
  373. - new upstream release
  374. * Sat Aug 13 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.0-0vl1
  375. - new upstream release
  376. * Sat Aug 06 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.7-0vl1
  377. - new upstream release
  378. * Fri Aug 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.6-0vl1
  379. - new upstream release
  380. * Tue Aug 02 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.4-0vl1
  381. - new upstream release
  382. * Sun Jul 03 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.5-0vl1
  383. - new upstream release
  384. - add *.la to build arts (should be fixed in arts?)
  385. * Sat Apr 09 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.4-0vl1
  386. - new upstream release
  387. * Fri Mar 04 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.3-0vl1
  388. - new upstream release
  389. * Sat Feb 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.2-0vl1
  390. - new upstream release
  391. * Mon Jan 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.1-0vl1
  392. - new upstream release
  393. * Sat Dec 04 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.8-0vl1
  394. - new upstream release
  395. * Mon Nov 08 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.7-0vl2
  396. - rebuilt
  397. * Mon Oct 11 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.7-0vl1
  398. - new upstream release
  399. * Sat Aug 14 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.6-0vl1
  400. - new upstream release
  401. * Sun Aug 08 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.5-0vl1
  402. - new upstream release
  403. * Fri Jul 16 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4-0vl1
  404. - new upstream release
  405. * Sat Jun 5 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.2-0vl1
  406. - new upstream release
  407. * Sat May 1 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.1-0vl1
  408. - new upstream release
  409. * Thu Mar 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl1
  410. - new upstream release
  411. * Wed Dec 24 2003 Tomoya TAKA <taka@vinelinux.org> 2.2.3-0vl2
  412. - rebuild with new toolchain
  413. * Sat Aug 30 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.3-0vl1
  414. - new upstream release
  415. * Tue Jun 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.2-0vl1
  416. - new upstream release
  417. * Mon Feb 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.1-0vl1
  418. - new upstream release
  419. * Wed Dec 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0-0vl1
  420. - new upstream release
  421. * Fri Dec 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.4-0vl1
  422. - new upstream release
  423. - build for Vine Linux
  424. * Tue Aug 13 2002 Havoc Pennington <hp@redhat.com>
  425. - install glib2.sh and glib2.csh to set G_BROKEN_FILENAMES
  426. - blow away unpackaged files in install
  427. * Thu Aug 8 2002 Owen Taylor <otaylor@redhat.com>
  428. - Version 2.0.6
  429. - Remove fixed-ltmain.sh; shouldn't be needed any more.
  430. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  431. - automated rebuild
  432. * Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
  433. - 2.0.4
  434. * Thu May 23 2002 Tim Powers <timp@redhat.com>
  435. - automated rebuild
  436. * Wed Apr 24 2002 Havoc Pennington <hp@redhat.com>
  437. - rebuild in different environment
  438. * Mon Apr 15 2002 Owen Taylor <otaylor@redhat.com>
  439. - Fix missing .po files (#63336)
  440. * Wed Apr 3 2002 Alex Larsson <alexl@redhat.com>
  441. - Update to version 2.0.1
  442. * Fri Mar 8 2002 Owen Taylor <otaylor@redhat.com>
  443. - Version 2.0.0
  444. * Mon Feb 25 2002 Alex Larsson <alexl@redhat.com>
  445. - Update to 1.3.15
  446. * Thu Feb 21 2002 Alex Larsson <alexl@redhat.com>
  447. - Bump for rebuild
  448. * Mon Feb 18 2002 Alex Larsson <alexl@redhat.com>
  449. - Update to 1.3.14
  450. * Fri Feb 15 2002 Havoc Pennington <hp@redhat.com>
  451. - add horrible buildrequires hack
  452. * Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
  453. - 1.3.13.91 cvs snap
  454. * Mon Feb 11 2002 Matt Wilson <msw@redhat.com>
  455. - rebuild from CVS snapshot
  456. - use setup -q
  457. * Thu Jan 31 2002 Jeremy Katz <katzj@redhat.com>
  458. - rebuild
  459. * Tue Jan 29 2002 Owen Taylor <otaylor@redhat.com>
  460. - 1.3.13
  461. * Tue Jan 22 2002 Havoc Pennington <hp@redhat.com>
  462. - attempting rebuild in rawhide
  463. * Wed Jan 2 2002 Havoc Pennington <hp@redhat.com>
  464. - remove 64-bit patch now upstream, 1.3.12.90
  465. * Mon Nov 26 2001 Havoc Pennington <hp@redhat.com>
  466. - add some missing files to file list, langify
  467. * Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
  468. - add temporary patch to fix GTypeFundamentals on 64-bit
  469. * Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
  470. - Version 1.3.11
  471. * Thu Oct 25 2001 Owen Taylor <otaylor@redhat.com>
  472. - Version 1.3.10
  473. * Tue Sep 25 2001 Owen Taylor <otaylor@redhat.com>
  474. - Version 1.3.9
  475. * Wed Sep 19 2001 Owen Taylor <otaylor@redhat.com>
  476. - Version 1.3.8
  477. * Fri Jul 20 2001 Owen Taylor <otaylor@redhat.com>
  478. - Make -devel package require main package (#45388)
  479. - Fix description and summary
  480. - Configure with --disable-gtk-doc
  481. * Wed Jun 20 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  482. - add some portability fixes needed at least on s390
  483. - copy config.{guess,sub} instead of calling libtoolize
  484. * Wed Jun 13 2001 Havoc Pennington <hp@redhat.com>
  485. - try a new glib tarball with Makefile changes to work around
  486. libtool linking to installed .la files
  487. - make -devel require pkgconfig
  488. * Tue Jun 12 2001 Havoc Pennington <hp@redhat.com>
  489. - either libtool or the bad libtool hacks caused link
  490. against glib-gobject 1.3.2, rebuild
  491. * Tue Jun 12 2001 Havoc Pennington <hp@redhat.com>
  492. - 1.3.6
  493. - bad libtool workarounds
  494. * Fri May 04 2001 Owen Taylor <otaylor@redhat.com>
  495. - 1.3.5, rename to glib2
  496. * Fri Nov 17 2000 Owen Taylor <otaylor@redhat.com>
  497. - Final 1.3.2
  498. * Mon Nov 13 2000 Owen Taylor <otaylor@redhat.com>
  499. - Version 1.3.2pre1
  500. - Remove pkgconfig
  501. * Sun Aug 13 2000 Owen Taylor <otaylor@redhat.com>
  502. - Call 1.3.1b instead of snap... the snap* naming doesn't
  503. order correctly.
  504. * Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
  505. - new snapshot with fixed .pc files
  506. * Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
  507. - include .pc files in file list
  508. * Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
  509. - Include pkg-config
  510. - Upgrade to a glib CVS snapshot
  511. * Wed Jul 19 2000 Jakub Jelinek <jakub@redhat.com>
  512. - rebuild to cope with glibc locale binary incompatibility
  513. * Fri Jul 14 2000 Owen Taylor <otaylor@redhat.com>
  514. - Remove glib-config.1 manpage from build since
  515. it conflicts with glib-devel. When we go to
  516. glib glib1.2 setup, we should add it back
  517. * Fri Jul 07 2000 Owen Taylor <otaylor@redhat.com>
  518. - Version 1.3.1
  519. - Move back to standard %{prefix}
  520. * Thu Jun 8 2000 Owen Taylor <otaylor@redhat.com>
  521. - Rebuild in /opt/gtk-beta
  522. * Tue May 30 2000 Owen Taylor <otaylor@redhat.com>
  523. - New version (adds gobject)
  524. * Tue Apr 25 2000 Owen Taylor <otaylor@redhat.com>
  525. - Don't blow away /etc/ld.so.conf (sorry!)
  526. * Mon Apr 24 2000 Owen Taylor <otaylor@redhat.com>
  527. - Snapshot RPM for Pango testing
  528. * Fri Feb 04 2000 Owen Taylor <otaylor@redhat.com>
  529. - Added fixes from stable branch of CVS
  530. * Thu Oct 7 1999 Owen Taylor <otaylor@redhat.com>
  531. - version 1.2.6
  532. * Fri Sep 24 1999 Owen Taylor <otaylor@redhat.com>
  533. - version 1.2.5
  534. * Fri Sep 17 1999 Owen Taylor <otaylor@redhat.com>
  535. - version 1.2.4
  536. * Mon Jun 7 1999 Owen Taylor <otaylor@redhat.com>
  537. - version 1.2.3
  538. * Thu Mar 25 1999 Michael Fulbright <drmike@redhat.com>
  539. - version 1.2.1
  540. * Fri Feb 26 1999 Michael Fulbright <drmike@redhat.com>
  541. - Version 1.2
  542. * Thu Feb 25 1999 Michael Fulbright <drmike@redhat.com>
  543. - version 1.2.0pre1
  544. * Tue Feb 23 1999 Cristian Gafton <gafton@redhat.com>
  545. - new description tags
  546. * Sun Feb 21 1999 Michael Fulbright <drmike@redhat.com>
  547. - removed libtoolize from %build
  548. * Thu Feb 11 1999 Michael Fulbright <drmike@redhat.com>
  549. - added libgthread to file list
  550. * Fri Feb 05 1999 Michael Fulbright <drmike@redhat.com>
  551. - version 1.1.15
  552. * Wed Feb 03 1999 Michael Fulbright <drmike@redhat.com>
  553. - version 1.1.14
  554. * Mon Jan 18 1999 Michael Fulbright <drmike@redhat.com>
  555. - version 1.1.13
  556. * Wed Jan 06 1999 Michael Fulbright <drmike@redhat.com>
  557. - version 1.1.12
  558. * Wed Dec 16 1998 Michael Fulbright <drmike@redhat.com>
  559. - updated in preparation for the GNOME freeze
  560. * Mon Apr 13 1998 Marc Ewing <marc@redhat.com>
  561. - Split out glib package