Matej Cepl
ebfc099354
- Update to version 0.5+git.1582699959.bdfea7e: * build: provide install-strip make target * ci: fix Alpine build by installing terminfo data * ci: remove Travis CI integration * ci: remove Appveyor integration * ci: improve OpenBSD Lua installation * ci: make sure en_US.UTF-8 locale is available on Debian * ci: disable codecov commit status updates * vis-lua: implement vis:redraw() * lua: add `redrawtime` option OBS-URL: https://build.opensuse.org/request/show/779315 OBS-URL: https://build.opensuse.org/package/show/editors/vis?expand=0&rev=2
69 lines
2.0 KiB
RPMSpec
69 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package vis
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
Name: vis
|
|
Version: 0.5+git.1582699959.bdfea7e
|
|
Release: 0
|
|
Summary: An editor combining the strengths of both vi(m) and sam
|
|
License: MIT
|
|
Group: Productivity/Text/Editors
|
|
URL: https://github.com/martanne/vis
|
|
Source: %{name}-%{version}.tar.xz
|
|
BuildRequires: libtermkey-devel
|
|
BuildRequires: lua-devel
|
|
BuildRequires: lua-lpeg
|
|
BuildRequires: ncurses-devel
|
|
BuildRequires: tar
|
|
BuildRequires: tre-devel
|
|
Requires: lua
|
|
ExclusiveArch: x86_64 %{ix86}
|
|
|
|
%description
|
|
Vis aims to be a modern, legacy free, simple yet efficient editor combining the strengths of both vi(m) and sam.
|
|
|
|
It extends vi's modal editing with built-in support for multiple cursors/selections and combines it with sam's structural regular expression based command language.
|
|
|
|
%prep
|
|
%autosetup
|
|
|
|
%build
|
|
# FIXME: you should use the %%configure macro
|
|
./configure --prefix="%{_prefix}"
|
|
%make_build debug
|
|
|
|
%install
|
|
%make_install
|
|
|
|
%check
|
|
# According to the debian/rules:
|
|
# The vim tests harness is not solid, let's skip them for the moment.
|
|
# Upstream mentioned the possibility of phasing them out entirely.
|
|
make -C test/core
|
|
# No busted yet make -C test/lua
|
|
make -C test/vis
|
|
|
|
%files
|
|
%{_bindir}/vis*
|
|
%{_datadir}/vis
|
|
%{_mandir}/man1/*
|
|
%dir %{_datadir}/doc/vis
|
|
%{_datadir}/doc/vis/LICENSE
|
|
%{_datadir}/doc/vis/README.md
|
|
|
|
%changelog
|