Package Details: auto-cpufreq-git 1.9.6.r3.gff72e1e-2

Git Clone URL: https://aur.archlinux.org/auto-cpufreq-git.git (read-only, click to copy)
Package Base: auto-cpufreq-git
Description: Automatic CPU speed & power optimizer
Upstream URL: https://github.com/AdnanHodzic/auto-cpufreq
Licenses: LGPL-3.0
Conflicts: auto-cpufreq
Provides: auto-cpufreq
Submitter: crian
Maintainer: crian
Last Packager: crian
Votes: 19
Popularity: 0.017839
First Submitted: 2020-01-07 09:54 (UTC)
Last Updated: 2022-10-21 14:32 (UTC)

Dependencies (10)

Required by (0)

Sources (2)

Pinned Comments

OlexandrCh commented on 2020-08-13 20:44 (UTC) (edited on 2020-08-13 20:44 (UTC) by OlexandrCh)

Currently, we don't need to run --install on AUR
After installing from AUR, we need to start the systemd service.
systemctl enable auto-cpufreq
systemctl start auto-cpufreq

and check if it enabled and running with
systemctl status auto-cpufreq

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

yochananmarqos commented on 2021-08-10 15:54 (UTC)

@adrianteri: Please unflag the package.

Note: VCS packages are not considered out of date when the pkgver changes, do not flag them as the maintainer will merely unflag the package and ignore you.

https://wiki.archlinux.org/title/Arch_User_Repository#Flagging_packages_out-of-date

adrianteri commented on 2021-08-10 15:32 (UTC)

Bump up version to 1.6.4?

yochananmarqos commented on 2021-02-03 17:18 (UTC)

@crian: dmidecode is a new dependency:

https://github.com/AdnanHodzic/auto-cpufreq/commit/5d26803204bbd110185381f45277245d70ee016b

yochananmarqos commented on 2020-12-06 15:34 (UTC)

@crian: It turns out auto-cpufreq will backup /usr/bin/cpufreqctl if it finds it on first run as /usr/bin/cpufreqctl.auto-cpufreq.bak. Either way int places it's own binary as an untracked file. See here. To deal with that, add the following to the install file:

    # Remove auto-cpufreq's cpufreqctl binary
    rm /usr/bin/cpufreqctl

    # Restore original cpufreqctl binary if backup was made
    if [ -f "/usr/bin/cpufreqctl.auto-cpufreq.bak" ]; then
        mv /usr/bin/cpufreqctl.auto-cpufreq.bak /usr/bin/cpufreqctl
    fi

yochananmarqos commented on 2020-09-13 03:45 (UTC)

As of v1.3, this no longer requires inxi.

yochananmarqos commented on 2020-09-02 15:18 (UTC) (edited on 2020-09-02 15:20 (UTC) by yochananmarqos)

@crian: Oh, I see. Use this:

pkgver() {
    cd "$srcdir/${pkgname%-git}"
    local srcversion="$(grep "version: '" snap/snapcraft.yaml | cut -d "'" -f 2)"
    printf "%s.r%s.%s" $srcversion "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
1.2.2.r136.4c2670c

crian commented on 2020-09-02 14:36 (UTC) (edited on 2020-09-02 14:36 (UTC) by crian)

@yochananmarqos: because the tags couldn't be fetched. Throws out an error during the pkg build. Don't know what upstream has done to cause this.

yochananmarqos commented on 2020-09-02 13:59 (UTC)

@crian: Why did you change the pkgver()? r < 1, so it will now appear as a downgrade. Please revert the change as tags should be used.

OlexandrCh commented on 2020-08-13 20:44 (UTC) (edited on 2020-08-13 20:44 (UTC) by OlexandrCh)

Currently, we don't need to run --install on AUR
After installing from AUR, we need to start the systemd service.
systemctl enable auto-cpufreq
systemctl start auto-cpufreq

and check if it enabled and running with
systemctl status auto-cpufreq