1
0
Fork 0

Sync to gnome-45

Signed-off-by: Mingi Sung <dawdleming@gmail.com>
This commit is contained in:
Mingi Sung 2023-10-10 14:25:10 +09:00
parent bedfad2616
commit 84b7d993ce
Signed by untrusted user who does not match committer: sungmg
GPG key ID: 8914E37E2BA317DD
2 changed files with 11 additions and 8 deletions

View file

@ -1,6 +1,6 @@
pkgbase = gnome-shell-performance pkgbase = gnome-shell-performance
pkgdesc = Next generation desktop shell | Attempts to improve performances with non-upstreamed merge-requests and frequent stable branch resync pkgdesc = Next generation desktop shell | Attempts to improve performances with non-upstreamed merge-requests and frequent stable branch resync
pkgver = 44.5 pkgver = 45.0
pkgrel = 1 pkgrel = 1
epoch = 1 epoch = 1
url = https://wiki.gnome.org/Projects/GnomeShell url = https://wiki.gnome.org/Projects/GnomeShell
@ -43,12 +43,13 @@ pkgbase = gnome-shell-performance
optdepends = gst-plugin-pipewire: Screen recording optdepends = gst-plugin-pipewire: Screen recording
optdepends = gst-plugins-good: Screen recording optdepends = gst-plugins-good: Screen recording
optdepends = power-profiles-daemon: Power profile switching optdepends = power-profiles-daemon: Power profile switching
optdepends = python-gobject: gnome-shell-test-tool performance tester
optdepends = switcheroo-control: Multi-GPU support optdepends = switcheroo-control: Multi-GPU support
provides = gnome-shell provides = gnome-shell
provides = gnome-shell=44.5 provides = gnome-shell=45.0
provides = gnome-shell=1:44.5 provides = gnome-shell=1:45.0
conflicts = gnome-shell conflicts = gnome-shell
source = git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=d49cc6fa355d59d3a4c878ae89885cb1c571bfda source = git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=2127c62b210f605747e019e6e2abee82516e3ccb
source = git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git source = git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git
b2sums = SKIP b2sums = SKIP
b2sums = SKIP b2sums = SKIP
@ -73,4 +74,4 @@ pkgname = gnome-shell-performance
depends = mutter depends = mutter
depends = unzip depends = unzip
depends = upower depends = upower
depends = libmutter-12.so depends = libmutter-13.so

View file

@ -20,7 +20,7 @@ _merge_requests_to_use=()
pkgname=gnome-shell-performance pkgname=gnome-shell-performance
_pkgname=gnome-shell _pkgname=gnome-shell
pkgver=44.5 pkgver=45.0
pkgrel=1 pkgrel=1
epoch=1 epoch=1
pkgdesc="Next generation desktop shell | Attempts to improve performances with non-upstreamed merge-requests and frequent stable branch resync" pkgdesc="Next generation desktop shell | Attempts to improve performances with non-upstreamed merge-requests and frequent stable branch resync"
@ -74,12 +74,13 @@ optdepends=(
'gst-plugin-pipewire: Screen recording' 'gst-plugin-pipewire: Screen recording'
'gst-plugins-good: Screen recording' 'gst-plugins-good: Screen recording'
'power-profiles-daemon: Power profile switching' 'power-profiles-daemon: Power profile switching'
'python-gobject: gnome-shell-test-tool performance tester'
'switcheroo-control: Multi-GPU support' 'switcheroo-control: Multi-GPU support'
) )
groups=(gnome) groups=(gnome)
provides=(gnome-shell gnome-shell=$pkgver gnome-shell=$epoch:$pkgver) provides=(gnome-shell gnome-shell=$pkgver gnome-shell=$epoch:$pkgver)
conflicts=(gnome-shell) conflicts=(gnome-shell)
_commit=d49cc6fa355d59d3a4c878ae89885cb1c571bfda # tags/44.5^0 _commit=2127c62b210f605747e019e6e2abee82516e3ccb # tags/45.0^0
source=( source=(
"git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit" "git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit"
"git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git" "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git"
@ -178,6 +179,7 @@ build() {
} }
_check() ( _check() (
export NO_AT_BRIDGE=1 GTK_A11Y=none
export XDG_RUNTIME_DIR="$PWD/rdir" export XDG_RUNTIME_DIR="$PWD/rdir"
mkdir -p -m 700 "$XDG_RUNTIME_DIR" mkdir -p -m 700 "$XDG_RUNTIME_DIR"
@ -192,6 +194,6 @@ if [ -n "$_enable_check" ]; then
fi fi
package() { package() {
depends+=(libmutter-12.so) depends+=(libmutter-13.so)
meson install -C build --destdir "$pkgdir" meson install -C build --destdir "$pkgdir"
} }