glib2-vl.spec 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. Summary: A library of handy utility functions.
  3. Name: glib2
  4. Version: 2.22.4
  5. Release: 1%{?_dist_release}
  6. License: LGPLv2+
  7. Group: System Environment/Libraries
  8. Source: glib-%{version}.tar.bz2
  9. Source2: glib2.sh
  10. Source3: glib2.csh
  11. BuildRoot: %{_tmppath}/glib-%{version}-root
  12. BuildRequires: pkgconfig >= 0.14
  13. BuildRequires: gamin-devel
  14. BuildRequires: gtk-doc
  15. Obsoletes: glib-gtkbeta
  16. URL: http://www.gtk.org
  17. Vendor: Project Vine
  18. Distribution: Vine Linux
  19. Packager: Daisuke SUZUKI <daisuke@linux.or.jp>
  20. %description
  21. GLib is the low-level core library that forms the basis
  22. for projects such as GTK+ and GNOME. It provides data structure
  23. handling for C, portability wrappers, and interfaces for such runtime
  24. functionality as an event loop, threads, dynamic loading, and an
  25. object system.
  26. This package provides version 2.20 of GLib.
  27. %package devel
  28. Summary: Development files for the GLib library
  29. Group: Development/Libraries
  30. Obsoletes: glib-gtkbeta-devel
  31. Requires: pkgconfig >= 0.14
  32. Requires: %{name} = %{version}
  33. Conflicts: glib-devel <= 1.2.8
  34. %description devel
  35. The glib-devel package includes the header files for
  36. version 2.20 of the GLib library.
  37. ## to build compat32 for x86_64 architecture support
  38. %package -n compat32-%{name}
  39. Summary: A library of handy utility functions.
  40. Group: System Environment/Libraries
  41. %description -n compat32-%{name}
  42. GLib is the low-level core library that forms the basis
  43. for projects such as GTK+ and GNOME. It provides data structure
  44. handling for C, portability wrappers, and interfaces for such runtime
  45. functionality as an event loop, threads, dynamic loading, and an
  46. object system.
  47. This package provides version 2.20 of GLib.
  48. %package -n compat32-%{name}-devel
  49. Summary: Development files for the GLib library
  50. Group: Development/Libraries
  51. Requires: pkgconfig >= 0.14
  52. Requires: compat32-%{name} = %{version}
  53. Conflicts: glib-devel <= 1.2.8
  54. %description -n compat32-%{name}-devel
  55. The glib-devel package includes the header files for
  56. version 2.20 of the GLib library.
  57. %prep
  58. %setup -q -n glib-%{version}
  59. %build
  60. %configure --disable-selinux --enable-static
  61. make %{?_smp_mflags}
  62. %install
  63. rm -rf $RPM_BUILD_ROOT
  64. mkdir -p $RPM_BUILD_ROOT%{_bindir}
  65. %makeinstall
  66. ## glib2.sh and glib2.csh
  67. ./mkinstalldirs $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
  68. install -m 755 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
  69. install -m 755 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
  70. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  71. rm -f $RPM_BUILD_ROOT%{_libdir}/gio/modules/lib*.{a,la}
  72. %find_lang glib20
  73. %clean
  74. rm -rf $RPM_BUILD_ROOT
  75. %post -p /sbin/ldconfig
  76. %postun -p /sbin/ldconfig
  77. %post -n compat32-%{name} -p /sbin/ldconfig
  78. %postun -n compat32-%{name} -p /sbin/ldconfig
  79. %files -f glib20.lang
  80. %defattr(-, root, root)
  81. %doc AUTHORS COPYING ChangeLog NEWS README
  82. %{_libdir}/libglib-2.0.so.*
  83. %{_libdir}/libgthread-2.0.so.*
  84. %{_libdir}/libgmodule-2.0.so.*
  85. %{_libdir}/libgobject-2.0.so.*
  86. %{_libdir}/libgio-2.0.so.*
  87. %{_libdir}/gio/modules/lib*.so
  88. %{_sysconfdir}/profile.d/*
  89. %files devel
  90. %defattr(-, root, root)
  91. %{_libdir}/lib*.so
  92. %{_libdir}/lib*.a
  93. %{_libdir}/glib-2.0
  94. %{_includedir}/*
  95. %{_datadir}/aclocal/*
  96. %{_libdir}/pkgconfig/*
  97. %{_datadir}/glib-2.0
  98. %{_bindir}/*
  99. %doc %{_datadir}/gtk-doc/html/*
  100. %doc %{_mandir}/man1/*
  101. %{_datadir}/gdb/auto-load%{_libdir}/libglib-2.0.so.*-gdb.py*
  102. %{_datadir}/gdb/auto-load%{_libdir}/libgobject-2.0.so.*-gdb.py*
  103. %if %{build_compat32}
  104. %files -n compat32-%{name}
  105. %defattr(-, root, root)
  106. %{_libdir}/libglib-2.0.so.*
  107. %{_libdir}/libgthread-2.0.so.*
  108. %{_libdir}/libgmodule-2.0.so.*
  109. %{_libdir}/libgobject-2.0.so.*
  110. %{_libdir}/libgio-2.0.so.*
  111. %{_libdir}/gio/modules/lib*.so
  112. %files -n compat32-%{name}-devel
  113. %defattr(-, root, root)
  114. %{_libdir}/lib*.so
  115. %{_libdir}/lib*.a
  116. %{_libdir}/glib-2.0
  117. %{_libdir}/pkgconfig/*
  118. %endif
  119. %changelog
  120. * Mon Jan 11 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.22.4-1
  121. - new upstream release
  122. * Thu Jan 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.22.3-1
  123. - new upstream release
  124. * Sun Oct 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.2-1
  125. - new upstream release
  126. * Thu Sep 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.0-1
  127. - new upstream release
  128. * Mon Jun 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.4-1
  129. - new upstream release
  130. * Tue Jun 09 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.3-1
  131. - new upstream release
  132. * Thu May 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.2-1
  133. - new upstream release
  134. * Sat Apr 11 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.20.1-1
  135. - new upstream release
  136. * Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.0-1
  137. - new upstream release
  138. * Sun Jan 18 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.18.4-1
  139. - new upstream release
  140. * Tue Nov 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.3-1
  141. - new upstream release
  142. * Tue Oct 21 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.2-1
  143. - new upstream release
  144. * Sat Sep 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-1
  145. - new upstream release
  146. * Fri Sep 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.0-1
  147. - new upstream release
  148. * Mon Jul 7 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.16.4-1
  149. - new upstream release
  150. * Sat May 10 2008 NAKAMURA Kenta <kenta@vinelinux.org> 2.16.3-2
  151. - updated %%if %%{build_compat32} case related statements
  152. * Wed Apr 9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.16.3-1vl5
  153. - new upstream release
  154. - removed lib*.la files from devel package
  155. * Sun Apr 6 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.16.2-1vl5
  156. - new upstream release
  157. * Thu Mar 20 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.16.1-1vl5
  158. - added %%{?_dist_release}
  159. - BuildRequires: gamin-devel
  160. * Tue Mar 11 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.16.1-0vl1
  161. - new upstream release
  162. * Thu Feb 7 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.6-0vl1
  163. - new upstream release
  164. * Wed Jan 9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.5-0vl1
  165. - new upstream release
  166. * Wed Nov 14 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.3-0vl1
  167. - new upstream release
  168. * Thu Oct 18 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.2-0vl1
  169. - new upstream release
  170. - removed BuildRequires: automake17
  171. * Thu Sep 20 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.1-0vl1
  172. - new upstream release
  173. * Sun Aug 19 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.0-0vl1
  174. - new upstream release
  175. * Wed Jul 18 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.13-0vl1
  176. - new upstream release
  177. * Sun May 20 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.12-0vl2
  178. - rebuild with new environment
  179. * Thu May 03 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.12-0vl1
  180. - new upstream release
  181. * Thu Mar 15 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.11-0vl1
  182. - new upstream release
  183. * Mon Jan 08 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.7-0vl1
  184. - new upstream release
  185. * Mon Dec 25 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.6-0vl1
  186. - new upstream release
  187. * Thu Aug 31 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.3-0vl1
  188. - new upstream release
  189. * Wed Aug 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.2-0vl1
  190. - new upstream release
  191. * Sat Aug 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.1-0vl1
  192. - new upstream release
  193. * Mon Jun 26 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.10.3-0vl3
  194. - rebuild
  195. * Sun Jun 11 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.3-0vl2
  196. - update glib2.{sh,csh}
  197. - add EUC-JP,CP932,UTF-8 to G_FILENAME_ENCODING
  198. * Fri Jun 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.3-0vl1
  199. - new upstream release
  200. * Sat Apr 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.2-0vl1
  201. - new upstream release
  202. * Thu Mar 09 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.1-0vl1
  203. - new upstream release
  204. * Sun Mar 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.0-0vl1
  205. - new upstream release
  206. * Mon Feb 27 2006 Shu KONNO <owa@bg.wakwak.com> 2.8.6-0vl2
  207. - added compat32-* packages for x86_64 architecture support
  208. - chaged G_ATOMIC_X86_64 to I486 in config.h before making compat32
  209. * Sun Jan 29 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.6-0vl1
  210. - new upstream release
  211. * Thu Jan 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.5-0vl1
  212. - new upstream release
  213. * Wed Nov 30 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.4-0vl1
  214. - new upstream release
  215. * Tue Sep 27 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.2-0vl1
  216. - new upstream release
  217. * Tue Sep 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.1-0vl3
  218. - fixed typo in glib2.csh
  219. * Sun Sep 18 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.1-0vl2
  220. - update glib2.{sh,csh} to use G_FILENAME_ENCODING instead of
  221. G_BROKEN_FILENAMES.
  222. * Wed Aug 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.1-0vl1
  223. - new upstream release
  224. * Sat Aug 13 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.0-0vl1
  225. - new upstream release
  226. * Sat Aug 06 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.7-0vl1
  227. - new upstream release
  228. * Fri Aug 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.6-0vl1
  229. - new upstream release
  230. * Tue Aug 02 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.4-0vl1
  231. - new upstream release
  232. * Sun Jul 03 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.5-0vl1
  233. - new upstream release
  234. - add *.la to build arts (should be fixed in arts?)
  235. * Sat Apr 09 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.4-0vl1
  236. - new upstream release
  237. * Fri Mar 04 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.3-0vl1
  238. - new upstream release
  239. * Sat Feb 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.2-0vl1
  240. - new upstream release
  241. * Mon Jan 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.1-0vl1
  242. - new upstream release
  243. * Sat Dec 04 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.8-0vl1
  244. - new upstream release
  245. * Mon Nov 08 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.7-0vl2
  246. - rebuilt
  247. * Mon Oct 11 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.7-0vl1
  248. - new upstream release
  249. * Sat Aug 14 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.6-0vl1
  250. - new upstream release
  251. * Sun Aug 08 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.5-0vl1
  252. - new upstream release
  253. * Fri Jul 16 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4-0vl1
  254. - new upstream release
  255. * Sat Jun 5 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.2-0vl1
  256. - new upstream release
  257. * Sat May 1 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.1-0vl1
  258. - new upstream release
  259. * Thu Mar 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl1
  260. - new upstream release
  261. * Wed Dec 24 2003 Tomoya TAKA <taka@vinelinux.org> 2.2.3-0vl2
  262. - rebuild with new toolchain
  263. * Sun Aug 30 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.3-0vl1
  264. - new upstream release
  265. * Tue Jun 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.2-0vl1
  266. - new upstream release
  267. * Mon Feb 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.1-0vl1
  268. - new upstream release
  269. * Wed Dec 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0-0vl1
  270. - new upstream release
  271. * Fri Dec 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.4-0vl1
  272. - new upstream release
  273. - build for Vine Linux
  274. * Tue Aug 13 2002 Havoc Pennington <hp@redhat.com>
  275. - install glib2.sh and glib2.csh to set G_BROKEN_FILENAMES
  276. - blow away unpackaged files in install
  277. * Thu Aug 8 2002 Owen Taylor <otaylor@redhat.com>
  278. - Version 2.0.6
  279. - Remove fixed-ltmain.sh; shouldn't be needed any more.
  280. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  281. - automated rebuild
  282. * Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
  283. - 2.0.4
  284. * Thu May 23 2002 Tim Powers <timp@redhat.com>
  285. - automated rebuild
  286. * Wed Apr 24 2002 Havoc Pennington <hp@redhat.com>
  287. - rebuild in different environment
  288. * Mon Apr 15 2002 Owen Taylor <otaylor@redhat.com>
  289. - Fix missing .po files (#63336)
  290. * Wed Apr 3 2002 Alex Larsson <alexl@redhat.com>
  291. - Update to version 2.0.1
  292. * Fri Mar 8 2002 Owen Taylor <otaylor@redhat.com>
  293. - Version 2.0.0
  294. * Mon Feb 25 2002 Alex Larsson <alexl@redhat.com>
  295. - Update to 1.3.15
  296. * Thu Feb 21 2002 Alex Larsson <alexl@redhat.com>
  297. - Bump for rebuild
  298. * Mon Feb 18 2002 Alex Larsson <alexl@redhat.com>
  299. - Update to 1.3.14
  300. * Fri Feb 15 2002 Havoc Pennington <hp@redhat.com>
  301. - add horrible buildrequires hack
  302. * Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
  303. - 1.3.13.91 cvs snap
  304. * Mon Feb 11 2002 Matt Wilson <msw@redhat.com>
  305. - rebuild from CVS snapshot
  306. - use setup -q
  307. * Thu Jan 31 2002 Jeremy Katz <katzj@redhat.com>
  308. - rebuild
  309. * Tue Jan 29 2002 Owen Taylor <otaylor@redhat.com>
  310. - 1.3.13
  311. * Tue Jan 22 2002 Havoc Pennington <hp@redhat.com>
  312. - attempting rebuild in rawhide
  313. * Wed Jan 2 2002 Havoc Pennington <hp@redhat.com>
  314. - remove 64-bit patch now upstream, 1.3.12.90
  315. * Mon Nov 26 2001 Havoc Pennington <hp@redhat.com>
  316. - add some missing files to file list, langify
  317. * Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
  318. - add temporary patch to fix GTypeFundamentals on 64-bit
  319. * Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
  320. - Version 1.3.11
  321. * Thu Oct 25 2001 Owen Taylor <otaylor@redhat.com>
  322. - Version 1.3.10
  323. * Tue Sep 25 2001 Owen Taylor <otaylor@redhat.com>
  324. - Version 1.3.9
  325. * Wed Sep 19 2001 Owen Taylor <otaylor@redhat.com>
  326. - Version 1.3.8
  327. * Fri Jul 20 2001 Owen Taylor <otaylor@redhat.com>
  328. - Make -devel package require main package (#45388)
  329. - Fix description and summary
  330. - Configure with --disable-gtk-doc
  331. * Wed Jun 20 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  332. - add some portability fixes needed at least on s390
  333. - copy config.{guess,sub} instead of calling libtoolize
  334. * Wed Jun 13 2001 Havoc Pennington <hp@redhat.com>
  335. - try a new glib tarball with Makefile changes to work around
  336. libtool linking to installed .la files
  337. - make -devel require pkgconfig
  338. * Tue Jun 12 2001 Havoc Pennington <hp@redhat.com>
  339. - either libtool or the bad libtool hacks caused link
  340. against glib-gobject 1.3.2, rebuild
  341. * Tue Jun 12 2001 Havoc Pennington <hp@redhat.com>
  342. - 1.3.6
  343. - bad libtool workarounds
  344. * Fri May 04 2001 Owen Taylor <otaylor@redhat.com>
  345. - 1.3.5, rename to glib2
  346. * Fri Nov 17 2000 Owen Taylor <otaylor@redhat.com>
  347. - Final 1.3.2
  348. * Mon Nov 13 2000 Owen Taylor <otaylor@redhat.com>
  349. - Version 1.3.2pre1
  350. - Remove pkgconfig
  351. * Sun Aug 13 2000 Owen Taylor <otaylor@redhat.com>
  352. - Call 1.3.1b instead of snap... the snap* naming doesn't
  353. order correctly.
  354. * Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
  355. - new snapshot with fixed .pc files
  356. * Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
  357. - include .pc files in file list
  358. * Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
  359. - Include pkg-config
  360. - Upgrade to a glib CVS snapshot
  361. * Wed Jul 19 2000 Jakub Jelinek <jakub@redhat.com>
  362. - rebuild to cope with glibc locale binary incompatibility
  363. * Fri Jul 14 2000 Owen Taylor <otaylor@redhat.com>
  364. - Remove glib-config.1 manpage from build since
  365. it conflicts with glib-devel. When we go to
  366. glib glib1.2 setup, we should add it back
  367. * Fri Jul 07 2000 Owen Taylor <otaylor@redhat.com>
  368. - Version 1.3.1
  369. - Move back to standard %{prefix}
  370. * Thu Jun 8 2000 Owen Taylor <otaylor@redhat.com>
  371. - Rebuild in /opt/gtk-beta
  372. * Tue May 30 2000 Owen Taylor <otaylor@redhat.com>
  373. - New version (adds gobject)
  374. * Wed Apr 25 2000 Owen Taylor <otaylor@redhat.com>
  375. - Don't blow away /etc/ld.so.conf (sorry!)
  376. * Tue Apr 24 2000 Owen Taylor <otaylor@redhat.com>
  377. - Snapshot RPM for Pango testing
  378. * Fri Feb 04 2000 Owen Taylor <otaylor@redhat.com>
  379. - Added fixes from stable branch of CVS
  380. * Thu Oct 7 1999 Owen Taylor <otaylor@redhat.com>
  381. - version 1.2.6
  382. * Fri Sep 24 1999 Owen Taylor <otaylor@redhat.com>
  383. - version 1.2.5
  384. * Fri Sep 17 1999 Owen Taylor <otaylor@redhat.com>
  385. - version 1.2.4
  386. * Mon Jun 7 1999 Owen Taylor <otaylor@redhat.com>
  387. - version 1.2.3
  388. * Thu Mar 25 1999 Michael Fulbright <drmike@redhat.com>
  389. - version 1.2.1
  390. * Fri Feb 26 1999 Michael Fulbright <drmike@redhat.com>
  391. - Version 1.2
  392. * Thu Feb 25 1999 Michael Fulbright <drmike@redhat.com>
  393. - version 1.2.0pre1
  394. * Tue Feb 23 1999 Cristian Gafton <gafton@redhat.com>
  395. - new description tags
  396. * Sun Feb 21 1999 Michael Fulbright <drmike@redhat.com>
  397. - removed libtoolize from %build
  398. * Thu Feb 11 1999 Michael Fulbright <drmike@redhat.com>
  399. - added libgthread to file list
  400. * Fri Feb 05 1999 Michael Fulbright <drmike@redhat.com>
  401. - version 1.1.15
  402. * Wed Feb 03 1999 Michael Fulbright <drmike@redhat.com>
  403. - version 1.1.14
  404. * Mon Jan 18 1999 Michael Fulbright <drmike@redhat.com>
  405. - version 1.1.13
  406. * Wed Jan 06 1999 Michael Fulbright <drmike@redhat.com>
  407. - version 1.1.12
  408. * Wed Dec 16 1998 Michael Fulbright <drmike@redhat.com>
  409. - updated in preparation for the GNOME freeze
  410. * Mon Apr 13 1998 Marc Ewing <marc@redhat.com>
  411. - Split out glib package