about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/auto-cpufreq/fix-version-output.patch
blob: fad9f091da40e2ab876659444fb1ced516b8c025 (plain) (blame)
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
diff --git a/auto_cpufreq/core.py b/auto_cpufreq/core.py
index 99397a9..f3ef28f 100755
--- a/auto_cpufreq/core.py
+++ b/auto_cpufreq/core.py
@@ -144,26 +144,10 @@ except PermissionError:
 
 # display running version of auto-cpufreq
 def app_version():
+    print("auto-cpufreq version: @version@")
+    print("Git commit: v@version@")
 
-    print("auto-cpufreq version: ", end="")
 
-    # snap package
-    if os.getenv("PKG_MARKER") == "SNAP":
-        print(getoutput("echo \(Snap\) $SNAP_VERSION"))
-    # aur package
-    elif dist_name in ["arch", "manjaro", "garuda"]:
-        aur_pkg_check = call("pacman -Qs auto-cpufreq > /dev/null", shell=True)
-        if aur_pkg_check == 1:
-            print(get_formatted_version())
-        else:
-            print(getoutput("pacman -Qi auto-cpufreq | grep Version"))
-    else:
-        # source code (auto-cpufreq-installer)
-        try:
-            print(get_formatted_version())
-        except Exception as e:
-            print(repr(e))
-            pass
 def verify_update():
     # Specify the repository and package name
     # IT IS IMPORTANT TO  THAT IF THE REPOSITORY STRUCTURE IS CHANGED, THE FOLLOWING FUNCTION NEEDS TO BE UPDATED ACCORDINGLY