99de5186c1
- Update to 1.16 * regex.c (line_replace): Accept 's/^/#/g' as valid. (Reported by Bjoern Wibben). * main_loop.c: Removed length limit of prompt string. (Reported by Tim Chase). * main.c: Set a valid invocation_name even if argc == 0. * ed.texi: Extended operators depend on regex implementation. (Reported by Brian Zwahr). * ed.texi: Several fixes and improvements. OBS-URL: https://build.opensuse.org/request/show/781148 OBS-URL: https://build.opensuse.org/package/show/utilities/ed?expand=0&rev=33
77 lines
2.4 KiB
RPMSpec
77 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package ed
|
|
#
|
|
# 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: ed
|
|
Version: 1.16
|
|
Release: 0
|
|
Summary: A line-oriented text editor
|
|
License: GPL-3.0-or-later AND LGPL-2.1-or-later
|
|
Group: Productivity/Text/Editors
|
|
URL: http://www.gnu.org/software/ed/
|
|
# This is just recompressed below in order to avoid pulling lzip to ring0
|
|
Source0: ed-%{version}.tar.xz
|
|
#Source0: http://ftp.gnu.org/gnu/ed/ed-%{version}.tar.lz
|
|
#Source1: https://ftp.gnu.org/gnu/ed/ed-%{version}.tar.lz.sig
|
|
#BuildRequires: lzip
|
|
Requires(post): %{install_info_prereq}
|
|
Requires(preun): %{install_info_prereq}
|
|
|
|
%description
|
|
GNU ed is a line-oriented text editor. It is used to create, display,
|
|
modify and otherwise manipulate text files, both interactively and via
|
|
shell scripts. A restricted version of ed, red, can only edit files in
|
|
the current directory and cannot execute shell commands. Ed is the
|
|
"standard" text editor in the sense that it is the original editor for
|
|
Unix, and thus widely available. For most purposes, however, it is
|
|
superseded by full-screen editors such as GNU Emacs or GNU Moe.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure
|
|
make %{?_smp_mflags} CFLAGS="%{optflags}"
|
|
|
|
%install
|
|
%make_install
|
|
#UsrMerge
|
|
install -d -m 0755 %{buildroot}/bin
|
|
ln -s %{_bindir}/ed %{buildroot}/bin/ed
|
|
#UsrMerge
|
|
|
|
%check
|
|
make %{?_smp_mflags} check
|
|
|
|
%post
|
|
%install_info --entry="* ed: (ed). Line-oriented text editor" --info-dir=%{_infodir} %{_infodir}/%{name}.info%{ext_info}
|
|
|
|
%preun
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info%{ext_info}
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc AUTHORS ChangeLog NEWS README TODO
|
|
/bin/%{name}
|
|
%{_bindir}/%{name}
|
|
%{_bindir}/r%{name}
|
|
%{_infodir}/%{name}.info%{?ext_info}
|
|
%{_mandir}/man1/%{name}.1%{?ext_man}
|
|
%{_mandir}/man1/r%{name}.1%{?ext_man}
|
|
|
|
%changelog
|