From f08918f209891633a7989f2fc8caa7770f2078560d6c668be11a5da2d000bedc Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Tue, 25 Dec 2018 12:23:43 +0000 Subject: [PATCH] Accepting request 661248 from home:sogal Most is a file viewer and pager. This is pre5.1 version. OBS-URL: https://build.opensuse.org/request/show/661248 OBS-URL: https://build.opensuse.org/package/show/utilities/most?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++++++++ .gitignore | 1 + most-pre5.1-24.tar.gz | 3 +++ most.changes | 39 +++++++++++++++++++++++++++++++++ most.spec | 51 +++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 117 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 most-pre5.1-24.tar.gz create mode 100644 most.changes create mode 100644 most.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/most-pre5.1-24.tar.gz b/most-pre5.1-24.tar.gz new file mode 100644 index 0000000..a7ba282 --- /dev/null +++ b/most-pre5.1-24.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:332dca80f22009e1e3c1b487bfd79819cbb407bc2af8a34c929177af726e104a +size 162845 diff --git a/most.changes b/most.changes new file mode 100644 index 0000000..ffb19fb --- /dev/null +++ b/most.changes @@ -0,0 +1,39 @@ +------------------------------------------------------------------- +Sun Dec 23 14:28:34 UTC 2018 - sogal@opensuse.org + +- Do not package uneeded files in src doc directory +- Make description neutral + +------------------------------------------------------------------- +Sun Dec 23 11:15:07 UTC 2018 - sogal@opensuse.org + +- Update to pre5.1-24 + +------------------------------------------------------------------- +Fri Mar 30 12:39:18 UTC 2018 - sogal@volted.net + +- Fix release number, use bugfix version instead +- Added previous openSUSE changes + +------------------------------------------------------------------- +Fri Mar 30 12:24:50 UTC 2018 - sogal@volted.net + +- Upgrade to 5.1 prerelease + * Search improvment + * Fix wrapping of colorized lines + * Update configure script + * Fix double-width characters diplay issue + * Add support for Home/End keys + +------------------------------------------------------------------- +Wed Feb 25 14:22:57 UTC 2015 - mpluskal@suse.com + +- Cleanup spec file with spec-cleaner +- Clean dependencies +- Update urls +- Add gpg key + +------------------------------------------------------------------- +Tue Jun 07 20:29:31 CET 2011 - pascal.bleser@opensuse.org + +- initial version (5.0.0a) diff --git a/most.spec b/most.spec new file mode 100644 index 0000000..37473c9 --- /dev/null +++ b/most.spec @@ -0,0 +1,51 @@ +# +# spec file for package most +# +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + +%define bugfix 24 +Name: most +Version: pre5.1 +Release: 0 +Summary: File viewer and pager +License: GPL-2.0 +Group: Productivity/Text/Utilities +URL: https://www.jedsoft.org/most/ +Source: https://www.jedsoft.org/snapshots/%{name}-%{version}-%{bugfix}.tar.gz +BuildRequires: pkgconfig +BuildRequires: slang-devel + +%description +Most is a paging program for Unix, VMS, MSDOS, and win32 systems. +It supports multiple windows and can scroll left and right. + +%prep +%setup -q -n %{name}-%{version}-%{bugfix} + +%build +%configure --prefix=%{_prefix} +make %{?_smp_mflags} + +%install +%make_install +rm -rf "%{buildroot}%{_datadir}/doc" + +%files +%license COPYING +%doc README changes.txt doc/{lesskeys.rc,most-fun.txt,most.rc} +%{_bindir}/%{name} +%{_mandir}/man1/most.1* + +%changelog