diff options
Diffstat (limited to 'PACKAGE')
-rw-r--r-- | PACKAGE/debian/copyright | 4 | ||||
-rw-r--r-- | PACKAGE/lynx.iss | 4 | ||||
-rw-r--r-- | PACKAGE/lynx.nsi | 4 | ||||
-rw-r--r-- | PACKAGE/lynx.spec | 19 |
4 files changed, 18 insertions, 13 deletions
diff --git a/PACKAGE/debian/copyright b/PACKAGE/debian/copyright index ca2d318a..0a4f461a 100644 --- a/PACKAGE/debian/copyright +++ b/PACKAGE/debian/copyright @@ -4,7 +4,7 @@ Current maintainer: Thomas Dickey <dickey@invisible-island.net> ------------------------------------------------------------------------------- -Copyright 1997-2022,2023 Thomas E. Dickey +Copyright 1997-2023,2024 Thomas E. Dickey Copyright (C) 1995 University of Kansas. Most of the content of the lynx release (and corresponding copyright) is @@ -26,7 +26,7 @@ or to the maintainer (Thomas E. Dickey): Files: aclocal.m4 License: other-BSD -Copyright: 1997-2022,2023 by Thomas E. Dickey +Copyright: 1997-2023,2024 by Thomas E. Dickey Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/PACKAGE/lynx.iss b/PACKAGE/lynx.iss index 79bb4638..bf7550d5 100644 --- a/PACKAGE/lynx.iss +++ b/PACKAGE/lynx.iss @@ -1,4 +1,4 @@ -; $LynxId: lynx.iss,v 1.38 2023/01/03 00:17:48 tom Exp $ +; $LynxId: lynx.iss,v 1.39 2024/01/07 11:13:00 tom Exp $ ; vile:ts=4 sw=4 notabinsert fk=8bit ; ; This is the BASE script for different flavors of the installer for Lynx. @@ -94,7 +94,7 @@ AppName={#MyAppName} #emit 'VersionInfoVersion=' + LYNX_TARGET1 AppVerName={#MyAppVerName} AppPublisher={#MyAppPublisher} -AppCopyright=© 1997-2022,2023, Thomas E. Dickey +AppCopyright=© 1997-2023,2024, Thomas E. Dickey AppPublisherURL={#MyAppURL} AppSupportURL={#MyAppURL} AppUpdatesURL={#MyAppURL} diff --git a/PACKAGE/lynx.nsi b/PACKAGE/lynx.nsi index 543df306..7071db25 100644 --- a/PACKAGE/lynx.nsi +++ b/PACKAGE/lynx.nsi @@ -1,4 +1,4 @@ -; $LynxId: lynx.nsi,v 1.62 2023/01/23 21:39:22 tom Exp $ +; $LynxId: lynx.nsi,v 1.63 2024/01/07 11:13:00 tom Exp $ ; Script originally generated with the Venis Install Wizard, but customized. ; The Inno Setup script is preferred; but this can be built via cross-compiling. @@ -28,7 +28,7 @@ SetCompressor /SOLID lzma VIAddVersionKey ProductName "${SUBKEY}" VIAddVersionKey CompanyName "https://invisible-island.net/lynx" -VIAddVersionKey LegalCopyright "© 1997-2022,2023, Thomas E. Dickey" +VIAddVersionKey LegalCopyright "© 1997-2023,2024, Thomas E. Dickey" VIAddVersionKey FileDescription "Lynx Installer (MinGW)" VIAddVersionKey FileVersion "${VERSION}" VIAddVersionKey ProductVersion "${VERSION}" diff --git a/PACKAGE/lynx.spec b/PACKAGE/lynx.spec index f95a3efe..bb3ac80e 100644 --- a/PACKAGE/lynx.spec +++ b/PACKAGE/lynx.spec @@ -1,4 +1,4 @@ -# $LynxId: lynx.spec,v 1.69 2023/05/26 22:52:47 tom Exp $ +# $LynxId: lynx.spec,v 1.70 2024/01/07 18:30:52 tom Exp $ Summary: A text-based Web browser Name: lynx-dev Version: 2.9.0 @@ -97,20 +97,25 @@ DEFAULT_INDEX_FILE:http://www.google.com/ LOCALE_CHARSET:TRUE EOF -%clean -rm -rf $RPM_BUILD_ROOT +strip $RPM_BUILD_ROOT%{_bindir}/%{name} + +%find_lang %{name} -%files +%files -f %{name}.lang %defattr(-,root,root,-) %{_bindir}/%{name} %{_mandir}/*/* -%{_datadir}/locale/* %{lynx_doc}/* -%config %{lynx_etc}/*.cfg -%config %{lynx_etc}/*.lss +%config(noreplace) %{lynx_etc}/*.cfg +%config(noreplace) %{lynx_etc}/*.lss %changelog +* Sun Jan 07 2024 Thomas E. Dickey +- use rpm #find_lang macro for configuring language files +- use noreplace flag for *.cfg and *.lss config files +- remove obsolete #clean section + * Tue Mar 29 2022 Thomas E. Dickey - add brotli compression |