diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2019-11-07 21:35:45 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2019-11-08 08:59:48 +0100 |
commit | e75021b101c4934014cd6f0b0e1944d0ace8ed83 (patch) | |
tree | 167576bcb2475f3051b3938f96ccc8dcdc16ed39 /source/l | |
parent | 28de491cabcc2ab8aeac49ec62bbf8f89422cd41 (diff) | |
download | current-e75021b101c4934014cd6f0b0e1944d0ace8ed83.tar.gz current-e75021b101c4934014cd6f0b0e1944d0ace8ed83.tar.xz |
Thu Nov 7 21:35:45 UTC 201920191107213545
l/system-config-printer-1.5.12-x86_64-1.txz: Upgraded.
n/sshfs-3.6.0-x86_64-1.txz: Upgraded.
xap/mozilla-thunderbird-68.2.2-x86_64-1.txz: Upgraded.
This is a bugfix release.
For more information, see:
https://www.mozilla.org/en-US/thunderbird/68.2.2/releasenotes/
Diffstat (limited to 'source/l')
-rwxr-xr-x | source/l/system-config-printer/system-config-printer.SlackBuild | 4 | ||||
-rw-r--r-- | source/l/system-config-printer/system-config-printer.auth.dialog.2766d74a.patch | 28 |
2 files changed, 1 insertions, 31 deletions
diff --git a/source/l/system-config-printer/system-config-printer.SlackBuild b/source/l/system-config-printer/system-config-printer.SlackBuild index 0530dfe6a..3d580729e 100755 --- a/source/l/system-config-printer/system-config-printer.SlackBuild +++ b/source/l/system-config-printer/system-config-printer.SlackBuild @@ -27,7 +27,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=system-config-printer VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-4} +BUILD=${BUILD:-1} NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} @@ -91,8 +91,6 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \+ -zcat $CWD/system-config-printer.auth.dialog.2766d74a.patch.gz | patch -p1 --verbose || exit 1 - # Configure: LDFLAGS="$SLKLDFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ diff --git a/source/l/system-config-printer/system-config-printer.auth.dialog.2766d74a.patch b/source/l/system-config-printer/system-config-printer.auth.dialog.2766d74a.patch deleted file mode 100644 index 1c67f1a56..000000000 --- a/source/l/system-config-printer/system-config-printer.auth.dialog.2766d74a.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 2766d74a98e44693f5e966d541a6303b966c088b Mon Sep 17 00:00:00 2001 -From: "Jan Alexander Steffens (heftig)" <jan.steffens@gmail.com> -Date: Thu, 8 Feb 2018 17:01:01 +0100 -Subject: [PATCH] Fix constructing the auth dialog - -47973c80 (Remove deprecated Gtk objects) broke the auth dialog. - -Fixes https://bugs.archlinux.org/task/57364. ---- - authconn.py | 2 -- - 1 file changed, 2 deletions(-) - -diff --git a/authconn.py b/authconn.py -index 2a645dccf..0f3021cb3 100644 ---- a/authconn.py -+++ b/authconn.py -@@ -78,11 +78,9 @@ def __init__ (self, title=None, parent=None, - field = auth_info_required[i] - label = Gtk.Label (label=_(self.AUTH_FIELD.get (field, field))) - label.set_alignment (0, 0.5) -- grid.attach (label, 0, 1, i, i + 1) - grid.attach (label, 0, i, 1, 1) - entry = Gtk.Entry () - entry.set_visibility (field != 'password') -- grid.attach (entry, 1, 2, i, i + 1, 0, 0) - grid.attach (entry, 1, i, 1, 1) - self.field_entry.append (entry) - |