From owner-freebsd-gnome@FreeBSD.ORG Wed Jan 19 21:17:22 2005 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 940E816A4CE for ; Wed, 19 Jan 2005 21:17:22 +0000 (GMT) Received: from lakermmtao03.cox.net (lakermmtao03.cox.net [68.230.240.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1988143D49 for ; Wed, 19 Jan 2005 21:17:22 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.140]) by lakermmtao03.cox.net (InterMail vM.6.01.04.00 201-2131-117-20041022) with ESMTP id <20050119211715.QNXE2250.lakermmtao03.cox.net@mezz.mezzweb.com> for ; Wed, 19 Jan 2005 16:17:15 -0500 Date: Wed, 19 Jan 2005 15:18:17 -0600 To: gnome@freebsd.org References: <200501192029.j0JKTMKr090234@repoman.freebsd.org> From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: In-Reply-To: <200501192029.j0JKTMKr090234@repoman.freebsd.org> User-Agent: Opera M2/7.54u1 (Linux, build 892) Subject: Fwd: cvs commit: ports/x11-toolkits/vte Makefile ports/x11-toolkits/vte/files patch-01_vtemodule patch-03_cursor_position patch-04_dsp_non_alias patch-05_performance_boost patch-06_remove_doublefree patch-07_set_backspace_to_utf8 patch-08_multiscreen_safe patch-10_hide_pageup_behavior patch-src_vte.c X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jan 2005 21:17:22 -0000 If anyone have the problem gnome-terminal when you update vte, please let me know and I will pull one of patch that is causing problem quick. This is a big improvement with speed and X CPU cycles. Also, include some useful bug fixes and a feature of cursor. Cheers, Mezz ------- Forwarded message ------- From: "Jeremy Messenger" To: ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org Subject: cvs commit: ports/x11-toolkits/vte Makefile ports/x11-toolkits/vte/files patch-01_vtemodule patch-03_cursor_position patch-04_dsp_non_alias patch-05_performance_boost patch-06_remove_doublefree patch-07_set_backspace_to_utf8 patch-08_multiscreen_safe patch-10_hide_pageup_behavior patch-src_vte.c Date: Wed, 19 Jan 2005 20:29:22 +0000 (UTC) mezz 2005-01-19 20:29:22 UTC FreeBSD ports repository Modified files: x11-toolkits/vte Makefile Added files: x11-toolkits/vte/files patch-01_vtemodule patch-03_cursor_position patch-04_dsp_non_alias patch-05_performance_boost patch-06_remove_doublefree patch-07_set_backspace_to_utf8 patch-08_multiscreen_safe patch-10_hide_pageup_behavior Removed files: x11-toolkits/vte/files patch-src_vte.c Log: Took all patches from the Debian, because current VTE lacks maintain and gnome-terminal development has stagnated. Almost all patches are in GNOME bugzilla for the weeks and months. Bump the PORTREVISION. -patch-01_vtemodule: Fix build with the python module -patch-03_cursor_position: Added a patch for supporting some save/restore cursor position console sequences -patch-04_dsp_non_alias: FcConfigSubstitute in place of _vte_fc_defaults_from_gtk to get antialias and hinting value http://bugs.gnome.org/show_bug.cgi?id=142640 -patch-05_performance_boost: Balanced performance improvement http://bugs.gnome.org/show_bug.cgi?id=143914 -- This is very amazing improvement. Here's benchmark of it to show that gnome-terminal isn't far from aterm and xterm anymore. Old benchmark: ======================================= $ time ls -lR /usr/ports aterm: 7.99 real1.31 user2.75 sys xterm: 11.04 real1.34 user2.47 sys gnome: 41.76 real1.12 user2.45 sys (ouch....) ======================================= New benchmark: ============================================== $ time ls -lR /usr/ports aterm: 7.28 real 1.20 user 2.41 sys xterm: 9.85 real 0.91 user 2.08 sys gnome: 10.41 real 0.86 user 2.02 sys ============================================== Big deal! -patch-06_remove_doublefree: Resolve double free problem http://bugs.gnome.org/show_bug.cgi?id=161337 -patch-07_set_backspace_to_utf8: Set backspace behavior to utf8 (depends on utf8 locale) http://bugs.gnome.org/show_bug.cgi?id=158200 -patch-08_multiscreen_safe: Make vte multi-screen safe http://bugs.gnome.org/show_bug.cgi?id=160782 -patch-09_redraw_vte_screen: Redraw vte screen with correct background color http://bugs.gnome.org/show_bug.cgi?id=125364 -patch-10_hide_pageup_behavior: Hide manifestation of PageUp behavior with less http://bugs.gnome.org/show_bug.cgi?id=115149 : I for one welcome our new vte patch overlord. I think all of them would make good additions. : I am all for the performance_boost patch! gnome-terminal kinda sucks when lines are going by fast. : showing the before and after benchmark. : Commit! Commit! :-) Reviewed by: marcus and ahze Revision Changes Path 1.38 +3 -3 ports/x11-toolkits/vte/Makefile 1.1 +19 -0 ports/x11-toolkits/vte/files/patch-01_vtemodule (new) 1.1 +13 -0 ports/x11-toolkits/vte/files/patch-03_cursor_position (new) 1.1 +12 -0 ports/x11-toolkits/vte/files/patch-04_dsp_non_alias (new) 1.1 +466 -0 ports/x11-toolkits/vte/files/patch-05_performance_boost (new) 1.1 +38 -0 ports/x11-toolkits/vte/files/patch-06_remove_doublefree (new) 1.1 +14 -0 ports/x11-toolkits/vte/files/patch-07_set_backspace_to_utf8 (new) 1.1 +373 -0 ports/x11-toolkits/vte/files/patch-08_multiscreen_safe (new) 1.1 +11 -0 ports/x11-toolkits/vte/files/patch-10_hide_pageup_behavior (new) 1.9 +0 -34 ports/x11-toolkits/vte/files/patch-src_vte.c (dead) -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org