This commit is contained in:
parent
242354fcca
commit
32b8f12f25
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:28ca6fb041e6b2a78c249c074099f09dc2366665fbc06cf0d75dc0104feb7f0e
|
|
||||||
size 15743
|
|
3
powertop-1.4.tar.gz
Normal file
3
powertop-1.4.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b39eeac7c7290553da1d061ab0e2055c85fa5d0329af827369149fc692001e49
|
||||||
|
size 34550
|
@ -1,3 +1,30 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat May 26 09:23:09 CEST 2007 - thoenig@suse.de
|
||||||
|
|
||||||
|
- Update to PowerTOP 1.4
|
||||||
|
- Strip binary
|
||||||
|
- Add man page and localisation for powertop
|
||||||
|
- Changes:
|
||||||
|
* use gettext to allow translation
|
||||||
|
(with lots of thanks to the various translators, especially
|
||||||
|
to Benjamin Pineau who showed me how to use gettext tools)
|
||||||
|
* fix bluethooth-checks-cause-autload-of-bluetooth bug
|
||||||
|
* use ncurses (Sebastian Kuzminsky)
|
||||||
|
* rotate through the suggestions randomly, so that all of them
|
||||||
|
will show over time
|
||||||
|
* Fix the CONFIG_SND_AC97_POWER_SAVE check to only report on ac97
|
||||||
|
hw
|
||||||
|
* report "hidden but suprious" timer ticks (due to missing hpet
|
||||||
|
or lack of NO_HZ)
|
||||||
|
* check for HPET being present; if not suggest user to toggle in
|
||||||
|
BIOS or apply the patch
|
||||||
|
* Some suggestions have become "active", you can press a key to
|
||||||
|
tune it right away.
|
||||||
|
* Add active suggestion to enable AC97 powersave mode at runtime
|
||||||
|
* Add active suggestion to enable wireless powersave mode at
|
||||||
|
runtime
|
||||||
|
* Add active suggestion to enable ondemand
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 22 13:41:56 CEST 2007 - thoenig@suse.de
|
Tue May 22 13:41:56 CEST 2007 - thoenig@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package powertop (Version 1.3)
|
# spec file for package powertop (Version 1.4)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -13,11 +13,12 @@
|
|||||||
Name: powertop
|
Name: powertop
|
||||||
URL: http://www.linuxpowertop.org
|
URL: http://www.linuxpowertop.org
|
||||||
Summary: PowerTOP is a Linux tool to find out what is using power on a laptop
|
Summary: PowerTOP is a Linux tool to find out what is using power on a laptop
|
||||||
Version: 1.3
|
Version: 1.4
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GNU General Public License (GPL)
|
License: GNU General Public License (GPL)
|
||||||
Group: System/Monitoring
|
Group: System/Monitoring
|
||||||
Source0: %{name}-%{version}.tar.gz
|
Source0: %{name}-%{version}.tar.gz
|
||||||
|
BuildRequires: ncurses-devel
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Autoreqprov: on
|
Autoreqprov: on
|
||||||
|
|
||||||
@ -37,20 +38,47 @@ Authors:
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
CFLAGS="$RPM_OPT_FLAGS" make
|
CFLAGS="$RPM_OPT_FLAGS" make
|
||||||
|
strip %{name}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p %{buildroot}/%{_bindir}
|
mkdir -p %{buildroot}/%{_bindir}
|
||||||
make install DESTDIR=%{buildroot}
|
make install DESTDIR=%{buildroot}
|
||||||
|
%find_lang %{name}
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf %{_buildroot}
|
rm -rf %{_buildroot}
|
||||||
|
|
||||||
%files
|
%files -f %{name}.lang
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc COPYING
|
%doc COPYING
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
|
%{_mandir}/man*/%{name}.1.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat May 26 2007 - thoenig@suse.de
|
||||||
|
- Update to PowerTOP 1.4
|
||||||
|
- Strip binary
|
||||||
|
- Add man page and localisation for powertop
|
||||||
|
- Changes:
|
||||||
|
* use gettext to allow translation
|
||||||
|
(with lots of thanks to the various translators, especially
|
||||||
|
to Benjamin Pineau who showed me how to use gettext tools)
|
||||||
|
* fix bluethooth-checks-cause-autload-of-bluetooth bug
|
||||||
|
* use ncurses (Sebastian Kuzminsky)
|
||||||
|
* rotate through the suggestions randomly, so that all of them
|
||||||
|
will show over time
|
||||||
|
* Fix the CONFIG_SND_AC97_POWER_SAVE check to only report on ac97
|
||||||
|
hw
|
||||||
|
* report "hidden but suprious" timer ticks (due to missing hpet
|
||||||
|
or lack of NO_HZ)
|
||||||
|
* check for HPET being present; if not suggest user to toggle in
|
||||||
|
BIOS or apply the patch
|
||||||
|
* Some suggestions have become "active", you can press a key to
|
||||||
|
tune it right away.
|
||||||
|
* Add active suggestion to enable AC97 powersave mode at runtime
|
||||||
|
* Add active suggestion to enable wireless powersave mode at
|
||||||
|
runtime
|
||||||
|
* Add active suggestion to enable ondemand
|
||||||
* Tue May 22 2007 - thoenig@suse.de
|
* Tue May 22 2007 - thoenig@suse.de
|
||||||
- Update to PowerTOP 1.3
|
- Update to PowerTOP 1.3
|
||||||
- Remove patch powertop-fix-compiler-warnings-thoenig-02.patch:
|
- Remove patch powertop-fix-compiler-warnings-thoenig-02.patch:
|
||||||
|
Loading…
Reference in New Issue
Block a user