1
0
Fork 0
gnome-shell-performance-pkg.../PKGBUILD

227 lines
6.2 KiB
Bash
Raw Normal View History

# Patched package:
# Maintainer: Saren Arterius <saren@wtako.net>
# Co-maintainer: Térence Clastres <t.clastres@gmail.com>
# Co-maintainer: Mingi Sung <fiestalake@disroot.org>
# Official package:
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
2018-08-04 18:19:38 +00:00
# Contributor: Ionut Biru <ibiru@archlinux.org>
# Contributor: Flamelab <panosfilip@gmail.com
### PACKAGE OPTIONS
## MERGE REQUESTS SELECTION
# Merge Requests List: ()
_merge_requests_to_use=()
## Disable building the DOCS package (Enabled if not set)
# Remember to unset this variable when producing .SRCINFO
: "${_disable_docs:=""}"
## Enable the `check()` operation (Disabled if not set)
: "${_enable_check:=""}"
### IMPORTANT: Do no edit below this line unless you know what you're doing
2019-10-04 03:28:59 +00:00
_pkgname=gnome-shell
pkgbase=gnome-shell-performance
if [ -n "$_disable_docs" ]; then
pkgname=gnome-shell-performance
else
pkgname=(gnome-shell-performance gnome-shell-performance-docs)
fi
pkgver=46.0
pkgrel=2
epoch=1
pkgdesc="Next generation desktop shell | Attempts to improve performances with non-upstreamed merge-requests and frequent stable branch resync"
2018-08-04 18:19:38 +00:00
url="https://wiki.gnome.org/Projects/GnomeShell"
arch=(x86_64 aarch64)
2021-04-21 11:01:28 +00:00
license=(GPL)
2023-06-09 04:30:09 +00:00
depends=(
accountsservice
gcr-4
gjs
gnome-autoar
gnome-session
gnome-settings-daemon
gsettings-desktop-schemas
gtk4
libadwaita
libcanberra-pulse
libgdm
libgweather-4
libibus
libnma-gtk4
libsecret
libsoup3
mutter
unzip
upower
)
makedepends=(
asciidoc
bash-completion
evolution-data-server
gi-docgen
2023-06-09 04:30:09 +00:00
git
gnome-control-center
gobject-introspection
meson
sassc
)
if [ -n "$_enable_check" ]; then
2023-06-09 04:30:09 +00:00
checkdepends=(
appstream-glib
python-dbusmock
xorg-server-xvfb
)
fi
_commit=0463511457612ca87f7426b3b01356d1d85bee9b # tags/46.0^0
2023-06-09 04:30:09 +00:00
source=(
"git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit"
"git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git"
)
b2sums=('8684414294c781bd02f89eb76ae04a51a701c51e00966f227989c0a41d161f34e4bfb7e9609f0a902a565aa4ea22f9d9c740d043b668bc132ed6d7471b8d7119'
'SKIP')
2019-09-20 04:41:02 +00:00
2019-03-15 21:09:49 +00:00
pkgver() {
2019-10-04 03:28:59 +00:00
cd $_pkgname
2019-09-20 04:41:02 +00:00
git describe --tags | sed 's/-/+/g'
2019-03-15 21:09:49 +00:00
}
2018-08-04 18:19:38 +00:00
pick_mr() {
for mr in "${_merge_requests_to_use[@]}"; do
if [ "$1" = "$mr" ]; then
if [ "$2" = "merge" ] || [ -z "$2" ]; then
echo "Downloading then Merging $1..."
2020-04-27 22:15:37 +00:00
curl -O "https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/$mr.diff"
git apply "$mr.diff"
elif [ "$3" = "revert" ]; then
echo "Reverting $1..."
git revert "$2" --no-commit
elif [ "$3" = "patch" ]; then
2023-06-09 04:30:09 +00:00
if [ -e ../"$2" ]; then
echo "Patching with $2..."
patch -Np1 -i ../"$2"
else
echo "Downloading $mr as $2 then patching..."
curl -O "https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/$mr.diff" -o "$2"
patch -Np1 -i "$2"
fi
else
echo "ERROR: wrong argument given: $2"
fi
break
fi
done
}
2018-09-18 02:17:53 +00:00
prepare() {
2019-10-04 03:28:59 +00:00
cd $_pkgname
2019-03-16 15:43:10 +00:00
2019-07-09 12:36:07 +00:00
### Adding and fetching remotes providing the selected merge-requests
### Only needed when there is no MR opened
2019-07-09 12:36:07 +00:00
git reset --hard
git cherry-pick --abort || true
2019-10-04 03:28:59 +00:00
# git remote add verde https://gitlab.gnome.org/verdre/gnome-shell.git || true
# git fetch verde
# git remote add 3v1n0 https://gitlab.gnome.org/3v1n0/gnome-shell || true
# git fetch 3v1n0
# git remote add vanvugt https://gitlab.gnome.org/vanvugt/gnome-shell.git || true
# git fetch vanvugt
2019-07-09 12:36:07 +00:00
### Merge Requests
# Merge Request Prototype
# Title:
# URL:
# Type:
# Status:
# Comment:
# git cherry-pick -n first_commit^..last_commit
#
# Possible Type:
# 1. Improvement: Makes an already existing feature behave better, more efficiently/reliably.
# 2. Feature: Adds a new functionality.
# 3. Fix: Regression/bug fix only available in master (not backported).
# 4. Cleanup: Code styling improvement, function deprecation, rearrangement...
#
2019-07-09 12:36:07 +00:00
# Possible Status:
# 1. Needs rebase: Conflicts with master branch.
# 2. Needs review: Mutter maintainers needs to review the new/updated MR and provide feedback.
# 3. Needs changes: MR needs to be adjusted based on maintainers feedback.
# 4. Merged: MR approved and it changes commited to master.
#
# Generally, a MR status oscillate between 2 and 3 and then becomes 4.
2018-08-04 18:19:38 +00:00
git submodule init
2020-03-09 03:58:01 +00:00
git submodule set-url subprojects/gvc "$srcdir/libgnome-volume-control"
git -c protocol.file.allow=always submodule update
2018-08-04 18:19:38 +00:00
}
2019-10-15 01:16:37 +00:00
2018-08-04 18:19:38 +00:00
build() {
local meson_options=(
-D gtk_doc=true
-D tests=$(if [ -n "$_enable_check" ]; then echo "true"; else echo "false"; fi)
)
CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
LDFLAGS+=" -Wl,-Bsymbolic-functions"
arch-meson $_pkgname build "${meson_options[@]}"
2020-06-16 13:37:43 +00:00
meson compile -C build
2018-08-04 18:19:38 +00:00
}
_check() (
export NO_AT_BRIDGE=1 GTK_A11Y=none
2023-06-09 04:30:09 +00:00
export XDG_RUNTIME_DIR="$PWD/rdir"
mkdir -p -m 700 "$XDG_RUNTIME_DIR"
2021-04-21 11:01:28 +00:00
meson test -C build --no-rebuild --print-errorlogs -t 2
2021-04-21 11:01:28 +00:00
)
# Tests FAIL and or TIMEOUT at random
# gnome-shell:shell / fittsy; / headlessStart; / basic; / closeWithActiveWindows
if [ -n "$_enable_check" ]; then
check() {
dbus-run-session -- xvfb-run -s '-nolisten local +iglx -noreset' \
bash -c "$(declare -f _check); _check" || :
}
fi
package_gnome-shell-performance() {
depends+=(libmutter-14.so)
optdepends=(
'evolution-data-server: Evolution calendar integration'
'gnome-bluetooth-3.0: Bluetooth support'
'gnome-control-center: System settings'
'gnome-disk-utility: Mount with keyfiles'
'gst-plugin-pipewire: Screen recording'
'gst-plugins-good: Screen recording'
'power-profiles-daemon: Power profile switching'
'python-gobject: gnome-shell-test-tool performance tester'
'python-simplejson: gnome-shell-test-tool performance tester'
'switcheroo-control: Multi-GPU support'
)
provides=(gnome-shell gnome-shell=$pkgver gnome-shell=$epoch:$pkgver)
conflicts=(gnome-shell)
groups=(gnome)
2021-05-14 22:18:10 +00:00
meson install -C build --destdir "$pkgdir"
mkdir -p doc/usr/share
mv {"$pkgdir",doc}/usr/share/doc
2019-10-15 01:16:37 +00:00
}
if ! [ -n "$_disable_docs" ]; then
package_gnome-shell-performance-docs() {
pkgdesc+=" (API documentation)"
provides=(gnome-shell-docs)
conflicts=(gnome-shell-docs)
depends=()
mv doc/* "$pkgdir"
}
fi