[arch-commits] Commit in mate-settings-daemon/repos/community-x86_64 (3 files)

Christian Hesse eworm at archlinux.org
Fri Dec 13 13:57:04 UTC 2019


    Date: Friday, December 13, 2019 @ 13:57:04
  Author: eworm
Revision: 537547

archrelease: copy trunk to community-x86_64

Added:
  mate-settings-daemon/repos/community-x86_64/0001-dbus-sys-dir.patch
    (from rev 537546, mate-settings-daemon/trunk/0001-dbus-sys-dir.patch)
  mate-settings-daemon/repos/community-x86_64/PKGBUILD
    (from rev 537546, mate-settings-daemon/trunk/PKGBUILD)
Deleted:
  mate-settings-daemon/repos/community-x86_64/PKGBUILD

-------------------------+
 0001-dbus-sys-dir.patch |   11 +++++
 PKGBUILD                |   91 +++++++++++++++++++++++++---------------------
 2 files changed, 62 insertions(+), 40 deletions(-)

Copied: mate-settings-daemon/repos/community-x86_64/0001-dbus-sys-dir.patch (from rev 537546, mate-settings-daemon/trunk/0001-dbus-sys-dir.patch)
===================================================================
--- 0001-dbus-sys-dir.patch	                        (rev 0)
+++ 0001-dbus-sys-dir.patch	2019-12-13 13:57:04 UTC (rev 537547)
@@ -0,0 +1,11 @@
+diff --git a/plugins/datetime/Makefile.am b/plugins/datetime/Makefile.am
+index 7c3b76a..161ed5a 100644
+--- a/plugins/datetime/Makefile.am
++++ b/plugins/datetime/Makefile.am
+@@ -1,5 +1,5 @@
+ dbus_servicesdir = $(datadir)/dbus-1/system-services
+-dbus_confdir = $(sysconfdir)/dbus-1/system.d
++dbus_confdir = $(DBUS_SYS_DIR)
+ polkitdir = $(datadir)/polkit-1/actions
+ 
+ dbus_services_in_files = org.mate.SettingsDaemon.DateTimeMechanism.service.in

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-12-13 13:57:01 UTC (rev 537546)
+++ PKGBUILD	2019-12-13 13:57:04 UTC (rev 537547)
@@ -1,40 +0,0 @@
-# Maintainer: Brad Fanella <cesura at archlinux.org>
-# Contributor: Martin Wimpress <code at flexion.org>
-
-pkgname=mate-settings-daemon
-pkgver=1.22.1
-pkgrel=1
-pkgdesc="The MATE Settings daemon"
-url="https://mate-desktop.org"
-arch=('x86_64')
-license=('GPL')
-depends=('dbus-glib' 'libcanberra' 'libmatekbd' 'libmatemixer' 'libnotify'
-         'mate-desktop' 'nss' 'polkit')
-makedepends=('intltool' 'python')
-optdepends=('libcanberra-pulse: PulseAudio support'
-            'pulseaudio-alsa: PulseAudio support')
-groups=('mate')
-conflicts=('mate-settings-daemon-gtk3')
-replaces=('mate-settings-daemon-gtk3')
-source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
-sha256sums=('37122a5aec96ebff25789be90e0a0f749eac096e8441babbbbe0c508be00bc45')
-
-build() {
-    	cd "${pkgname}-${pkgver}"
-    	./configure \
-        	--prefix=/usr \
-        	--libexecdir=/usr/lib/${pkgname} \
-        	--sysconfdir=/etc \
-        	--enable-polkit \
-        	--enable-pulse
-
-    	#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-    	sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-    	make
-}
-
-package() {
-    	cd "${pkgname}-${pkgver}"
-    	make DESTDIR="${pkgdir}" install
-}

Copied: mate-settings-daemon/repos/community-x86_64/PKGBUILD (from rev 537546, mate-settings-daemon/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-12-13 13:57:04 UTC (rev 537547)
@@ -0,0 +1,51 @@
+# Maintainer: Brad Fanella <cesura at archlinux.org>
+# Contributor: Martin Wimpress <code at flexion.org>
+
+pkgname=mate-settings-daemon
+pkgver=1.22.1
+pkgrel=2
+pkgdesc="The MATE Settings daemon"
+url="https://mate-desktop.org"
+arch=('x86_64')
+license=('GPL')
+depends=('dbus-glib' 'libcanberra' 'libmatekbd' 'libmatemixer' 'libnotify'
+         'mate-desktop' 'nss' 'polkit')
+makedepends=('intltool' 'python')
+optdepends=('libcanberra-pulse: PulseAudio support'
+            'pulseaudio-alsa: PulseAudio support')
+groups=('mate')
+conflicts=('mate-settings-daemon-gtk3')
+replaces=('mate-settings-daemon-gtk3')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"
+        '0001-dbus-sys-dir.patch')
+sha256sums=('37122a5aec96ebff25789be90e0a0f749eac096e8441babbbbe0c508be00bc45'
+            '8d1d02ce3545fd3fcda6a919844722623d393bb2bd526bd827eefc694fb5ade2')
+
+prepare() {
+	cd "${pkgname}-${pkgver}"
+
+	patch -Np1 < ../0001-dbus-sys-dir.patch
+
+	autoreconf -fi
+}
+
+build() {
+    	cd "${pkgname}-${pkgver}"
+    	./configure \
+        	--prefix=/usr \
+        	--libexecdir=/usr/lib/${pkgname} \
+        	--sysconfdir=/etc \
+        	--with-dbus-sys="/usr/share/dbus-1/system.d" \
+        	--enable-polkit \
+        	--enable-pulse
+
+    	#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+    	sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+    	make
+}
+
+package() {
+    	cd "${pkgname}-${pkgver}"
+    	make DESTDIR="${pkgdir}" install
+}



More information about the arch-commits mailing list