-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
laptop-mode-tools.spec
217 lines (162 loc) · 6.67 KB
/
laptop-mode-tools.spec
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# Authority: dag
# Upstream: Ritesh Raj Sarraf <[email protected]>
Summary: Tools for power savings based on battery/AC status
Name: laptop-mode-tools
Version: 1.74
Release: 1
License: GPL
Group: System Environment/Base
URL: http://github.com/rickysarraf/laptop-mode-tools
Vendor: Laptop Mode Tools Developers
Distribution: RPM Based distributions
Packager: Ritesh Raj Sarraf <[email protected]>
Source: https://github.com/rickysarraf/laptop-mode-tools/releases/download/%{version}/laptop-mode-tools_%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
%description
Laptop mode is a Linux kernel feature that allows your laptop to save
considerable power, by allowing the hard drive to spin down for longer
periods of time. This package contains the userland scripts that are
needed to enable laptop mode. It includes support for automatically
enabling laptop mode when the computer is working on batteries. In
addition, it provides a set of modules which allow you to apply
various other power savings.
%prep
%setup -n %{name}_%{version}
%build
%{__rm} -rf %{buildroot}
DESTDIR=%{buildroot} INIT_D="" MAN_D=%{_mandir} INSTALL=install ./install.sh
# Work around bug in installer. It installs the script in the wrong location if INIT_D="".
rm %{buildroot}/etc/init.d/laptop-mode
%{__mkdir_p} -m0755 %{buildroot}%{_initrddir}
%{__install} -Dp -m755 etc/init.d/laptop-mode %{buildroot}%{_initrddir}
%clean
%{__rm} -rf %{buildroot}
%preun
if [ $1 -eq 0 ]; then
/sbin/service laptop-mode stop &>/dev/null || :
/sbin/chkconfig --del laptop-mode
fi
%post
/sbin/chkconfig --add laptop-mode
/sbin/service laptop-mode start &>/dev/null || :
/sbin/service acpid restart &>/dev/null || :
%postun
/sbin/service laptop-mode condrestart &>/dev/null || :
%files
%defattr(-, root, root, 0755)
%doc COPYING Documentation/*.txt README.md
%docdir %{_mandir}
%doc %{_mandir}/man8/laptop-mode.conf.8
%doc %{_mandir}/man8/laptop_mode.8
%doc %{_mandir}/man8/lm-profiler.8
%doc %{_mandir}/man8/lm-profiler.conf.8
%doc %{_mandir}/man8/lm-syslog-setup.8
%config %{_sysconfdir}/acpi/actions/lm_*.sh
%config %{_sysconfdir}/acpi/events/lm_*
%config(noreplace) %{_sysconfdir}/laptop-mode/
%config %{_initrddir}/laptop-mode
/lib/udev/lmt-udev
/lib/systemd/system/laptop-mode.service
/lib/systemd/system/laptop-mode.timer
/lib/systemd/system/lmt-poll.service
/lib/udev/rules.d/99-laptop-mode.rules
%{_sysconfdir}/apm/event.d/*
%{_sysconfdir}/power/scripts.d/*
%{_sysconfdir}/power/event.d/*
#%{_usr}/sbin/*
%{_sbindir}/*
%{_usr}/share/applications/laptop-mode-tools.desktop
%{_usr}/share/laptop-mode-tools/lmt.py
%{_usr}/share/laptop-mode-tools/modules/*
%{_usr}/share/laptop-mode-tools/module-helpers/*
%{_usr}/share/icons/hicolor/scalable/apps/laptop-mode-tools.svg
%{_usr}/share/polkit-1/actions/org.linux.lmt.gui.policy
%{_usr}/lib/pm-utils/sleep.d/*
%{_usr}/lib/tmpfiles.d/laptop-mode.conf
%dir %{_sysconfdir}/acpi/events
%dir %{_sysconfdir}/acpi/actions
%dir %{_usr}/lib/pm-utils/sleep.d
%dir %{_usr}/lib/tmpfiles.d
%dir %{_usr}/share/applications
%dir %{_usr}/share/icons/hicolor/scalable/apps
%dir %{_usr}/share/laptop-mode-tools/modules
%dir %{_usr}/share/laptop-mode-tools/module-helpers
%dir %{_sysconfdir}/apm/event.d
%dir %{_sysconfdir}/power/scripts.d
%dir %{_sysconfdir}/power/event.d
%changelog
* Sat Jul 18 2020 Ritesh Raj Sarraf <[email protected]> - 1.74-1
- Updated to release 1.74
* Sat Jan 11 2020 Ritesh Raj Sarraf <[email protected]> - 1.73.1-1
- Updated to release 1.73.1
* Sat Jan 11 2020 Ritesh Raj Sarraf <[email protected]> - 1.73-1
- Updated to release 1.73
* Sat Feb 3 2018 Ritesh Raj Sarraf <[email protected]> - 1.72.2-1
- Updated to release 1.72.2
* Thu Feb 1 2018 Ritesh Raj Sarraf <[email protected]> - 1.72.1-1
- Updated to release 1.72.1
* Thu Jan 12 2017 Ritesh Raj Sarraf <[email protected]> - 1.71-1
- Updated to release 1.71
* Sat Sep 24 2016 Ritesh Raj Sarraf <[email protected]> - 1.70-1
- Updated to release 1.70
* Sun Mar 27 2016 Ritesh Raj Sarraf <[email protected]> - 1.69.2-1
- Updated to release 1.69.2
* Tue Mar 15 2016 Ritesh Raj Sarraf <[email protected]> - 1.69.1-1
- Updated to release 1.69.1
* Mon Mar 7 2016 Ritesh Raj Sarraf <[email protected]> - 1.69-1
- Updated to release 1.69
* Sun Sep 27 2015 Ritesh Raj Sarraf <[email protected]> - 1.68.1-1
- Updated to release 1.68.1
* Thu Aug 27 2015 Ritesh Raj Sarraf <[email protected]> - 1.68-1
- Updated to release 1.68.
* Thu Jul 2 2015 Ritesh Raj Sarraf <[email protected]> - 1.67-1
- Updated to release 1.67.
* Fri Sep 26 2014 Ritesh Raj Sarraf <[email protected]> - 1.66-1
- Updated to release 1.66.
* Wed Jun 18 2014 Ritesh Raj Sarraf <[email protected]> - 1.65-1
- Updated to release 1.65.
* Sun Sep 1 2013 Ritesh Raj Sarraf <[email protected]> - 1.64-1
- Updated to release 1.64.
* Sat Mar 23 2013 Ritesh Raj Sarraf <[email protected]> - 1.63-1
- Updated to release 1.63.
* Tue Oct 30 2012 Ritesh Raj Sarraf <[email protected]> - 1.62-1
- Updated to release 1.62.
* Thu May 17 2012 Ritesh Raj Sarraf <[email protected]> - 1.61-1
- Updated to release 1.61.
* Fri Oct 14 2011 Ritesh Raj Sarraf <[email protected]> - 1.60-1
- Updated to release 1.60.
* Mon Aug 8 2011 Ritesh Raj Sarraf <[email protected]> - 1.59-1
- Updated to release 1.59.
* Sat Jul 23 2011 Ritesh Raj Sarraf <[email protected]> - 1.58-1
- Updated to release 1.58.
* Sun Feb 27 2011 Ritesh Raj Sarraf <[email protected]> - 1.57-1
- Updated to release 1.57.
* Mon Feb 14 2011 Ritesh Raj Sarraf <[email protected]> - 1.56-1
- Updated to release 1.56.
* Wed May 26 2010 Ritesh Raj Sarraf <[email protected]> - 1.55-1
- Updated to release 1.55.
* Wed Mar 10 2010 Ritesh Raj Sarraf <[email protected]> - 1.54-1
- Updated to release 1.54.
* Sat Jan 2 2010 Ritesh Raj Sarraf <[email protected]> - 1.53-1
- Updated to release 1.53.
* Thu Oct 8 2009 Ritesh Raj Sarraf <[email protected]> - 1.52-1
- Updated to release 1.52.
* Tue Sep 1 2009 Ritesh Raj Sarraf <[email protected]> - 1.51-1
- Updated to release 1.51.
* Fri Jul 24 2009 Ritesh Raj Sarraf <[email protected]> - 1.50-1
- Updated to release 1.50.
* Sun Sep 07 2008 Bart Samwel <[email protected]> - 1.45-1
- Updated to release 1.45.
* Mon May 28 2007 Bart Samwel <[email protected]> - 1.34-1
- Updated to release 1.34.
- Added some files from upstream that were left out in earlier packages, such as lm-profiler.
- Restart acpid after %{__install} -Dping.
* Sun Oct 08 2006 Dag Wieers <[email protected]> - 1.32-1
- Updated to release 1.32.
* Sun Apr 16 2006 Dag Wieers <[email protected]> - 1.31-1
- Updated to release 1.31.
* Sat Apr 15 2006 Dag Wieers <[email protected]> - 1.30-1
- Updated to release 1.30.
* Sun Apr 10 2005 Dag Wieers <[email protected]> - 1.05-1
- Initial package. (using DAR)