source: projects/specs/trunk/p/pango/pango-vl.spec @ 12396

Revision 12396, 18.4 KB checked in by tomop, 4 years ago (diff)

updated 15 packages

devhelp-3.36.2-1

gitg-3.32.1-

glade3-3.22.2-1

glib-networking-2.64.2-1

gnome-builder-3.36.0-1

gspell-1.8.3-1

gtk3-3.24.20-1

gtkspell3-3.0.10-2

json-glib-1.4.4-2

libdazzle-3.36.0-1

libepoxy-1.5.4-1

libgee-0.20.3-1

libpeas-1.26.0-1

pango-1.44.7-1

vte3-0.60.2-1

Line 
1%define glib2_version 2.55.0
2%define pkgconfig_version 0.12
3%define freetype2_version 2.8.1
4%define fontconfig_version 2.12.6
5%define cairo_version 1.14.12
6
7# biarch support
8%define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
9%define _querymodules_suffix %{nil}
10%if %{build_compat32}
11%define _querymodules_suffix -32
12%endif
13
14Summary: System for layout and rendering of internationalized text.
15Summary(ja): 国際化テキストのレイアウト・レンダリングシステム
16Name: pango
17Version: 1.44.7
18Release: 1%{?_dist_release}
19Group: System Environment/Libraries
20Vendor: Project Vine
21Distribution: Vine Linux
22
23License: LGPL
24URL: https://pango.gnome.org/
25%global shortver %(echo %{version} | cut -d . -f 1,2)
26Source0: https://download.gnome.org/sources/%{name}/%{shortver}/%{name}-%{version}.tar.xz
27BuildRoot: %{_tmppath}/%{name}-%{version}-root
28
29# We need to prereq this so we can run pango-querymodules
30Requires: glib2 >= %{glib2_version}
31Requires: freetype2 >= %{freetype2_version}
32BuildRequires: meson
33BuildRequires: glib2-devel >= %{glib2_version}
34BuildRequires: pkgconfig >= %{pkgconfig_version}
35BuildRequires: freetype2-devel >= %{freetype2_version}
36BuildRequires: fontconfig-devel >= %{fontconfig_version}
37BuildRequires: libX11-devel, libXft-devel, libXrender-devel
38BuildRequires: cairo-devel >= %{cairo_version}
39BuildRequires: libSM-devel
40BuildRequires: gobject-introspection-devel
41BuildRequires: libthai-devel
42BuildRequires: harfbuzz-devel
43BuildRequires: fribidi-devel
44BuildRequires: gtk-doc
45BuildRequires: help2man
46Obsoletes: pango-gtkbeta, fribidi-gtkbeta
47
48%description
49Pango is a system for layout and rendering of internationalized text.
50
51%description -l ja
52Pango は国際化テキストのレイアウト・レンダリングシステムです。
53
54
55%package devel
56Summary: System for layout and rendering of internationalized text.
57Summary(ja): 国際化テキストのレイアウト・レンダリングシステム
58Group: Development/Libraries
59Requires: %{name} = %{version}
60Requires: glib2-devel >= %{glib2_version}
61Requires: freetype2-devel >= %{freetype2_version}
62Requires: cairo-devel >= %{cairo_version}
63Requires: libX11-devel, libXft-devel, libXrender-devel
64Requires: harfbuzz-devel
65Obsoletes: fribidi-gtkbeta-devel, pango-gtkbeta-devel
66
67%description devel
68The pango-devel package includes the static libraries, header files,
69and developer docs for the pango package.
70
71Install pango-devel if you want to develop programs which will use
72pango.
73
74#####################################################################
75# compat32
76%package -n compat32-%{name}
77Summary: System for layout and rendering of internationalized text.
78Summary(ja): 国際化テキストのレイアウト・レンダリングシステム
79Group: Development/Libraries
80%description -n compat32-%{name}
81Pango is a system for layout and rendering of internationalized text.
82%description -n compat32-%{name} -l ja
83Pango は国際化テキストのレイアウト・レンダリングシステムです。
84
85%package -n compat32-%{name}-devel
86Summary: Development files for pango
87Summary(ja): pango 用の開発ファイル
88Group: Development/Libraries
89Requires: compat32-%{name} = %{version}
90Requires: %{name}-devel = %{version}
91%description -n compat32-%{name}-devel
92The pango-devel package includes the static libraries, header files,
93and developer docs for the pango package.
94
95
96%prep
97%setup -q -n pango-%{version}
98
99%build
100%meson \
101        -Dgtk_doc=true \
102        -Dintrospection=true \
103        -Duse_fontconfig=true
104
105%meson_build
106
107
108%install
109rm -rf $RPM_BUILD_ROOT
110%meson_install
111
112
113%clean
114rm -rf $RPM_BUILD_ROOT
115
116
117%post -p /sbin/ldconfig
118
119%postun -p /sbin/ldconfig
120
121%if %{build_compat32}
122%post -p /sbin/ldconfig -n compat32-%{name}
123
124%postun -p /sbin/ldconfig -n compat32-%{name}
125%endif
126
127
128%files
129%defattr(-, root, root)
130%license COPYING
131%doc README AUTHORS NEWS
132%doc pango-view/HELLO.txt
133#doc README AUTHORS COPYING ChangeLog
134#doc examples/HELLO.utf8
135%{_bindir}/pango-view
136%{_bindir}/pango-list
137%{_libdir}/libpango*-*.so.*
138%{_libdir}/girepository-1.0
139%{_mandir}/man*/*
140
141%files devel
142%defattr(-, root, root)
143%{_libdir}/libpango*.so
144%{_includedir}/*
145%{_libdir}/pkgconfig/*
146%{_datadir}/gtk-doc/*
147%{_datadir}/gir-1.0
148
149%if %{build_compat32}
150%files -n compat32-%{name}
151%defattr(-, root, root)
152%{_libdir}/libpango*-*.so.*
153
154%files -n compat32-%{name}-devel
155%defattr(-, root, root)
156%{_libdir}/libpango*.so
157%endif
158
159
160%changelog
161* Tue May 05 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.44.7-1
162- new upstream release.
163
164* Sun Jan 07 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.40.14-1
165- new upstream release.
166
167* Thu Jul 14 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.40.1-1
168- new upstream release
169
170* Thu Oct 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.38.1-1
171- new upstream release
172- remove old patches
173
174* Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.36.8-1
175- new upstream release
176
177* Sat Jun 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.36.5-1
178- new upstream release
179
180* Fri Mar 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.36.3-1
181- new upstream release
182
183* Sat Feb 08 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.36.2-1
184- new upstream release
185
186* Sun Nov 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.36.1-1
187- new upstream release
188
189* Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.36.0-1
190- new upstream release
191
192* Sat May 18 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.34.1-1
193- new upstream release
194
195* Wed Apr 17 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.34.0-1
196- new upstream release
197
198* Wed Jan 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.32.5-1
199- new upstream release
200
201* Wed Nov 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.32.2-1
202- new upstream release
203
204* Fri Sep 28 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.32.1-1
205- new upstream release
206- update Patch0 (pango-1.31.2-lib64.patch)
207- add BuildRequires: harfbuzz-devel
208
209* Tue Jun 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.30.1-1
210- new upstream release
211
212* Sat Mar 31 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.30.0-1
213- new upstream release
214
215* Wed Jan 04 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.29.4-2
216- add BuildRequires: libthai-devel
217
218* Thu Oct 06 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.29.4-1
219- new upstream release
220
221* Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.29.3-1
222- new upstream release
223
224* Mon Apr 25 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.28.4-1
225- new upstream release with security fixes (CVE-2011-0020, 0064)
226- add Vendor/Distri tags
227
228* Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.28.3-1
229- add BuildRequires: libSM-devel, gobject-introspection-devel
230- add Patch1 (pango-1.28.1-gobject-introspection.patch)
231
232* Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 1.28.1-2
233- build with rpm-4.8.1-1 for pkg-config file
234
235* Mon Jun 21 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.28.1-1
236- new upstream release
237
238* Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.28.0-1
239- new upstream release
240
241* Sun Jan 10 2010 Shu KONNO <owa@bg.wakwak.com> 1.26.2-2
242- changed %%makeinstall to make install with DESTDIR option
243
244* Thu Jan 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.26.2-1
245- new upstream release
246
247* Sun Nov 29 2009 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.26.1-1
248- new upstream release
249
250* Thu Sep 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.26.0-1
251- new upstream release
252
253* Sun Jul 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.24.5-1
254- new upstream release
255
256* Wed Jul 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.24.4-1
257- new upstream release
258
259* Thu May 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.24.2-1
260- new upstream release
261
262* Mon May 04 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.24.1-2
263- removed %%if !%%{build_compat32} case condition
264
265* Mon May 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.24.1-1
266- new upstream release
267
268* Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.24.0-1
269- new upstream release
270
271* Tue Dec 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.22.4-1
272- new upstream release
273
274* Tue Nov 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.22.3-1
275- new upstream release
276
277* Fri Oct 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.22.1-1
278- new upstream release
279
280* Tue Sep 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.22.0-1
281- new upstream release
282
283* Thu Jul 10 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.20.5-1
284- new upstream release
285
286* Sun May 25 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.20.3-2
287- spec in UTF-8 actually
288
289* Sun May 25 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.20.3-1
290- new upstream release
291- rebuilt with xorg-x11 7.3
292
293* Wed Apr  9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.20.1-1vl5
294- new upstream release
295
296* Thu Mar 20 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.20.0-1vl5
297- used %{?_dist_release}
298
299* Wed Mar 12 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.20.0-0vl1
300- new upstream release
301
302* Thu Jan 10 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.18.4-0vl1
303- new upstream release
304
305* Fri Nov 16 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.18.3-0vl1
306- new upstream release
307- added Patch0 instead of Patch5
308
309* Sun May 20 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.16.4-0vl2
310- replace build with new environment
311
312* Sun May 20 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.16.4-0vl2
313- rebuild with new environment
314
315* Thu May 03 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.16.4-0vl1
316- new upstream release
317
318* Wed Apr 25 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.16.2-0vl1
319- new upstream release
320
321* Mon Dec 25 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.9-0vl1
322- new upstream release
323
324* Sun Oct 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.14.7-0vl1
325- new upstream release
326
327* Sat Sep 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.14.4-0vl1
328- new upstream release
329
330* Thu Aug 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.14.0-0vl1
331- new upstream release
332
333* Tue Aug 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.3-0vl3
334- rebuild with cairo-1.2.0
335
336* Tue Aug 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.3-0vl2
337- add Patch10 to create fake style(italic/bold) for all fonts.
338  http://bugzilla.gnome.org/show_bug.cgi?id=319808
339  - This patch is not applied in upstream, but it seems usefull
340    for us.
341
342* Sun May 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.3-0vl1
343- new upstream release
344
345* Sun Apr 30 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.2-0vl1
346- new upstream release
347
348* Sat Apr 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.1-0vl1
349- new upstream release
350
351* Fri Mar 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.0-0vl2
352- fix broken dependancy
353
354* Tue Mar 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.0-0vl1
355- new upstream release
356
357* Sun Mar 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.11.99-0vl1
358- new upstream release
359- add compat32 package for x86_64 arch support
360- add Patch5 for biarch support
361
362* Sun Jan 29 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.10.2-0vl1
363- new upstream release
364
365* Sat Oct 08 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.10.1-0vl1
366- new upstream release
367
368* Sun Aug 28 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.10.0-0vl1
369- new upstream release
370
371* Mon Aug 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.1-0vl2
372- rebuild with cairo-0.9
373- add patch10 to disable building example programs
374
375* Tue Aug 02 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.1-0vl1
376- new upstream release
377
378* Mon Jan 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.0-0vl1
379- new upstream release
380- drop obsolete patches
381
382* Sun Nov 07 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.0-0vl1
383- new upstream release
384- import upstream patches from fedora package.
385
386* Sat Aug 14 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.1-0vl1
387- new upstream release
388
389* Thu Mar 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.0-0vl1
390- new upstream release
391
392* Thu Mar  4 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.5-0vl3
393- remove unneeded dependancy to freetype2-devel
394
395* Wed Nov 19 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.5-0vl2
396- add patch10 to build against freetype-2.1.7
397- rebuild with freetype-2.1.7
398
399* Mon Sep 01 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.5-0vl1
400- new upstream release
401
402* Tue Jun 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.3-0vl1
403- new upstream release
404
405* Mon Feb 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.1-0vl1
406- new upstream release
407
408* Thu Jan 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.0-0vl2
409- merge patch1,2 from rawhide package.
410
411* Wed Dec 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.0-0vl1
412- new upstream release
413
414* Fri Dec 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.5-0vl1
415- new upstream release
416- Build for Vine Linux, specfile are based on rawhide release
417
418* Thu Nov 21 2002 Havoc Pennington <hp@redhat.com>
419- change PKG_CONFIG_PATH hack to also search /usr/X11R6/lib64/pkgconfig
420
421* Wed Nov 20 2002 Havoc Pennington <hp@redhat.com>
422- explicitly require pangoxft to be built, so we catch situations such
423  as xft.pc moving to /usr/X11R6
424- also add /usr/X11R6/lib/pkgconfig to PKG_CONFIG_PATH as a temporary
425  hack
426
427* Thu Nov  7 2002 Havoc Pennington <hp@redhat.com>
428- 1.1.3
429
430* Thu Oct 31 2002 Owen Taylor <otaylor@redhat.com> 1.1.1-5
431- Require the necessary freetype version, don't just
432  BuildRequires it (#74744)
433
434* Thu Oct 31 2002 Owen Taylor <otaylor@redhat.com> 1.1.1-4
435- Own /etc/pango (#73962, Enrico Scholz)
436- Remove .la files from the build root
437
438* Mon Oct  7 2002 Havoc Pennington <hp@redhat.com>
439- require glib 2.0.6-3, try rebuild on more arches
440
441* Wed Aug 21 2002 Owen Taylor <otaylor@redhat.com>
442- Version 1.1.1 (main change, fixes font selection for FT2 backend,
443  as in gdmgreeter)
444
445* Thu Aug 15 2002 Owen Taylor <otaylor@redhat.com>
446- Fix linked list manipulation problem that was causing hang for anaconda
447- Fix warning from loading mini-fonts with context == NULL
448
449* Wed Aug 14 2002 Owen Taylor <otaylor@redhat.com>
450- Fix major memory leak in the last patch
451
452* Tue Aug 13 2002 Owen Taylor <otaylor@redhat.com>
453- Actually use language tags at the rendering layer (should fix #68211)
454
455* Mon Jul 15 2002 Owen Taylor <otaylor@redhat.com>
456- Remove fixed-ltmain.sh, relibtoolize; to fix relink problems without
457- Fix bug causing hex boxes to be misrendered
458  leaving RPATH (#66005)
459- For FT2 backend, supply FT_LOAD_NO_BITMAP to avoid problems with
460  fonts with embedded bitmaps (#67851)
461
462* Mon Jul  8 2002 Owen Taylor <otaylor@redhat.com>
463- Make basic-x shaper work with our big-5 fonts
464
465* Wed Jul  3 2002 Owen Taylor <otaylor@redhat.com>
466- New upstream tarball with hooks for change-on-the fly font rendering
467
468* Tue Jun 25 2002 Owen Taylor <otaylor@redhat.com>
469- Up FreeType version to deal with FreeType-2.0.x / 2.1.x \
470  ABI changes for pango's OpenType code.
471
472* Mon Jun 24 2002 Owen Taylor <otaylor@redhat.com>
473- Add some Korean aliases that the installer wants
474
475* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
476- automated rebuild
477
478* Sat Jun  8 2002 Havoc Pennington <hp@redhat.com>
479- devel package requires fontconfig/Xft devel packages
480
481* Fri Jun 07 2002 Havoc Pennington <hp@redhat.com>
482- rebuild in different environment
483
484* Thu Jun  6 2002 Owen Taylor <otaylor@redhat.com>
485- Snapshot with Xft2/fontconfig support
486
487* Wed May 29 2002 Owen Taylor <otaylor@redhat.com>
488- Version 1.0.2
489- Patch for charmaps problem
490
491* Sun May 26 2002 Tim Powers <timp@redhat.com>
492- automated rebuild
493
494* Wed May 22 2002 Havoc Pennington <hp@redhat.com>
495- rebuild in different environment
496
497* Wed May 22 2002 Havoc Pennington <hp@redhat.com>
498- add patch to adjust to newer version of freetype
499
500* Wed Apr  3 2002 Alex Larsson <alexl@redhat.com>
501- Update to version 1.0.1, remove patch
502
503* Tue Mar 19 2002 Owen Taylor <otaylor@redhat.com>
504- Patch from CVS for big speedup with FreeType-2.0.9
505
506* Mon Mar 11 2002 Owen Taylor <otaylor@redhat.com>
507- Rebuild
508
509* Fri Mar  8 2002 Owen Taylor <otaylor@redhat.com>
510- Version 1.0.0
511
512* Mon Feb 25 2002 Alex Larsson <alexl@redhat.com>
513- Update to 0.26
514
515* Thu Feb 21 2002 Alex Larsson <alexl@redhat.com>
516- Bump for rebuild
517
518* Mon Feb 18 2002 Alex Larsson <alexl@redhat.com>
519- Update to 0.25
520
521* Fri Feb 15 2002 Havoc Pennington <hp@redhat.com>
522- add horrible buildrequires hack
523
524* Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
525- 0.24.90 cvs snap
526
527* Tue Jan 29 2002 Owen Taylor <otaylor@redhat.com>
528- Version 0.24
529
530* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
531- automated rebuild
532
533* Wed Jan  2 2002 Havoc Pennington <hp@redhat.com>
534- new snap 0.23.90
535
536* Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
537- rebuild with 64-bit-fixed glib
538
539* Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
540- Version 0.22
541- add explicit check for required glib2 version before we do the build,
542  so we don't end up with bad RPMs on --nodeps builds
543- PreReq the glib2_version version, instead of 1.3.8 hardcoded that
544  no one had updated recently
545
546* Thu Oct 25 2001 Owen Taylor <otaylor@redhat.com>
547- Version 0.21
548
549* Thu Oct  4 2001 Havoc Pennington <hp@redhat.com>
550- cvs snap
551- new cvs snap with a bugfix
552
553* Thu Sep 27 2001 Havoc Pennington <hp@redhat.com>
554- sync with Owen's changes, fix up dependency versions
555
556* Wed Sep 19 2001 Havoc Pennington <hp@redhat.com>
557- 0.19
558
559* Mon Sep 10 2001 Havoc Pennington <hp@redhat.com>
560- build CVS snap
561
562* Wed Sep 05 2001 Havoc Pennington <hp@redhat.com>
563- no relinking junk
564
565* Tue Sep  4 2001 root <root@dhcpd37.meridian.redhat.com>
566- Version 0.18
567
568* Fri Jul 20 2001 Owen Taylor <otaylor@redhat.com>
569- Configure --disable-gtk-doc
570- BuildRequires freetype-devel, XFree86-devel
571
572* Tue Jun 12 2001 Havoc Pennington <hp@redhat.com>
573- 0.17
574- libtool hackarounds
575
576* Fri May 04 2001 Owen Taylor <otaylor@redhat.com>
577- 0.16, rename back to pango from pango-gtkbeta
578
579* Fri Feb 16 2001 Owen Taylor <otaylor@redhat.com>
580- Obsolete fribidi-gtkbeta
581
582* Mon Dec 11 2000 Havoc Pennington <hp@redhat.com>
583- Remove that patch I just put in
584
585* Mon Dec 11 2000 Havoc Pennington <hp@redhat.com>
586- Patch pangox.pc.in to include -Iincludedir
587
588* Fri Nov 17 2000 Owen Taylor <otaylor@redhat.com>
589- final 0.13
590
591* Tue Nov 14 2000 Owen Taylor <otaylor@redhat.com>
592- New 0.13 tarball
593
594* Mon Nov 13 2000 Owen Taylor <otaylor@redhat.com>
595- 0.13pre1
596
597* Sun Aug 13 2000 Owen Taylor <otaylor@redhat.com>
598- Rename to 0.12b to avoid versioning problems
599
600* Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
601- Move to a CVS snapshot
602
603* Fri Jul 07 2000 Owen Taylor <otaylor@redhat.com>
604- Move back to /usr
605- Version 0.12
606
607* Mon Jun 19 2000  Owen Taylor <otaylor@redhat.com>
608- Add missing %%defattr
609
610* Thu Jun 8 2000  Owen Taylor <otaylor@redhat.com>
611- Rebuild with a prefix of /opt/gtk-beta
612
613* Wed May 31 2000 Owen Taylor <otaylor@redhat.com>
614- version 0.11
615- add --without-qt
616
617* Wed Apr 26 2000 Owen Taylor <otaylor@redhat.com>
618- Make the devel package require *-gtkbeta-* not the normal packages.
619
620* Tue Apr 25 2000 Owen Taylor <otaylor@redhat.com>
621- GTK+ snapshot version installing in /opt/gtk-beta
622
623* Fri Feb 11 2000 Owen Taylor <otaylor@redhat.com>
624- Created spec file
Note: See TracBrowser for help on using the repository browser.