From f2e46c17311e180eb4d10c6e9c6c97fe55c6bc37 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Wed, 5 Jan 2022 20:28:05 -0500 Subject: [PATCH 01/38] adapt test-package script for Fedora Signed-off-by: Thomas E. Dickey --- README.md | 16 +++++++++++++ dead.package | 1 - vttest.spec | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 81 insertions(+), 1 deletion(-) create mode 100644 README.md delete mode 100644 dead.package create mode 100644 vttest.spec diff --git a/README.md b/README.md new file mode 100644 index 0000000..7cc862b --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +Vttest is a program designed to test the functionality of a VT100 terminal (or +emulator thereof). It tests both display (escape sequence handling) and +keyboard. + +The program is menu-driven and contains full on-line operating instructions. + +* To run a given menu-item, you must enter its number. + +* Menu items start at zero; this is the “Exit” item in almost all cases. + +* You can run all menu-items (for a given level) by entering an asterisk, i.e, “*'. + +* You can force a repaint of the menu items by entering “?”. + +* A few menus can be more than one page. Use “n” and “p” to switch + to the next or previous page. diff --git a/dead.package b/dead.package deleted file mode 100644 index 5204a84..0000000 --- a/dead.package +++ /dev/null @@ -1 +0,0 @@ -Orphaned for 6+ weeks diff --git a/vttest.spec b/vttest.spec new file mode 100644 index 0000000..742eb02 --- /dev/null +++ b/vttest.spec @@ -0,0 +1,65 @@ +Summary: test VT100-type terminal + +%define AppProgram vttest +%define AppPatched 20210210 +%define AppVersion 2.7.%{AppPatched} + +Name: %{AppProgram} +Version: %{AppVersion} +Release: 1 +License: MIT +URL: https://invisible-island.net/%{AppProgram}/ +Source0: https://invisible-mirror.net/archives/%{AppProgram}/%{AppProgram}-%{AppPatched}.tgz + +%description +Vttest is a program designed to test the functionality of a VT100 +terminal (or emulator thereof). It tests both display (escape sequence +handling) and keyboard. + +The program is menu-driven and contains full on-line operating +instructions. To run a given menu-item, you must enter its number. You +can run all menu-items (for a given level) by entering an asterisk, i.e, +`*'. + +%prep + +# no need for debugging symbols... +%define debug_package %{nil} + +%setup -q -n %{AppProgram}-%{AppPatched} + +%build + +INSTALL_PROGRAM='${INSTALL}' \ +%configure \ + --target %{_target_platform} \ + --prefix=%{_prefix} \ + --bindir=%{_bindir} \ + --libdir=%{_libdir} \ + --mandir=%{_mandir} + +make + +%install +[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT + +make install DESTDIR=$RPM_BUILD_ROOT + +strip $RPM_BUILD_ROOT%{_bindir}/%{AppProgram} + +%files +%defattr(-,root,root) +%{_prefix}/bin/%{AppProgram} +%{_mandir}/man1/%{AppProgram}.* + +%changelog +# each patch should add its ChangeLog entries here + +* Wed Jan 05 2022 Thomas E. Dickey +- adapted test-package script for Fedora packaging. + +* Mon Jul 02 2018 Thomas Dickey +- use recommended flags for build + +* Thu Aug 26 2010 Thomas Dickey +- initial version From f44b1248e6855fd036953135dfa366183ac693d9 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sat, 8 Jan 2022 08:11:35 -0500 Subject: [PATCH 02/38] address review comments --- vttest.spec | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/vttest.spec b/vttest.spec index 742eb02..71e1bb2 100644 --- a/vttest.spec +++ b/vttest.spec @@ -1,15 +1,13 @@ Summary: test VT100-type terminal -%define AppProgram vttest %define AppPatched 20210210 -%define AppVersion 2.7.%{AppPatched} -Name: %{AppProgram} -Version: %{AppVersion} +Name: vttest +Version: 2.7.%{AppPatched} Release: 1 License: MIT -URL: https://invisible-island.net/%{AppProgram}/ -Source0: https://invisible-mirror.net/archives/%{AppProgram}/%{AppProgram}-%{AppPatched}.tgz +URL: https://invisible-island.net/%{name}/ +Source0: https://invisible-mirror.net/archives/%{name}/%{name}-%{AppPatched}.tgz %description Vttest is a program designed to test the functionality of a VT100 @@ -23,10 +21,7 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %prep -# no need for debugging symbols... -%define debug_package %{nil} - -%setup -q -n %{AppProgram}-%{AppPatched} +%setup -q -n %{name}-%{AppPatched} %build @@ -45,16 +40,26 @@ make make install DESTDIR=$RPM_BUILD_ROOT -strip $RPM_BUILD_ROOT%{_bindir}/%{AppProgram} +mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name} +install -m 644 BUGS CHANGES MANIFEST README $RPM_BUILD_ROOT%{_docdir}/%{name} + +mkdir -p $RPM_BUILD_ROOT%{_licensedir}/%{name} +install -m 644 COPYING $RPM_BUILD_ROOT%{_licensedir}/%{name} %files %defattr(-,root,root) -%{_prefix}/bin/%{AppProgram} -%{_mandir}/man1/%{AppProgram}.* +%{_prefix}/bin/%{name} +%{_mandir}/man1/%{name}.* +%{_docdir}/%{name} +%{_licensedir}/%{name} %changelog # each patch should add its ChangeLog entries here +* Sat Jan 08 2022 Thomas E. Dickey +- address review-comments +- install doc, license files used in previous Fedora package + * Wed Jan 05 2022 Thomas E. Dickey - adapted test-package script for Fedora packaging. From ec15178f93017985dbd05a60c73f29137dd9450c Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sat, 8 Jan 2022 08:21:45 -0500 Subject: [PATCH 03/38] more review-comments --- vttest.spec | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/vttest.spec b/vttest.spec index 71e1bb2..883dfb9 100644 --- a/vttest.spec +++ b/vttest.spec @@ -4,7 +4,7 @@ Summary: test VT100-type terminal Name: vttest Version: 2.7.%{AppPatched} -Release: 1 +Release: 1%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-mirror.net/archives/%{name}/%{name}-%{AppPatched}.tgz @@ -26,19 +26,14 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %build INSTALL_PROGRAM='${INSTALL}' \ -%configure \ - --target %{_target_platform} \ - --prefix=%{_prefix} \ - --bindir=%{_bindir} \ - --libdir=%{_libdir} \ - --mandir=%{_mandir} +%configure make %install [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +%make_install mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name} install -m 644 BUGS CHANGES MANIFEST README $RPM_BUILD_ROOT%{_docdir}/%{name} @@ -47,15 +42,12 @@ mkdir -p $RPM_BUILD_ROOT%{_licensedir}/%{name} install -m 644 COPYING $RPM_BUILD_ROOT%{_licensedir}/%{name} %files -%defattr(-,root,root) %{_prefix}/bin/%{name} %{_mandir}/man1/%{name}.* %{_docdir}/%{name} %{_licensedir}/%{name} %changelog -# each patch should add its ChangeLog entries here - * Sat Jan 08 2022 Thomas E. Dickey - address review-comments - install doc, license files used in previous Fedora package From 47e573b00c7eac4142d47710e65a2c8bdc92e7df Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sat, 8 Jan 2022 08:41:52 -0500 Subject: [PATCH 04/38] more review comments Signed-off-by: Thomas E. Dickey --- vttest.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index 883dfb9..ab7eef0 100644 --- a/vttest.spec +++ b/vttest.spec @@ -42,7 +42,7 @@ mkdir -p $RPM_BUILD_ROOT%{_licensedir}/%{name} install -m 644 COPYING $RPM_BUILD_ROOT%{_licensedir}/%{name} %files -%{_prefix}/bin/%{name} +%{_bindir}/%{name} %{_mandir}/man1/%{name}.* %{_docdir}/%{name} %{_licensedir}/%{name} From b36398c3a9631de3552e00d77c69e81c54392ca2 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sat, 8 Jan 2022 08:59:15 -0500 Subject: [PATCH 05/38] add build-requires Signed-off-by: Thomas E. Dickey --- vttest.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vttest.spec b/vttest.spec index ab7eef0..b4a362a 100644 --- a/vttest.spec +++ b/vttest.spec @@ -8,6 +8,8 @@ Release: 1%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-mirror.net/archives/%{name}/%{name}-%{AppPatched}.tgz +BuildRequires: gcc +BuildRequires: make %description Vttest is a program designed to test the functionality of a VT100 From df3652bdb1c3eb95ed7f356dd67bab9c312b8868 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sat, 8 Jan 2022 09:06:40 -0500 Subject: [PATCH 06/38] address review comments Signed-off-by: Thomas E. Dickey --- vttest.spec | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/vttest.spec b/vttest.spec index b4a362a..e31ee2f 100644 --- a/vttest.spec +++ b/vttest.spec @@ -27,7 +27,6 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %build -INSTALL_PROGRAM='${INSTALL}' \ %configure make @@ -37,17 +36,11 @@ make %make_install -mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name} -install -m 644 BUGS CHANGES MANIFEST README $RPM_BUILD_ROOT%{_docdir}/%{name} - -mkdir -p $RPM_BUILD_ROOT%{_licensedir}/%{name} -install -m 644 COPYING $RPM_BUILD_ROOT%{_licensedir}/%{name} - %files %{_bindir}/%{name} %{_mandir}/man1/%{name}.* -%{_docdir}/%{name} -%{_licensedir}/%{name} +%doc BUGS CHANGES MANIFEST README +%license COPYING %changelog * Sat Jan 08 2022 Thomas E. Dickey From 6e0373e2a2aa04324e9593778662238444ddcbcc Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sat, 8 Jan 2022 09:07:25 -0500 Subject: [PATCH 07/38] address review comments --- vttest.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index e31ee2f..aa59991 100644 --- a/vttest.spec +++ b/vttest.spec @@ -29,7 +29,7 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %configure -make +%make_build %install [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT From 7fef3ffd4e8fecf5b8ac2eee9b5312ce1e140197 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sat, 8 Jan 2022 09:14:47 -0500 Subject: [PATCH 08/38] address review comment Signed-off-by: Thomas E. Dickey --- vttest.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/vttest.spec b/vttest.spec index aa59991..1e5a3f3 100644 --- a/vttest.spec +++ b/vttest.spec @@ -32,8 +32,6 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %make_build %install -[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT - %make_install %files From bab7597f6495b64d054297290970cc25fe714251 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sat, 8 Jan 2022 09:37:37 -0500 Subject: [PATCH 09/38] address review comments --- vttest.spec | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/vttest.spec b/vttest.spec index 1e5a3f3..277d7af 100644 --- a/vttest.spec +++ b/vttest.spec @@ -41,15 +41,6 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog -* Sat Jan 08 2022 Thomas E. Dickey +* Sat Jan 08 2022 Thomas E. Dickey - 2.7.20210210-1 - address review-comments - install doc, license files used in previous Fedora package - -* Wed Jan 05 2022 Thomas E. Dickey -- adapted test-package script for Fedora packaging. - -* Mon Jul 02 2018 Thomas Dickey -- use recommended flags for build - -* Thu Aug 26 2010 Thomas Dickey -- initial version From c16f66c224379d87bf17e39ac2f452880eed8c0f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 04:12:33 +0000 Subject: [PATCH 10/38] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vttest.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index 277d7af..d48016f 100644 --- a/vttest.spec +++ b/vttest.spec @@ -4,7 +4,7 @@ Summary: test VT100-type terminal Name: vttest Version: 2.7.%{AppPatched} -Release: 1%{?dist} +Release: 2%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-mirror.net/archives/%{name}/%{name}-%{AppPatched}.tgz @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 2.7.20210210-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Sat Jan 08 2022 Thomas E. Dickey - 2.7.20210210-1 - address review-comments - install doc, license files used in previous Fedora package From a169fb37926764c0efbce171ab9430ef6615f612 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Thu, 17 Feb 2022 04:01:01 -0500 Subject: [PATCH 11/38] update to new release Signed-off-by: Thomas E. Dickey --- vttest.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index 277d7af..2882e9f 100644 --- a/vttest.spec +++ b/vttest.spec @@ -1,6 +1,6 @@ Summary: test VT100-type terminal -%define AppPatched 20210210 +%define AppPatched 20220215 Name: vttest Version: 2.7.%{AppPatched} @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Thu Feb 17 2022 Thomas E. Dickey - 2.7.20220215-1 +- update to 2.7.20220215 (RHBZ #2055158) + * Sat Jan 08 2022 Thomas E. Dickey - 2.7.20210210-1 - address review-comments - install doc, license files used in previous Fedora package From e837eada0d2d2d9777fb6deae17c2ddf3083514e Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Thu, 17 Feb 2022 19:52:41 -0500 Subject: [PATCH 12/38] update to new release --- vttest.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index 277d7af..2882e9f 100644 --- a/vttest.spec +++ b/vttest.spec @@ -1,6 +1,6 @@ Summary: test VT100-type terminal -%define AppPatched 20210210 +%define AppPatched 20220215 Name: vttest Version: 2.7.%{AppPatched} @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Thu Feb 17 2022 Thomas E. Dickey - 2.7.20220215-1 +- update to 2.7.20220215 (RHBZ #2055158) + * Sat Jan 08 2022 Thomas E. Dickey - 2.7.20210210-1 - address review-comments - install doc, license files used in previous Fedora package From 98771002c4df9ed01ffdb48f1b52e1c2686abb16 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Thu, 17 Feb 2022 20:17:20 -0500 Subject: [PATCH 13/38] add new tarball --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 5e55f54..1b6a947 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ vttest-20071216.tgz /vttest-20140305.tgz /vttest-20190710.tgz /vttest-20210210.tgz +/vttest-20220215.tgz From 3adfeb61c1ac172f74591d2acd5f8ab61d78108e Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Thu, 17 Feb 2022 20:18:09 -0500 Subject: [PATCH 14/38] add new source-hash via "fedpkg upload" --- sources | 1 + 1 file changed, 1 insertion(+) diff --git a/sources b/sources index 950cda8..0f5c8d7 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ SHA512 (vttest-20210210.tgz) = dcf721a7be4b8289d835f624f988356471337581bab8392ee7acb45eaae40feaa920bf3a27c9acc2a210b92935e1bfda95076761e57668194bce2735345b73b4 +SHA512 (vttest-20220215.tgz) = 3f4a98fc3323d6a86e9242cb38c2b3fa7e927bec78e7942c95bf44781ce6dd908bd6dac6faa05f1782075991e075659dfc1287c8ed7a943063686746afd76c93 From 247e1d8d76f3b744e7bd2139dad46bd271f434a4 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Thu, 17 Feb 2022 20:27:19 -0500 Subject: [PATCH 15/38] corrected release --- vttest.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index 0ed0c6b..24a5589 100644 --- a/vttest.spec +++ b/vttest.spec @@ -4,7 +4,7 @@ Summary: test VT100-type terminal Name: vttest Version: 2.7.%{AppPatched} -Release: 2%{?dist} +Release: 1%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-mirror.net/archives/%{name}/%{name}-%{AppPatched}.tgz From f6d12a32217a647cb76e898e6b2274eca7d880a1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 12:08:33 +0000 Subject: [PATCH 16/38] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vttest.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index 24a5589..2989eb8 100644 --- a/vttest.spec +++ b/vttest.spec @@ -4,7 +4,7 @@ Summary: test VT100-type terminal Name: vttest Version: 2.7.%{AppPatched} -Release: 1%{?dist} +Release: 2%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-mirror.net/archives/%{name}/%{name}-%{AppPatched}.tgz @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 2.7.20220215-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Thu Feb 17 2022 Thomas E. Dickey - 2.7.20220215-1 - update to 2.7.20220215 (RHBZ #2055158) From 2d292fa72dcb6474c84d176ee0dd1633142e46a1 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sun, 28 Aug 2022 19:29:30 -0400 Subject: [PATCH 17/38] update to 2.7.20220827 (RHBZ #2055158) --- .gitignore | 1 + sources | 1 + vttest.spec | 5 ++++- 3 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0b8dc99 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/vttest-20220827.tgz diff --git a/sources b/sources new file mode 100644 index 0000000..f4310ef --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (vttest-20220827.tgz) = 2c3be50ebb1ebc1b6660128636be6cdd21e7d3a8f8eeaaf627b50ff3e5e7e1a28c08fdd4c12d022b936a9da32302440024f8c95d000ad164cd5bfde765ac707d diff --git a/vttest.spec b/vttest.spec index 2882e9f..7bca6c9 100644 --- a/vttest.spec +++ b/vttest.spec @@ -1,6 +1,6 @@ Summary: test VT100-type terminal -%define AppPatched 20220215 +%define AppPatched 20220827 Name: vttest Version: 2.7.%{AppPatched} @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sun Aug 28 2022 Thomas E. Dickey - 2.7.20220827-1 +- update to 2.7.20220827 (RHBZ #2055158) + * Thu Feb 17 2022 Thomas E. Dickey - 2.7.20220215-1 - update to 2.7.20220215 (RHBZ #2055158) From 6f439c2a93b09b552c55e5ba8bd4fbfcc2423352 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Tue, 6 Dec 2022 21:23:12 +0100 Subject: [PATCH 18/38] Fix glitch in configure script in FIONREAD detection (#2151353) Related to: --- vttest-configure-c99.patch | 34 ++++++++++++++++++++++++++++++++++ vttest.spec | 8 ++++++-- 2 files changed, 40 insertions(+), 2 deletions(-) create mode 100644 vttest-configure-c99.patch diff --git a/vttest-configure-c99.patch b/vttest-configure-c99.patch new file mode 100644 index 0000000..dcee843 --- /dev/null +++ b/vttest-configure-c99.patch @@ -0,0 +1,34 @@ +Include for the ioctl function. Avoids an implicit +function declaration, improving compatibility with C99 compilers which +do not accept them. + +Also ensures that FIONREAD is defined on GNU/Linux. + +diff --git a/aclocal.m4 b/aclocal.m4 +index 648577771bcae97a..1cf5980e0c1873ca 100644 +--- a/aclocal.m4 ++++ b/aclocal.m4 +@@ -545,6 +545,9 @@ AC_DEFUN([CF_FCNTL_VS_IOCTL], + AC_MSG_CHECKING(if we may use FIONREAD) + AC_CACHE_VAL(cf_cv_use_fionread,[ + AC_TRY_COMPILE([ ++#if HAVE_SYS_IOCTL_H ++# include ++#endif + #if HAVE_SYS_FILIO_H + # include /* FIONREAD */ + #endif +diff --git a/configure b/configure +index 433325fdc0ea2cdf..f6490f33c8289108 100755 +--- a/configure ++++ b/configure +@@ -6609,6 +6609,9 @@ else + #line 6609 "configure" + #include "confdefs.h" + ++#if HAVE_SYS_IOCTL_H ++# include ++#endif + #if HAVE_SYS_FILIO_H + # include /* FIONREAD */ + #endif diff --git a/vttest.spec b/vttest.spec index 4579b58..3675ac4 100644 --- a/vttest.spec +++ b/vttest.spec @@ -4,10 +4,11 @@ Summary: test VT100-type terminal Name: vttest Version: 2.7.%{AppPatched} -Release: 1%{?dist} +Release: 2%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-mirror.net/archives/%{name}/%{name}-%{AppPatched}.tgz +Patch0: vttest-configure-c99.patch BuildRequires: gcc BuildRequires: make @@ -23,7 +24,7 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %prep -%setup -q -n %{name}-%{AppPatched} +%autosetup -p1 -n %{name}-%{AppPatched} %build @@ -41,6 +42,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Tue Dec 6 2022 Florian Weimer - 2.7.20220827-2 +- Fix glitch in configure script in FIONREAD detection (#2151353) + * Sun Aug 28 2022 Thomas E. Dickey - 2.7.20220827-1 - update to 2.7.20220827 (RHBZ #2055158) From 078177c1b99d633887c9deb168598ca8845cda10 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Mon, 2 Jan 2023 17:44:35 -0500 Subject: [PATCH 19/38] Update to vttest-2.7.20221229 --- .gitignore | 2 ++ sources | 2 +- vttest-configure-c99.patch | 34 ---------------------------------- vttest.spec | 8 +++++--- 4 files changed, 8 insertions(+), 38 deletions(-) delete mode 100644 vttest-configure-c99.patch diff --git a/.gitignore b/.gitignore index 5b1f465..f88883c 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,5 @@ vttest-20071216.tgz /vttest-20210210.tgz /vttest-20220215.tgz /vttest-20220827.tgz +/vttest-20221111.tgz +/vttest-20221229.tgz diff --git a/sources b/sources index f4310ef..5cb3544 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vttest-20220827.tgz) = 2c3be50ebb1ebc1b6660128636be6cdd21e7d3a8f8eeaaf627b50ff3e5e7e1a28c08fdd4c12d022b936a9da32302440024f8c95d000ad164cd5bfde765ac707d +SHA512 (vttest-20221229.tgz) = 5d7d064428f08c60c57a8b8e4a83ff4fc4c5cffab8873745144c7232a962c173f0afe11af3bf187b0a7c252113e0fed99d62f8e41576e7006f9dd0d4395d80da diff --git a/vttest-configure-c99.patch b/vttest-configure-c99.patch deleted file mode 100644 index dcee843..0000000 --- a/vttest-configure-c99.patch +++ /dev/null @@ -1,34 +0,0 @@ -Include for the ioctl function. Avoids an implicit -function declaration, improving compatibility with C99 compilers which -do not accept them. - -Also ensures that FIONREAD is defined on GNU/Linux. - -diff --git a/aclocal.m4 b/aclocal.m4 -index 648577771bcae97a..1cf5980e0c1873ca 100644 ---- a/aclocal.m4 -+++ b/aclocal.m4 -@@ -545,6 +545,9 @@ AC_DEFUN([CF_FCNTL_VS_IOCTL], - AC_MSG_CHECKING(if we may use FIONREAD) - AC_CACHE_VAL(cf_cv_use_fionread,[ - AC_TRY_COMPILE([ -+#if HAVE_SYS_IOCTL_H -+# include -+#endif - #if HAVE_SYS_FILIO_H - # include /* FIONREAD */ - #endif -diff --git a/configure b/configure -index 433325fdc0ea2cdf..f6490f33c8289108 100755 ---- a/configure -+++ b/configure -@@ -6609,6 +6609,9 @@ else - #line 6609 "configure" - #include "confdefs.h" - -+#if HAVE_SYS_IOCTL_H -+# include -+#endif - #if HAVE_SYS_FILIO_H - # include /* FIONREAD */ - #endif diff --git a/vttest.spec b/vttest.spec index 3675ac4..1ceeac4 100644 --- a/vttest.spec +++ b/vttest.spec @@ -1,14 +1,13 @@ Summary: test VT100-type terminal -%define AppPatched 20220827 +%define AppPatched 20221229 Name: vttest Version: 2.7.%{AppPatched} Release: 2%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ -Source0: https://invisible-mirror.net/archives/%{name}/%{name}-%{AppPatched}.tgz -Patch0: vttest-configure-c99.patch +Source0: https://invisible-island.net/archives/%{name}/%{name}-%{AppPatched}.tgz BuildRequires: gcc BuildRequires: make @@ -42,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Mon Jan 02 2023 Thomas E. Dickey - 2.7.20221229-1 +- update to 2.7.20221229 (RHBZ #2143489) + * Tue Dec 6 2022 Florian Weimer - 2.7.20220827-2 - Fix glitch in configure script in FIONREAD detection (#2151353) From dd8d6c2840a43fedcc644e657e749b0103607a1e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 06:32:12 +0000 Subject: [PATCH 20/38] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vttest.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index 1ceeac4..c55c7e9 100644 --- a/vttest.spec +++ b/vttest.spec @@ -4,7 +4,7 @@ Summary: test VT100-type terminal Name: vttest Version: 2.7.%{AppPatched} -Release: 2%{?dist} +Release: 3%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-island.net/archives/%{name}/%{name}-%{AppPatched}.tgz @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 2.7.20221229-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Mon Jan 02 2023 Thomas E. Dickey - 2.7.20221229-1 - update to 2.7.20221229 (RHBZ #2143489) From d813421dfda522ee26207ea4acc0a3b730ef2a76 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sun, 5 Feb 2023 17:21:56 -0500 Subject: [PATCH 21/38] Update to vttest-2.7.20230201 --- .gitignore | 1 + sources | 2 +- vttest.spec | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f88883c..bed0f32 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ vttest-20071216.tgz /vttest-20220827.tgz /vttest-20221111.tgz /vttest-20221229.tgz +/vttest-20230201.tgz diff --git a/sources b/sources index 5cb3544..7b0a7c0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vttest-20221229.tgz) = 5d7d064428f08c60c57a8b8e4a83ff4fc4c5cffab8873745144c7232a962c173f0afe11af3bf187b0a7c252113e0fed99d62f8e41576e7006f9dd0d4395d80da +SHA512 (vttest-20230201.tgz) = 3cb2c2285a29db7c4cd802a38b6a5d87d28e5da9345759dd990f40b5da82f9ff347974d1fb5c8862a762e470ec452e4187dea428229da85ecd5605d71f1beb7c diff --git a/vttest.spec b/vttest.spec index c55c7e9..29fcce6 100644 --- a/vttest.spec +++ b/vttest.spec @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sun Feb 05 2023 Thomas E. Dickey - 2.7.20230201-1 +- update to 2.7.20230201 (RHBZ #2167192) + * Sat Jan 21 2023 Fedora Release Engineering - 2.7.20221229-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From c82e0ac66efc7c816934a89dc908577130ebc068 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sun, 5 Feb 2023 17:31:49 -0500 Subject: [PATCH 22/38] actually change the version... --- vttest.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index 29fcce6..72ae717 100644 --- a/vttest.spec +++ b/vttest.spec @@ -1,6 +1,6 @@ Summary: test VT100-type terminal -%define AppPatched 20221229 +%define AppPatched 20230201 Name: vttest Version: 2.7.%{AppPatched} From d099a20a967800cac10341d2695826548615daf7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 17:54:27 +0000 Subject: [PATCH 23/38] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vttest.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index 72ae717..daa4619 100644 --- a/vttest.spec +++ b/vttest.spec @@ -4,7 +4,7 @@ Summary: test VT100-type terminal Name: vttest Version: 2.7.%{AppPatched} -Release: 3%{?dist} +Release: 4%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-island.net/archives/%{name}/%{name}-%{AppPatched}.tgz @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 2.7.20230201-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sun Feb 05 2023 Thomas E. Dickey - 2.7.20230201-1 - update to 2.7.20230201 (RHBZ #2167192) From 3b698c82b1b5e149e98fd6b30a188169de69b1f9 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sun, 31 Dec 2023 04:53:05 -0500 Subject: [PATCH 24/38] Sources for vttest-2.7.20231230 --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index bed0f32..72d8fed 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ vttest-20071216.tgz /vttest-20221111.tgz /vttest-20221229.tgz /vttest-20230201.tgz +/vttest-20231230.tgz diff --git a/sources b/sources index 7b0a7c0..800afd1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vttest-20230201.tgz) = 3cb2c2285a29db7c4cd802a38b6a5d87d28e5da9345759dd990f40b5da82f9ff347974d1fb5c8862a762e470ec452e4187dea428229da85ecd5605d71f1beb7c +SHA512 (vttest-20231230.tgz) = e9b268ba5aa8c6780a8c61aff5d2b6d90ba9acb039f982e80690d70f38f89be3b373300913d106cce850e35195fa731abb7e2c7964156c83a49cb5b72a98d8fe From 5d447514779286d431003d96b38ac332fcee7489 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sun, 31 Dec 2023 04:58:07 -0500 Subject: [PATCH 25/38] Update to vttest-2.7.20231230 Signed-off-by: Thomas E. Dickey --- vttest.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index daa4619..aa4d7db 100644 --- a/vttest.spec +++ b/vttest.spec @@ -1,6 +1,6 @@ Summary: test VT100-type terminal -%define AppPatched 20230201 +%define AppPatched 20231230 Name: vttest Version: 2.7.%{AppPatched} @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sun Dec 31 2023 Thomas E. Dickey - 2.7.20230201-1 +- update to 2.7.20231230 (RHBZ #2240499) + * Sat Jul 22 2023 Fedora Release Engineering - 2.7.20230201-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 14ec6a25dbe5f99bd9d8183213a898073ac035ac Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 08:16:09 +0000 Subject: [PATCH 26/38] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- vttest.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index aa4d7db..30e06ae 100644 --- a/vttest.spec +++ b/vttest.spec @@ -4,7 +4,7 @@ Summary: test VT100-type terminal Name: vttest Version: 2.7.%{AppPatched} -Release: 4%{?dist} +Release: 5%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-island.net/archives/%{name}/%{name}-%{AppPatched}.tgz @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 2.7.20231230-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sun Dec 31 2023 Thomas E. Dickey - 2.7.20230201-1 - update to 2.7.20231230 (RHBZ #2240499) From f2948d1163fe555802536c3ffff284ccbac69d49 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sun, 25 Feb 2024 17:01:40 -0500 Subject: [PATCH 27/38] vttest: update to 20240218 --- .gitignore | 1 + sources | 2 +- vttest.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 72d8fed..037228c 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ vttest-20071216.tgz /vttest-20221229.tgz /vttest-20230201.tgz /vttest-20231230.tgz +/vttest-20240218.tgz diff --git a/sources b/sources index 800afd1..c616cc9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vttest-20231230.tgz) = e9b268ba5aa8c6780a8c61aff5d2b6d90ba9acb039f982e80690d70f38f89be3b373300913d106cce850e35195fa731abb7e2c7964156c83a49cb5b72a98d8fe +SHA512 (vttest-20240218.tgz) = 2b17ace328edf75df91dd1fc4b016a50758ba8d8db1082e268eb861dab088f334eb857fbbcf846586aaff289fcaa302ed632645af34daa3423d18d0cdcb6aa86 diff --git a/vttest.spec b/vttest.spec index 30e06ae..0384b95 100644 --- a/vttest.spec +++ b/vttest.spec @@ -1,6 +1,6 @@ Summary: test VT100-type terminal -%define AppPatched 20231230 +%define AppPatched 20240218 Name: vttest Version: 2.7.%{AppPatched} @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sun Feb 25 2024 Thomas E. Dickey - 2.7.20240218-1 +- update to 2.7.20240218 (RHBZ #2264796) + * Sat Jan 27 2024 Fedora Release Engineering - 2.7.20231230-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From c46d5bc201c5a6d0a70cd756d86295edbcdc9b21 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Wed, 10 Jul 2024 14:58:21 -0400 Subject: [PATCH 28/38] vttest: update to 20240708 --- .gitignore | 1 + sources | 2 +- vttest.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 037228c..c5b3ce2 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ vttest-20071216.tgz /vttest-20230201.tgz /vttest-20231230.tgz /vttest-20240218.tgz +/vttest-20240708.tgz diff --git a/sources b/sources index c616cc9..1b78fba 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vttest-20240218.tgz) = 2b17ace328edf75df91dd1fc4b016a50758ba8d8db1082e268eb861dab088f334eb857fbbcf846586aaff289fcaa302ed632645af34daa3423d18d0cdcb6aa86 +SHA512 (vttest-20240708.tgz) = 8e2b8de73874b8e22eab4c799bc788d3a9b0a5ab32aa33c5a61ce4a1f00f449fcb3686e7000dfc53c4187c83adbfb50389c087b22b7f66beac770200efafa29a diff --git a/vttest.spec b/vttest.spec index 0384b95..b437a52 100644 --- a/vttest.spec +++ b/vttest.spec @@ -1,6 +1,6 @@ Summary: test VT100-type terminal -%define AppPatched 20240218 +%define AppPatched 20240708 Name: vttest Version: 2.7.%{AppPatched} @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Wed Jul 10 2024 Thomas E. Dickey - 2.7.20240708-1 +- update to 2.7.20240708 (RHBZ #2296534) + * Sun Feb 25 2024 Thomas E. Dickey - 2.7.20240218-1 - update to 2.7.20240218 (RHBZ #2264796) From 5cfd1aa4f0d8717ef4ce45628cef2f1a2254cffc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 09:03:03 +0000 Subject: [PATCH 29/38] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- vttest.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index b437a52..0698d8b 100644 --- a/vttest.spec +++ b/vttest.spec @@ -4,7 +4,7 @@ Summary: test VT100-type terminal Name: vttest Version: 2.7.%{AppPatched} -Release: 5%{?dist} +Release: 6%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-island.net/archives/%{name}/%{name}-%{AppPatched}.tgz @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 2.7.20240708-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Wed Jul 10 2024 Thomas E. Dickey - 2.7.20240708-1 - update to 2.7.20240708 (RHBZ #2296534) From bae16ac04e4960bce80059f53c333687a419baf5 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sun, 27 Oct 2024 16:11:20 -0400 Subject: [PATCH 30/38] vttest: update to 20241024 --- .gitignore | 1 + sources | 2 +- vttest.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c5b3ce2..b2990a9 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ vttest-20071216.tgz /vttest-20231230.tgz /vttest-20240218.tgz /vttest-20240708.tgz +/vttest-20241024.tgz diff --git a/sources b/sources index 1b78fba..8304e8c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vttest-20240708.tgz) = 8e2b8de73874b8e22eab4c799bc788d3a9b0a5ab32aa33c5a61ce4a1f00f449fcb3686e7000dfc53c4187c83adbfb50389c087b22b7f66beac770200efafa29a +SHA512 (vttest-20241024.tgz) = c55fbd3536a2ec4642f7ffc5556bc76f145308c0e3a620bc702afc2a1e4325d4c18ecd91ae0d0b72e3e13c931c4835f69ca12ca76cf01526d3ba6000e87cc145 diff --git a/vttest.spec b/vttest.spec index 0698d8b..b0b5f92 100644 --- a/vttest.spec +++ b/vttest.spec @@ -1,6 +1,6 @@ Summary: test VT100-type terminal -%define AppPatched 20240708 +%define AppPatched 20241024 Name: vttest Version: 2.7.%{AppPatched} @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sun Oct 27 2024 Thomas E. Dickey - 2.7.20241024-1 +- update to 2.7.20241024 (RHBZ #2321688) + * Sat Jul 20 2024 Fedora Release Engineering - 2.7.20240708-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 3da4843862ce70627a30c3272773476adfcf0833 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sun, 27 Oct 2024 16:20:40 -0400 Subject: [PATCH 31/38] remove obsolete BUGS file from docs --- vttest.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index b0b5f92..04c2c36 100644 --- a/vttest.spec +++ b/vttest.spec @@ -37,7 +37,7 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %files %{_bindir}/%{name} %{_mandir}/man1/%{name}.* -%doc BUGS CHANGES MANIFEST README +%doc CHANGES MANIFEST README %license COPYING %changelog From b55652dde1116eb67dfe3876e23cd5a0aaa2019d Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Thu, 31 Oct 2024 19:17:34 -0400 Subject: [PATCH 32/38] vttest: update to 20241031 --- .gitignore | 1 + sources | 2 +- vttest.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b2990a9..9c6ce48 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ vttest-20071216.tgz /vttest-20240218.tgz /vttest-20240708.tgz /vttest-20241024.tgz +/vttest-20241031.tgz diff --git a/sources b/sources index 8304e8c..311da24 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vttest-20241024.tgz) = c55fbd3536a2ec4642f7ffc5556bc76f145308c0e3a620bc702afc2a1e4325d4c18ecd91ae0d0b72e3e13c931c4835f69ca12ca76cf01526d3ba6000e87cc145 +SHA512 (vttest-20241031.tgz) = 61a7970156c6fd1a2243ea0db4e3922a87b1c54f0ad65ed943e5df66d1b0f7f35c07c268a32951f858200ae78116e7b7e8814cb0cf7105c8c037c17271025a91 diff --git a/vttest.spec b/vttest.spec index 04c2c36..77ec35b 100644 --- a/vttest.spec +++ b/vttest.spec @@ -1,6 +1,6 @@ Summary: test VT100-type terminal -%define AppPatched 20241024 +%define AppPatched 20241031 Name: vttest Version: 2.7.%{AppPatched} @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Thu Oct 31 2024 Thomas E. Dickey - 2.7.20241031-1 +- update to 2.7.20241031 (RHBZ #2321688) + * Sun Oct 27 2024 Thomas E. Dickey - 2.7.20241024-1 - update to 2.7.20241024 (RHBZ #2321688) From 526a92b9e3c71a36ee0c0322337aed486fc5b443 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sun, 8 Dec 2024 05:46:20 -0500 Subject: [PATCH 33/38] vttest: update to 20241204 --- .gitignore | 1 + sources | 2 +- vttest.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9c6ce48..ed30c58 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ vttest-20071216.tgz /vttest-20240708.tgz /vttest-20241024.tgz /vttest-20241031.tgz +/vttest-20241204.tgz diff --git a/sources b/sources index 311da24..9cfd6e7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vttest-20241031.tgz) = 61a7970156c6fd1a2243ea0db4e3922a87b1c54f0ad65ed943e5df66d1b0f7f35c07c268a32951f858200ae78116e7b7e8814cb0cf7105c8c037c17271025a91 +SHA512 (vttest-20241204.tgz) = ce41e8c5d9e4c207de453d0319050acbe19f15633c11281e5ddd6dc6254482931c39f2cde7ae4083f864a425e5420eeb7a7770018b6593b6bdcc9b9c6a981615 diff --git a/vttest.spec b/vttest.spec index 77ec35b..0770459 100644 --- a/vttest.spec +++ b/vttest.spec @@ -1,6 +1,6 @@ Summary: test VT100-type terminal -%define AppPatched 20241031 +%define AppPatched 20241204 Name: vttest Version: 2.7.%{AppPatched} @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sun Dec 08 2024 Thomas E. Dickey - 2.7.20241204-1 +- update to 2.7.20241204 (RHBZ #2321688) + * Thu Oct 31 2024 Thomas E. Dickey - 2.7.20241031-1 - update to 2.7.20241031 (RHBZ #2321688) From b92fc2936d7214ff412bcb490917b7a2b09c2952 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 14:39:58 +0000 Subject: [PATCH 34/38] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- vttest.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index 0770459..56f4d42 100644 --- a/vttest.spec +++ b/vttest.spec @@ -4,7 +4,7 @@ Summary: test VT100-type terminal Name: vttest Version: 2.7.%{AppPatched} -Release: 6%{?dist} +Release: 7%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-island.net/archives/%{name}/%{name}-%{AppPatched}.tgz @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 2.7.20241204-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Sun Dec 08 2024 Thomas E. Dickey - 2.7.20241204-1 - update to 2.7.20241204 (RHBZ #2321688) From 3fce362582af7d90216f3d5a4d88bb4959fd364e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:14:58 +0000 Subject: [PATCH 35/38] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- vttest.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index 56f4d42..acb3be3 100644 --- a/vttest.spec +++ b/vttest.spec @@ -4,7 +4,7 @@ Summary: test VT100-type terminal Name: vttest Version: 2.7.%{AppPatched} -Release: 7%{?dist} +Release: 8%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-island.net/archives/%{name}/%{name}-%{AppPatched}.tgz @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 2.7.20241204-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 2.7.20241204-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 498c2a07af426d08ee4dd50a2d77af3f3a7a9824 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Wed, 31 Dec 2025 07:54:15 -0500 Subject: [PATCH 36/38] vttest: update to 20251205 --- .gitignore | 1 + sources | 2 +- vttest.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ed30c58..cc85322 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ vttest-20071216.tgz /vttest-20241024.tgz /vttest-20241031.tgz /vttest-20241204.tgz +/vttest-20251205.tgz diff --git a/sources b/sources index 9cfd6e7..b5f1379 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vttest-20241204.tgz) = ce41e8c5d9e4c207de453d0319050acbe19f15633c11281e5ddd6dc6254482931c39f2cde7ae4083f864a425e5420eeb7a7770018b6593b6bdcc9b9c6a981615 +SHA512 (vttest-20251205.tgz) = d216d34b3e63cdc52e01ee79cffc90cc33501df8c64c073c42993650d1daa4ad7c11629c3b9c440aa54b220dffa6ba78c39fd6c12cf03e948d7ff732cad22c08 diff --git a/vttest.spec b/vttest.spec index acb3be3..fe90cbe 100644 --- a/vttest.spec +++ b/vttest.spec @@ -1,6 +1,6 @@ Summary: test VT100-type terminal -%define AppPatched 20241204 +%define AppPatched 20251205 Name: vttest Version: 2.7.%{AppPatched} @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Wed Dec 31 2025 Thomas E. Dickey - 2.7.20251205-1 +- update to 2.7.20251205 (RHBZ #2419648) + * Fri Jul 25 2025 Fedora Release Engineering - 2.7.20241204-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 6f908bc7b66c9031f2aaeb93057dd922b0375b54 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:04:45 +0000 Subject: [PATCH 37/38] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- vttest.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index fe90cbe..7cbb66e 100644 --- a/vttest.spec +++ b/vttest.spec @@ -4,7 +4,7 @@ Summary: test VT100-type terminal Name: vttest Version: 2.7.%{AppPatched} -Release: 8%{?dist} +Release: 9%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-island.net/archives/%{name}/%{name}-%{AppPatched}.tgz @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 2.7.20251205-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Wed Dec 31 2025 Thomas E. Dickey - 2.7.20251205-1 - update to 2.7.20251205 (RHBZ #2419648) From 5ca94e532a537e41214111d5f0fa85cf8d099715 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:39:02 +0000 Subject: [PATCH 38/38] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- vttest.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vttest.spec b/vttest.spec index 7cbb66e..7372c49 100644 --- a/vttest.spec +++ b/vttest.spec @@ -4,7 +4,7 @@ Summary: test VT100-type terminal Name: vttest Version: 2.7.%{AppPatched} -Release: 9%{?dist} +Release: 10%{?dist} License: MIT URL: https://invisible-island.net/%{name}/ Source0: https://invisible-island.net/archives/%{name}/%{name}-%{AppPatched}.tgz @@ -41,6 +41,9 @@ can run all menu-items (for a given level) by entering an asterisk, i.e, %license COPYING %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 2.7.20251205-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jan 17 2026 Fedora Release Engineering - 2.7.20251205-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild