1f8283786f
- fixes #660459 - Should be able to set options with /etc/sysconfig/acpi
301 lines
9.4 KiB
RPMSpec
301 lines
9.4 KiB
RPMSpec
Summary: ACPI Event Daemon
|
|
Name: acpid
|
|
Version: 2.0.7
|
|
Release: 1%{?dist}
|
|
License: GPLv2+
|
|
Group: System Environment/Daemons
|
|
Source: http://tedfelix.com/linux/acpid-%{version}.tar.gz
|
|
Source1: acpid.init
|
|
Source2: acpid.video.conf
|
|
Source3: acpid.power.conf
|
|
Source4: acpid.power.sh
|
|
Source5: acpid.service
|
|
Source6: acpid.sysconfig
|
|
|
|
Patch1: acpid-2.0.2-makefile.patch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
ExclusiveArch: ia64 x86_64 %{ix86}
|
|
URL: http://tedfelix.com/linux/acpid-netlink.html
|
|
Requires(post): /sbin/chkconfig
|
|
Requires(preun): /sbin/chkconfig
|
|
Requires(preun): /sbin/service
|
|
Requires: systemd-units
|
|
|
|
|
|
%description
|
|
acpid is a daemon that dispatches ACPI events to user-space programs.
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%patch1 -p1 -b .makefile
|
|
|
|
%build
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
mkdir -p $RPM_BUILD_ROOT
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/acpi/actions
|
|
mkdir -p $RPM_BUILD_ROOT/lib/systemd/system
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
|
|
|
|
chmod 755 $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events
|
|
install -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events/videoconf
|
|
install -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events/powerconf
|
|
install -m 755 %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/actions/power.sh
|
|
install -m 644 %{SOURCE5} $RPM_BUILD_ROOT/lib/systemd/system
|
|
install -m 644 %{SOURCE6} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/acpid
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d
|
|
install -m 755 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/acpid
|
|
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc COPYING README Changelog TODO TESTPLAN
|
|
/lib/systemd/system/%{name}.service
|
|
%dir %{_sysconfdir}/acpi
|
|
%dir %{_sysconfdir}/acpi/events
|
|
%dir %{_sysconfdir}/acpi/actions
|
|
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/acpi/events/videoconf
|
|
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/acpi/events/powerconf
|
|
%config(noreplace) %attr(0755,root,root) %{_sysconfdir}/acpi/actions/power.sh
|
|
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/sysconfig/acpid
|
|
%{_bindir}/acpi_listen
|
|
%{_sbindir}/acpid
|
|
%attr(0755,root,root) %{_sysconfdir}/rc.d/init.d/acpid
|
|
%{_mandir}/man8/acpid.8.gz
|
|
%{_mandir}/man8/acpi_listen.8.gz
|
|
|
|
|
|
%pre
|
|
if [ "$1" = "2" ]; then
|
|
conflist=`ls %{_sysconfdir}/acpi/events/*.conf 2> /dev/null`
|
|
RETCODE=$?
|
|
if [ $RETCODE -eq 0 ]; then
|
|
for i in $conflist; do
|
|
rmdot=`echo $i | sed 's/.conf/conf/'`
|
|
mv $i $rmdot
|
|
done
|
|
fi
|
|
fi
|
|
|
|
%post
|
|
if [ $1 -eq 1 ]; then
|
|
/sbin/chkconfig --add acpid
|
|
/bin/systemctl enable %{name}.service > /dev/null 2>&1 || :
|
|
fi
|
|
|
|
%preun
|
|
if [ "$1" = "0" ]; then
|
|
/sbin/service acpid stop >/dev/null 2>&1
|
|
/sbin/chkconfig --del acpid
|
|
|
|
/bin/systemctl disable %{name}.service %{name}.socket > /dev/null 2>&1 || :
|
|
/bin/systemctl stop %{name}.service %{name}.socket > /dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
%postun
|
|
if [ "$1" -ge "1" ]; then
|
|
/sbin/service acpid condrestart >/dev/null 2>&1
|
|
|
|
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
|
/bin/systemctl try-restart %{name}.service > /dev/null 2>&1 || :
|
|
fi
|
|
|
|
%changelog
|
|
* Wed Dec 08 2010 Jiri Skala <jskala@redhat.com> - 2.0.7-1
|
|
- update to latest upstream
|
|
- fixes #660459 - Should be able to set options with /etc/sysconfig/acpi
|
|
|
|
* Wed Nov 03 2010 Jiri Skala <jskala@redhat.com> - 2.0.5-5
|
|
- fixes #648221 - SELinux is preventing /sbin/iwconfig access to a leaked /dev/input/event0 file descriptor
|
|
|
|
* Wed Sep 29 2010 jkeating - 2.0.5-4
|
|
- Rebuilt for gcc bug 634757
|
|
|
|
* Mon Sep 13 2010 Jiri Skala <jskala@redhat.com> - 2.0.5-3
|
|
- fixes #629740 - acpid doesn't fork, but systemd unit file claims otherwise
|
|
|
|
* Wed Aug 11 2010 Jiri Skala <jskala@redhat.com> - 2.0.5-2
|
|
- fixes #617317 - Providing native systemd file for upcoming F14 Feature Systemd
|
|
|
|
* Tue Jul 13 2010 Jiri Skala <jskala@redhat.com> - 2.0.5-1
|
|
- latest upstream version
|
|
- fixes #613315 kernel-2.6.35 doesn't create /proc/acpi/event
|
|
|
|
* Wed May 05 2010 Jiri Skala <jskala@redhat.com> - 2.0.4-1
|
|
- latest upstream version
|
|
|
|
* Wed Mar 17 2010 Jiri Skala <jskala@redhat.com> - 2.0.3-2
|
|
- fixes #575320 - acpid fails to load any event config files
|
|
|
|
* Thu Feb 25 2010 Jiri Skala <jskala@redhat.com> - 2.0.2-1
|
|
- latest upstream version
|
|
- removed spare umask
|
|
- fixes missing headers
|
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.10-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
* Thu Apr 23 2009 Zdenek Prikryl <zprikryl@redhat.com> - 1.0.10-1
|
|
- Updated to version 1.0.10
|
|
|
|
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.8-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
* Wed Feb 04 2009 Zdenek Prikryl <zprikryl@redhat.com> - 1.0.8-2
|
|
- power.sh works with KDE 4.* (#483417)
|
|
|
|
* Tue Nov 11 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.0.8-1
|
|
- Updated to version 1.0.8
|
|
- power.sh works with ConsoleKit >= 0.3.0 (#470752)
|
|
- Fixed conditions in power.sh, which look for power-managers (#470752)
|
|
- Added check to init script
|
|
|
|
* Mon Jul 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0.6-8
|
|
- fix license tag
|
|
|
|
* Thu Apr 17 2008 Bill Nottingham <notting@redhat.com> - 1.0.6-7.fc9
|
|
- adjust start/stop priority to not conflict with HAL (#442759)
|
|
|
|
* Thu Feb 14 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.0.6-6.fc9
|
|
- Update of acpid-1.0.6-makefile.patch, it fix building with gcc 4.3
|
|
|
|
* Wed Jan 23 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.0.6-5.fc9
|
|
- Fixed managing of power button (#361501)
|
|
- Fixed power script to check for KDE power manager (#419331)
|
|
|
|
* Fri Nov 23 2007 Zdenek Prikryl <zprikryl@redhat.com> - 1.0.6-4.fc9
|
|
- Removed old logrotate file
|
|
- Fixed socket leak (#394431)
|
|
- Fixed dumping useless info to log (#389581)
|
|
|
|
* Thu Oct 23 2007 Zdenek Prikryl <zprikryl@redhat.com> - 1.0.6-3.fc9
|
|
- Silent initscript
|
|
- Resolves: #345611
|
|
|
|
* Wed Sep 26 2007 Zdenek Prikryl <zprikryl@redhat.com> - 1.0.6-2.fc8
|
|
- Fixed leak of a file descriptor
|
|
- Resolves: #304761
|
|
|
|
* Tue Aug 07 2007 Zdenek Prikryl <zprikryl@redhat.com> - 1.0.6-1.fc8
|
|
- Updated to version 1.0.6
|
|
|
|
* Wed Jul 25 2007 Zdenek Prikryl <zprikryl@redhat.com> - 1.0.4-8.fc8
|
|
- Fixed init script to comply with LSB standard
|
|
- Resolves: #237754
|
|
|
|
* Wed Feb 14 2007 Phil Knirsch <pknirsch@redhat.com> - 1.0.4-7.fc7
|
|
- Dropped /var/log/acpid ownership as per review (225237)
|
|
|
|
* Wed Feb 07 2007 Phil Knirsch <pknirsch@redhat.com> - 1.0.4-6.fc7
|
|
- Tons of specfile changes due to review (#225237)
|
|
|
|
* Tue Oct 10 2006 Phil Knirsch <pknirsch@redhat.com> - 1.0.4-5
|
|
- Made acpid a PIE binary (#210016)
|
|
|
|
* Thu Aug 24 2006 Phil Knirsch <pknirsch@redhat.com> - 1.0.4-4
|
|
- Made a better fix for the powerdown button which checks if g-p-m is running
|
|
- Don't install sample.conf anymore, not needed
|
|
|
|
* Thu Aug 10 2006 Phil Knirsch <pknirsch@redhat.com> - 1.0.4-3
|
|
- Disable the automatic shutdown -h via powerdown button by default due to
|
|
conflicts with gnome-power-manager
|
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.0.4-2.1
|
|
- rebuild
|
|
|
|
* Wed Mar 01 2006 Phil Knirsch <pknirsch@redhat.com> - 1.0.4-2
|
|
- Added video.conf file to turn on DPMS when opening the laptop lid. Disabled
|
|
by default.
|
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.4-1.2
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
- rebuilt
|
|
|
|
* Wed Mar 16 2005 Bill Nottingham <notting@redhat.com> - 1.0.4-1
|
|
- update to 1.0.4
|
|
|
|
* Mon Aug 9 2004 Miloslav Trmac <mitr@redhat.com> - 1.0.3-2
|
|
- Update to 1.0.3 (fixes #128834)
|
|
- s/Copyright/License/
|
|
- Add logrotate config file (#110677, from Michal Jaegermann)
|
|
- Don't verify contents of /var/log/acpid (#125862)
|
|
- Use $RPM_OPT_FLAGS
|
|
- Fix and cleanup acpid-1.0.1-pm1.patch
|
|
- Add condrestart to %%postun
|
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
- rebuilt
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
- rebuilt
|
|
|
|
* Wed Oct 22 2003 Bill Nottingham <notting@redhat.com> 1.0.2-5
|
|
- fix handling of sample.conf (#107160)
|
|
- mark for translations (#107459)
|
|
|
|
* Sun Oct 19 2003 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
- add %%clean specfile target
|
|
|
|
* Wed Oct 1 2003 Bill Nottingham <notting@redhat.com> 1.0.2-3
|
|
- re-enable x86
|
|
- don't load the button module
|
|
|
|
* Thu Aug 7 2003 Bill Nottingham <notting@redhat.com> 1.0.2-2
|
|
- no x86 for now
|
|
|
|
* Mon Jul 7 2003 Bill Nottingham <notting@redhat.com> 1.0.2-1
|
|
- update to 1.0.2
|
|
|
|
* Wed Dec 11 2002 Bill Nottingham <notting@redhat.com> 1.0.1-4
|
|
- don't start if /proc/acpi/event isn't there
|
|
|
|
* Thu Nov 14 2002 Bill Nottingham <notting@redhat.com> 1.0.1-3
|
|
- build on more arches
|
|
|
|
* Mon Aug 26 2002 Bill Nottingham <notting@redhat.com> 1.0.1-2
|
|
- tweak default config to run shutdown -h now on a power button event
|
|
|
|
* Thu Aug 22 2002 Bill Nottingham <notting@redhat.com> 1.0.1-1
|
|
- initial build, bang on included specfile
|
|
|
|
* Fri Mar 15 2002 Tim Hockin <thockin@sun.com>
|
|
- Updated RPM spec with patch from sun for chkconfig on/off
|
|
- Add Changelog, make 'make rpm' use it.
|
|
|
|
* Wed Mar 13 2002 Tim Hockin <thockin@sun.com>
|
|
- Fixed logging bug - not appending to log (O_APPEND needed)
|
|
- Fix 'make install' to not need root access
|
|
- Fix RPM spec to not need root
|
|
|
|
* Thu Sep 6 2001 Tim Hockin <thockin@sun.com>
|
|
- 1.0.0
|
|
|
|
* Thu Aug 16 2001 Tim Hockin <thockin@sun.com>
|
|
- Added commandline options to actions
|
|
|
|
* Wed Aug 15 2001 Tim Hockin <thockin@sun.com>
|
|
- Added UNIX domain socket support
|
|
- Changed /etc/acpid.d to /etc/acpid/events
|
|
|
|
* Mon Aug 13 2001 Tim Hockin <thockin@sun.com>
|
|
- added changelog
|
|
- 0.99.1-1
|
|
|