[arch-commits] Commit in cinnamon/trunk (PKGBUILD set_wheel.patch)

Antonio Rojas arojas at archlinux.org
Fri Nov 10 19:21:57 UTC 2017


    Date: Friday, November 10, 2017 @ 19:21:56
  Author: arojas
Revision: 266169

Update to 3.6.1

Modified:
  cinnamon/trunk/PKGBUILD
  cinnamon/trunk/set_wheel.patch

-----------------+
 PKGBUILD        |    8 ++++----
 set_wheel.patch |   14 +++++++-------
 2 files changed, 11 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2017-11-10 19:15:23 UTC (rev 266168)
+++ PKGBUILD	2017-11-10 19:21:56 UTC (rev 266169)
@@ -5,7 +5,7 @@
 # Contributor: CReimer
 
 pkgname=cinnamon
-pkgver=3.4.6
+pkgver=3.6.1
 pkgrel=1
 pkgdesc="Linux desktop which provides advanced innovative features and a traditional user experience"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
          'muffin' 'python2-cairo' 'python-dbus' 'python2-dbus' 'python2-pillow'
          'python2-pam' 'python2-pexpect' 'python2-pyinotify' 'python2-lxml'
          'cinnamon-control-center' 'cinnamon-screensaver' 'cinnamon-menus' 'libgnomekbd'
-         'network-manager-applet' 'nemo' 'polkit-gnome' 'xapps' 'python2-gobject')
+         'network-manager-applet' 'nemo' 'polkit-gnome' 'xapps' 'python2-gobject' 'gnome-bluetooth')
 makedepends=('gnome-common' 'intltool' 'gtk-doc' 'gobject-introspection')
 optdepends=('blueberry: Bluetooth support'
             'gnome-panel: fallback mode'
@@ -27,8 +27,8 @@
 source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz"
         "set_wheel.patch"
         "default-theme.patch")
-sha512sums=('b5fa337dc236204a09a3650ca40d2c2a996c9d1ff6f789834e757d50d68939914bf56d2d623ee5b6e57a180c02b803dbae6349ce1a9dd969b7a4c8bad1b9d8bd'
-            'cff8fb42a81d71b929327df5d56a68b68a96e79d4b85125ea7de0ed2dca53c6b45d08deccafa4453a7471f52aa6bf7d39ed979d2a085906997969a63e7dd7a8c'
+sha512sums=('5126085da85391b01b1a53f3bcef515f8ef1ddcc6842d2872dae647c885482dbd7d9386a6d70146a8509893cdc9a8752eeb9de98b1f09dd9dca1273d4c799a21'
+            '55929747b9cc1bc8893717c9fef257f8f2d560dc56849f1c74f88ed636b6f9f9997f6c4713768793b115e93482543a330b70eba672d696ea8456741ed2c71237'
             '3c460141b277df61c4546cc311fa5ecc7e7ea19a7d39a92d1d0214c37a91b4e163bc91823df7098bd2cf6fb430361cdb9839ab96abe53fe82f2a735e187de563')
             
 prepare() {

Modified: set_wheel.patch
===================================================================
--- set_wheel.patch	2017-11-10 19:15:23 UTC (rev 266168)
+++ set_wheel.patch	2017-11-10 19:21:56 UTC (rev 266169)
@@ -1,12 +1,12 @@
 --- a/files/usr/share/cinnamon/cinnamon-settings-users/cinnamon-settings-users.py
 +++ b/files/usr/share/cinnamon/cinnamon-settings-users/cinnamon-settings-users.py
-@@ -147,12 +147,11 @@
+@@ -153,12 +153,11 @@
  
  class PasswordDialog(Gtk.Dialog):
  
--    def __init__ (self, user, password_mask, group_mask):
-+    def __init__ (self, user, password_mask):
-         super(PasswordDialog, self).__init__()
+-    def __init__ (self, user, password_mask, group_mask, parent = None):
++    def __init__ (self, user, password_mask, parent = None):
+         super(PasswordDialog, self).__init__(None, parent)
  
          self.user = user
          self.password_mask = password_mask
@@ -14,7 +14,7 @@
  
          self.set_modal(True)
          self.set_skip_taskbar_hint(True)
-@@ -218,14 +217,7 @@
+@@ -224,14 +223,7 @@
      def change_password(self):
          newpass = self.new_password.get_text()
          self.user.set_password(newpass, "")
@@ -34,8 +34,8 @@
          model, treeiter = self.users_treeview.get_selection().get_selected()
          if treeiter != None:
              user = model[treeiter][INDEX_USER_OBJECT]
--            dialog = PasswordDialog(user, self.password_mask, self.groups_label)
-+            dialog = PasswordDialog(user, self.password_mask)
+-            dialog = PasswordDialog(user, self.password_mask, self.groups_label, self.window)
++            dialog = PasswordDialog(user, self.password_mask, self.window)
              response = dialog.run()
  
      def _on_groups_button_clicked(self, widget):



More information about the arch-commits mailing list