emacs-w3m/emacs-w3m.spec

112 lines
3.6 KiB
RPMSpec
Raw Normal View History

#
# spec file for package emacs-w3m
#
# Copyright (c) 2022 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: emacs-w3m
Summary: An interface program to use w3m with Emacs
License: GPL-2.0-or-later
Group: Productivity/Networking/Web/Browsers
# Summary(ja): w3m を Emacs 上で動かすためのプログラムです
- Update to version 1.4.632+546+gf8819bca: * Silence the byte-compiler on Emacs 30 * ; sb-sankei.el (shimbun-sankei-login): Fix the way to parse forms * Silence the byte compiler * Silence warnings when compiling w3m.el individually ([emacs-w3m:13914]) * ; Fix last change in aclocal.m4 * Support Emacs 30 * Update ChangeLog * Fix w3m-puny-encode1 failure on Emacs 29 * * w3m.el (w3m-unsafe-url-warning): New face * Make unsafe url warning text customizable (issue #115) * Remove let-binding of inhibit-point-motion-hooks that's been obsoleted * Work for pages commpressed by brotli reported by chipschap (issue #112) * Use `grep -E' instead of egrep * ; * mew-w3m.el (mew-mime-text/html-w3m): Coment fix * * w3mhack.el (w3mhack-generate-load-file): Use loaddefs-gen.el rather than autoload.el that has been marked obsolete in Emacs 29. * mew-w3m.el (mew-mime-text/html-w3m): Silence Emacs 29's byte compiler ([emacs-w3m:13880]). * Use line-beginning-position and line-end-position instead of point-at-bol and point-at-eol marked obsolete in Emacs 29.1 * shimbun/sb-yoshirin.el: Fix TZ in date * * w3m.el (w3m-fontify-anchors): Warn suspicious links (as shr does) * Simplify tab-line stuff * * w3m-search.el (w3m-search-engine-alist): Update wikipedia search urls ([emacs-w3m:13872]) * Replace hankaku tilde with swung dash in shimbun.el (shimbun-japanese-hankaku-region-1) * Fix unquoted single quotation marks in docstrings * Fix unquoted single quotation marks in docstrings * * sb-yoshirin.el (shimbun-yoshirin-make-contents): Update Date header * Fix last Change in .gitignore * Update .gitignore * Update shimbun/ChangeLog and .gitignore * Work for the "top" group again * Update ChangeLog OBS-URL: https://build.opensuse.org/package/show/M17N/emacs-w3m?expand=0&rev=13
2023-04-01 23:22:41 +02:00
Version: 1.4.632+546+gf8819bca
Release: 0
URL: http://emacs-w3m.namazu.org/
Source0: emacs-w3m-%{version}.tar.xz
Source1: suse-start.el
Patch1: w3m-el-1.3-map.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
BuildRequires: autoconf
BuildRequires: emacs-nox
BuildRequires: flim
BuildRequires: makeinfo
Requires: apel
Requires: emacs
Requires: flim
Requires: w3m
Provides: w3m-el = %{version}
Obsoletes: w3m-el < %{version}
# %description -l ja
# Emacs 上で動作するブラウザと言えば,普通 W3 のことですが,動作が非常に
# 遅いので,なかなか常用しようという気になれません.
#
# それに対してw3m というテキストベースで動作するブラウザがあり,非常に
# 軽快に動作するので重宝しているのですが,端末に移動しなければいけないの
# が面倒です.
#
# そこでw3m を HTML の rendering engine として使用し,表示とインタフェー
# スのみをEmacs で動かすようにすればいいんじゃないだろうか,ということを
# 考えました.
%description
Emacs-w3m is an interface program to use w3m with Emacs.
W3 is the most well known WEB browser which works on (X)Emacs, but it
is very slow. Emacs-w3m is an alternative. It uses w3m, which is a pager
with WWW capability, developed by Akinori ITO. It is a pager, but it
can be used as a text-mode WWW browser.
%prep
%setup -q
%patch1
%build
%define emacs_sitelisp_dir %{_datadir}/emacs/site-lisp
%define emacs_package_dir %{emacs_sitelisp_dir}/w3m
autoreconf --force --install
%configure \
--with-lispdir=%{emacs_package_dir} \
--with-icondir=%{emacs_package_dir} \
--with-emacs=emacs
make
%install
mkdir -p %{buildroot}/%{emacs_package_dir}
%make_install install-icons
{
echo ";; %{emacs_sitelisp_dir}/suse-start-%{name}.el"
echo ""
echo "(add-to-list 'load-path \"%{emacs_package_dir}\")"
echo ""
cat %{_sourcedir}/suse-start.el
echo ""
echo ";; %{emacs_sitelisp_dir}/suse-start-%{name}.el ends here"
} > %{buildroot}%{emacs_sitelisp_dir}/suse-start-%{name}.el
rm -f %{buildroot}/%{_infodir}/dir
rm -f %{buildroot}/%{emacs_package_dir}/ChangeLog*
%post
for i in emacs-w3m emacs-w3m-ja
do
%install_info --info-dir=%{_infodir} %{_infodir}/${i}.info.gz
done
%preun
for i in emacs-w3m emacs-w3m-ja
do
%install_info_delete --info-dir=%{_infodir} %{_infodir}/${i}.info.gz
done
%files
%defattr(-,root,root)
%license COPYING
%doc ChangeLog* README*
%{emacs_package_dir}
%config %{emacs_sitelisp_dir}/suse-start-%{name}.el
%{_infodir}/*
%changelog