@@ -13,7 +13,7 @@
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>A collection of UPnP/DLNA services</Summary>
|
||||
<Description>A collection of UPnP/DLNA services</Description>
|
||||
<Archive sha1sum="68b7bc80863de49f02d07c3db47419f5b8859fcd" type="tarxz">mirrors://gnome/rygel/0.42/rygel-0.42.0.tar.xz</Archive>
|
||||
<Archive sha1sum="dae4cf4e271ba2bcc4259667876ae4edaf35f7a6" type="tarxz">mirrors://gnome/rygel/0.42/rygel-0.42.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>desktop-file-utils</Dependency>
|
||||
<Dependency>dbus-glib-devel</Dependency>
|
||||
@@ -87,6 +87,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="10">
|
||||
<Date>2023-02-11</Date>
|
||||
<Version>0.42.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2022-09-17</Date>
|
||||
<Version>0.42.0</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<Icon>gnome-control-center</Icon>
|
||||
<Summary>GNOME's main interface to configure various aspects of the desktop</Summary>
|
||||
<Description>GNOME Settings is GNOME's main interface for configuration of various aspects of your desktop.</Description>
|
||||
<Archive sha1sum="957e3c37814537fa9a425745be2aefeca50b0c8c" type="tarxz">https://download.gnome.org/sources/gnome-control-center/43/gnome-control-center-43.2.tar.xz</Archive>
|
||||
<Archive sha1sum="cd6c2807a67e1e790bd57fdd64e71234c342bead" type="tarxz">https://download.gnome.org/sources/gnome-control-center/43/gnome-control-center-43.4.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gcr-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
@@ -160,6 +160,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="12">
|
||||
<Date>2023-02-13</Date>
|
||||
<Version>43.4.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2022-12-23</Date>
|
||||
<Version>43.2</Version>
|
||||
|
||||
@@ -11,11 +11,9 @@ from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("sed 's@/bin/sh@/bin/sh -l@' -i gnome-session/gnome-session.in")
|
||||
shelltools.system("""sed -i "/ systemd_dep/,+3d;/if enable_systemd/a \ " meson.build""")
|
||||
shelltools.system("""sed -i "/ systemd_dep/,+3d;/if enable_systemd/a \ systemd_userunitdir = '/tmp\'" meson.build""")
|
||||
|
||||
mesontools.configure("--buildtype=release \
|
||||
-Dsystemd=false \
|
||||
-Dsystemd_session=disable \
|
||||
-Dsystemd_journal=false")
|
||||
|
||||
def build():
|
||||
@@ -24,4 +22,5 @@ def build():
|
||||
def install():
|
||||
mesontools.install()
|
||||
|
||||
pisitools.removeDir("/tmp")
|
||||
#shelltools.system("rm -rv %s/tmp/{*.d,*.target,*.service}" % get.installDIR())
|
||||
|
||||
@@ -22,23 +22,23 @@ index ef5132c6..7f68aaae 100644
|
||||
+assert(not (enable_systemd and enable_elogind), 'Can not support systemd and elogind at once')
|
||||
+if enable_systemd or enable_elogind or enable_consolekit
|
||||
session_bin_deps += dependency('gio-unix-2.0', version: glib_req_version)
|
||||
|
||||
|
||||
# Check for systemd
|
||||
@@ -152,6 +154,10 @@ if enable_systemd or enable_consolekit
|
||||
endif
|
||||
|
||||
|
||||
session_tracking = 'systemd'
|
||||
+ elif enable_elogind
|
||||
+ libelogind_dep = dependency('libelogind', version: '>= 239.4')
|
||||
+ session_bin_deps += libelogind_dep
|
||||
+ session_tracking = 'elogind'
|
||||
endif
|
||||
|
||||
|
||||
# Check for ConsoleKit
|
||||
@@ -161,7 +167,7 @@ if enable_systemd or enable_consolekit
|
||||
|
||||
|
||||
session_bin_deps += dbus_glib_dep
|
||||
|
||||
|
||||
- if enable_systemd
|
||||
+ if enable_systemd or enable_elogind
|
||||
session_tracking += ' (with fallback to ConsoleKit)'
|
||||
@@ -63,5 +63,6 @@ index 4c05dc6e..512d1528 100644
|
||||
option('session_selector', type: 'boolean', value: false, description: 'enable building a custom session selector dialog')
|
||||
option('systemd', type: 'boolean', value: true, description: 'Use systemd')
|
||||
option('systemd_session', type: 'combo', choices: ['disable', 'enable', 'default'], value: 'default', description: 'Whether to include systemd session support and use it by default')
|
||||
--
|
||||
--
|
||||
2.26.2
|
||||
|
||||
|
||||
@@ -29,10 +29,10 @@
|
||||
<Dependency>meson</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch>0001-revert-autostart-app-Strip-blacklisted-variables-fro.patch</Patch>
|
||||
<!--Patch>0001-revert-autostart-app-Strip-blacklisted-variables-fro.patch</Patch>
|
||||
<Patch>include-profile-env-variables.patch</Patch>
|
||||
<Patch>no-systemd-dep.patch</Patch>
|
||||
<Patch>support-elogind.patch</Patch>
|
||||
<Patch>no-systemd-dep.patch</Patch-->
|
||||
<!-- <Patch>support-elogind.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<Icon>gnome</Icon>
|
||||
<Summary>GNOME Shell is the defining technology of the GNOME40 user experience</Summary>
|
||||
<Description>GNOME Shell is the defining technology of the GNOME40 user experience. It provides core interface functions like switching to windows and launching applications.</Description>
|
||||
<Archive sha1sum="2db507860bdfa74b2d8f6ecf076306805957e18a">https://download.gnome.org/sources/gnome-shell/43/gnome-shell-43.2.tar.xz</Archive>
|
||||
<Archive sha1sum="1a6dd7c31302ce9532c588560a754a48d58afa46">https://download.gnome.org/sources/gnome-shell/43/gnome-shell-43.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>at-spi2-atk-devel</Dependency>
|
||||
<Dependency versionFrom="3.42.0">evolution-data-server-devel</Dependency>
|
||||
@@ -115,6 +115,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="15">
|
||||
<Date>2023-02-15</Date>
|
||||
<Version>43.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="14">
|
||||
<Date>2022-12-07</Date>
|
||||
<Version>43.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<Icon>gnome</Icon>
|
||||
<Summary>Mutter is a Wayland display server and X11 window manager and compositor library.</Summary>
|
||||
<Description>Mutter is a Wayland display server and X11 window manager and compositor library.</Description>
|
||||
<Archive sha1sum="b38b1f21f8911e4b6b03545798cdfdae47fa26f7" type="tarxz">https://download.gnome.org/sources/mutter/43/mutter-43.2.tar.xz</Archive>
|
||||
<Archive sha1sum="291bd561ffae0953b85a2ce6d214e7effa1f5e12" type="tarxz">https://download.gnome.org/sources/mutter/43/mutter-43.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
@@ -144,6 +144,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="16">
|
||||
<Date>2023-02-15</Date>
|
||||
<Version>43.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="15">
|
||||
<Date>2022-12-07</Date>
|
||||
<Version>43.2</Version>
|
||||
|
||||
Reference in New Issue
Block a user