From e7177d9e8449537bb5fa419623b7d0c70f41ece0 Mon Sep 17 00:00:00 2001 From: cvsdist Date: Sep 09 2004 14:13:39 +0000 Subject: auto-import changelog data from vte-0.11.10-4.src.rpm Tue Sep 16 2003 Nalin Dahyabhai 0.11.10-4 - rebuild Mon Sep 15 2003 Nalin Dahyabhai 0.11.10-3 - don't reset conversion states at end-of-line (GNOME #122156) Fri Sep 12 2003 Nalin Dahyabhai - draw the preedit string the way GTK+ wants us to draw it (#104039) Mon Jun 16 2003 Nalin Dahyabhai 0.11.10-2 - rebuild Mon Jun 16 2003 Nalin Dahyabhai 0.11.10-1 - fix vte_terminal_set_encoding() so that the Terminal/Character Coding menu works in gnome-terminal again - fix display of the character under the cursor in cases where it's too wide Wed Jun 04 2003 Elliot Lee - rebuilt Mon Jun 02 2003 Nalin Dahyabhai 0.11.9-2 - rebuild Mon Jun 02 2003 Nalin Dahyabhai 0.11.9-1 - fix saving/restoring the cursor with DECSET/DECRST - revert behavior wrt ambiguously-wide characters to be more like 0.10.x Thu May 22 2003 Nalin Dahyabhai 0.11.8-1 - close some memory leaks - fix conversions of NUL bytes (Ctrl-Space) Tue May 20 2003 Nalin Dahyabhai 0.11.7-1 - make handling of 8-bit SS2 and SS3 coexist properly with UTF-8 and other encodings where valid text can't be mistaken for the control codes - fix keypad page down in application keypad mode - fix reference loop which prevented proper finalizing of the widget Tue May 06 2003 Nalin Dahyabhai 0.11.6-1 - handle 8-bit SS2 and SS3 - share backgrounds between terminal instances Wed Apr 30 2003 Nalin Dahyabhai 0.11.5-1 - pick up font settings from xrdb if GTK+ doesn't know anything - support CP437 as a national replacement charset Thu Apr 24 2003 Nalin Dahyabhai 0.11.4-1 - update transparent background faster when moving windows - fix bold - add an AtkComponent interface for accessibility Thu Apr 17 2003 Nalin Dahyabhai 0.11.3-1 - rework support for national replacement charsets and iso2022 Thu Apr 17 2003 Nalin Dahyabhai 0.11.2-1 - selection tweaks and an openi18n fix Mon Apr 14 2003 Nalin Dahyabhai 0.11.1-1 - drawing cleanups Wed Apr 09 2003 Nalin Dahyabhai - rework drawing with Xft2 to use font sets - implement drawing with freetype using font sets --- diff --git a/.cvsignore b/.cvsignore index ca22213..465c95f 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -vte-0.10.25.tar.gz +vte-0.11.10.tar.gz diff --git a/sources b/sources index d1e44e5..b9788a1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -06bfd49db0a7ac017c63960e391e1b3f vte-0.10.25.tar.gz +5de74d77bb7bdd4526a41ff8bdd8b71b vte-0.11.10.tar.gz diff --git a/vte.spec b/vte.spec index 9445265..7f3c82e 100644 --- a/vte.spec +++ b/vte.spec @@ -1,11 +1,13 @@ Name: vte -Version: 0.10.25 -Release: 1 +Version: 0.11.10 +Release: 4 Summary: An experimental terminal emulator. License: LGPL Group: User Interface/X BuildRoot: %{_tmppath}/%{name}-root Source: %{name}-%{version}.tar.gz +Patch0: vte-0.11.10-preedit.patch +Patch1: vte-0.11.10-end-of-line.patch BuildPrereq: gtk2-devel, pygtk2-devel, python-devel Requires: bitmap-fonts @@ -23,12 +25,14 @@ package contains the files needed for building applications using VTE. %prep %setup -q +%patch0 -p0 -b .preedit +%patch1 -p0 -b .end-of-line %build if [ -x %{_bindir}/python2.2 ]; then PYTHON=%{_bindir}/python2.2; export PYTHON fi -%configure --enable-shared --enable-static --libexecdir=%{_libdir}/%{name} +%configure --enable-shared --enable-static --libexecdir=%{_libdir}/%{name} --without-glX make %clean @@ -59,9 +63,6 @@ fi rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/*.la rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/*.a -# Generate ldconfig symlinks. -/sbin/ldconfig -n $RPM_BUILD_ROOT/%{_libdir} - %find_lang %{name} %post -p /sbin/ldconfig @@ -70,7 +71,7 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/*.a %files -f %{name}.lang %defattr(-,root,root) -%doc ChangeLog COPYING HACKING NEWS README doc/utmpwtmp.txt doc/boxes.txt +%doc ChangeLog COPYING HACKING NEWS README doc/utmpwtmp.txt doc/boxes.txt src/iso2022.txt doc/openi18n/UTF-8.txt doc/openi18n/wrap.txt %{_libdir}/*.so.* %dir %{_libdir}/%{name} %attr(2711,root,utmp) %{_libdir}/%{name}/gnome-pty-helper @@ -90,12 +91,76 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/*.a %{_libdir}/%{name}/slowcat %{_libdir}/%{name}/utf8echo %{_libdir}/%{name}/utf8mode +%{_libdir}/%{name}/vterdb %{_libdir}/%{name}/window %{_libdir}/*.a %{_libdir}/*.so %{_libdir}/pkgconfig/* %changelog +* Tue Sep 16 2003 Nalin Dahyabhai 0.11.10-4 +- rebuild + +* Mon Sep 15 2003 Nalin Dahyabhai 0.11.10-3 +- don't reset conversion states at end-of-line (GNOME #122156) + +* Fri Sep 12 2003 Nalin Dahyabhai +- draw the preedit string the way GTK+ wants us to draw it (#104039) + +* Mon Jun 16 2003 Nalin Dahyabhai 0.11.10-2 +- rebuild + +* Mon Jun 16 2003 Nalin Dahyabhai 0.11.10-1 +- fix vte_terminal_set_encoding() so that the Terminal/Character Coding + menu works in gnome-terminal again +- fix display of the character under the cursor in cases where it's too wide + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Mon Jun 2 2003 Nalin Dahyabhai 0.11.9-2 +- rebuild + +* Mon Jun 2 2003 Nalin Dahyabhai 0.11.9-1 +- fix saving/restoring the cursor with DECSET/DECRST +- revert behavior wrt ambiguously-wide characters to be more like 0.10.x + +* Thu May 22 2003 Nalin Dahyabhai 0.11.8-1 +- close some memory leaks +- fix conversions of NUL bytes (Ctrl-Space) + +* Tue May 20 2003 Nalin Dahyabhai 0.11.7-1 +- make handling of 8-bit SS2 and SS3 coexist properly with UTF-8 and other + encodings where valid text can't be mistaken for the control codes +- fix keypad page down in application keypad mode +- fix reference loop which prevented proper finalizing of the widget + +* Tue May 6 2003 Nalin Dahyabhai 0.11.6-1 +- handle 8-bit SS2 and SS3 +- share backgrounds between terminal instances + +* Wed Apr 30 2003 Nalin Dahyabhai 0.11.5-1 +- pick up font settings from xrdb if GTK+ doesn't know anything +- support CP437 as a national replacement charset + +* Thu Apr 24 2003 Nalin Dahyabhai 0.11.4-1 +- update transparent background faster when moving windows +- fix bold +- add an AtkComponent interface for accessibility + +* Thu Apr 17 2003 Nalin Dahyabhai 0.11.3-1 +- rework support for national replacement charsets and iso2022 + +* Thu Apr 17 2003 Nalin Dahyabhai 0.11.2-1 +- selection tweaks and an openi18n fix + +* Mon Apr 14 2003 Nalin Dahyabhai 0.11.1-1 +- drawing cleanups + +* Wed Apr 9 2003 Nalin Dahyabhai +- rework drawing with Xft2 to use font sets +- implement drawing with freetype using font sets + * Mon Feb 24 2003 Nalin Dahyabhai 0.10.25-1 - incorporate fix for issues noted by H D Moore (CAN-2003-0070) @@ -154,6 +219,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/*.a * Fri Jan 31 2003 Nalin Dahyabhai 0.10.16-1 - fix "selection always extends by default" bug +* Thu Jan 30 2003 Nalin Dahyabhai 0.11.0-1 +- fork stable branch + * Wed Jan 22 2003 Nalin Dahyabhai 0.10.15-1 - make mouse modes mutually-exclusive - update background immediately on realize