From 603cb73117cb7f832df53391cce6077d6d45a093 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 18 Aug 2010 09:40:23 -0400 Subject: [PATCH 01/71] 0.25.90 --- .gitignore | 1 + sources | 2 +- vte.spec | 15 ++++++++++++--- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index d89a7cf..2ae4dfd 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ vte-0.25.1.tar.bz2 +/vte-0.25.90.tar.bz2 diff --git a/sources b/sources index bb4c13e..fe7da3b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -986bdf8f4e25bdb30615b69b26289909 vte-0.25.1.tar.bz2 +79e8681ffe8f6890e56562ecd4f7ad91 vte-0.25.90.tar.bz2 diff --git a/vte.spec b/vte.spec index 5ce1280..c9ccd14 100644 --- a/vte.spec +++ b/vte.spec @@ -3,8 +3,8 @@ %define gtk2_version 2.12.0 Name: vte -Version: 0.25.1 -Release: 2%{?dist} +Version: 0.25.90 +Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -47,7 +47,13 @@ vte. %build PYTHON=%{_bindir}/python`%{__python} -c "import sys ; print sys.version[:3]"` export PYTHON -%configure --enable-shared --enable-static --libexecdir=%{_libdir}/%{name} --without-glX --disable-gtk-doc +%configure \ + --enable-shared \ + --enable-static \ + --with-gtk=2.0 \ + --libexecdir=%{_libdir}/%{name} \ + --without-glX \ + --disable-gtk-doc make %install @@ -93,6 +99,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/%{name} %changelog +* Wed Aug 18 2010 Matthias Clasen 0.25.90-1 +- Update to 0.25.90 + * Thu Jul 22 2010 David Malcolm - 0.25.1-2 - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild From accb759a25204f6b4b853c5cf25e9a31af15d5ef Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 18 Aug 2010 21:50:36 -0400 Subject: [PATCH 02/71] fix file lists --- vte.spec | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/vte.spec b/vte.spec index c9ccd14..2f98fef 100644 --- a/vte.spec +++ b/vte.spec @@ -20,7 +20,7 @@ BuildRequires: libXt-devel BuildRequires: intltool # initscripts creates the utmp group -Prereq: initscripts +Requires: initscripts %description VTE is a terminal emulator widget for use with GTK+ 2.0. @@ -67,36 +67,37 @@ rm $RPM_BUILD_ROOT/%{_libdir}/lib%{name}.la rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.la rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a -%find_lang %{name} +%find_lang vte-0.0 %post -p /sbin/ldconfig %postun -p /sbin/ldconfig -%files -f %{name}.lang +%files -f vte-0.0.lang %defattr(-,root,root) %doc COPYING HACKING NEWS README %doc src/iso2022.txt %doc doc/utmpwtmp.txt doc/boxes.txt doc/openi18n/UTF-8.txt doc/openi18n/wrap.txt %{_libdir}/*.so.* -%dir %{_libdir}/%{name} -%attr(2711,root,utmp) %{_libdir}/%{name}/gnome-pty-helper +%dir %{_libdir}/vte +%attr(2711,root,utmp) %{_libdir}/vte/gnome-pty-helper %{_datadir}/%{name} %{_libdir}/python*/site-packages/* %files devel %defattr(-,root,root) %{_includedir}/* -%{_libdir}/%{name}/decset -%{_libdir}/%{name}/interpret -%{_libdir}/%{name}/osc -%{_libdir}/%{name}/slowcat -%{_libdir}/%{name}/window +%dir %{_libdir}/vte-0.0 +%{_libdir}/vte-0.0/decset +%{_libdir}/vte-0.0/interpret +%{_libdir}/vte-0.0/osc +%{_libdir}/vte-0.0/slowcat +%{_libdir}/vte-0.0/window %{_libdir}/*.so %{_libdir}/pkgconfig/* %{_bindir}/%{name} %{_datadir}/pygtk/2.0/defs/vte.defs -%doc %{_datadir}/gtk-doc/html/%{name} +%doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog * Wed Aug 18 2010 Matthias Clasen 0.25.90-1 From ca517bd401124fac1fa6ff580d140636fde2c1bc Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 31 Aug 2010 12:26:03 -0400 Subject: [PATCH 03/71] 0.25.91 --- .gitignore | 1 + sources | 2 +- vte.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2ae4dfd..cafb290 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ vte-0.25.1.tar.bz2 /vte-0.25.90.tar.bz2 +/vte-0.25.91.tar.bz2 diff --git a/sources b/sources index fe7da3b..495186a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -79e8681ffe8f6890e56562ecd4f7ad91 vte-0.25.90.tar.bz2 +872dffbd8c5efa77e06f8874f698caa5 vte-0.25.91.tar.bz2 diff --git a/vte.spec b/vte.spec index 2f98fef..c422774 100644 --- a/vte.spec +++ b/vte.spec @@ -3,7 +3,7 @@ %define gtk2_version 2.12.0 Name: vte -Version: 0.25.90 +Version: 0.25.91 Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ @@ -100,6 +100,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Tue Aug 31 2010 Matthias Clasen 0.25.91-1 +- Update to 0.25.91 + * Wed Aug 18 2010 Matthias Clasen 0.25.90-1 - Update to 0.25.90 From 168a2d6d95f20606537fdff64e17d8093bb2e39e Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 29 Sep 2010 22:51:13 -0400 Subject: [PATCH 04/71] 0.26.0 --- .gitignore | 1 + sources | 2 +- vte.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index cafb290..a473fc6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ vte-0.25.1.tar.bz2 /vte-0.25.90.tar.bz2 /vte-0.25.91.tar.bz2 +/vte-0.26.0.tar.bz2 diff --git a/sources b/sources index 495186a..2549a02 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -872dffbd8c5efa77e06f8874f698caa5 vte-0.25.91.tar.bz2 +44c57bb20a79d9e3b20c7bf222714528 vte-0.26.0.tar.bz2 diff --git a/vte.spec b/vte.spec index c422774..f3c07ae 100644 --- a/vte.spec +++ b/vte.spec @@ -3,13 +3,13 @@ %define gtk2_version 2.12.0 Name: vte -Version: 0.25.91 +Version: 0.26 Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X #VCS: git:git://git.gnome.org/vte -Source: http://download.gnome.org/sources/vte/0.25/%{name}-%{version}.tar.bz2 +Source: http://download.gnome.org/sources/vte/0.26/%{name}-%{version}.tar.bz2 BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} @@ -100,6 +100,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Wed Sep 29 2010 Matthias Clasen 0.26.0-1 +- Update to 0.26 + * Tue Aug 31 2010 Matthias Clasen 0.25.91-1 - Update to 0.25.91 From a04aa0980da003236ea5405f5b31f973cc2807fc Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 29 Sep 2010 23:22:12 -0400 Subject: [PATCH 05/71] fix spec --- vte.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index f3c07ae..169d285 100644 --- a/vte.spec +++ b/vte.spec @@ -3,7 +3,7 @@ %define gtk2_version 2.12.0 Name: vte -Version: 0.26 +Version: 0.26.0 Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ From cf9d0fbf699e167489000b36d93d73a978b699db Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 4 Oct 2010 18:31:16 -0400 Subject: [PATCH 06/71] 0.27.0 --- .gitignore | 1 + sources | 2 +- vte.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a473fc6..154a7df 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ vte-0.25.1.tar.bz2 /vte-0.25.90.tar.bz2 /vte-0.25.91.tar.bz2 /vte-0.26.0.tar.bz2 +/vte-0.27.0.tar.bz2 diff --git a/sources b/sources index 2549a02..cb4ade9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -44c57bb20a79d9e3b20c7bf222714528 vte-0.26.0.tar.bz2 +021c056f0e83472563105ce7bb239cd0 vte-0.27.0.tar.bz2 diff --git a/vte.spec b/vte.spec index 169d285..7185752 100644 --- a/vte.spec +++ b/vte.spec @@ -3,13 +3,13 @@ %define gtk2_version 2.12.0 Name: vte -Version: 0.26.0 +Version: 0.27.0 Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X #VCS: git:git://git.gnome.org/vte -Source: http://download.gnome.org/sources/vte/0.26/%{name}-%{version}.tar.bz2 +Source: http://download.gnome.org/sources/vte/0.27/%{name}-%{version}.tar.bz2 BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} @@ -100,6 +100,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Mon Oct 4 2010 Matthias Clasen 0.27.0-1 +- Update to 0.27.0 + * Wed Sep 29 2010 Matthias Clasen 0.26.0-1 - Update to 0.26 From b0edc6ce2f54e4db649e0e07ad29ddc94ee8a45f Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Fri, 29 Oct 2010 15:09:23 -0400 Subject: [PATCH 07/71] 0.27.1 Test programs aren't installed by default any more, so remove from file list. --- .gitignore | 1 + sources | 2 +- vte.spec | 11 ++++------- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 154a7df..d33e31c 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ vte-0.25.1.tar.bz2 /vte-0.25.91.tar.bz2 /vte-0.26.0.tar.bz2 /vte-0.27.0.tar.bz2 +/vte-0.27.1.tar.bz2 diff --git a/sources b/sources index cb4ade9..13f0392 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -021c056f0e83472563105ce7bb239cd0 vte-0.27.0.tar.bz2 +61685cd261cf14cfb2f32ae5583f43e0 vte-0.27.1.tar.bz2 diff --git a/vte.spec b/vte.spec index 7185752..4e8ea21 100644 --- a/vte.spec +++ b/vte.spec @@ -3,7 +3,7 @@ %define gtk2_version 2.12.0 Name: vte -Version: 0.27.0 +Version: 0.27.1 Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ @@ -87,12 +87,6 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %files devel %defattr(-,root,root) %{_includedir}/* -%dir %{_libdir}/vte-0.0 -%{_libdir}/vte-0.0/decset -%{_libdir}/vte-0.0/interpret -%{_libdir}/vte-0.0/osc -%{_libdir}/vte-0.0/slowcat -%{_libdir}/vte-0.0/window %{_libdir}/*.so %{_libdir}/pkgconfig/* %{_bindir}/%{name} @@ -100,6 +94,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Fri Oct 29 2010 Bill Nottingham 0.27.1-1 +- Update to 0.27.1 + * Mon Oct 4 2010 Matthias Clasen 0.27.0-1 - Update to 0.27.0 From 727fea11a5c43a5d343ffcf9c79079c67da5db89 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 2 Dec 2010 23:46:21 -0500 Subject: [PATCH 08/71] 0.27.2 --- .gitignore | 1 + sources | 2 +- vte.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d33e31c..1ac2bd5 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ vte-0.25.1.tar.bz2 /vte-0.26.0.tar.bz2 /vte-0.27.0.tar.bz2 /vte-0.27.1.tar.bz2 +/vte-0.27.2.tar.bz2 diff --git a/sources b/sources index 13f0392..3c31bfd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -61685cd261cf14cfb2f32ae5583f43e0 vte-0.27.1.tar.bz2 +4fa26a7d39a767dcd4543a8299eb2ef7 vte-0.27.2.tar.bz2 diff --git a/vte.spec b/vte.spec index 4e8ea21..758776a 100644 --- a/vte.spec +++ b/vte.spec @@ -3,7 +3,7 @@ %define gtk2_version 2.12.0 Name: vte -Version: 0.27.1 +Version: 0.27.2 Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ @@ -94,6 +94,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Thu Dec 2 2010 Matthias Clasen 0.27.2-1 +- Update to 0.27.2 + * Fri Oct 29 2010 Bill Nottingham 0.27.1-1 - Update to 0.27.1 From 73133f613bd8fa98a6e694503ece8c72fd25c714 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 11 Jan 2011 16:05:02 -0500 Subject: [PATCH 09/71] 0.27.4 --- .gitignore | 1 + sources | 2 +- vte.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1ac2bd5..7417775 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ vte-0.25.1.tar.bz2 /vte-0.27.0.tar.bz2 /vte-0.27.1.tar.bz2 /vte-0.27.2.tar.bz2 +/vte-0.27.4.tar.bz2 diff --git a/sources b/sources index 3c31bfd..541bde5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4fa26a7d39a767dcd4543a8299eb2ef7 vte-0.27.2.tar.bz2 +5e76a2197c482e07000973b7e3c19a95 vte-0.27.4.tar.bz2 diff --git a/vte.spec b/vte.spec index 758776a..6b2ba37 100644 --- a/vte.spec +++ b/vte.spec @@ -3,7 +3,7 @@ %define gtk2_version 2.12.0 Name: vte -Version: 0.27.2 +Version: 0.27.4 Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ @@ -94,6 +94,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Tue Jan 11 2011 Matthias Clasen 0.27.4-1 +- Update to 0.27.4 + * Thu Dec 2 2010 Matthias Clasen 0.27.2-1 - Update to 0.27.2 From 49e4f19dfac912297d78d9de9692a80eeb340706 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 19:54:16 -0600 Subject: [PATCH 10/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 6b2ba37..ec271fd 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -94,6 +94,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 0.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Tue Jan 11 2011 Matthias Clasen 0.27.4-1 - Update to 0.27.4 From 4496e6b679b53ea09706ac98118272ea09e5083f Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 22 Feb 2011 11:24:45 -0500 Subject: [PATCH 11/71] 0.27.90 --- sources | 2 +- vte.spec | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/sources b/sources index 541bde5..3b353cc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -5e76a2197c482e07000973b7e3c19a95 vte-0.27.4.tar.bz2 +b5398f8a43cd60c28994285897e45562 vte-0.27.90.tar.bz2 diff --git a/vte.spec b/vte.spec index ec271fd..cdcd6a6 100644 --- a/vte.spec +++ b/vte.spec @@ -3,8 +3,8 @@ %define gtk2_version 2.12.0 Name: vte -Version: 0.27.4 -Release: 2%{?dist} +Version: 0.27.90 +Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -94,6 +94,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Tue Feb 22 2011 Matthias Clasen - 0.27.90-1 +- Update to 0.27.90 + * Mon Feb 07 2011 Fedora Release Engineering - 0.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From b0e33a647de7294efda65329c7bbca690e995965 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 22 Feb 2011 11:30:47 -0500 Subject: [PATCH 12/71] fix sources --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 7417775..ece1ff5 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ vte-0.25.1.tar.bz2 /vte-0.27.1.tar.bz2 /vte-0.27.2.tar.bz2 /vte-0.27.4.tar.bz2 +/vte-0.27.90.tar.bz2 From ba830919ca1685ac72d46fbd4382b76036b871ce Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 4 Apr 2011 12:02:07 -0400 Subject: [PATCH 13/71] 0.28.0 --- .gitignore | 1 + sources | 2 +- vte.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ece1ff5..610d479 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ vte-0.25.1.tar.bz2 /vte-0.27.2.tar.bz2 /vte-0.27.4.tar.bz2 /vte-0.27.90.tar.bz2 +/vte-0.28.0.tar.bz2 diff --git a/sources b/sources index 3b353cc..cba3308 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b5398f8a43cd60c28994285897e45562 vte-0.27.90.tar.bz2 +c21e08e973a47a9d105c24506e537848 vte-0.28.0.tar.bz2 diff --git a/vte.spec b/vte.spec index cdcd6a6..3957ee0 100644 --- a/vte.spec +++ b/vte.spec @@ -3,13 +3,13 @@ %define gtk2_version 2.12.0 Name: vte -Version: 0.27.90 +Version: 0.28.0 Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X #VCS: git:git://git.gnome.org/vte -Source: http://download.gnome.org/sources/vte/0.27/%{name}-%{version}.tar.bz2 +Source: http://download.gnome.org/sources/vte/0.28/%{name}-%{version}.tar.bz2 BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} @@ -94,6 +94,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Mon Apr 4 2011 Matthias Clasen - 0.28.0-1 +- Update to 0.28.0 + * Tue Feb 22 2011 Matthias Clasen - 0.27.90-1 - Update to 0.27.90 From b04578e384934e5c5aae767aee1852324f5586ad Mon Sep 17 00:00:00 2001 From: Tomas Bzatek Date: Thu, 16 Jun 2011 14:43:17 +0200 Subject: [PATCH 14/71] Update to 0.28.1 --- .gitignore | 1 + sources | 2 +- vte.spec | 11 +++++++---- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 610d479..5b75a2f 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ vte-0.25.1.tar.bz2 /vte-0.27.4.tar.bz2 /vte-0.27.90.tar.bz2 /vte-0.28.0.tar.bz2 +/vte-0.28.1.tar.xz diff --git a/sources b/sources index cba3308..ec573b6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c21e08e973a47a9d105c24506e537848 vte-0.28.0.tar.bz2 +33088ad48b02324b9530c50ffb1312df vte-0.28.1.tar.xz diff --git a/vte.spec b/vte.spec index 3957ee0..2b01b0c 100644 --- a/vte.spec +++ b/vte.spec @@ -1,15 +1,15 @@ -%define glib2_version 2.18.0 +%define glib2_version 2.26.0 %define pango_version 1.22.0 -%define gtk2_version 2.12.0 +%define gtk2_version 2.20.0 Name: vte -Version: 0.28.0 +Version: 0.28.1 Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X #VCS: git:git://git.gnome.org/vte -Source: http://download.gnome.org/sources/vte/0.28/%{name}-%{version}.tar.bz2 +Source: http://download.gnome.org/sources/vte/0.28/%{name}-%{version}.tar.xz BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} @@ -94,6 +94,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Thu Jun 16 2011 Tomas Bzatek - 0.28.1-1 +- Update to 0.28.1 + * Mon Apr 4 2011 Matthias Clasen - 0.28.0-1 - Update to 0.28.0 From 223ddb19d7515b38aeb6a55a973e8451404d83d9 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 27 Sep 2011 16:36:56 -0400 Subject: [PATCH 15/71] Update to 0.30.0 --- .gitignore | 1 + sources | 2 +- vte.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5b75a2f..c1e3536 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ vte-0.25.1.tar.bz2 /vte-0.27.90.tar.bz2 /vte-0.28.0.tar.bz2 /vte-0.28.1.tar.xz +/vte-0.30.0.tar.xz diff --git a/sources b/sources index ec573b6..052722f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -33088ad48b02324b9530c50ffb1312df vte-0.28.1.tar.xz +3eb5dd5831e383a376333d83000f1fa8 vte-0.30.0.tar.xz diff --git a/vte.spec b/vte.spec index 2b01b0c..d311e2c 100644 --- a/vte.spec +++ b/vte.spec @@ -3,7 +3,7 @@ %define gtk2_version 2.20.0 Name: vte -Version: 0.28.1 +Version: 0.30.0 Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ @@ -94,6 +94,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Tue Sep 27 2011 Ray - 0.30.0-1 +- Update to 0.30.0 + * Thu Jun 16 2011 Tomas Bzatek - 0.28.1-1 - Update to 0.28.1 From d34afee2102cfc085396f7eed87bad69d1eba4e2 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 26 Oct 2011 19:29:17 -0500 Subject: [PATCH 16/71] - Rebuilt for glibc bug#747377 --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index d311e2c..aa0178e 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.30.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -94,6 +94,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Wed Oct 26 2011 Fedora Release Engineering - 0.30.0-2 +- Rebuilt for glibc bug#747377 + * Tue Sep 27 2011 Ray - 0.30.0-1 - Update to 0.30.0 From 6c71c05b90a7e7e51f6f456c9c2d436032d64c95 Mon Sep 17 00:00:00 2001 From: Tomas Bzatek Date: Fri, 25 Nov 2011 12:01:24 +0100 Subject: [PATCH 17/71] Revert "- Rebuilt for glibc bug#747377" This reverts commit d34afee2102cfc085396f7eed87bad69d1eba4e2. --- vte.spec | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/vte.spec b/vte.spec index aa0178e..d311e2c 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.30.0 -Release: 2%{?dist} +Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -94,9 +94,6 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog -* Wed Oct 26 2011 Fedora Release Engineering - 0.30.0-2 -- Rebuilt for glibc bug#747377 - * Tue Sep 27 2011 Ray - 0.30.0-1 - Update to 0.30.0 From ed3c8137aa2dbdbf4f8c5ea1e645dc9894c213a7 Mon Sep 17 00:00:00 2001 From: Tomas Bzatek Date: Fri, 25 Nov 2011 12:01:33 +0100 Subject: [PATCH 18/71] Revert "Update to 0.30.0" This reverts commit 223ddb19d7515b38aeb6a55a973e8451404d83d9. vte dropped gtk2 support in 0.29.0, stick to latest available version. Use vte3 for gtk3 instead. --- .gitignore | 1 - sources | 2 +- vte.spec | 5 +---- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index c1e3536..5b75a2f 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,3 @@ vte-0.25.1.tar.bz2 /vte-0.27.90.tar.bz2 /vte-0.28.0.tar.bz2 /vte-0.28.1.tar.xz -/vte-0.30.0.tar.xz diff --git a/sources b/sources index 052722f..ec573b6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3eb5dd5831e383a376333d83000f1fa8 vte-0.30.0.tar.xz +33088ad48b02324b9530c50ffb1312df vte-0.28.1.tar.xz diff --git a/vte.spec b/vte.spec index d311e2c..2b01b0c 100644 --- a/vte.spec +++ b/vte.spec @@ -3,7 +3,7 @@ %define gtk2_version 2.20.0 Name: vte -Version: 0.30.0 +Version: 0.28.1 Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ @@ -94,9 +94,6 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog -* Tue Sep 27 2011 Ray - 0.30.0-1 -- Update to 0.30.0 - * Thu Jun 16 2011 Tomas Bzatek - 0.28.1-1 - Update to 0.28.1 From 6d5c840e684ca3a5861bc5ea55753ac7a717d038 Mon Sep 17 00:00:00 2001 From: Tomas Bzatek Date: Fri, 25 Nov 2011 12:10:57 +0100 Subject: [PATCH 19/71] Update to 0.28.2 --- .gitignore | 1 + sources | 2 +- vte.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5b75a2f..bed6f34 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ vte-0.25.1.tar.bz2 /vte-0.27.90.tar.bz2 /vte-0.28.0.tar.bz2 /vte-0.28.1.tar.xz +/vte-0.28.2.tar.xz diff --git a/sources b/sources index ec573b6..bd7073e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -33088ad48b02324b9530c50ffb1312df vte-0.28.1.tar.xz +497f26e457308649e6ece32b3bb142ff vte-0.28.2.tar.xz diff --git a/vte.spec b/vte.spec index 2b01b0c..74530e3 100644 --- a/vte.spec +++ b/vte.spec @@ -3,7 +3,7 @@ %define gtk2_version 2.20.0 Name: vte -Version: 0.28.1 +Version: 0.28.2 Release: 1%{?dist} Summary: A terminal emulator License: LGPLv2+ @@ -54,7 +54,7 @@ export PYTHON --libexecdir=%{_libdir}/%{name} \ --without-glX \ --disable-gtk-doc -make +make %{?_smp_mflags} %install make install DESTDIR=$RPM_BUILD_ROOT @@ -94,6 +94,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Fri Nov 25 2011 Tomas Bzatek - 0.28.2-1 +- Update to 0.28.2 + * Thu Jun 16 2011 Tomas Bzatek - 0.28.1-1 - Update to 0.28.1 From 4717eeb0be8b465b82a181f968855e91caaac484 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 12 Dec 2011 12:32:06 -0500 Subject: [PATCH 20/71] Fix Alt<>Meta problems with recent gtk (cherry picked from commit 849a7f9ff4ca9f27abb254d9ad3014a4a8d1cf42) --- vte-alt-meta-confusion.patch | 74 ++++++++++++++++++++++++++++++++++++ vte.spec | 8 +++- 2 files changed, 81 insertions(+), 1 deletion(-) create mode 100644 vte-alt-meta-confusion.patch diff --git a/vte-alt-meta-confusion.patch b/vte-alt-meta-confusion.patch new file mode 100644 index 0000000..bd364be --- /dev/null +++ b/vte-alt-meta-confusion.patch @@ -0,0 +1,74 @@ +From 180dcc578e13c6096e277fb853e7162db640f207 Mon Sep 17 00:00:00 2001 +From: Alexandre Rostovtsev +Date: Tue, 15 Nov 2011 03:06:40 -0500 +Subject: [PATCH] Map both gdk's Meta and Alt to vte's Meta for >=gtk+-3.2.2 + compatibility + +Also, since VTE_META_MASK is now a mask with multiple bits set, code that +compares gdk key modifiers to VTE_META_MASK by numerical equality is no +longer guaranteed to work. Therefore, for such comparisons a new function, +vte_keymap_fixup_modifiers, is introduced; it ensures that if any bits +matching matching VTE_META_MASK are set, then all are set. + +https://bugzilla.gnome.org/show_bug.cgi?id=663779 +--- + src/keymap.c | 15 +++++++++++++-- + src/keymap.h | 2 +- + 2 files changed, 14 insertions(+), 3 deletions(-) + +diff --git a/src/keymap.c b/src/keymap.c +index 9a21669..95b4c5b 100644 +--- a/src/keymap.c ++++ b/src/keymap.c +@@ -990,6 +990,17 @@ static const struct _vte_keymap_group { + {GDK_KEY (F35), _vte_keymap_GDK_F35}, + }; + ++/* Restrict modifiers to the specified mask and ensure that VTE_META_MASK, ++ * despite being a compound mask, is treated as indivisible. */ ++GdkModifierType ++_vte_keymap_fixup_modifiers(GdkModifierType modifiers, ++ GdkModifierType mask) ++{ ++ if (modifiers & VTE_META_MASK) ++ modifiers |= VTE_META_MASK; ++ return modifiers & mask; ++} ++ + /* Map the specified keyval/modifier setup, dependent on the mode, to either + * a literal string or a capability name. */ + void +@@ -1104,7 +1115,7 @@ _vte_keymap_map(guint keyval, + } else { + fkey_mode = fkey_default; + } +- modifiers &= (GDK_SHIFT_MASK | GDK_CONTROL_MASK | VTE_META_MASK | VTE_NUMLOCK_MASK); ++ modifiers = _vte_keymap_fixup_modifiers(modifiers, GDK_SHIFT_MASK | GDK_CONTROL_MASK | VTE_META_MASK | VTE_NUMLOCK_MASK); + + /* Search for the conditions. */ + for (i = 0; entries[i].normal_length || entries[i].special[0]; i++) +@@ -1375,7 +1386,7 @@ _vte_keymap_key_add_key_modifiers(guint keyval, + return; + } + +- switch (modifiers & significant_modifiers) { ++ switch (_vte_keymap_fixup_modifiers(modifiers, significant_modifiers)) { + case 0: + modifier = 0; + break; +diff --git a/src/keymap.h b/src/keymap.h +index 243e22e..21d9b8e 100644 +--- a/src/keymap.h ++++ b/src/keymap.h +@@ -27,7 +27,7 @@ + + G_BEGIN_DECLS + +-#define VTE_META_MASK GDK_META_MASK ++#define VTE_META_MASK (GDK_META_MASK | GDK_MOD1_MASK) + #define VTE_NUMLOCK_MASK GDK_MOD2_MASK + + /* Map the specified keyval/modifier setup, dependent on the mode, to either +-- +1.7.8.rc3 + diff --git a/vte.spec b/vte.spec index 74530e3..821248f 100644 --- a/vte.spec +++ b/vte.spec @@ -4,12 +4,14 @@ Name: vte Version: 0.28.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X #VCS: git:git://git.gnome.org/vte Source: http://download.gnome.org/sources/vte/0.28/%{name}-%{version}.tar.xz +# https://bugzilla.gnome.org/show_bug.cgi?id=663779 +Patch0: vte-alt-meta-confusion.patch BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} @@ -43,6 +45,7 @@ vte. %prep %setup -q +%patch0 -p1 %build PYTHON=%{_bindir}/python`%{__python} -c "import sys ; print sys.version[:3]"` @@ -94,6 +97,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Mon Dec 12 2011 Matthias Clasen - 0.28.2-2 +- Fix problems with Alt<>Meta with recent gtk + * Fri Nov 25 2011 Tomas Bzatek - 0.28.2-1 - Update to 0.28.2 From a2bf956c4169cba4ce520b9bd9da6ecedc1259ba Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 02:05:17 -0600 Subject: [PATCH 21/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 821248f..57973aa 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -97,6 +97,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 0.28.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon Dec 12 2011 Matthias Clasen - 0.28.2-2 - Fix problems with Alt<>Meta with recent gtk From 665cfe02e72304cefaf07fcb0f9c60dddde6fce5 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 10 Mar 2012 09:03:55 -0700 Subject: [PATCH 22/71] Add patch for python bindings. Fixes bug #556200 --- vte-python-bugfixes.patch | 86 +++++++++++++++++++++++++++++++++++++++ vte.spec | 9 +++- 2 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 vte-python-bugfixes.patch diff --git a/vte-python-bugfixes.patch b/vte-python-bugfixes.patch new file mode 100644 index 0000000..691b350 --- /dev/null +++ b/vte-python-bugfixes.patch @@ -0,0 +1,86 @@ +diff -ur vte-0.22.5-orig/python/vte.override vte-0.22.5-python-get-text/python/vte.override +--- vte-0.22.5-orig/python/vte.override 2010-01-16 20:54:40.515014436 -0500 ++++ vte-0.22.5-python-get-text/python/vte.override 2010-01-16 22:14:40.881828300 -0500 +@@ -306,9 +306,9 @@ + } + + cb = PySequence_GetItem(data, 0); /* INCREFs */ +- Py_XDECREF(cb); + + if (!PyCallable_Check(cb)) { ++ Py_XDECREF(cb); + PyErr_SetString(PyExc_TypeError, "callback is not a callable object"); + return FALSE; + } +@@ -320,6 +320,7 @@ + PyTuple_SetItem(args, 3, PySequence_GetItem(data, 2)); + + result = PyObject_CallObject(cb, args); ++ Py_XDECREF(cb); + Py_DECREF(args); + + ret = (result && PyObject_IsTrue(result)); +@@ -332,7 +333,7 @@ + build_attributes(GArray *attrs) + { + PyObject *py_attrs = PyTuple_New(attrs->len); +- int count; ++ guint count; + PyObject *row = PyString_FromString("row"); + PyObject *column = PyString_FromString("column"); + PyObject *fore = PyString_FromString("fore"); +@@ -344,6 +345,8 @@ + VteCharAttributes *cht; + PyObject *py_char_attr; + ++ cht = &g_array_index(attrs, VteCharAttributes, count); ++ + py_char_attr = Py_BuildValue("{S:l,S:l,S:N,S:N,S:I,S:I}", + row, cht->row, + column, cht->column, +@@ -380,10 +383,9 @@ + GArray *attrs = NULL; + char *text; + PyObject *py_attrs; +- int count; + long length; + +- if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|OO:terminal_get_text", ++ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|OOO:terminal_get_text", + kwlist, &callback, &do_attr, &data)) { + return NULL; + } +@@ -451,10 +453,9 @@ + GArray *attrs = NULL; + char *text; + PyObject *py_attrs; +- int count; + long length; + +- if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|OO:terminal_get_text_include_trailing_spaces", ++ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|OOO:terminal_get_text_include_trailing_spaces", + kwlist, &callback, &do_attr, &data)) { + return NULL; + } +@@ -522,11 +523,10 @@ + GArray *attrs = NULL; + char *text; + PyObject *py_attrs; +- int count; + long length; + + if (!PyArg_ParseTupleAndKeywords(args, kwargs, +- "llllO|OO:terminal_get_text_range", ++ "llll|OOO:terminal_get_text_range", + kwlist, + &start_row, &start_col, &end_row, &end_col, + &callback, &do_attr, &data)) { +@@ -641,7 +641,7 @@ + static char *kwlist[] = { "column", "row", NULL }; + gchar *ret; + glong column, row; +- int *tag; ++ int tag; + + if (!PyArg_ParseTupleAndKeywords(args, kwargs, "ll:VteTerminal.match_check", kwlist, &column, &row)) + return NULL; diff --git a/vte.spec b/vte.spec index 57973aa..79d282a 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -12,6 +12,9 @@ Group: User Interface/X Source: http://download.gnome.org/sources/vte/0.28/%{name}-%{version}.tar.xz # https://bugzilla.gnome.org/show_bug.cgi?id=663779 Patch0: vte-alt-meta-confusion.patch +# Python bindings bugfix +# https://bugzilla.redhat.com/show_bug.cgi?id=556200 +Patch1: vte-python-bugfixes.patch BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} @@ -46,6 +49,7 @@ vte. %prep %setup -q %patch0 -p1 +%patch1 -p1 %build PYTHON=%{_bindir}/python`%{__python} -c "import sys ; print sys.version[:3]"` @@ -97,6 +101,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Mar 10 2012 Kevin Fenzi - 0.28.2-4 +- Add patch for python bindings. Fixes bug #556200 + * Sat Jan 14 2012 Fedora Release Engineering - 0.28.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 0daaeb5c16ea4a819ffea6502eeeec2213f1af33 Mon Sep 17 00:00:00 2001 From: Jon Ciesla Date: Tue, 3 Apr 2012 14:02:08 -0500 Subject: [PATCH 23/71] Merge Review fixes. --- vte.spec | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/vte.spec b/vte.spec index 79d282a..e7d5e99 100644 --- a/vte.spec +++ b/vte.spec @@ -4,11 +4,12 @@ Name: vte Version: 0.28.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X #VCS: git:git://git.gnome.org/vte +URL: http://developer.gnome.org/vte/ Source: http://download.gnome.org/sources/vte/0.28/%{name}-%{version}.tar.xz # https://bugzilla.gnome.org/show_bug.cgi?id=663779 Patch0: vte-alt-meta-confusion.patch @@ -91,6 +92,10 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %{_datadir}/%{name} %{_libdir}/python*/site-packages/* +#rpmlint gives: +#vte.x86_64: W: private-shared-object-provides /usr/lib64/python2.7/site-packages/gtk-2.0/vtemodule.so vtemodule.so()(64bit) +# This is not used by anything except possibly third party scripts, so we're leaving it in place. + %files devel %defattr(-,root,root) %{_includedir}/* @@ -101,6 +106,10 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Tue Apr 03 2012 Jon Ciesla - 0.28.2-5 +- Added URL, fixed whitespace for Merge Review BZ 226534. +- Commented on odd provides for rpmlint warning. + * Sat Mar 10 2012 Kevin Fenzi - 0.28.2-4 - Add patch for python bindings. Fixes bug #556200 @@ -502,18 +511,18 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a * Tue Nov 9 2004 Ray Strode 0.11.11-13 - Don't copy blocks; use pointers to block array directly. (based on the debugging efforts of - Egmont Koblinger , bug 135537). + Egmont Koblinger , bug 135537). * Mon Nov 8 2004 Jeremy Katz - 0.11.11-12 - rebuild against python 2.4 * Mon Nov 8 2004 Ray Strode 0.11.11-11 - Fix keypad keys when numlock is on in application mode - (Patch from , bug 126110). +- (Patch from , bug 126110). * Sun Oct 31 2004 Dan Williams 0.11.11-10 - Redraw background when unobscured visiblity event is received - (workaround, patch from Jon Nettleton) #rh100420# +- (workaround, patch from Jon Nettleton) #rh100420# - Mad speed zoom zoom (patch from Soren Sandmann) #rh132770# * Sun Oct 31 2004 Ray Strode 0.11.11-9 From adecff5f926b566dadbf1aa8fcae45ceadb40a46 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Fri, 15 Jun 2012 15:03:07 -0600 Subject: [PATCH 24/71] Add patch for DOS. Fixes bug #832356 - fixes CVE-2012-2738 --- vte-0.28.2-limit-arguments.patch | 40 ++++++++++++++++++++++++++++++++ vte.spec | 10 +++++++- 2 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 vte-0.28.2-limit-arguments.patch diff --git a/vte-0.28.2-limit-arguments.patch b/vte-0.28.2-limit-arguments.patch new file mode 100644 index 0000000..fd45407 --- /dev/null +++ b/vte-0.28.2-limit-arguments.patch @@ -0,0 +1,40 @@ +From feeee4b5832b17641e505b7083e0d299fdae318e Mon Sep 17 00:00:00 2001 +From: Christian Persch +Date: Sat, 19 May 2012 17:36:09 +0000 +Subject: emulation: Limit integer arguments to 65535 + +To guard against malicious sequences containing excessively big numbers, +limit all parsed numbers to 16 bit range. Doing this here in the parsing +routine is a catch-all guard; this doesn't preclude enforcing +more stringent limits in the handlers themselves. + +https://bugzilla.gnome.org/show_bug.cgi?id=676090 +--- +diff --git a/src/table.c b/src/table.c +index 140e8c8..85cf631 100644 +--- a/src/table.c ++++ b/src/table.c +@@ -550,7 +550,7 @@ _vte_table_extract_numbers(GValueArray **array, + if (G_UNLIKELY (*array == NULL)) { + *array = g_value_array_new(1); + } +- g_value_set_long(&value, total); ++ g_value_set_long(&value, CLAMP (total, 0, G_MAXUSHORT)); + g_value_array_append(*array, &value); + } while (i++ < arginfo->length); + g_value_unset(&value); +diff --git a/src/vteseq.c b/src/vteseq.c +index 457c06a..46def5b 100644 +--- a/src/vteseq.c ++++ b/src/vteseq.c +@@ -557,7 +557,7 @@ vte_sequence_handler_multiple(VteTerminal *terminal, + GValueArray *params, + VteTerminalSequenceHandler handler) + { +- vte_sequence_handler_multiple_limited(terminal, params, handler, G_MAXLONG); ++ vte_sequence_handler_multiple_limited(terminal, params, handler, G_MAXUSHORT); + } + + static void +-- +cgit v0.9.0.2 diff --git a/vte.spec b/vte.spec index e7d5e99..1871402 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -16,6 +16,9 @@ Patch0: vte-alt-meta-confusion.patch # Python bindings bugfix # https://bugzilla.redhat.com/show_bug.cgi?id=556200 Patch1: vte-python-bugfixes.patch +# limit arguments to avoid DOS +# http://git.gnome.org/browse/vte/patch/?id=feeee4b5832b17641e505b7083e0d299fdae318e +Patch2: vte-0.28.2-limit-arguments.patch BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} @@ -51,6 +54,7 @@ vte. %setup -q %patch0 -p1 %patch1 -p1 +%patch2 -p1 %build PYTHON=%{_bindir}/python`%{__python} -c "import sys ; print sys.version[:3]"` @@ -106,6 +110,10 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Fri Jun 15 2012 Kevin Fenzi - 0.28.2-6 +- Add patch for DOS. Fixes bug #832356 +- fixes CVE-2012-2738 + * Tue Apr 03 2012 Jon Ciesla - 0.28.2-5 - Added URL, fixed whitespace for Merge Review BZ 226534. - Commented on odd provides for rpmlint warning. From 403a6706646364fd953274698ec681fda445b19e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 27 Jul 2012 04:06:13 -0500 Subject: [PATCH 25/71] Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 1871402..708ec5f 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -110,6 +110,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Fri Jul 27 2012 Fedora Release Engineering - 0.28.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Fri Jun 15 2012 Kevin Fenzi - 0.28.2-6 - Add patch for DOS. Fixes bug #832356 - fixes CVE-2012-2738 From 4c9f009c1d7fd6f133ae9ac9a873f1de52784ab3 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 20:55:15 -0600 Subject: [PATCH 26/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 708ec5f..30f9cc1 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -110,6 +110,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 0.28.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Fri Jul 27 2012 Fedora Release Engineering - 0.28.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From d9ea0235345543bdcc4f89bb8cab6035f10ca2dd Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 23 Mar 2013 14:37:34 -0600 Subject: [PATCH 27/71] Add patch to support aarch64. Fixes bug #926706 --- vte-aarch64.patch | 2288 +++++++++++++++++++++++++++++++++++++++++++++ vte.spec | 11 +- 2 files changed, 2298 insertions(+), 1 deletion(-) create mode 100644 vte-aarch64.patch diff --git a/vte-aarch64.patch b/vte-aarch64.patch new file mode 100644 index 0000000..8a1335b --- /dev/null +++ b/vte-aarch64.patch @@ -0,0 +1,2288 @@ +diff -urN vte-0.28.2/config.guess vte-0.28.2-aarch64/config.guess +--- vte-0.28.2/config.guess 2011-08-28 16:33:20.000000000 -0500 ++++ vte-0.28.2-aarch64/config.guess 2013-03-08 09:28:25.111685501 -0600 +@@ -1,10 +1,10 @@ + #! /bin/sh + # Attempt to guess a canonical system name. + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +-# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +-# Free Software Foundation, Inc. ++# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, ++# 2011, 2012 Free Software Foundation, Inc. + +-timestamp='2009-11-20' ++timestamp='2012-09-25' + + # This file is free software; you can redistribute it and/or modify it + # under the terms of the GNU General Public License as published by +@@ -17,9 +17,7 @@ + # General Public License for more details. + # + # You should have received a copy of the GNU General Public License +-# along with this program; if not, write to the Free Software +-# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +-# 02110-1301, USA. ++# along with this program; if not, see . + # + # As a special exception to the GNU General Public License, if you + # distribute this file as part of a program that contains a +@@ -56,8 +54,9 @@ + GNU config.guess ($timestamp) + + Originally written by Per Bothner. +-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ++Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, ++2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 ++Free Software Foundation, Inc. + + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." +@@ -144,7 +143,7 @@ + case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or +- # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, ++ # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward +@@ -180,7 +179,7 @@ + fi + ;; + *) +- os=netbsd ++ os=netbsd + ;; + esac + # The OS release +@@ -201,6 +200,10 @@ + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit ;; ++ *:Bitrig:*:*) ++ UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` ++ echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} ++ exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} +@@ -223,7 +226,7 @@ + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) +- UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ++ UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on +@@ -269,7 +272,10 @@ + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` +- exit ;; ++ # Reset EXIT trap before exiting to avoid spurious non-zero exit code. ++ exitcode=$? ++ trap '' 0 ++ exit $exitcode ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead +@@ -295,12 +301,12 @@ + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) +- echo powerpc-ibm-os400 ++ echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit ;; +- arm:riscos:*:*|arm:RISCOS:*:*) ++ arm*:riscos:*:*|arm*:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) +@@ -394,23 +400,23 @@ + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) +- echo m68k-atari-mint${UNAME_RELEASE} ++ echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} +- exit ;; ++ exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) +- echo m68k-atari-mint${UNAME_RELEASE} ++ echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) +- echo m68k-milan-mint${UNAME_RELEASE} +- exit ;; ++ echo m68k-milan-mint${UNAME_RELEASE} ++ exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) +- echo m68k-hades-mint${UNAME_RELEASE} +- exit ;; ++ echo m68k-hades-mint${UNAME_RELEASE} ++ exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) +- echo m68k-unknown-mint${UNAME_RELEASE} +- exit ;; ++ echo m68k-unknown-mint${UNAME_RELEASE} ++ exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; +@@ -480,8 +486,8 @@ + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) +- # DG/UX returns AViiON for all architectures +- UNAME_PROCESSOR=`/usr/bin/uname -p` ++ # DG/UX returns AViiON for all architectures ++ UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ +@@ -494,7 +500,7 @@ + else + echo i586-dg-dgux${UNAME_RELEASE} + fi +- exit ;; ++ exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; +@@ -551,7 +557,7 @@ + echo rs6000-ibm-aix3.2 + fi + exit ;; +- *:AIX:*:[456]) ++ *:AIX:*:[4567]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 +@@ -594,52 +600,52 @@ + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` +- sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` +- case "${sc_cpu_version}" in +- 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 +- 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 +- 532) # CPU_PA_RISC2_0 +- case "${sc_kernel_bits}" in +- 32) HP_ARCH="hppa2.0n" ;; +- 64) HP_ARCH="hppa2.0w" ;; ++ sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` ++ case "${sc_cpu_version}" in ++ 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 ++ 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 ++ 532) # CPU_PA_RISC2_0 ++ case "${sc_kernel_bits}" in ++ 32) HP_ARCH="hppa2.0n" ;; ++ 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 +- esac ;; +- esac ++ esac ;; ++ esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build +- sed 's/^ //' << EOF >$dummy.c ++ sed 's/^ //' << EOF >$dummy.c ++ ++ #define _HPUX_SOURCE ++ #include ++ #include + +- #define _HPUX_SOURCE +- #include +- #include +- +- int main () +- { +- #if defined(_SC_KERNEL_BITS) +- long bits = sysconf(_SC_KERNEL_BITS); +- #endif +- long cpu = sysconf (_SC_CPU_VERSION); +- +- switch (cpu) +- { +- case CPU_PA_RISC1_0: puts ("hppa1.0"); break; +- case CPU_PA_RISC1_1: puts ("hppa1.1"); break; +- case CPU_PA_RISC2_0: +- #if defined(_SC_KERNEL_BITS) +- switch (bits) +- { +- case 64: puts ("hppa2.0w"); break; +- case 32: puts ("hppa2.0n"); break; +- default: puts ("hppa2.0"); break; +- } break; +- #else /* !defined(_SC_KERNEL_BITS) */ +- puts ("hppa2.0"); break; +- #endif +- default: puts ("hppa1.0"); break; +- } +- exit (0); +- } ++ int main () ++ { ++ #if defined(_SC_KERNEL_BITS) ++ long bits = sysconf(_SC_KERNEL_BITS); ++ #endif ++ long cpu = sysconf (_SC_CPU_VERSION); ++ ++ switch (cpu) ++ { ++ case CPU_PA_RISC1_0: puts ("hppa1.0"); break; ++ case CPU_PA_RISC1_1: puts ("hppa1.1"); break; ++ case CPU_PA_RISC2_0: ++ #if defined(_SC_KERNEL_BITS) ++ switch (bits) ++ { ++ case 64: puts ("hppa2.0w"); break; ++ case 32: puts ("hppa2.0n"); break; ++ default: puts ("hppa2.0"); break; ++ } break; ++ #else /* !defined(_SC_KERNEL_BITS) */ ++ puts ("hppa2.0"); break; ++ #endif ++ default: puts ("hppa1.0"); break; ++ } ++ exit (0); ++ } + EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa +@@ -730,22 +736,22 @@ + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd +- exit ;; ++ exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi +- exit ;; ++ exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd +- exit ;; ++ exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd +- exit ;; ++ exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd +- exit ;; ++ exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; +@@ -769,14 +775,14 @@ + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` +- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` +- FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` +- echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" +- exit ;; ++ FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` ++ FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` ++ echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" ++ exit ;; + 5000:UNIX_System_V:4.*:*) +- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` +- FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` +- echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" ++ FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` ++ FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` ++ echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} +@@ -788,30 +794,35 @@ + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:FreeBSD:*:*) +- case ${UNAME_MACHINE} in +- pc98) +- echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; ++ UNAME_PROCESSOR=`/usr/bin/uname -p` ++ case ${UNAME_PROCESSOR} in + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) +- echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; ++ echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; ++ *:MINGW64*:*) ++ echo ${UNAME_MACHINE}-pc-mingw64 ++ exit ;; + *:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; ++ i*:MSYS*:*) ++ echo ${UNAME_MACHINE}-pc-msys ++ exit ;; + i*:windows32*:*) +- # uname -m includes "-pc" on this system. +- echo ${UNAME_MACHINE}-mingw32 ++ # uname -m includes "-pc" on this system. ++ echo ${UNAME_MACHINE}-mingw32 + exit ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; + *:Interix*:*) +- case ${UNAME_MACHINE} in ++ case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; +@@ -857,6 +868,13 @@ + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit ;; ++ aarch64:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; ++ aarch64_be:Linux:*:*) ++ UNAME_MACHINE=aarch64_be ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; +@@ -866,7 +884,7 @@ + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; +- esac ++ esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} +@@ -878,20 +896,29 @@ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else +- echo ${UNAME_MACHINE}-unknown-linux-gnueabi ++ if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ ++ | grep -q __ARM_PCS_VFP ++ then ++ echo ${UNAME_MACHINE}-unknown-linux-gnueabi ++ else ++ echo ${UNAME_MACHINE}-unknown-linux-gnueabihf ++ fi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + cris:Linux:*:*) +- echo cris-axis-linux-gnu ++ echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + crisv32:Linux:*:*) +- echo crisv32-axis-linux-gnu ++ echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + frv:Linux:*:*) +- echo frv-unknown-linux-gnu ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; ++ hexagon:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:Linux:*:*) + LIBC=gnu +@@ -933,7 +960,7 @@ + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + ;; + or32:Linux:*:*) +- echo or32-unknown-linux-gnu ++ echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-gnu +@@ -959,7 +986,7 @@ + echo ${UNAME_MACHINE}-ibm-linux + exit ;; + sh64*:Linux:*:*) +- echo ${UNAME_MACHINE}-unknown-linux-gnu ++ echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu +@@ -967,14 +994,17 @@ + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; ++ tile*:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-gnu + exit ;; + x86_64:Linux:*:*) +- echo x86_64-unknown-linux-gnu ++ echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + xtensa*:Linux:*:*) +- echo ${UNAME_MACHINE}-unknown-linux-gnu ++ echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. +@@ -983,11 +1013,11 @@ + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) +- # Unixware is an offshoot of SVR4, but it has its own version +- # number series starting with 2... +- # I am not positive that other SVR4 systems won't match this, ++ # Unixware is an offshoot of SVR4, but it has its own version ++ # number series starting with 2... ++ # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. +- # Use sysv4.2uw... so that sysv4* matches it. ++ # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit ;; + i*86:OS/2:*:*) +@@ -1019,7 +1049,7 @@ + fi + exit ;; + i*86:*:5:[678]*) +- # UnixWare 7.x, OpenUNIX and OpenServer 6. ++ # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; +@@ -1047,13 +1077,13 @@ + exit ;; + pc:*:*:*) + # Left here for compatibility: +- # uname -m prints for DJGPP always 'pc', but it prints nothing about +- # the processor, so we play safe by assuming i586. ++ # uname -m prints for DJGPP always 'pc', but it prints nothing about ++ # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp +- exit ;; ++ exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; +@@ -1088,8 +1118,8 @@ + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) +- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ +- && { echo i486-ncr-sysv4; exit; } ;; ++ /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ ++ && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ +@@ -1132,10 +1162,10 @@ + echo ns32k-sni-sysv + fi + exit ;; +- PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort +- # says +- echo i586-unisys-sysv4 +- exit ;; ++ PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort ++ # says ++ echo i586-unisys-sysv4 ++ exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm +@@ -1161,11 +1191,11 @@ + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then +- echo mips-nec-sysv${UNAME_RELEASE} ++ echo mips-nec-sysv${UNAME_RELEASE} + else +- echo mips-unknown-sysv${UNAME_RELEASE} ++ echo mips-unknown-sysv${UNAME_RELEASE} + fi +- exit ;; ++ exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; +@@ -1178,6 +1208,9 @@ + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; ++ x86_64:Haiku:*:*) ++ echo x86_64-unknown-haiku ++ exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit ;; +@@ -1230,7 +1263,10 @@ + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; +- NSE-?:NONSTOP_KERNEL:*:*) ++ NEO-?:NONSTOP_KERNEL:*:*) ++ echo neo-tandem-nsk${UNAME_RELEASE} ++ exit ;; ++ NSE-*:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) +@@ -1275,13 +1311,13 @@ + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) +- echo mips-sei-seiux${UNAME_RELEASE} ++ echo mips-sei-seiux${UNAME_RELEASE} + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) +- UNAME_MACHINE=`(uname -p) 2>/dev/null` ++ UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; +@@ -1299,11 +1335,11 @@ + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; ++ x86_64:VMkernel:*:*) ++ echo ${UNAME_MACHINE}-unknown-esx ++ exit ;; + esac + +-#echo '(No uname command or uname output not recognized.)' 1>&2 +-#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 +- + eval $set_cc_for_build + cat >$dummy.c < + printf ("m68k-sony-newsos%s\n", + #ifdef NEWSOS4 +- "4" ++ "4" + #else +- "" ++ "" + #endif +- ); exit (0); ++ ); exit (0); + #endif + #endif + +diff -urN vte-0.28.2/config.sub vte-0.28.2-aarch64/config.sub +--- vte-0.28.2/config.sub 2011-08-28 16:33:20.000000000 -0500 ++++ vte-0.28.2-aarch64/config.sub 2013-03-08 09:28:25.205674680 -0600 +@@ -1,10 +1,10 @@ + #! /bin/sh + # Configuration validation subroutine script. + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +-# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +-# Free Software Foundation, Inc. ++# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, ++# 2011, 2012 Free Software Foundation, Inc. + +-timestamp='2009-11-20' ++timestamp='2012-10-10' + + # This file is (in principle) common to ALL GNU software. + # The presence of a machine in this file suggests that SOME GNU software +@@ -21,9 +21,7 @@ + # GNU General Public License for more details. + # + # You should have received a copy of the GNU General Public License +-# along with this program; if not, write to the Free Software +-# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +-# 02110-1301, USA. ++# along with this program; if not, see . + # + # As a special exception to the GNU General Public License, if you + # distribute this file as part of a program that contains a +@@ -75,8 +73,9 @@ + version="\ + GNU config.sub ($timestamp) + +-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ++Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, ++2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 ++Free Software Foundation, Inc. + + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." +@@ -123,13 +122,18 @@ + # Here we must recognize all the valid KERNEL-OS combinations. + maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` + case $maybe_os in +- nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ +- uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ ++ nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ ++ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ ++ knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; ++ android-linux) ++ os=-linux-android ++ basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ++ ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] +@@ -152,12 +156,12 @@ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ +- -apple | -axis | -knuth | -cray | -microblaze) ++ -apple | -axis | -knuth | -cray | -microblaze*) + os= + basic_machine=$1 + ;; +- -bluegene*) +- os=-cnk ++ -bluegene*) ++ os=-cnk + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= +@@ -173,10 +177,10 @@ + os=-chorusos + basic_machine=$1 + ;; +- -chorusrdb) +- os=-chorusrdb ++ -chorusrdb) ++ os=-chorusrdb + basic_machine=$1 +- ;; ++ ;; + -hiux*) + os=-hiuxwe2 + ;; +@@ -221,6 +225,12 @@ + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; ++ -lynx*178) ++ os=-lynxos178 ++ ;; ++ -lynx*5) ++ os=-lynxos5 ++ ;; + -lynx*) + os=-lynxos + ;; +@@ -245,20 +255,25 @@ + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ ++ | aarch64 | aarch64_be \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ ++ | be32 | be64 \ + | bfin \ + | c4x | clipper \ + | d10v | d30v | dlx | dsp16xx \ ++ | epiphany \ + | fido | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ ++ | hexagon \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ ++ | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ +- | maxq | mb | microblaze | mcore | mep | metag \ ++ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ +@@ -281,29 +296,39 @@ + | moxie \ + | mt \ + | msp430 \ ++ | nds32 | nds32le | nds32be \ + | nios | nios2 \ + | ns16k | ns32k \ ++ | open8 \ + | or32 \ + | pdp10 | pdp11 | pj | pjl \ +- | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ ++ | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pyramid \ +- | rx \ ++ | rl78 | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ +- | spu | strongarm \ +- | tahoe | thumb | tic4x | tic80 | tron \ ++ | spu \ ++ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | ubicom32 \ +- | v850 | v850e \ ++ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | we32k \ +- | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ ++ | x86 | xc16x | xstormy16 | xtensa \ + | z8k | z80) + basic_machine=$basic_machine-unknown + ;; +- m6811 | m68hc11 | m6812 | m68hc12 | picochip) +- # Motorola 68HC11/12. ++ c54x) ++ basic_machine=tic54x-unknown ++ ;; ++ c55x) ++ basic_machine=tic55x-unknown ++ ;; ++ c6x) ++ basic_machine=tic6x-unknown ++ ;; ++ m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) + basic_machine=$basic_machine-unknown + os=-none + ;; +@@ -313,6 +338,21 @@ + basic_machine=mt-unknown + ;; + ++ strongarm | thumb | xscale) ++ basic_machine=arm-unknown ++ ;; ++ xgate) ++ basic_machine=$basic_machine-unknown ++ os=-none ++ ;; ++ xscaleeb) ++ basic_machine=armeb-unknown ++ ;; ++ ++ xscaleel) ++ basic_machine=armel-unknown ++ ;; ++ + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. +@@ -327,25 +367,30 @@ + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ ++ | aarch64-* | aarch64_be-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ ++ | be32-* | be64-* \ + | bfin-* | bs2000-* \ +- | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ ++ | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ ++ | hexagon-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ ++ | le32-* | le64-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ +- | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ ++ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ ++ | microblaze-* | microblazeel-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ +@@ -367,25 +412,29 @@ + | mmix-* \ + | mt-* \ + | msp430-* \ ++ | nds32-* | nds32le-* | nds32be-* \ + | nios-* | nios2-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ ++ | open8-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ +- | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ ++ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pyramid-* \ +- | romp-* | rs6000-* | rx-* \ ++ | rl78-* | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ +- | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ +- | tahoe-* | thumb-* \ +- | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \ ++ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ ++ | tahoe-* \ ++ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ ++ | tile*-* \ + | tron-* \ + | ubicom32-* \ +- | v850-* | v850e-* | vax-* \ ++ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ ++ | vax-* \ + | we32k-* \ +- | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ ++ | x86-* | x86_64-* | xc16x-* | xps100-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-* | z80-*) +@@ -410,7 +459,7 @@ + basic_machine=a29k-amd + os=-udi + ;; +- abacus) ++ abacus) + basic_machine=abacus-unknown + ;; + adobe68k) +@@ -480,11 +529,20 @@ + basic_machine=powerpc-ibm + os=-cnk + ;; ++ c54x-*) ++ basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; ++ c55x-*) ++ basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; ++ c6x-*) ++ basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; +- cegcc) ++ cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; +@@ -516,7 +574,7 @@ + basic_machine=craynv-cray + os=-unicosmp + ;; +- cr16) ++ cr16 | cr16-*) + basic_machine=cr16-unknown + os=-elf + ;; +@@ -674,7 +732,6 @@ + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; +-# I'm not sure what "Sysv32" means. Should this be sysv3.2? + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 +@@ -732,9 +789,13 @@ + basic_machine=ns32k-utek + os=-sysv + ;; +- microblaze) ++ microblaze*) + basic_machine=microblaze-xilinx + ;; ++ mingw64) ++ basic_machine=x86_64-pc ++ os=-mingw64 ++ ;; + mingw32) + basic_machine=i386-pc + os=-mingw32 +@@ -771,10 +832,18 @@ + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; ++ msys) ++ basic_machine=i386-pc ++ os=-msys ++ ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; ++ nacl) ++ basic_machine=le32-unknown ++ os=-nacl ++ ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 +@@ -839,6 +908,12 @@ + np1) + basic_machine=np1-gould + ;; ++ neo-tandem) ++ basic_machine=neo-tandem ++ ;; ++ nse-tandem) ++ basic_machine=nse-tandem ++ ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; +@@ -921,9 +996,10 @@ + ;; + power) basic_machine=power-ibm + ;; +- ppc) basic_machine=powerpc-unknown ++ ppc | ppcbe) basic_machine=powerpc-unknown + ;; +- ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ppc-* | ppcbe-*) ++ basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown +@@ -1017,6 +1093,9 @@ + basic_machine=i860-stratus + os=-sysv4 + ;; ++ strongarm-* | thumb-*) ++ basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; + sun2) + basic_machine=m68000-sun + ;; +@@ -1073,20 +1152,8 @@ + basic_machine=t90-cray + os=-unicos + ;; +- tic54x | c54x*) +- basic_machine=tic54x-unknown +- os=-coff +- ;; +- tic55x | c55x*) +- basic_machine=tic55x-unknown +- os=-coff +- ;; +- tic6x | c6x*) +- basic_machine=tic6x-unknown +- os=-coff +- ;; + tile*) +- basic_machine=tile-unknown ++ basic_machine=$basic_machine-unknown + os=-linux-gnu + ;; + tx39) +@@ -1156,6 +1223,9 @@ + xps | xps100) + basic_machine=xps100-honeywell + ;; ++ xscale-* | xscalee[bl]-*) ++ basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ++ ;; + ymp) + basic_machine=ymp-cray + os=-unicos +@@ -1253,11 +1323,11 @@ + if [ x"$os" != x"" ] + then + case $os in +- # First match some system type aliases +- # that might get confused with valid system types. ++ # First match some system type aliases ++ # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. +- -auroraux) +- os=-auroraux ++ -auroraux) ++ os=-auroraux + ;; + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` +@@ -1287,14 +1357,15 @@ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ +- | -openbsd* | -solidbsd* \ ++ | -bitrig* | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* | -cegcc* \ +- | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ +- | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ ++ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ ++ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ ++ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ +@@ -1341,7 +1412,7 @@ + -opened*) + os=-openedition + ;; +- -os400*) ++ -os400*) + os=-os400 + ;; + -wince*) +@@ -1390,7 +1461,7 @@ + -sinix*) + os=-sysv4 + ;; +- -tpf*) ++ -tpf*) + os=-tpf + ;; + -triton*) +@@ -1435,6 +1506,8 @@ + -dicos*) + os=-dicos + ;; ++ -nacl*) ++ ;; + -none) + ;; + *) +@@ -1457,10 +1530,10 @@ + # system, and we'll never get to this point. + + case $basic_machine in +- score-*) ++ score-*) + os=-elf + ;; +- spu-*) ++ spu-*) + os=-elf + ;; + *-acorn) +@@ -1472,8 +1545,20 @@ + arm*-semi) + os=-aout + ;; +- c4x-* | tic4x-*) +- os=-coff ++ c4x-* | tic4x-*) ++ os=-coff ++ ;; ++ hexagon-*) ++ os=-elf ++ ;; ++ tic54x-*) ++ os=-coff ++ ;; ++ tic55x-*) ++ os=-coff ++ ;; ++ tic6x-*) ++ os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) +@@ -1493,14 +1578,11 @@ + ;; + m68000-sun) + os=-sunos3 +- # This also exists in the configure program, but was not the +- # default. +- # os=-sunos4 + ;; + m68*-cisco) + os=-aout + ;; +- mep-*) ++ mep-*) + os=-elf + ;; + mips*-cisco) +@@ -1527,7 +1609,7 @@ + *-ibm) + os=-aix + ;; +- *-knuth) ++ *-knuth) + os=-mmixware + ;; + *-wec) +diff -urN vte-0.28.2/gnome-pty-helper/config.guess vte-0.28.2-aarch64/gnome-pty-helper/config.guess +--- vte-0.28.2/gnome-pty-helper/config.guess 2011-08-28 16:33:12.000000000 -0500 ++++ vte-0.28.2-aarch64/gnome-pty-helper/config.guess 2013-03-08 09:28:25.185676982 -0600 +@@ -1,10 +1,10 @@ + #! /bin/sh + # Attempt to guess a canonical system name. + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +-# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +-# Free Software Foundation, Inc. ++# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, ++# 2011, 2012 Free Software Foundation, Inc. + +-timestamp='2009-11-20' ++timestamp='2012-09-25' + + # This file is free software; you can redistribute it and/or modify it + # under the terms of the GNU General Public License as published by +@@ -17,9 +17,7 @@ + # General Public License for more details. + # + # You should have received a copy of the GNU General Public License +-# along with this program; if not, write to the Free Software +-# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +-# 02110-1301, USA. ++# along with this program; if not, see . + # + # As a special exception to the GNU General Public License, if you + # distribute this file as part of a program that contains a +@@ -56,8 +54,9 @@ + GNU config.guess ($timestamp) + + Originally written by Per Bothner. +-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ++Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, ++2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 ++Free Software Foundation, Inc. + + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." +@@ -144,7 +143,7 @@ + case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or +- # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, ++ # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward +@@ -180,7 +179,7 @@ + fi + ;; + *) +- os=netbsd ++ os=netbsd + ;; + esac + # The OS release +@@ -201,6 +200,10 @@ + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit ;; ++ *:Bitrig:*:*) ++ UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` ++ echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} ++ exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} +@@ -223,7 +226,7 @@ + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) +- UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ++ UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on +@@ -269,7 +272,10 @@ + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` +- exit ;; ++ # Reset EXIT trap before exiting to avoid spurious non-zero exit code. ++ exitcode=$? ++ trap '' 0 ++ exit $exitcode ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead +@@ -295,12 +301,12 @@ + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) +- echo powerpc-ibm-os400 ++ echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit ;; +- arm:riscos:*:*|arm:RISCOS:*:*) ++ arm*:riscos:*:*|arm*:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) +@@ -394,23 +400,23 @@ + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) +- echo m68k-atari-mint${UNAME_RELEASE} ++ echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} +- exit ;; ++ exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) +- echo m68k-atari-mint${UNAME_RELEASE} ++ echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) +- echo m68k-milan-mint${UNAME_RELEASE} +- exit ;; ++ echo m68k-milan-mint${UNAME_RELEASE} ++ exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) +- echo m68k-hades-mint${UNAME_RELEASE} +- exit ;; ++ echo m68k-hades-mint${UNAME_RELEASE} ++ exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) +- echo m68k-unknown-mint${UNAME_RELEASE} +- exit ;; ++ echo m68k-unknown-mint${UNAME_RELEASE} ++ exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; +@@ -480,8 +486,8 @@ + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) +- # DG/UX returns AViiON for all architectures +- UNAME_PROCESSOR=`/usr/bin/uname -p` ++ # DG/UX returns AViiON for all architectures ++ UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ +@@ -494,7 +500,7 @@ + else + echo i586-dg-dgux${UNAME_RELEASE} + fi +- exit ;; ++ exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; +@@ -551,7 +557,7 @@ + echo rs6000-ibm-aix3.2 + fi + exit ;; +- *:AIX:*:[456]) ++ *:AIX:*:[4567]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 +@@ -594,52 +600,52 @@ + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` +- sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` +- case "${sc_cpu_version}" in +- 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 +- 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 +- 532) # CPU_PA_RISC2_0 +- case "${sc_kernel_bits}" in +- 32) HP_ARCH="hppa2.0n" ;; +- 64) HP_ARCH="hppa2.0w" ;; ++ sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` ++ case "${sc_cpu_version}" in ++ 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 ++ 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 ++ 532) # CPU_PA_RISC2_0 ++ case "${sc_kernel_bits}" in ++ 32) HP_ARCH="hppa2.0n" ;; ++ 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 +- esac ;; +- esac ++ esac ;; ++ esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build +- sed 's/^ //' << EOF >$dummy.c ++ sed 's/^ //' << EOF >$dummy.c ++ ++ #define _HPUX_SOURCE ++ #include ++ #include + +- #define _HPUX_SOURCE +- #include +- #include +- +- int main () +- { +- #if defined(_SC_KERNEL_BITS) +- long bits = sysconf(_SC_KERNEL_BITS); +- #endif +- long cpu = sysconf (_SC_CPU_VERSION); +- +- switch (cpu) +- { +- case CPU_PA_RISC1_0: puts ("hppa1.0"); break; +- case CPU_PA_RISC1_1: puts ("hppa1.1"); break; +- case CPU_PA_RISC2_0: +- #if defined(_SC_KERNEL_BITS) +- switch (bits) +- { +- case 64: puts ("hppa2.0w"); break; +- case 32: puts ("hppa2.0n"); break; +- default: puts ("hppa2.0"); break; +- } break; +- #else /* !defined(_SC_KERNEL_BITS) */ +- puts ("hppa2.0"); break; +- #endif +- default: puts ("hppa1.0"); break; +- } +- exit (0); +- } ++ int main () ++ { ++ #if defined(_SC_KERNEL_BITS) ++ long bits = sysconf(_SC_KERNEL_BITS); ++ #endif ++ long cpu = sysconf (_SC_CPU_VERSION); ++ ++ switch (cpu) ++ { ++ case CPU_PA_RISC1_0: puts ("hppa1.0"); break; ++ case CPU_PA_RISC1_1: puts ("hppa1.1"); break; ++ case CPU_PA_RISC2_0: ++ #if defined(_SC_KERNEL_BITS) ++ switch (bits) ++ { ++ case 64: puts ("hppa2.0w"); break; ++ case 32: puts ("hppa2.0n"); break; ++ default: puts ("hppa2.0"); break; ++ } break; ++ #else /* !defined(_SC_KERNEL_BITS) */ ++ puts ("hppa2.0"); break; ++ #endif ++ default: puts ("hppa1.0"); break; ++ } ++ exit (0); ++ } + EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa +@@ -730,22 +736,22 @@ + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd +- exit ;; ++ exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi +- exit ;; ++ exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd +- exit ;; ++ exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd +- exit ;; ++ exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd +- exit ;; ++ exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; +@@ -769,14 +775,14 @@ + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` +- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` +- FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` +- echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" +- exit ;; ++ FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` ++ FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` ++ echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" ++ exit ;; + 5000:UNIX_System_V:4.*:*) +- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` +- FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` +- echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" ++ FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` ++ FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` ++ echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} +@@ -788,30 +794,35 @@ + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:FreeBSD:*:*) +- case ${UNAME_MACHINE} in +- pc98) +- echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; ++ UNAME_PROCESSOR=`/usr/bin/uname -p` ++ case ${UNAME_PROCESSOR} in + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) +- echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; ++ echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; ++ *:MINGW64*:*) ++ echo ${UNAME_MACHINE}-pc-mingw64 ++ exit ;; + *:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; ++ i*:MSYS*:*) ++ echo ${UNAME_MACHINE}-pc-msys ++ exit ;; + i*:windows32*:*) +- # uname -m includes "-pc" on this system. +- echo ${UNAME_MACHINE}-mingw32 ++ # uname -m includes "-pc" on this system. ++ echo ${UNAME_MACHINE}-mingw32 + exit ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; + *:Interix*:*) +- case ${UNAME_MACHINE} in ++ case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; +@@ -857,6 +868,13 @@ + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit ;; ++ aarch64:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; ++ aarch64_be:Linux:*:*) ++ UNAME_MACHINE=aarch64_be ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; +@@ -866,7 +884,7 @@ + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; +- esac ++ esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} +@@ -878,20 +896,29 @@ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else +- echo ${UNAME_MACHINE}-unknown-linux-gnueabi ++ if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ ++ | grep -q __ARM_PCS_VFP ++ then ++ echo ${UNAME_MACHINE}-unknown-linux-gnueabi ++ else ++ echo ${UNAME_MACHINE}-unknown-linux-gnueabihf ++ fi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + cris:Linux:*:*) +- echo cris-axis-linux-gnu ++ echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + crisv32:Linux:*:*) +- echo crisv32-axis-linux-gnu ++ echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + frv:Linux:*:*) +- echo frv-unknown-linux-gnu ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; ++ hexagon:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:Linux:*:*) + LIBC=gnu +@@ -933,7 +960,7 @@ + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + ;; + or32:Linux:*:*) +- echo or32-unknown-linux-gnu ++ echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-gnu +@@ -959,7 +986,7 @@ + echo ${UNAME_MACHINE}-ibm-linux + exit ;; + sh64*:Linux:*:*) +- echo ${UNAME_MACHINE}-unknown-linux-gnu ++ echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu +@@ -967,14 +994,17 @@ + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; ++ tile*:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-gnu + exit ;; + x86_64:Linux:*:*) +- echo x86_64-unknown-linux-gnu ++ echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + xtensa*:Linux:*:*) +- echo ${UNAME_MACHINE}-unknown-linux-gnu ++ echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. +@@ -983,11 +1013,11 @@ + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) +- # Unixware is an offshoot of SVR4, but it has its own version +- # number series starting with 2... +- # I am not positive that other SVR4 systems won't match this, ++ # Unixware is an offshoot of SVR4, but it has its own version ++ # number series starting with 2... ++ # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. +- # Use sysv4.2uw... so that sysv4* matches it. ++ # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit ;; + i*86:OS/2:*:*) +@@ -1019,7 +1049,7 @@ + fi + exit ;; + i*86:*:5:[678]*) +- # UnixWare 7.x, OpenUNIX and OpenServer 6. ++ # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; +@@ -1047,13 +1077,13 @@ + exit ;; + pc:*:*:*) + # Left here for compatibility: +- # uname -m prints for DJGPP always 'pc', but it prints nothing about +- # the processor, so we play safe by assuming i586. ++ # uname -m prints for DJGPP always 'pc', but it prints nothing about ++ # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp +- exit ;; ++ exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; +@@ -1088,8 +1118,8 @@ + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) +- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ +- && { echo i486-ncr-sysv4; exit; } ;; ++ /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ ++ && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ +@@ -1132,10 +1162,10 @@ + echo ns32k-sni-sysv + fi + exit ;; +- PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort +- # says +- echo i586-unisys-sysv4 +- exit ;; ++ PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort ++ # says ++ echo i586-unisys-sysv4 ++ exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm +@@ -1161,11 +1191,11 @@ + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then +- echo mips-nec-sysv${UNAME_RELEASE} ++ echo mips-nec-sysv${UNAME_RELEASE} + else +- echo mips-unknown-sysv${UNAME_RELEASE} ++ echo mips-unknown-sysv${UNAME_RELEASE} + fi +- exit ;; ++ exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; +@@ -1178,6 +1208,9 @@ + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; ++ x86_64:Haiku:*:*) ++ echo x86_64-unknown-haiku ++ exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit ;; +@@ -1230,7 +1263,10 @@ + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; +- NSE-?:NONSTOP_KERNEL:*:*) ++ NEO-?:NONSTOP_KERNEL:*:*) ++ echo neo-tandem-nsk${UNAME_RELEASE} ++ exit ;; ++ NSE-*:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) +@@ -1275,13 +1311,13 @@ + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) +- echo mips-sei-seiux${UNAME_RELEASE} ++ echo mips-sei-seiux${UNAME_RELEASE} + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) +- UNAME_MACHINE=`(uname -p) 2>/dev/null` ++ UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; +@@ -1299,11 +1335,11 @@ + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; ++ x86_64:VMkernel:*:*) ++ echo ${UNAME_MACHINE}-unknown-esx ++ exit ;; + esac + +-#echo '(No uname command or uname output not recognized.)' 1>&2 +-#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 +- + eval $set_cc_for_build + cat >$dummy.c < + printf ("m68k-sony-newsos%s\n", + #ifdef NEWSOS4 +- "4" ++ "4" + #else +- "" ++ "" + #endif +- ); exit (0); ++ ); exit (0); + #endif + #endif + +diff -urN vte-0.28.2/gnome-pty-helper/config.sub vte-0.28.2-aarch64/gnome-pty-helper/config.sub +--- vte-0.28.2/gnome-pty-helper/config.sub 2011-08-28 16:33:12.000000000 -0500 ++++ vte-0.28.2-aarch64/gnome-pty-helper/config.sub 2013-03-08 09:28:25.195675829 -0600 +@@ -1,10 +1,10 @@ + #! /bin/sh + # Configuration validation subroutine script. + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +-# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +-# Free Software Foundation, Inc. ++# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, ++# 2011, 2012 Free Software Foundation, Inc. + +-timestamp='2009-11-20' ++timestamp='2012-10-10' + + # This file is (in principle) common to ALL GNU software. + # The presence of a machine in this file suggests that SOME GNU software +@@ -21,9 +21,7 @@ + # GNU General Public License for more details. + # + # You should have received a copy of the GNU General Public License +-# along with this program; if not, write to the Free Software +-# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +-# 02110-1301, USA. ++# along with this program; if not, see . + # + # As a special exception to the GNU General Public License, if you + # distribute this file as part of a program that contains a +@@ -75,8 +73,9 @@ + version="\ + GNU config.sub ($timestamp) + +-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ++Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, ++2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 ++Free Software Foundation, Inc. + + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." +@@ -123,13 +122,18 @@ + # Here we must recognize all the valid KERNEL-OS combinations. + maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` + case $maybe_os in +- nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ +- uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ ++ nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ ++ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ ++ knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; ++ android-linux) ++ os=-linux-android ++ basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ++ ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] +@@ -152,12 +156,12 @@ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ +- -apple | -axis | -knuth | -cray | -microblaze) ++ -apple | -axis | -knuth | -cray | -microblaze*) + os= + basic_machine=$1 + ;; +- -bluegene*) +- os=-cnk ++ -bluegene*) ++ os=-cnk + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= +@@ -173,10 +177,10 @@ + os=-chorusos + basic_machine=$1 + ;; +- -chorusrdb) +- os=-chorusrdb ++ -chorusrdb) ++ os=-chorusrdb + basic_machine=$1 +- ;; ++ ;; + -hiux*) + os=-hiuxwe2 + ;; +@@ -221,6 +225,12 @@ + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; ++ -lynx*178) ++ os=-lynxos178 ++ ;; ++ -lynx*5) ++ os=-lynxos5 ++ ;; + -lynx*) + os=-lynxos + ;; +@@ -245,20 +255,25 @@ + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ ++ | aarch64 | aarch64_be \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ ++ | be32 | be64 \ + | bfin \ + | c4x | clipper \ + | d10v | d30v | dlx | dsp16xx \ ++ | epiphany \ + | fido | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ ++ | hexagon \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ ++ | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ +- | maxq | mb | microblaze | mcore | mep | metag \ ++ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ +@@ -281,29 +296,39 @@ + | moxie \ + | mt \ + | msp430 \ ++ | nds32 | nds32le | nds32be \ + | nios | nios2 \ + | ns16k | ns32k \ ++ | open8 \ + | or32 \ + | pdp10 | pdp11 | pj | pjl \ +- | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ ++ | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pyramid \ +- | rx \ ++ | rl78 | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ +- | spu | strongarm \ +- | tahoe | thumb | tic4x | tic80 | tron \ ++ | spu \ ++ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | ubicom32 \ +- | v850 | v850e \ ++ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | we32k \ +- | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ ++ | x86 | xc16x | xstormy16 | xtensa \ + | z8k | z80) + basic_machine=$basic_machine-unknown + ;; +- m6811 | m68hc11 | m6812 | m68hc12 | picochip) +- # Motorola 68HC11/12. ++ c54x) ++ basic_machine=tic54x-unknown ++ ;; ++ c55x) ++ basic_machine=tic55x-unknown ++ ;; ++ c6x) ++ basic_machine=tic6x-unknown ++ ;; ++ m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) + basic_machine=$basic_machine-unknown + os=-none + ;; +@@ -313,6 +338,21 @@ + basic_machine=mt-unknown + ;; + ++ strongarm | thumb | xscale) ++ basic_machine=arm-unknown ++ ;; ++ xgate) ++ basic_machine=$basic_machine-unknown ++ os=-none ++ ;; ++ xscaleeb) ++ basic_machine=armeb-unknown ++ ;; ++ ++ xscaleel) ++ basic_machine=armel-unknown ++ ;; ++ + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. +@@ -327,25 +367,30 @@ + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ ++ | aarch64-* | aarch64_be-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ ++ | be32-* | be64-* \ + | bfin-* | bs2000-* \ +- | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ ++ | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ ++ | hexagon-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ ++ | le32-* | le64-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ +- | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ ++ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ ++ | microblaze-* | microblazeel-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ +@@ -367,25 +412,29 @@ + | mmix-* \ + | mt-* \ + | msp430-* \ ++ | nds32-* | nds32le-* | nds32be-* \ + | nios-* | nios2-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ ++ | open8-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ +- | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ ++ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pyramid-* \ +- | romp-* | rs6000-* | rx-* \ ++ | rl78-* | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ +- | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ +- | tahoe-* | thumb-* \ +- | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \ ++ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ ++ | tahoe-* \ ++ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ ++ | tile*-* \ + | tron-* \ + | ubicom32-* \ +- | v850-* | v850e-* | vax-* \ ++ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ ++ | vax-* \ + | we32k-* \ +- | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ ++ | x86-* | x86_64-* | xc16x-* | xps100-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-* | z80-*) +@@ -410,7 +459,7 @@ + basic_machine=a29k-amd + os=-udi + ;; +- abacus) ++ abacus) + basic_machine=abacus-unknown + ;; + adobe68k) +@@ -480,11 +529,20 @@ + basic_machine=powerpc-ibm + os=-cnk + ;; ++ c54x-*) ++ basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; ++ c55x-*) ++ basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; ++ c6x-*) ++ basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; +- cegcc) ++ cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; +@@ -516,7 +574,7 @@ + basic_machine=craynv-cray + os=-unicosmp + ;; +- cr16) ++ cr16 | cr16-*) + basic_machine=cr16-unknown + os=-elf + ;; +@@ -674,7 +732,6 @@ + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; +-# I'm not sure what "Sysv32" means. Should this be sysv3.2? + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 +@@ -732,9 +789,13 @@ + basic_machine=ns32k-utek + os=-sysv + ;; +- microblaze) ++ microblaze*) + basic_machine=microblaze-xilinx + ;; ++ mingw64) ++ basic_machine=x86_64-pc ++ os=-mingw64 ++ ;; + mingw32) + basic_machine=i386-pc + os=-mingw32 +@@ -771,10 +832,18 @@ + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; ++ msys) ++ basic_machine=i386-pc ++ os=-msys ++ ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; ++ nacl) ++ basic_machine=le32-unknown ++ os=-nacl ++ ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 +@@ -839,6 +908,12 @@ + np1) + basic_machine=np1-gould + ;; ++ neo-tandem) ++ basic_machine=neo-tandem ++ ;; ++ nse-tandem) ++ basic_machine=nse-tandem ++ ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; +@@ -921,9 +996,10 @@ + ;; + power) basic_machine=power-ibm + ;; +- ppc) basic_machine=powerpc-unknown ++ ppc | ppcbe) basic_machine=powerpc-unknown + ;; +- ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ppc-* | ppcbe-*) ++ basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown +@@ -1017,6 +1093,9 @@ + basic_machine=i860-stratus + os=-sysv4 + ;; ++ strongarm-* | thumb-*) ++ basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; + sun2) + basic_machine=m68000-sun + ;; +@@ -1073,20 +1152,8 @@ + basic_machine=t90-cray + os=-unicos + ;; +- tic54x | c54x*) +- basic_machine=tic54x-unknown +- os=-coff +- ;; +- tic55x | c55x*) +- basic_machine=tic55x-unknown +- os=-coff +- ;; +- tic6x | c6x*) +- basic_machine=tic6x-unknown +- os=-coff +- ;; + tile*) +- basic_machine=tile-unknown ++ basic_machine=$basic_machine-unknown + os=-linux-gnu + ;; + tx39) +@@ -1156,6 +1223,9 @@ + xps | xps100) + basic_machine=xps100-honeywell + ;; ++ xscale-* | xscalee[bl]-*) ++ basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ++ ;; + ymp) + basic_machine=ymp-cray + os=-unicos +@@ -1253,11 +1323,11 @@ + if [ x"$os" != x"" ] + then + case $os in +- # First match some system type aliases +- # that might get confused with valid system types. ++ # First match some system type aliases ++ # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. +- -auroraux) +- os=-auroraux ++ -auroraux) ++ os=-auroraux + ;; + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` +@@ -1287,14 +1357,15 @@ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ +- | -openbsd* | -solidbsd* \ ++ | -bitrig* | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* | -cegcc* \ +- | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ +- | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ ++ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ ++ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ ++ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ +@@ -1341,7 +1412,7 @@ + -opened*) + os=-openedition + ;; +- -os400*) ++ -os400*) + os=-os400 + ;; + -wince*) +@@ -1390,7 +1461,7 @@ + -sinix*) + os=-sysv4 + ;; +- -tpf*) ++ -tpf*) + os=-tpf + ;; + -triton*) +@@ -1435,6 +1506,8 @@ + -dicos*) + os=-dicos + ;; ++ -nacl*) ++ ;; + -none) + ;; + *) +@@ -1457,10 +1530,10 @@ + # system, and we'll never get to this point. + + case $basic_machine in +- score-*) ++ score-*) + os=-elf + ;; +- spu-*) ++ spu-*) + os=-elf + ;; + *-acorn) +@@ -1472,8 +1545,20 @@ + arm*-semi) + os=-aout + ;; +- c4x-* | tic4x-*) +- os=-coff ++ c4x-* | tic4x-*) ++ os=-coff ++ ;; ++ hexagon-*) ++ os=-elf ++ ;; ++ tic54x-*) ++ os=-coff ++ ;; ++ tic55x-*) ++ os=-coff ++ ;; ++ tic6x-*) ++ os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) +@@ -1493,14 +1578,11 @@ + ;; + m68000-sun) + os=-sunos3 +- # This also exists in the configure program, but was not the +- # default. +- # os=-sunos4 + ;; + m68*-cisco) + os=-aout + ;; +- mep-*) ++ mep-*) + os=-elf + ;; + mips*-cisco) +@@ -1527,7 +1609,7 @@ + *-ibm) + os=-aix + ;; +- *-knuth) ++ *-knuth) + os=-mmixware + ;; + *-wec) diff --git a/vte.spec b/vte.spec index 30f9cc1..3557426 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -19,6 +19,9 @@ Patch1: vte-python-bugfixes.patch # limit arguments to avoid DOS # http://git.gnome.org/browse/vte/patch/?id=feeee4b5832b17641e505b7083e0d299fdae318e Patch2: vte-0.28.2-limit-arguments.patch +# +# aarch64 support +Patch3: http://ausil.fedorapeople.org/aarch64/vte/vte-aarch64.patch BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} @@ -27,6 +30,8 @@ BuildRequires: pygtk2-devel, python-devel, ncurses-devel BuildRequires: gettext BuildRequires: libXt-devel BuildRequires: intltool +# Work around broken perl / perl-Carp +BuildRequires: perl-Carp # initscripts creates the utmp group Requires: initscripts @@ -55,6 +60,7 @@ vte. %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 %build PYTHON=%{_bindir}/python`%{__python} -c "import sys ; print sys.version[:3]"` @@ -110,6 +116,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Mar 23 2013 Kevin Fenzi 0.28.2-9 +- Add patch to support aarch64. Fixes bug #926706 + * Fri Feb 15 2013 Fedora Release Engineering - 0.28.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 38e0f47bf7d1ba284c627232cc714f1aa44f0805 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 01:30:00 -0500 Subject: [PATCH 28/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 3557426..ab209e3 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -116,6 +116,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 0.28.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Sat Mar 23 2013 Kevin Fenzi 0.28.2-9 - Add patch to support aarch64. Fixes bug #926706 From 979bf8a7a858b36d16f5acd108eb0607d3ddc84a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 23:01:44 -0500 Subject: [PATCH 29/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index ab209e3..a4538e8 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -116,6 +116,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 0.28.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 0.28.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From d28d4bd1b69005ae907cab22c4f3f18c322d47d4 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 28 Jun 2014 10:32:49 -0600 Subject: [PATCH 30/71] Add patch to fix control+home/control+end. Fixes bug #1114074 - Thanks to jskarvad for the patch --- vte-0.28.2-control.patch | 68 ++++++++++++++++++++++++++++++++++++++++ vte.spec | 10 +++++- 2 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 vte-0.28.2-control.patch diff --git a/vte-0.28.2-control.patch b/vte-0.28.2-control.patch new file mode 100644 index 0000000..20e0ee1 --- /dev/null +++ b/vte-0.28.2-control.patch @@ -0,0 +1,68 @@ +--- a/src/keymap.c ++++ a/src/keymap.c +@@ -286,6 +286,8 @@ static const struct _vte_keymap_entry _vte_keymap_GDK_Home[] = { + {cursor_all, keypad_all, fkey_vt220, 0, _VTE_CAP_CSI "1~", -1, X_NULL}, + {cursor_all, keypad_all, fkey_hp, 0, _VTE_CAP_ESC "h", -1, X_NULL}, + {cursor_all, keypad_all, fkey_nothpvt, 0, X_NULL, 0, "kh"}, ++ {cursor_default, keypad_all, fkey_default, 0, _VTE_CAP_CSI "H", -1, X_NULL}, ++ {cursor_app, keypad_all, fkey_default, 0, _VTE_CAP_SS3 "H", -1, X_NULL}, + {cursor_all, keypad_all, fkey_all, 0, X_NULL, 0, X_NULL}, + }; + +@@ -293,6 +295,8 @@ static const struct _vte_keymap_entry _vte_keymap_GDK_End[] = { + {cursor_all, keypad_all, fkey_all, 0, X_NULL, 0, "@7"}, + {cursor_all, keypad_all, fkey_vt220, 0, _VTE_CAP_CSI "4~", -1, X_NULL}, + {cursor_all, keypad_all, fkey_notvt220, 0, X_NULL, 0, "@7"}, ++ {cursor_default, keypad_all, fkey_default, 0, _VTE_CAP_CSI "F", -1, X_NULL}, ++ {cursor_app, keypad_all, fkey_default, 0, _VTE_CAP_SS3 "F", -1, X_NULL}, + {cursor_all, keypad_all, fkey_all, 0, X_NULL, 0, X_NULL}, + }; + +@@ -504,10 +508,11 @@ static const struct _vte_keymap_entry _vte_keymap_GDK_KP_Insert[] = { + + static const struct _vte_keymap_entry _vte_keymap_GDK_KP_End[] = { + {cursor_all, keypad_default, fkey_all, 0, X_NULL, 0, "K4"}, +- {cursor_all, keypad_default, fkey_notvt220, +- 0, _VTE_CAP_CSI "4~", -1, X_NULL}, ++ {cursor_default, keypad_default, fkey_notvt220, 0, _VTE_CAP_CSI "F", -1, X_NULL}, ++ {cursor_app, keypad_default, fkey_notvt220, 0, _VTE_CAP_SS3 "F", -1, X_NULL}, + {cursor_all, keypad_default, fkey_vt220, 0, "1", 1, X_NULL}, +- {cursor_all, keypad_app, fkey_notvt220, 0, _VTE_CAP_CSI "4~", -1, X_NULL}, ++ {cursor_default, keypad_app, fkey_notvt220, 0, _VTE_CAP_CSI "F", -1, X_NULL}, ++ {cursor_app, keypad_app, fkey_notvt220, 0, _VTE_CAP_SS3 "F", -1, X_NULL}, + {cursor_all, keypad_app, fkey_vt220, 0, _VTE_CAP_SS3 "q", -1, X_NULL}, + {cursor_all, keypad_all, fkey_all, 0, X_NULL, 0, X_NULL}, + }; +@@ -565,10 +570,11 @@ static const struct _vte_keymap_entry _vte_keymap_GDK_KP_Right[] = { + + static const struct _vte_keymap_entry _vte_keymap_GDK_KP_Home[] = { + {cursor_all, keypad_default, fkey_all, 0, X_NULL, 0, "K1"}, +- {cursor_all, keypad_default, fkey_notvt220, +- 0, _VTE_CAP_CSI "1~", -1, X_NULL}, ++ {cursor_default, keypad_default, fkey_notvt220, 0, _VTE_CAP_CSI "H", -1, X_NULL}, ++ {cursor_app, keypad_default, fkey_notvt220, 0, _VTE_CAP_SS3 "H", -1, X_NULL}, + {cursor_all, keypad_default, fkey_vt220, 0, "7", 1, X_NULL}, +- {cursor_all, keypad_app, fkey_notvt220, 0, _VTE_CAP_CSI "1~", -1, X_NULL}, ++ {cursor_default, keypad_app, fkey_notvt220, 0, _VTE_CAP_CSI "H", -1, X_NULL}, ++ {cursor_app, keypad_app, fkey_notvt220, 0, _VTE_CAP_SS3 "H", -1, X_NULL}, + {cursor_all, keypad_app, fkey_vt220, 0, _VTE_CAP_SS3 "w", -1, X_NULL}, + {cursor_all, keypad_all, fkey_all, 0, X_NULL, 0, X_NULL}, + }; +@@ -1280,6 +1286,8 @@ _vte_keymap_key_gets_modifiers(guint keyval) + case GDK_KEY (Right): + case GDK_KEY (Insert): + case GDK_KEY (Delete): ++ case GDK_KEY (Home): ++ case GDK_KEY (End): + case GDK_KEY (Page_Up): + case GDK_KEY (Page_Down): + case GDK_KEY (KP_Up): +@@ -1288,6 +1296,8 @@ _vte_keymap_key_gets_modifiers(guint keyval) + case GDK_KEY (KP_Right): + case GDK_KEY (KP_Insert): + case GDK_KEY (KP_Delete): ++ case GDK_KEY (KP_Home): ++ case GDK_KEY (KP_End): + case GDK_KEY (KP_Page_Up): + case GDK_KEY (KP_Page_Down): + case GDK_KEY (F1): diff --git a/vte.spec b/vte.spec index a4538e8..5314be3 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 11%{?dist} +Release: 12%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -22,6 +22,9 @@ Patch2: vte-0.28.2-limit-arguments.patch # # aarch64 support Patch3: http://ausil.fedorapeople.org/aarch64/vte/vte-aarch64.patch +# Fix control home/control end codes +# https://bugzilla.redhat.com/show_bug.cgi?id=1114074 +Patch4: vte-0.28.2-control.patch BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} @@ -61,6 +64,7 @@ vte. %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 %build PYTHON=%{_bindir}/python`%{__python} -c "import sys ; print sys.version[:3]"` @@ -116,6 +120,10 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Jun 28 2014 Kevin Fenzi 0.28.2-12 +- Add patch to fix control+home/control+end. Fixes bug #1114074 +- Thanks to jskarvad for the patch + * Sun Jun 08 2014 Fedora Release Engineering - 0.28.2-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From ede5726a45cd97f212622b59c162ec8b07b09dd4 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 29 Jun 2014 13:14:30 -0600 Subject: [PATCH 31/71] Add patch to fix bracketed paste. Fixes bug #1114301 - Thanks to nerijus for the patch --- vte-0.28.2-paste-fix.diff | 71 +++++++++++++++++++++++++++++++++++++++ vte.spec | 10 +++++- 2 files changed, 80 insertions(+), 1 deletion(-) create mode 100644 vte-0.28.2-paste-fix.diff diff --git a/vte-0.28.2-paste-fix.diff b/vte-0.28.2-paste-fix.diff new file mode 100644 index 0000000..cc51ead --- /dev/null +++ b/vte-0.28.2-paste-fix.diff @@ -0,0 +1,71 @@ +diff -ur vte-0.28.2.orig/src/vte.c vte-0.28.2/src/vte.c +--- vte-0.28.2.orig/src/vte.c 2011-08-29 00:31:45.000000000 +0300 ++++ vte-0.28.2/src/vte.c 2014-06-26 04:20:52.409371214 +0300 +@@ -5806,10 +5806,10 @@ + p++; + } + } +- if (terminal->pvt->screen->bracketed_paste_mode) ++ if (terminal->pvt->bracketed_paste_mode) + vte_terminal_feed_child(terminal, "\e[200~", -1); + vte_terminal_feed_child(terminal, paste, length); +- if (terminal->pvt->screen->bracketed_paste_mode) ++ if (terminal->pvt->bracketed_paste_mode) + vte_terminal_feed_child(terminal, "\e[201~", -1); + g_free(paste); + } +@@ -14065,14 +14065,12 @@ + pvt->normal_screen.linefeed_mode = FALSE; + pvt->normal_screen.origin_mode = FALSE; + pvt->normal_screen.reverse_mode = FALSE; +- pvt->normal_screen.bracketed_paste_mode = FALSE; + pvt->alternate_screen.scrolling_restricted = FALSE; + pvt->alternate_screen.sendrecv_mode = TRUE; + pvt->alternate_screen.insert_mode = FALSE; + pvt->alternate_screen.linefeed_mode = FALSE; + pvt->alternate_screen.origin_mode = FALSE; + pvt->alternate_screen.reverse_mode = FALSE; +- pvt->alternate_screen.bracketed_paste_mode = FALSE; + pvt->cursor_visible = TRUE; + /* Reset the encoding. */ + vte_terminal_set_encoding(terminal, NULL); +@@ -14102,6 +14100,8 @@ + pvt->mouse_last_y = 0; + /* Clear modifiers. */ + pvt->modifiers = 0; ++ /* Reset miscellaneous stuff. */ ++ pvt->bracketed_paste_mode = FALSE; + /* Cause everything to be redrawn (or cleared). */ + vte_terminal_maybe_scroll_to_bottom(terminal); + _vte_invalidate_all(terminal); +diff -ur vte-0.28.2.orig/src/vte-private.h vte-0.28.2/src/vte-private.h +--- vte-0.28.2.orig/src/vte-private.h 2011-08-17 00:52:48.000000000 +0300 ++++ vte-0.28.2/src/vte-private.h 2014-06-26 04:20:52.410371214 +0300 +@@ -219,7 +219,6 @@ + gboolean sendrecv_mode; /* sendrecv mode */ + gboolean insert_mode; /* insert mode */ + gboolean linefeed_mode; /* linefeed mode */ +- gboolean bracketed_paste_mode; + struct vte_scrolling_region { + int start, end; + } scrolling_region; /* the region we scroll in */ +@@ -274,6 +273,7 @@ + gboolean text_modified_flag; + gboolean text_inserted_flag; + gboolean text_deleted_flag; ++ gboolean bracketed_paste_mode; + + /* Scrolling options. */ + gboolean scroll_background; +diff -ur vte-0.28.2.orig/src/vteseq.c vte-0.28.2/src/vteseq.c +--- vte-0.28.2.orig/src/vteseq.c 2014-06-26 04:08:49.998358634 +0300 ++++ vte-0.28.2/src/vteseq.c 2014-06-26 04:34:00.214384933 +0300 +@@ -737,7 +737,7 @@ + GINT_TO_POINTER(TRUE), + NULL, NULL}, + /* 2004: Bracketed paste mode. */ +- {2004, &terminal->pvt->screen->bracketed_paste_mode, NULL, NULL, ++ {2004, &terminal->pvt->bracketed_paste_mode, NULL, NULL, + GINT_TO_POINTER(FALSE), + GINT_TO_POINTER(TRUE), + NULL, NULL,}, diff --git a/vte.spec b/vte.spec index 5314be3..d3f4063 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 12%{?dist} +Release: 13%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -25,6 +25,9 @@ Patch3: http://ausil.fedorapeople.org/aarch64/vte/vte-aarch64.patch # Fix control home/control end codes # https://bugzilla.redhat.com/show_bug.cgi?id=1114074 Patch4: vte-0.28.2-control.patch +# Fix mc paste +# https://bugzilla.redhat.com/show_bug.cgi?id=1114301 +Patch5: vte-0.28.2-paste-fix.diff BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} @@ -65,6 +68,7 @@ vte. %patch2 -p1 %patch3 -p1 %patch4 -p1 +%patch5 -p1 %build PYTHON=%{_bindir}/python`%{__python} -c "import sys ; print sys.version[:3]"` @@ -120,6 +124,10 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sun Jun 29 2014 Kevin Fenzi 0.28.2-13 +- Add patch to fix bracketed paste. Fixes bug #1114301 +- Thanks to nerijus for the patch + * Sat Jun 28 2014 Kevin Fenzi 0.28.2-12 - Add patch to fix control+home/control+end. Fixes bug #1114074 - Thanks to jskarvad for the patch From 36ba2a0f7430afa77bea08ed9dc67f8298f85a0f Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 08:10:32 +0000 Subject: [PATCH 32/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index d3f4063..b31134b 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 13%{?dist} +Release: 14%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -124,6 +124,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 0.28.2-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 29 2014 Kevin Fenzi 0.28.2-13 - Add patch to fix bracketed paste. Fixes bug #1114301 - Thanks to nerijus for the patch From 76100c861caedc268853cbb8adf793b1dc5e57bd Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 02:10:16 +0000 Subject: [PATCH 33/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index b31134b..be3dc85 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 14%{?dist} +Release: 15%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -124,6 +124,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 0.28.2-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Aug 18 2014 Fedora Release Engineering - 0.28.2-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 49ffd217813b213b396a5fb9c25a818cf6bfc418 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 5 Sep 2015 13:21:23 -0600 Subject: [PATCH 34/71] Enable GObject Introspection (#1256535) --- vte.spec | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index be3dc85..ae9415f 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 15%{?dist} +Release: 16%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -28,6 +28,9 @@ Patch4: vte-0.28.2-control.patch # Fix mc paste # https://bugzilla.redhat.com/show_bug.cgi?id=1114301 Patch5: vte-0.28.2-paste-fix.diff +# Backport introspection fixes +# https://bugzilla.redhat.com/show_bug.cgi?id=1256535 +Patch6: vte-0.28.2-introspection-fixes.patch BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} @@ -38,6 +41,7 @@ BuildRequires: libXt-devel BuildRequires: intltool # Work around broken perl / perl-Carp BuildRequires: perl-Carp +BuildRequires: gobject-introspection-devel # initscripts creates the utmp group Requires: initscripts @@ -69,6 +73,7 @@ vte. %patch3 -p1 %patch4 -p1 %patch5 -p1 +%patch6 -p2 %build PYTHON=%{_bindir}/python`%{__python} -c "import sys ; print sys.version[:3]"` @@ -76,6 +81,7 @@ export PYTHON %configure \ --enable-shared \ --enable-static \ + --enable-introspection \ --with-gtk=2.0 \ --libexecdir=%{_libdir}/%{name} \ --without-glX \ @@ -109,6 +115,7 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %attr(2711,root,utmp) %{_libdir}/vte/gnome-pty-helper %{_datadir}/%{name} %{_libdir}/python*/site-packages/* +%{_libdir}/girepository-1.0 #rpmlint gives: #vte.x86_64: W: private-shared-object-provides /usr/lib64/python2.7/site-packages/gtk-2.0/vtemodule.so vtemodule.so()(64bit) @@ -121,9 +128,13 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %{_libdir}/pkgconfig/* %{_bindir}/%{name} %{_datadir}/pygtk/2.0/defs/vte.defs +%{_datadir}/gir-1.0 %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Mon Aug 24 2015 Yaakov Selkowitz - 0.28.2-16 +- Enable GObject Introspection (#1256535) + * Fri Jun 19 2015 Fedora Release Engineering - 0.28.2-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 52adb6b2db8d42a67dce3cdbddc949c928db9ecb Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 5 Sep 2015 13:47:32 -0600 Subject: [PATCH 35/71] Acutally commit vte-0.28.2-introspection-fixes.patch --- vte-0.28.2-introspection-fixes.patch | 84 ++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 vte-0.28.2-introspection-fixes.patch diff --git a/vte-0.28.2-introspection-fixes.patch b/vte-0.28.2-introspection-fixes.patch new file mode 100644 index 0000000..dae76e6 --- /dev/null +++ b/vte-0.28.2-introspection-fixes.patch @@ -0,0 +1,84 @@ +commit 8cff105a2b280ed738b296955724590b9cd348ce +commit ef34977b6765be1036ea8cd016861199033e2231 +commit 49e3433dea9a32d7ab9972b719484b49ca7f6b81 +commit 94b6ca416d4e5b54be084a057ec1341bcfddabe1 +commit ecb9fcc8cfb73207bcda93889e3e2564d41f79c9 + +--- origsrc/vte-0.28.2/src/pty.c 2011-08-16 16:52:48.000000000 -0500 ++++ src/vte-0.28.2/src/pty.c 2015-08-03 14:01:55.151226800 -0500 +@@ -616,7 +616,7 @@ __vte_pty_fork(VtePty *pty, + * @pty: a #VtePty + * @rows: the desired number of rows + * @columns: the desired number of columns +- * @error: (allow-none); return location to store a #GError, or %NULL ++ * @error: (allow-none): return location to store a #GError, or %NULL + * + * Attempts to resize the pseudo terminal's window size. If successful, the + * OS kernel will send #SIGWINCH to the child process group. +--- origsrc/vte-0.28.2/src/vte.c 2015-08-03 13:56:24.348720200 -0500 ++++ src/vte-0.28.2/src/vte.c 2015-08-03 16:15:52.185800500 -0500 +@@ -2474,7 +2474,7 @@ _vte_terminal_set_pointer_visible(VteTer + * + * Creates a new terminal widget. + * +- * Returns: (transfer full) (type Vte.Terminal): a new #VteTerminal object ++ * Returns: (transfer none) (type Vte.Terminal): a new #VteTerminal object + */ + GtkWidget * + vte_terminal_new(void) +@@ -3680,7 +3680,7 @@ vte_terminal_watch_child (VteTerminal *t + * Gets the user's shell, or %NULL. In the latter case, the + * system default (usually "/bin/sh") should be used. + * +- * Returns: (tranfer full) (type filename): a newly allocated string with the ++ * Returns: (transfer full) (type filename): a newly allocated string with the + * user's shell, or %NULL + * + * Since: 0.28 +@@ -4615,8 +4615,8 @@ out: + /** + * vte_terminal_feed: + * @terminal: a #VteTerminal +- * @data: a string in the terminal's current encoding +- * @length: the length of the string ++ * @data: (array length=length) (element-type guint8): a string in the terminal's current encoding ++ * @length the length of the string + * + * Interprets @data as if it were data received from a child process. This + * can either be used to drive the terminal without a child process, or just +@@ -6233,7 +6233,7 @@ vte_terminal_copy_cb(GtkClipboard *clipb + * @start_col: first column to search for data + * @end_row: last row to search for data + * @end_col: last column to search for data +- * @is_selected: a #VteSelectionFunc callback ++ * @is_selected: (scope call): a #VteSelectionFunc callback + * @user_data: (closure): user data to be passed to the callback + * @attributes: (out) (transfer full) (array) (element-type Vte.CharAttributes): location for storing text attributes + * +@@ -6432,7 +6432,7 @@ vte_terminal_get_text_maybe_wrapped(VteT + /** + * vte_terminal_get_text: + * @terminal: a #VteTerminal +- * @is_selected: a #VteSelectionFunc callback ++ * @is_selected: (scope call): a #VteSelectionFunc callback + * @user_data: (closure): user data to be passed to the callback + * @attributes: (out) (transfer full) (array) (element-type Vte.CharAttributes): location for storing text attributes + * +@@ -6462,7 +6462,7 @@ vte_terminal_get_text(VteTerminal *termi + /** + * vte_terminal_get_text_include_trailing_spaces: + * @terminal: a #VteTerminal +- * @is_selected: a #VteSelectionFunc callback ++ * @is_selected: (scope call): a #VteSelectionFunc callback + * @user_data: (closure): user data to be passed to the callback + * @attributes: (out) (transfer full) (array) (element-type Vte.CharAttributes): location for storing text attributes + * +@@ -6497,7 +6497,7 @@ vte_terminal_get_text_include_trailing_s + * vte_terminal_get_cursor_position: + * @terminal: a #VteTerminal + * @column: (out) (allow-none): a location to store the column, or %NULL +- * @row : (out) (allow-none): a location to store the row, or %NULL ++ * @row: (out) (allow-none): a location to store the row, or %NULL + * + * Reads the location of the insertion cursor and returns it. The row + * coordinate is absolute. From 391557fc2348af706a9e5a7e1c122e94080922b6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 02:51:24 +0000 Subject: [PATCH 36/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index ae9415f..840e918 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 16%{?dist} +Release: 17%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -132,6 +132,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 0.28.2-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Mon Aug 24 2015 Yaakov Selkowitz - 0.28.2-16 - Enable GObject Introspection (#1256535) From 1020b634d90385f4e34d70a4762c9e854c3ee177 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 19 Jul 2016 13:08:08 +0000 Subject: [PATCH 37/71] - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 840e918..38214fe 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 17%{?dist} +Release: 18%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -132,6 +132,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Tue Jul 19 2016 Fedora Release Engineering - 0.28.2-18 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + * Fri Feb 05 2016 Fedora Release Engineering - 0.28.2-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 53d8bf0d9ac83412d4d938509af83625a1becfec Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 17:12:27 +0000 Subject: [PATCH 38/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 38214fe..9c13878 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 18%{?dist} +Release: 19%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -132,6 +132,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 0.28.2-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Tue Jul 19 2016 Fedora Release Engineering - 0.28.2-18 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages From 8135a3533dcfb3bc597c9f483676363275e76e73 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 21:26:45 +0000 Subject: [PATCH 39/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 9c13878..d194cd0 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 19%{?dist} +Release: 20%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -132,6 +132,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 0.28.2-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 0.28.2-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 460295f79336a55287dd352f5d08198f8a372390 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 10:09:17 +0000 Subject: [PATCH 40/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index d194cd0..b7cfe54 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 20%{?dist} +Release: 21%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -132,6 +132,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.28.2-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 0.28.2-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 26764d3bdc9f7b5134679373dab35eb15d30fa25 Mon Sep 17 00:00:00 2001 From: Iryna Shcherbina Date: Mon, 5 Feb 2018 04:55:23 +0100 Subject: [PATCH 41/71] Update Python 2 dependency declarations to new packaging standards --- vte.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/vte.spec b/vte.spec index b7cfe54..dd6982e 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 21%{?dist} +Release: 22%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -35,7 +35,7 @@ Patch6: vte-0.28.2-introspection-fixes.patch BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} BuildRequires: glib2-devel >= %{glib2_version} -BuildRequires: pygtk2-devel, python-devel, ncurses-devel +BuildRequires: pygtk2-devel, python2-devel, ncurses-devel BuildRequires: gettext BuildRequires: libXt-devel BuildRequires: intltool @@ -132,6 +132,10 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Mon Feb 05 2018 Iryna Shcherbina - 0.28.2-22 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + * Thu Aug 03 2017 Fedora Release Engineering - 0.28.2-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 23fd5b1a5b8d415b9c0a07e9626957ae7dc0b82d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 20:41:44 +0000 Subject: [PATCH 42/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index dd6982e..9f4ec10 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 22%{?dist} +Release: 23%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -132,6 +132,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 0.28.2-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Mon Feb 05 2018 Iryna Shcherbina - 0.28.2-22 - Update Python 2 dependency declarations to new packaging standards (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) From 324317ea20177736dbe7fd16f85a9f43f75426a5 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 6 May 2018 12:24:25 -0700 Subject: [PATCH 43/71] Add backported patches for various issues. Fixes bug #1574683 --- vte-0.28.2-683730.patch | 22 +++ vte-0.28.2-mouse-tracking.patch | 268 ++++++++++++++++++++++++++++++++ vte-0.28.2-performance.patch | 11 ++ vte.spec | 17 +- 4 files changed, 317 insertions(+), 1 deletion(-) create mode 100644 vte-0.28.2-683730.patch create mode 100644 vte-0.28.2-mouse-tracking.patch create mode 100644 vte-0.28.2-performance.patch diff --git a/vte-0.28.2-683730.patch b/vte-0.28.2-683730.patch new file mode 100644 index 0000000..5a00e1b --- /dev/null +++ b/vte-0.28.2-683730.patch @@ -0,0 +1,22 @@ +--- o/src/vte.c 2018-05-03 20:53:16.000000000 +0200 ++++ n/src/vte.c 2018-05-03 20:57:48.764010197 +0200 +@@ -7513,17 +7513,10 @@ + event->button, x, y); + switch (event->button) { + case 1: +- /* If Shift is held down, or we're not in events mode, +- * copy the selected text. */ +- if ((terminal->pvt->modifiers & GDK_SHIFT_MASK) || +- !terminal->pvt->mouse_tracking_mode) +- handled = _vte_terminal_maybe_end_selection (terminal); ++ handled = _vte_terminal_maybe_end_selection (terminal); + break; + case 2: +- if ((terminal->pvt->modifiers & GDK_SHIFT_MASK) || +- !terminal->pvt->mouse_tracking_mode) { +- handled = TRUE; +- } ++ handled = TRUE; + break; + case 3: + default: diff --git a/vte-0.28.2-mouse-tracking.patch b/vte-0.28.2-mouse-tracking.patch new file mode 100644 index 0000000..c8dc707 --- /dev/null +++ b/vte-0.28.2-mouse-tracking.patch @@ -0,0 +1,268 @@ +--- vte-0.28.2-clean/src/mev.c 2011-08-16 23:52:48.000000000 +0200 ++++ vte-0.28.2-clean/src/mev.c 2018-05-03 22:07:30.275915172 +0200 +@@ -42,7 +42,9 @@ + tracking_mouse = 1000, + tracking_hilite = 1001, + tracking_cell_motion = 1002, +- tracking_all_motion = 1003 ++ tracking_all_motion = 1003, ++ tracking_xterm_ext = 1006, ++ tracking_urxvt = 1015 + } tracking_mode = 0; + + static void +@@ -59,6 +61,8 @@ + decset(tracking_hilite, FALSE); + decset(tracking_cell_motion, FALSE); + decset(tracking_all_motion, FALSE); ++ decset(tracking_xterm_ext, FALSE); ++ decset(tracking_urxvt, FALSE); + fflush(stdout); + } + +@@ -93,6 +97,14 @@ + fprintf(stdout, "All motion tracking enabled.\r\n"); + decset(tracking_all_motion, TRUE); + break; ++ case tracking_xterm_ext: ++ fprintf(stdout, "Xterm 1006 mouse tracking extension enabled.\r\n"); ++ decset(tracking_xterm_ext, TRUE); ++ break; ++ case tracking_urxvt: ++ fprintf(stdout, "rxvt-unicode 1015 mouse tracking extension enabled.\r\n"); ++ decset(tracking_urxvt, TRUE); ++ break; + default: + fprintf(stdout, "Tracking disabled.\r\n"); + break; +@@ -102,6 +114,8 @@ + fprintf(stdout, "C - Hilite tracking [FIXME: NOT IMPLEMENTED].\r\n"); + fprintf(stdout, "D - Cell motion tracking.\r\n"); + fprintf(stdout, "E - All motion tracking.\r\n"); ++ fprintf(stdout, "F - Xterm 1006 extension.\r\n"); ++ fprintf(stdout, "G - rxvt-unicode extension.\r\n"); + fprintf(stdout, "%s", _VTE_CAP_ESC "8"); + fflush(stdout); + } +@@ -153,6 +167,18 @@ + 0 : tracking_all_motion; + i++; + break; ++ case 'F': ++ case 'f': ++ tracking_mode = (tracking_mode == tracking_xterm_ext) ? ++ 0 : tracking_xterm_ext; ++ i++; ++ break; ++ case 'G': ++ case 'g': ++ tracking_mode = (tracking_mode == tracking_urxvt) ? ++ 0 : tracking_urxvt; ++ i++; ++ break; + case 'Q': + case 'q': + ret = TRUE; +--- vte-0.28.2-clean/src/vte.c 2018-05-03 22:04:27.780199219 +0200 ++++ vte-0.28.2-clean/src/vte.c 2018-05-03 22:07:30.277915158 +0200 +@@ -5816,21 +5816,20 @@ + } + + static void +-vte_terminal_get_mouse_tracking_info (VteTerminal *terminal, +- int button, +- long col, +- long row, +- unsigned char *pb, +- unsigned char *px, +- unsigned char *py) ++vte_terminal_feed_mouse_event(VteTerminal *terminal, ++ int button, ++ gboolean is_drag, ++ gboolean is_release, ++ long col, ++ long row) + { +- unsigned char cb = 0, cx = 0, cy = 0; ++ unsigned char cb = 0; ++ long cx, cy; ++ char buf[LINE_MAX]; ++ gint len = 0; + + /* Encode the button information in cb. */ + switch (button) { +- case 0: /* Release/no buttons. */ +- cb = 3; +- break; + case 1: /* Left. */ + cb = 0; + break; +@@ -5847,7 +5846,12 @@ + cb = 65; /* Scroll down. */ + break; + } +- cb += 32; /* 32 for normal */ ++ ++ /* With the exception of the 1006 mode, button release is also encoded here. */ ++ /* Note that if multiple extensions are enabled, the 1006 is used, so it's okay to check for only that. */ ++ if (is_release && !terminal->pvt->mouse_xterm_extension) { ++ cb = 3; ++ } + + /* Encode the modifiers. */ + if (terminal->pvt->modifiers & GDK_SHIFT_MASK) { +@@ -5860,38 +5864,46 @@ + cb |= 16; + } + +- /* Encode the cursor coordinates. */ +- cx = 32 + CLAMP(1 + col, +- 1, terminal->column_count); +- cy = 32 + CLAMP(1 + row, +- 1, terminal->row_count);; +- +- *pb = cb; +- *px = cx; +- *py = cy; ++ /* Encode a drag event. */ ++ if (is_drag) { ++ cb |= 32; ++ } ++ ++ /* Clamp the cursor coordinates. Make them 1-based. */ ++ cx = CLAMP(1 + col, ++ 1, terminal->column_count); ++ cy = CLAMP(1 + row, ++ 1, terminal->row_count); ++ ++ /* Check the extensions in decreasing order of preference. Encoding the release event above assumes that 1006 comes first. */ ++ if (terminal->pvt->mouse_xterm_extension) { ++ /* xterm's extended mode (1006) */ ++ len = g_snprintf(buf, sizeof(buf), _VTE_CAP_CSI "<%d;%ld;%ld%c", cb, cx, cy, is_release ? 'm' : 'M'); ++ } else if (terminal->pvt->mouse_urxvt_extension) { ++ /* urxvt's extended mode (1015) */ ++ len = g_snprintf(buf, sizeof(buf), _VTE_CAP_CSI "%d;%ld;%ldM", 32 + cb, cx, cy); ++ } else if (cx <= 231 && cy <= 231) { ++ /* legacy mode */ ++ len = g_snprintf(buf, sizeof(buf), _VTE_CAP_CSI "M%c%c%c", 32 + cb, 32 + (guchar)cx, 32 + (guchar)cy); ++ } ++ ++ /* Send event direct to the child, this is binary not text data */ ++ vte_terminal_feed_child_binary(terminal, buf, len); + } + + static void + vte_terminal_send_mouse_button_internal(VteTerminal *terminal, + int button, ++ gboolean is_release, + long x, + long y) + { +- unsigned char cb, cx, cy; +- char buf[LINE_MAX]; +- gint len; + int width = terminal->char_width; + int height = terminal->char_height; + long col = (x - terminal->pvt->inner_border.left) / width; + long row = (y - terminal->pvt->inner_border.top) / height; + +- vte_terminal_get_mouse_tracking_info (terminal, +- button, col, row, +- &cb, &cx, &cy); +- +- /* Send event direct to the child, this is binary not text data */ +- len = g_snprintf(buf, sizeof(buf), _VTE_CAP_CSI "M%c%c%c", cb, cx, cy); +- vte_terminal_feed_child_binary(terminal, buf, len); ++ vte_terminal_feed_mouse_event(terminal, button, FALSE /* not drag */, is_release, col, row); + } + + /* Send a mouse button click/release notification. */ +@@ -5919,7 +5931,8 @@ + } + + vte_terminal_send_mouse_button_internal(terminal, +- (event->type == GDK_BUTTON_PRESS) ? event->button : 0, ++ event->button, ++ event->type == GDK_BUTTON_RELEASE, + event->x, event->y); + } + +@@ -5927,9 +5940,6 @@ + static void + vte_terminal_maybe_send_mouse_drag(VteTerminal *terminal, GdkEventMotion *event) + { +- unsigned char cb, cx, cy; +- char buf[LINE_MAX]; +- gint len; + int width = terminal->char_width; + int height = terminal->char_height; + long col = ((long) event->x - terminal->pvt->inner_border.left) / width; +@@ -5958,14 +5968,9 @@ + break; + } + +- vte_terminal_get_mouse_tracking_info (terminal, +- terminal->pvt->mouse_last_button, col, row, +- &cb, &cx, &cy); +- cb += 32; /* for movement */ +- +- /* Send event direct to the child, this is binary not text data */ +- len = g_snprintf(buf, sizeof(buf), _VTE_CAP_CSI "M%c%c%c", cb, cx, cy); +- vte_terminal_feed_child_binary(terminal, buf, len); ++ vte_terminal_feed_mouse_event(terminal, terminal->pvt->mouse_last_button, ++ TRUE /* drag */, FALSE /* not release */, ++ col, row); + } + + /* Clear all match hilites. */ +@@ -11384,6 +11389,7 @@ + /* Encode the parameters and send them to the app. */ + vte_terminal_send_mouse_button_internal(terminal, + button, ++ FALSE /* not release */, + event->x, + event->y); + } +@@ -14091,6 +14097,8 @@ + pvt->mouse_last_button = 0; + pvt->mouse_last_x = 0; + pvt->mouse_last_y = 0; ++ pvt->mouse_xterm_extension = FALSE; ++ pvt->mouse_urxvt_extension = FALSE; + /* Clear modifiers. */ + pvt->modifiers = 0; + /* Reset miscellaneous stuff. */ +--- vte-0.28.2-clean/src/vte-private.h 2018-05-03 22:04:27.773199268 +0200 ++++ vte-0.28.2-clean/src/vte-private.h 2018-05-03 22:07:30.275915172 +0200 +@@ -305,6 +305,8 @@ + long mouse_last_x, mouse_last_y; + gboolean mouse_autohide; + guint mouse_autoscroll_tag; ++ gboolean mouse_xterm_extension; ++ gboolean mouse_urxvt_extension; + + /* State variables for handling match checks. */ + char *match_contents; +--- vte-0.28.2-clean/src/vteseq.c 2018-05-03 22:04:27.773199268 +0200 ++++ vte-0.28.2-clean/src/vteseq.c 2018-05-03 22:07:30.277915158 +0200 +@@ -685,10 +685,20 @@ + GINT_TO_POINTER(0), + GINT_TO_POINTER(MOUSE_TRACKING_ALL_MOTION_TRACKING), + NULL, NULL,}, ++ /* 1006: Extended mouse coordinates. */ ++ {1006, &terminal->pvt->mouse_xterm_extension, NULL, NULL, ++ GINT_TO_POINTER(FALSE), ++ GINT_TO_POINTER(TRUE), ++ NULL, NULL,}, + /* 1010/rxvt: disallowed, scroll-on-output is set by user. */ + {1010, NULL, NULL, NULL, NULL, NULL, NULL, NULL,}, + /* 1011/rxvt: disallowed, scroll-on-keypress is set by user. */ + {1011, NULL, NULL, NULL, NULL, NULL, NULL, NULL,}, ++ /* 1015/urxvt: Extended mouse coordinates. */ ++ {1015, &terminal->pvt->mouse_urxvt_extension, NULL, NULL, ++ GINT_TO_POINTER(FALSE), ++ GINT_TO_POINTER(TRUE), ++ NULL, NULL,}, + /* 1035: disallowed, don't know what to do with it. */ + {1035, NULL, NULL, NULL, NULL, NULL, NULL, NULL,}, + /* 1036: Meta-sends-escape. */ diff --git a/vte-0.28.2-performance.patch b/vte-0.28.2-performance.patch new file mode 100644 index 0000000..ca8c8ca --- /dev/null +++ b/vte-0.28.2-performance.patch @@ -0,0 +1,11 @@ +--- o/src/vte.c 2018-05-03 20:53:16.000000000 +0200 ++++ o/src/vte.c 2018-05-03 20:57:48.764010197 +0200 +@@ -4520,7 +4520,7 @@ + if (max_bytes) { + max_bytes = terminal->pvt->max_input_bytes / max_bytes; + } else { +- max_bytes = VTE_MAX_INPUT_READ; ++ max_bytes = terminal->pvt->max_input_bytes; + } + bytes = terminal->pvt->input_bytes; + diff --git a/vte.spec b/vte.spec index 9f4ec10..fc7f98e 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 23%{?dist} +Release: 24%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -31,6 +31,15 @@ Patch5: vte-0.28.2-paste-fix.diff # Backport introspection fixes # https://bugzilla.redhat.com/show_bug.cgi?id=1256535 Patch6: vte-0.28.2-introspection-fixes.patch +# Backport "cat bigfile" speedup +# https://bugzilla.gnome.org/show_bug.cgi?id=721944 +Patch7: vte-0.28.2-performance.patch +# Backport shift-mouse grab "hang" fix +# https://bugzilla.gnome.org/show_bug.cgi?id=683730 +Patch8: vte-0.28.2-683730.patch +# Backport extended xterm/urxvt mouse tracking support +# https://bugzilla.gnome.org/show_bug.cgi?id=681329 +Patch9: vte-0.28.2-mouse-tracking.patch BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} @@ -74,6 +83,9 @@ vte. %patch4 -p1 %patch5 -p1 %patch6 -p2 +%patch7 -p1 +%patch8 -p1 +%patch9 -p1 %build PYTHON=%{_bindir}/python`%{__python} -c "import sys ; print sys.version[:3]"` @@ -132,6 +144,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sun May 06 2018 Kevin Fenzi - 0.28.2-24 +- Add backported patches for various issues. Fixes bug #1574683 + * Fri Feb 09 2018 Fedora Release Engineering - 0.28.2-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From bf7958e880f9bfcaa2cb6ac285b83140517d9369 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 18 Jun 2018 17:14:18 -0700 Subject: [PATCH 44/71] Depend on systemd for utmp group, not initscripts anymore. Fixes bug #1592402 --- vte.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/vte.spec b/vte.spec index fc7f98e..d8ff6a3 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 24%{?dist} +Release: 25%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -52,8 +52,8 @@ BuildRequires: intltool BuildRequires: perl-Carp BuildRequires: gobject-introspection-devel -# initscripts creates the utmp group -Requires: initscripts +# systemd creates the utmp group +Requires: systemd %description VTE is a terminal emulator widget for use with GTK+ 2.0. @@ -144,6 +144,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Mon Jun 18 2018 Kevin Fenzi - 0.28.2-25 +- Depend on systemd for utmp group, not initscripts anymore. Fixes bug #1592402 + * Sun May 06 2018 Kevin Fenzi - 0.28.2-24 - Add backported patches for various issues. Fixes bug #1574683 From d753b3ac1a9e4feaa1a2bc3412a0733db74936ca Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 7 Jul 2018 13:47:44 -0700 Subject: [PATCH 45/71] Drop unneeded ldconfig calls --- vte.spec | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vte.spec b/vte.spec index d8ff6a3..c5d3e59 100644 --- a/vte.spec +++ b/vte.spec @@ -113,10 +113,6 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %find_lang vte-0.0 -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig - %files -f vte-0.0.lang %defattr(-,root,root) %doc COPYING HACKING NEWS README From e4eb6a9570ca1c8216bd337fcd10b745b7de19df Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 01:43:53 -0500 Subject: [PATCH 46/71] Remove needless use of %defattr --- vte.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/vte.spec b/vte.spec index c5d3e59..84e59c0 100644 --- a/vte.spec +++ b/vte.spec @@ -114,7 +114,6 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %find_lang vte-0.0 %files -f vte-0.0.lang -%defattr(-,root,root) %doc COPYING HACKING NEWS README %doc src/iso2022.txt %doc doc/utmpwtmp.txt doc/boxes.txt doc/openi18n/UTF-8.txt doc/openi18n/wrap.txt @@ -130,7 +129,6 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a # This is not used by anything except possibly third party scripts, so we're leaving it in place. %files devel -%defattr(-,root,root) %{_includedir}/* %{_libdir}/*.so %{_libdir}/pkgconfig/* From a83ce8e5a0f3471f9f358f7a24b21e39c5b579aa Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 08:40:26 +0000 Subject: [PATCH 47/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 84e59c0..8943508 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 25%{?dist} +Release: 26%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -138,6 +138,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 0.28.2-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Mon Jun 18 2018 Kevin Fenzi - 0.28.2-25 - Depend on systemd for utmp group, not initscripts anymore. Fixes bug #1592402 From 7d95bf010f078dafe12a66bbb5545a8e5ee9f7e8 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 18 Jul 2018 13:44:21 -0700 Subject: [PATCH 48/71] Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild --- vte.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 8943508..f9952e0 100644 --- a/vte.spec +++ b/vte.spec @@ -51,6 +51,7 @@ BuildRequires: intltool # Work around broken perl / perl-Carp BuildRequires: perl-Carp BuildRequires: gobject-introspection-devel +BuildRequires: /usr/bin/python # systemd creates the utmp group Requires: systemd @@ -88,7 +89,7 @@ vte. %patch9 -p1 %build -PYTHON=%{_bindir}/python`%{__python} -c "import sys ; print sys.version[:3]"` +PYTHON=%{__python2} export PYTHON %configure \ --enable-shared \ From e1f569871633f7d712fa01af90d531ca5f608cbf Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:30 +0100 Subject: [PATCH 49/71] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- vte.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/vte.spec b/vte.spec index f9952e0..1fbaf5e 100644 --- a/vte.spec +++ b/vte.spec @@ -7,7 +7,6 @@ Version: 0.28.2 Release: 26%{?dist} Summary: A terminal emulator License: LGPLv2+ -Group: User Interface/X #VCS: git:git://git.gnome.org/vte URL: http://developer.gnome.org/vte/ Source: http://download.gnome.org/sources/vte/0.28/%{name}-%{version}.tar.xz @@ -61,7 +60,6 @@ VTE is a terminal emulator widget for use with GTK+ 2.0. %package devel Summary: Files needed for developing applications which use vte -Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: gtk2-devel Requires: ncurses-devel From f31c5d0cc27c9f71e5e4bc509654a4de4c45a1c5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 11:28:30 +0000 Subject: [PATCH 50/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 1fbaf5e..8211f31 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 26%{?dist} +Release: 27%{?dist} Summary: A terminal emulator License: LGPLv2+ #VCS: git:git://git.gnome.org/vte @@ -137,6 +137,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 0.28.2-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 0.28.2-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 0e138df51d847e342177bccec39559a98b33156b Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 17 Jul 2019 15:11:20 -0700 Subject: [PATCH 51/71] Fix last python unversioned deps. --- vte.spec | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/vte.spec b/vte.spec index 8211f31..f91d152 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 27%{?dist} +Release: 28%{?dist} Summary: A terminal emulator License: LGPLv2+ #VCS: git:git://git.gnome.org/vte @@ -50,7 +50,6 @@ BuildRequires: intltool # Work around broken perl / perl-Carp BuildRequires: perl-Carp BuildRequires: gobject-introspection-devel -BuildRequires: /usr/bin/python # systemd creates the utmp group Requires: systemd @@ -137,6 +136,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Wed Jul 17 2019 Kevin Fenzi - 0.28.2-28 +- Fix last python unversioned deps. + * Sun Feb 03 2019 Fedora Release Engineering - 0.28.2-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From fe981cd43bd2aa3dcebc6fffa39305e754a00834 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 03:12:41 +0000 Subject: [PATCH 52/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index f91d152..e8a1029 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 28%{?dist} +Release: 29%{?dist} Summary: A terminal emulator License: LGPLv2+ #VCS: git:git://git.gnome.org/vte @@ -136,6 +136,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 0.28.2-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Wed Jul 17 2019 Kevin Fenzi - 0.28.2-28 - Fix last python unversioned deps. From e238eb35d6d5d7ee5a7d7ec80017c6e42cf28adf Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Mon, 7 Oct 2019 09:36:42 -0500 Subject: [PATCH 53/71] Drop Python bindings. --- vte.spec | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/vte.spec b/vte.spec index e8a1029..b94e97c 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 29%{?dist} +Release: 30%{?dist} Summary: A terminal emulator License: LGPLv2+ #VCS: git:git://git.gnome.org/vte @@ -43,7 +43,7 @@ Patch9: vte-0.28.2-mouse-tracking.patch BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} BuildRequires: glib2-devel >= %{glib2_version} -BuildRequires: pygtk2-devel, python2-devel, ncurses-devel +BuildRequires: ncurses-devel BuildRequires: gettext BuildRequires: libXt-devel BuildRequires: intltool @@ -86,8 +86,6 @@ vte. %patch9 -p1 %build -PYTHON=%{__python2} -export PYTHON %configure \ --enable-shared \ --enable-static \ @@ -95,7 +93,8 @@ export PYTHON --with-gtk=2.0 \ --libexecdir=%{_libdir}/%{name} \ --without-glX \ - --disable-gtk-doc + --disable-gtk-doc \ + --disable-python make %{?_smp_mflags} %install @@ -119,7 +118,6 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %dir %{_libdir}/vte %attr(2711,root,utmp) %{_libdir}/vte/gnome-pty-helper %{_datadir}/%{name} -%{_libdir}/python*/site-packages/* %{_libdir}/girepository-1.0 #rpmlint gives: @@ -131,11 +129,13 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %{_libdir}/*.so %{_libdir}/pkgconfig/* %{_bindir}/%{name} -%{_datadir}/pygtk/2.0/defs/vte.defs %{_datadir}/gir-1.0 %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Oct 05 2019 Lumír Balhar - 0.28.2-30 +- Disable Python 2 bindings + * Sat Jul 27 2019 Fedora Release Engineering - 0.28.2-29 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From b8ad6e7750c0662b9bc4a17b7c5e836b26c5ad64 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 03:25:02 +0000 Subject: [PATCH 54/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index b94e97c..8d71818 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 30%{?dist} +Release: 31%{?dist} Summary: A terminal emulator License: LGPLv2+ #VCS: git:git://git.gnome.org/vte @@ -133,6 +133,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 0.28.2-31 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Oct 05 2019 Lumír Balhar - 0.28.2-30 - Disable Python 2 bindings From ebc9dd9cdbd8d3a8260ba65ebf4c4eb493509b5c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 13:54:35 +0000 Subject: [PATCH 55/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 8d71818..f39ce88 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 31%{?dist} +Release: 32%{?dist} Summary: A terminal emulator License: LGPLv2+ #VCS: git:git://git.gnome.org/vte @@ -133,6 +133,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 0.28.2-32 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jan 31 2020 Fedora Release Engineering - 0.28.2-31 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From aa4bb8d075abb8f5f45f570414991c64f737ec8f Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 00:48:34 +0000 Subject: [PATCH 56/71] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- vte.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/vte.spec b/vte.spec index f39ce88..35c479d 100644 --- a/vte.spec +++ b/vte.spec @@ -40,6 +40,7 @@ Patch8: vte-0.28.2-683730.patch # https://bugzilla.gnome.org/show_bug.cgi?id=681329 Patch9: vte-0.28.2-mouse-tracking.patch +BuildRequires: make BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: pango-devel >= %{pango_version} BuildRequires: glib2-devel >= %{glib2_version} From bfd906e1620bbf96edac8a6bec9a7632ea200997 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 23:15:58 +0000 Subject: [PATCH 57/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 35c479d..4ac8790 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 32%{?dist} +Release: 33%{?dist} Summary: A terminal emulator License: LGPLv2+ #VCS: git:git://git.gnome.org/vte @@ -134,6 +134,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 0.28.2-33 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 0.28.2-32 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 7039d3c732d1b56a9943bb78ffb1af59529dbd0c Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Wed, 10 Feb 2021 15:41:36 +0100 Subject: [PATCH 58/71] Remove Requires on pygtk2 This is not necessary: the Python 2 bindings were removed a while ago. --- vte.spec | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/vte.spec b/vte.spec index 4ac8790..535b45b 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 33%{?dist} +Release: 34%{?dist} Summary: A terminal emulator License: LGPLv2+ #VCS: git:git://git.gnome.org/vte @@ -64,7 +64,6 @@ Requires: %{name} = %{version}-%{release} Requires: gtk2-devel Requires: ncurses-devel Requires: pkgconfig -Requires: pygtk2-devel %description devel The vte-devel package includes the header files and developer docs @@ -134,6 +133,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Wed Feb 10 2021 Petr Viktorin - 0.28.2-34 +- Remove Requires on pygtk2 + * Wed Jan 27 2021 Fedora Release Engineering - 0.28.2-33 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 91342c5f6a1ec7d5b87bc39e331eebe69cbc8526 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 20:41:29 +0000 Subject: [PATCH 59/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 535b45b..e853e3d 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 34%{?dist} +Release: 35%{?dist} Summary: A terminal emulator License: LGPLv2+ #VCS: git:git://git.gnome.org/vte @@ -133,6 +133,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 0.28.2-35 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Feb 10 2021 Petr Viktorin - 0.28.2-34 - Remove Requires on pygtk2 From 22b8af5c705779f0de104c17766181650bded699 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 04:12:04 +0000 Subject: [PATCH 60/71] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index e853e3d..bd5da90 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 35%{?dist} +Release: 36%{?dist} Summary: A terminal emulator License: LGPLv2+ #VCS: git:git://git.gnome.org/vte @@ -133,6 +133,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 0.28.2-36 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 0.28.2-35 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 7b4ebe9eb30f0975fb90b5cbc6d210d3d6a2541e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 12:08:04 +0000 Subject: [PATCH 61/71] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index bd5da90..419aae5 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 36%{?dist} +Release: 37%{?dist} Summary: A terminal emulator License: LGPLv2+ #VCS: git:git://git.gnome.org/vte @@ -133,6 +133,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 0.28.2-37 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 0.28.2-36 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From c64d2e6f80c2d342c9c15594115084ef814d22c2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 06:31:42 +0000 Subject: [PATCH 62/71] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 419aae5..8eab6b8 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 37%{?dist} +Release: 38%{?dist} Summary: A terminal emulator License: LGPLv2+ #VCS: git:git://git.gnome.org/vte @@ -133,6 +133,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 0.28.2-38 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jul 23 2022 Fedora Release Engineering - 0.28.2-37 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From ec874df9bfb13fdfb6955106d1cf84df39faea55 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Sat, 4 Mar 2023 15:06:39 -0600 Subject: [PATCH 63/71] migrated to SPDX license --- vte.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vte.spec b/vte.spec index 8eab6b8..20188d1 100644 --- a/vte.spec +++ b/vte.spec @@ -4,9 +4,9 @@ Name: vte Version: 0.28.2 -Release: 38%{?dist} +Release: 39%{?dist} Summary: A terminal emulator -License: LGPLv2+ +License: LGPL-2.0-or-later #VCS: git:git://git.gnome.org/vte URL: http://developer.gnome.org/vte/ Source: http://download.gnome.org/sources/vte/0.28/%{name}-%{version}.tar.xz @@ -133,6 +133,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Mar 04 2023 Gwyn Ciesla - 0.28.2-39 +- migrated to SPDX license + * Sat Jan 21 2023 Fedora Release Engineering - 0.28.2-38 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 44b32bb0de91c8c1d90134385da9f6b85b883a3f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 17:53:53 +0000 Subject: [PATCH 64/71] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 20188d1..c0193fa 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 39%{?dist} +Release: 40%{?dist} Summary: A terminal emulator License: LGPL-2.0-or-later #VCS: git:git://git.gnome.org/vte @@ -133,6 +133,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 0.28.2-40 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sat Mar 04 2023 Gwyn Ciesla - 0.28.2-39 - migrated to SPDX license From 7a972eeeee0da596e12afd4194c9586deb8def0b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 08:15:07 +0000 Subject: [PATCH 65/71] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index c0193fa..2885a61 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 40%{?dist} +Release: 41%{?dist} Summary: A terminal emulator License: LGPL-2.0-or-later #VCS: git:git://git.gnome.org/vte @@ -133,6 +133,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 0.28.2-41 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 0.28.2-40 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 4568b21f6bdd1e1801266ea78dfe5654943d97ff Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Wed, 31 Jan 2024 13:11:49 -0600 Subject: [PATCH 66/71] Patch for modern C --- pointer-types.patch | 22 ++++++++++++++++++++++ vte.spec | 27 ++++++++++++++++----------- 2 files changed, 38 insertions(+), 11 deletions(-) create mode 100644 pointer-types.patch diff --git a/pointer-types.patch b/pointer-types.patch new file mode 100644 index 0000000..bc77bcd --- /dev/null +++ b/pointer-types.patch @@ -0,0 +1,22 @@ +--- src/reaper.c~ 2011-08-16 16:52:48.000000000 -0500 ++++ src/reaper.c 2024-01-31 11:42:45.581345843 -0600 +@@ -85,7 +85,7 @@ + return g_object_ref (singleton_reaper); + } else { + GObject *obj; +- obj = G_OBJECT_CLASS (vte_reaper_parent_class)->constructor (type, n_construct_properties, construct_properties); ++ obj = (GObject *)(G_OBJECT_CLASS (vte_reaper_parent_class)->constructor (type, n_construct_properties, construct_properties)); + singleton_reaper = VTE_REAPER (obj); + return obj; + } +--- src/reaper.c~ 2024-01-31 12:12:15.260939495 -0600 ++++ src/reaper.c 2024-01-31 13:03:55.397334625 -0600 +@@ -82,7 +82,7 @@ + GObjectConstructParam *construct_properties) + { + if (singleton_reaper) { +- return g_object_ref (singleton_reaper); ++ return (GObject *)(g_object_ref (singleton_reaper)); + } else { + GObject *obj; + obj = (GObject *)(G_OBJECT_CLASS (vte_reaper_parent_class)->constructor (type, n_construct_properties, construct_properties)); diff --git a/vte.spec b/vte.spec index 2885a61..4b5dfd1 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 41%{?dist} +Release: 42%{?dist} Summary: A terminal emulator License: LGPL-2.0-or-later #VCS: git:git://git.gnome.org/vte @@ -39,6 +39,7 @@ Patch8: vte-0.28.2-683730.patch # Backport extended xterm/urxvt mouse tracking support # https://bugzilla.gnome.org/show_bug.cgi?id=681329 Patch9: vte-0.28.2-mouse-tracking.patch +Patch10: pointer-types.patch BuildRequires: make BuildRequires: gtk2-devel >= %{gtk2_version} @@ -74,16 +75,17 @@ vte. %prep %setup -q -%patch0 -p1 -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p2 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 +%patch -P 0 -p1 +%patch -P 1 -p1 +%patch -P 2 -p1 +%patch -P 3 -p1 +%patch -P 4 -p1 +%patch -P 5 -p1 +%patch -P 6 -p2 +%patch -P 7 -p1 +%patch -P 8 -p1 +%patch -P 9 -p1 +%patch -P 10 -p0 %build %configure \ @@ -133,6 +135,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Wed Jan 31 2024 Gwyn Ciesla - 0.28.2-42 +- PAtch for modern C. + * Sat Jan 27 2024 Fedora Release Engineering - 0.28.2-41 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 111efaf874c90595c0b71e52537267d917b07848 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 09:02:32 +0000 Subject: [PATCH 67/71] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 4b5dfd1..996c826 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 42%{?dist} +Release: 43%{?dist} Summary: A terminal emulator License: LGPL-2.0-or-later #VCS: git:git://git.gnome.org/vte @@ -135,6 +135,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 0.28.2-43 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Wed Jan 31 2024 Gwyn Ciesla - 0.28.2-42 - PAtch for modern C. From 791418ad3d7ae124015dc94eef5161af4e29fdb4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 14:39:22 +0000 Subject: [PATCH 68/71] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 996c826..4aa16cd 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 43%{?dist} +Release: 44%{?dist} Summary: A terminal emulator License: LGPL-2.0-or-later #VCS: git:git://git.gnome.org/vte @@ -135,6 +135,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 0.28.2-44 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Sat Jul 20 2024 Fedora Release Engineering - 0.28.2-43 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 77138c7b7c17e6292ec8649995c5e40fc73bf2dc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:14:41 +0000 Subject: [PATCH 69/71] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 4aa16cd..11397a1 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 44%{?dist} +Release: 45%{?dist} Summary: A terminal emulator License: LGPL-2.0-or-later #VCS: git:git://git.gnome.org/vte @@ -135,6 +135,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 0.28.2-45 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 0.28.2-44 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 5af1382b9e3c6841f31f29ea505fe809373b3dd8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:04:33 +0000 Subject: [PATCH 70/71] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 11397a1..165cd3b 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 45%{?dist} +Release: 46%{?dist} Summary: A terminal emulator License: LGPL-2.0-or-later #VCS: git:git://git.gnome.org/vte @@ -135,6 +135,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 0.28.2-46 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jul 25 2025 Fedora Release Engineering - 0.28.2-45 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From fcfbf98cca8adbb00b4f0c4ba8f7d0890b5772cb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:38:44 +0000 Subject: [PATCH 71/71] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- vte.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vte.spec b/vte.spec index 165cd3b..d3d87ad 100644 --- a/vte.spec +++ b/vte.spec @@ -4,7 +4,7 @@ Name: vte Version: 0.28.2 -Release: 46%{?dist} +Release: 47%{?dist} Summary: A terminal emulator License: LGPL-2.0-or-later #VCS: git:git://git.gnome.org/vte @@ -135,6 +135,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a %doc %{_datadir}/gtk-doc/html/vte-0.0 %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 0.28.2-47 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jan 17 2026 Fedora Release Engineering - 0.28.2-46 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild