Skip to content

Commit

Permalink
AUR packages: Added proper provides. Fixed missing dependencies in gt…
Browse files Browse the repository at this point in the history
…k package. And added conflicts for gtk package
  • Loading branch information
TheAlexDev23 committed Sep 8, 2024
1 parent 9a79d85 commit 0c35727
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
4 changes: 4 additions & 0 deletions ci/gen_daemon_pkgbuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@ def create_pkgbuild(pkgname, pkgver, url):
arch=('x86_64')
url="{url}"
license=('MIT')
depends=('acpid' 'zsh' 'pciutils' 'usbutils')
optdepends=('xorg-xrandr: needed for screen settings' 'brightnessctl: needed for brightness settings' 'net-tools: needed to disable ethernet cards')
makedepends=('cargo')
provides=('power-options-daemon')
conflicts=('power-options-daemon-git')
source=("$pkgname-$pkgver.tar.gz::{url}/archive/v$pkgver.tar.gz")
sha256sums=('SKIP')
Expand Down
4 changes: 4 additions & 0 deletions ci/gen_daemon_pkgbuild_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,14 @@ def create_pkgbuild(pkgname, pkgver, url):
arch=('x86_64')
url="{url}"
license=('MIT')
depends=('acpid' 'zsh' 'pciutils' 'usbutils')
optdepends=('xorg-xrandr: needed for screen settings' 'brightnessctl: needed for brightness settings' 'net-tools: needed to disable ethernet cards')
makedepends=('cargo' 'git')
provides=('power-options-daemon')
conflicts=('power-options-daemon')
source=("git+https://github.com/thealexdev23/power-options.git")
sha256sums=('SKIP')
Expand Down
8 changes: 6 additions & 2 deletions ci/gen_gtk_pkgbuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@ def create_pkgbuild(pkgname, pkgver, url):
arch=('x86_64')
url={url}
license=('MIT')
conflicts=('power-options-gtk-git')
depends=('power-options-daemon-git')
depends=('power-options-daemon' 'libadwaita' 'yad')
makedepends=('cargo')
provides=('power-options-gtk')
conflicts=('power-options-gtk-git' 'tlp' 'auto-cpufreq' 'power-profiles-daemon' 'cpupower-gui')
source=("$pkgname-$pkgver.tar.gz::{url}/archive/v$pkgver.tar.gz")
sha256sums=('SKIP')
Expand Down
10 changes: 7 additions & 3 deletions ci/gen_gtk_pkgbuild_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ def create_pkgbuild(pkgname, pkgver, url):
arch=('x86_64')
url={url}
license=('MIT')
conflicts=('power-options-gtk')
depends=('power-options-daemon-git')
makedepends=('cargo')
depends=('power-options-daemon' 'libadwaita' 'yad')
makedepends=('cargo' 'git')
provides=('power-options-gtk')
conflicts=('power-options-gtk' 'tlp' 'auto-cpufreq' 'power-profiles-daemon' 'cpupower-gui')
source=("git+https://github.com/thealexdev23/power-options.git")
sha256sums=('SKIP')
Expand Down

0 comments on commit 0c35727

Please sign in to comment.