summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD7
2 files changed, 7 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e4999d49cee2..e6bbe91aa7f1 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = phc-intel-scripts
pkgdesc = Helper scripts for phc-intel, a frequency driver for Intel CPUs with undervolting feature.
pkgver = 0.2
- pkgrel = 2
+ pkgrel = 5
url = https://gitlab.com/linux-phc/phc-intel
install = phc-intel-scripts.install
arch = any
@@ -10,6 +10,7 @@ pkgbase = phc-intel-scripts
license = GPL2
depends = bash
depends = PHC-INTEL-MODULE
+ replaces = phc-intel<=0.3.2.rev44
backup = etc/default/phc-intel
source = phc-intel.conf.default
source = phc-intel.sh
diff --git a/PKGBUILD b/PKGBUILD
index 4cac255ea41c..6815c1c0fc8b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,19 +14,22 @@ groups=(
)
pkgver=0.2
# _phcver="$(pacman -Q phc-intel | awk '{print $2}')" # Version of the installed package `phc-intel`.
-pkgrel=2
+pkgrel=5
pkgdesc="Helper scripts for phc-intel, a frequency driver for Intel CPUs with undervolting feature."
url="https://gitlab.com/linux-phc/phc-intel"
arch=('any')
license=('GPL2')
depends=(
'bash'
- 'PHC-INTEL-MODULE'
+ 'PHC-INTEL-MODULE' # This means kernel-side support; packages providing kernel module, but also kernel packages which have that builtin, can set this.
)
makedepends=()
optdepends=()
provides=()
conflicts=()
+replaces=(
+ "phc-intel<=0.3.2.rev44"
+)
backup=(
'etc/default/phc-intel'
)