Package Details: cpufetch-git 1.00.r1.gdd32453-1

Git Clone URL: https://aur.archlinux.org/cpufetch-git.git (read-only, click to copy)
Package Base: cpufetch-git
Description: Simple yet fancy CPU architecture fetching tool
Upstream URL: https://github.com/Dr-Noob/cpufetch
Keywords: cpu utility
Licenses: MIT
Conflicts: cpufetch
Provides: cpufetch
Submitter: DrNoob
Maintainer: DrNoob
Last Packager: DrNoob
Votes: 20
Popularity: 0.000848
First Submitted: 2018-06-23 22:42 (UTC)
Last Updated: 2021-08-23 19:02 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

eclairevoyant commented on 2023-06-27 21:36 (UTC)

make should be removed from makedepends, as it's part of base-devel

DrNoob commented on 2021-08-23 19:04 (UTC)

@kruzah Thanks for your suggestion, I have just updated the package to include the changes in the pkgver().

kruzah commented on 2021-05-05 09:46 (UTC) (edited on 2021-05-05 09:46 (UTC) by kruzah)

Suggestion to change sed 's/\([^-]*-g\)/r\1/;s/-/./g' to sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' in pkgver() per the VCS package guidelines. The v prefix should be removed from the tags to ensure the package updates properly. E.g. if the user has installed this package before the pkgver function was added, the package will not update because vercmp thinks that vX.XX < Y.YY regardless of X and Y. (E.g. 0.33 > v0.97)

DrNoob commented on 2021-04-13 17:38 (UTC)

@jorgicio Why do you assume that the 0.94 is the stable version? I've not updated the release page in github because it is a bit of a pain in the ass for me.

cpufetch-git package will always fetch the latest version in the master branch, but if you need to install version 0.94 you can either git clone the repo and checkout to the 0.94 version, or even change the PKGBUILD of this package before installing it to do the checkout (though I would suggest the first approach).

jorgicio commented on 2021-04-13 16:13 (UTC)

Thanks for your contribution, could you do a package with the stable version? I mean, the 0.94.

Thanks!

m040601 commented on 2021-04-10 14:05 (UTC) (edited on 2021-04-10 14:10 (UTC) by m040601)

@DrNoob

Thanks for updating !

arch=('x86_64' 'i686' 'armv6h' 'armv7h' 'aarch64')

will do fine. I can confirm you that I tested the armv7h (Raspberry Pi 2 and a Chromebook) and it works fine. It's just a standard C program anyway.

DrNoob commented on 2021-04-10 09:15 (UTC)

Thanks for your suggestion m040601. I've updated the PKGBUILD to include more architectures, but not using 'any' as you suggested (see https://wiki.archlinux.org/index.php/PKGBUILD#arch). I can't test this in i686 or ARM, I hope it will work well.

m040601 commented on 2021-04-10 08:11 (UTC) (edited on 2021-04-10 08:11 (UTC) by m040601)

Please change the PKGBUILD from,

arch=('x86_64')

to

arch=('any')

So that I can run it in Arch Linux ARM and others. As you can read, https://github.com/Dr-Noob/cpufetch/ this is supported, both in 32 and 64 bit versions.