blob: 3f5a5fd2ff641a7dba322a4cb69016b580e834d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
%global pkg dash
%global pkgname Dash
Name: emacs-%{pkg}
Version: 2.18.1
Release: 1%{?dist}
Summary: Dash is a modern list library for Emacs
License: GPLv3+
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, make, texinfo
Requires: emacs(bin) >= %{_emacs_version}
%description
%{pkgname} is an add-on package for GNU Emacs. It is a modern list library for
Emacs. No cl required.
%prep
%autosetup -n dash.el-%{version} -p1
%build
%make_build
makeinfo --no-split dash.texi
%check
%{__make} %{?_smp_mflags} check
%install
mkdir -p %{buildroot}%{_emacs_sitelispdir}
install -m 755 -d %{buildroot}%{_emacs_sitelispdir}/dash
install -m 644 dash.el dash.elc dash-functional.el \
%{buildroot}%{_emacs_sitelispdir}/dash/
%{_emacs_bytecompile} %{buildroot}%{_emacs_sitelispdir}/dash/dash-functional.el
mkdir -p %{buildroot}%{_infodir}
gzip -9 < dash.info > %{buildroot}%{_infodir}/dash.info.gz
%post
/sbin/install-info %{_infodir}/dash.info.gz %{_infodir}/dir || :
%preun
if [ "$1" = 0 ]; then
/sbin/install-info --del %{_infodir}/dash.info.gz %{_infodir}/dir || :
fi
%files
%license LICENSE
%doc README.md
%dir %{_emacs_sitelispdir}/dash
%{_emacs_sitelispdir}/dash/dash.el
%{_emacs_sitelispdir}/dash/dash.elc
%{_emacs_sitelispdir}/dash/dash-functional.el
%{_emacs_sitelispdir}/dash/dash-functional.elc
%{_infodir}/dash.info.gz
%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
* Sat Apr 25 2020 Ting-Wei Lan <lantw44@gmail.com> - 2.17.0-1
- Update to 2.17.0
* Tue Sep 17 2019 Ting-Wei Lan <lantw44@gmail.com> - 2.16.0-2
- Rebuilt for Fedora 31 and 32
* Tue May 14 2019 Ting-Wei Lan <lantw44@gmail.com> - 2.16.0-1
- Update to 2.16.0
* Wed May 01 2019 Ting-Wei Lan <lantw44@gmail.com> - 2.14.1-3
- Rebuilt for Fedora 30 and 31
* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.14.1-2
- Rebuilt for Fedora 29 and 30
* Sat Jul 07 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.14.1-1
- Update to 2.14.1
* Mon Feb 26 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.13.0-5
- Remove group tag because it is deprecated in Fedora
* Mon Dec 11 2017 Ting-Wei Lan <lantw44@gmail.com> - 2.13.0-4
- Use autosetup macro
- Rename the source tarball
* Mon Oct 16 2017 Ting-Wei Lan <lantw44@gmail.com> - 2.13.0-3
- Rebuilt for Fedora 27 and 28
* Wed Mar 08 2017 Ting-Wei Lan <lantw44@gmail.com> - 2.13.0-2
- Rebuilt for Fedora 26 and 27
* Fri Nov 04 2016 Ting-Wei Lan <lantw44@gmail.com> - 2.13.0-1
- Update to 2.13.0
* Sat Sep 10 2016 Ting-Wei Lan <lantw44@gmail.com> - 2.12.1-3
- Rebuilt for Fedora 25 and 26
* Thu Mar 03 2016 Ting-Wei Lan <lantw44@gmail.com> - 2.12.1-2
- Rebuilt for Fedora 24 and 25
* Sat Nov 21 2015 Ting-Wei Lan <lantw44@gmail.com> - 2.12.1-1
- Initial packaging
|