aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2021-03-13 15:24:09 +0800
committerTing-Wei Lan <lantw44@gmail.com>2021-03-13 15:24:09 +0800
commitdf070fd6b308b3c15700d5e4f05a0252f109fa22 (patch)
tree008cd1a76370a04c43f2fc3ac137adc795b68666
parent8324a3bff0ffd99c2386d25cfa396763441ae1fa (diff)
downloadcopr-rpm-spec-df070fd6b308b3c15700d5e4f05a0252f109fa22.tar
copr-rpm-spec-df070fd6b308b3c15700d5e4f05a0252f109fa22.tar.gz
copr-rpm-spec-df070fd6b308b3c15700d5e4f05a0252f109fa22.tar.bz2
copr-rpm-spec-df070fd6b308b3c15700d5e4f05a0252f109fa22.tar.lz
copr-rpm-spec-df070fd6b308b3c15700d5e4f05a0252f109fa22.tar.xz
copr-rpm-spec-df070fd6b308b3c15700d5e4f05a0252f109fa22.tar.zst
copr-rpm-spec-df070fd6b308b3c15700d5e4f05a0252f109fa22.zip
guix: emacs-dash 2.17.0 -> 2.18.1
-rw-r--r--guix/emacs-dash/emacs-dash.spec18
1 files changed, 11 insertions, 7 deletions
diff --git a/guix/emacs-dash/emacs-dash.spec b/guix/emacs-dash/emacs-dash.spec
index a552f99..3f5a5fd 100644
--- a/guix/emacs-dash/emacs-dash.spec
+++ b/guix/emacs-dash/emacs-dash.spec
@@ -2,8 +2,8 @@
%global pkgname Dash
Name: emacs-%{pkg}
-Version: 2.17.0
-Release: 2%{?dist}
+Version: 2.18.1
+Release: 1%{?dist}
Summary: Dash is a modern list library for Emacs
License: GPLv3+
@@ -11,7 +11,7 @@ URL: https://github.com/magnars/dash.el
Source0: https://github.com/magnars/dash.el/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildArch: noarch
-BuildRequires: emacs, texinfo
+BuildRequires: emacs, make, texinfo
Requires: emacs(bin) >= %{_emacs_version}
%description
@@ -24,19 +24,20 @@ Emacs. No cl required.
%build
-./create-docs.sh
+%make_build
+makeinfo --no-split dash.texi
%check
-./run-tests.sh
+%{__make} %{?_smp_mflags} check
%install
mkdir -p %{buildroot}%{_emacs_sitelispdir}
install -m 755 -d %{buildroot}%{_emacs_sitelispdir}/dash
-install -m 644 dash.el dash-functional.el \
+install -m 644 dash.el dash.elc dash-functional.el \
%{buildroot}%{_emacs_sitelispdir}/dash/
-%{_emacs_bytecompile} %{buildroot}%{_emacs_sitelispdir}/dash/dash*.el
+%{_emacs_bytecompile} %{buildroot}%{_emacs_sitelispdir}/dash/dash-functional.el
mkdir -p %{buildroot}%{_infodir}
gzip -9 < dash.info > %{buildroot}%{_infodir}/dash.info.gz
@@ -64,6 +65,9 @@ fi
%changelog
+* Sat Mar 13 2021 Ting-Wei Lan <lantw44@gmail.com> - 2.18.1-1
+- Update to 2.18.1
+
* Sun Nov 1 2020 Ting-Wei Lan <lantw44@gmail.com> - 2.17.0-2
- Rebuilt for Fedora 33 and 34