Date: Tuesday, April 18, 2023 @ 07:46:28
Author: felixonmars
Revision: 1447180
archrelease: copy trunk to community-staging-any
Added:
sugar/repos/community-staging-any/
sugar/repos/community-staging-any/PKGBUILD
(from rev 1447179, sugar/trunk/PKGBUILD)
sugar/repos/community-staging-any/dont-overwrite-settings.patch
(from rev 1447179, sugar/trunk/dont-overwrite-settings.patch)
-------------------------------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++
dont-overwrite-settings.patch | 33 +++++++++++++++++++++++++++++++
2 files changed, 75 insertions(+)
Copied: sugar/repos/community-staging-any/PKGBUILD (from rev 1447179,
sugar/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-18 07:46:28 UTC (rev 1447180)
@@ -0,0 +1,42 @@
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=sugar
+pkgver=0.119
+pkgrel=2
+pkgdesc="Sugar GTK shell"
+arch=('any')
+url="https://sugarlabs.org/"
+license=('GPL')
+depends=('gnome-keyring' 'gst-plugins-espeak' 'gtksourceview3' 'gvfs'
'libwnck3'
+ 'libxklavier' 'metacity' 'mobile-broadband-provider-info' 'openssh'
'python-gwebsockets'
+ 'sugar-toolkit-gtk3' 'telepathy-gabble' 'telepathy-salut' 'upower'
'webkit2gtk'
+ 'xdg-user-dirs')
+makedepends=('intltool' 'python-empy')
+source=(https://download.sugarlabs.org/sources/sucrose/glucose/$pkgname/$pkgname-$pkgver.tar.xz
+ dont-overwrite-settings.patch)
+sha256sums=('b9c00c0a8b5ddd7ebfcd590ad0fc85352f2159cf509f7649e164995689d67619'
+ 'a426e295f8810c5b6b1a136338b630c67c5b98c7ca368a261e0390e42b6d1465')
+
+prepare() {
+ cd $pkgname-$pkgver
+
+ # Use correct D-Bus config location
+ sed -i '/^nmservicedir =/ s/sysconfdir/datadir/' data/Makefile.{am,in}
+
+ # Don't overwrite default GNOME settings
+ patch -Np1 -i ../dont-overwrite-settings.patch
+}
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --sysconfdir=/etc \
+ --disable-schemas-compile \
+ EMPY=`echo /usr/lib/python3.*/site-packages/em.py`
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+ rm -r "$pkgdir"/usr/share/sugar/extensions/cpsection/updater/
+}
Copied: sugar/repos/community-staging-any/dont-overwrite-settings.patch (from
rev 1447179, sugar/trunk/dont-overwrite-settings.patch)
===================================================================
--- community-staging-any/dont-overwrite-settings.patch
(rev 0)
+++ community-staging-any/dont-overwrite-settings.patch 2023-04-18 07:46:28 UTC
(rev 1447180)
@@ -0,0 +1,33 @@
+diff -Naur sugar-0.117.orig/src/jarabe/main.py sugar-0.117/src/jarabe/main.py
+--- sugar-0.117.orig/src/jarabe/main.py 2020-03-17 01:02:30.000000000
+0100
++++ sugar-0.117/src/jarabe/main.py 2020-05-27 21:38:18.454003200 +0200
+@@ -188,7 +188,7 @@
+ global _metacity_process, _metacity_sid
+
+ _metacity_process = subprocess.Popen(
+- ['metacity', '--no-force-fullscreen', '--no-composite'],
++ ['metacity', '--no-force-fullscreen'],
+ stdout=subprocess.PIPE)
+ _metacity_sid = GLib.io_add_watch(_metacity_process.stdout, GLib.IO_HUP,
+ __window_manager_failed_cb)
+@@ -196,12 +196,6 @@
+
+
+ def _start_window_manager():
+- global _cursor_theme_settings, _cursor_theme
+-
+- _cursor_theme_settings = Gio.Settings.new('org.gnome.desktop.interface')
+- _cursor_theme = _cursor_theme_settings.get_string('cursor-theme')
+- _cursor_theme_settings.set_string('cursor-theme', 'sugar')
+-
+ _restart_window_manager()
+
+ screen = Wnck.Screen.get_default()
+@@ -211,7 +205,6 @@
+
+
+ def _stop_window_manager():
+- _cursor_theme_settings.set_string('cursor-theme', _cursor_theme)
+ _metacity_process.terminate()
+
+