diff options
author | Jason E. Hale <jhale@FreeBSD.org> | 2016-11-26 23:41:16 +0000 |
---|---|---|
committer | Jason E. Hale <jhale@FreeBSD.org> | 2016-11-26 23:41:16 +0000 |
commit | d32b8fe316925be3d05e22f643f44fedfae8b961 (patch) | |
tree | 1e863b1e1d51ff45d4b7cc6dddb94bc72e38f36b /security/gpgme/files/patch-git_b4658f6a1 | |
parent | The Unicode Character Database (UCD) consists of a number of data files listing (diff) |
Update security/gpgme-* to 1.8.0
In this version, libgpgme-pthread.so has been removed in favor of just
using libgpgme.so as the thread-safe library. PORTREVISION has been
bumped on all ports depending on security/gpgme so that any that may have
linked to -lgpgme-pthread will link to -lgpgme instead.
The Python module provided by security/py-gpgme has been renamed upstream
from pyme3 to gpg. This removes the conflict with security/py-pyme,
although security/py-gpgme is still the direct replacement of that
module.
Diffstat (limited to 'security/gpgme/files/patch-git_b4658f6a1')
-rw-r--r-- | security/gpgme/files/patch-git_b4658f6a1 | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/security/gpgme/files/patch-git_b4658f6a1 b/security/gpgme/files/patch-git_b4658f6a1 deleted file mode 100644 index 4017878fd83a..000000000000 --- a/security/gpgme/files/patch-git_b4658f6a1 +++ /dev/null @@ -1,35 +0,0 @@ -From: Andras Mantia <andras@kdab.com> -Date: Wed, 2 Nov 2016 09:23:42 +0000 (+0200) -Subject: qt: Fix build with g++ 4.8.x -X-Git-Tag: gpgme-1.8.0~36 -X-Git-Url: http://git.gnupg.org/cgi-bin/gitweb.cgi?p=gpgme.git;a=commitdiff_plain;h=b4658f6a1110bb0b54bd5dfc9df8e8b390e38d61 - -qt: Fix build with g++ 4.8.x - -* lang/qt/src/defaultkeygenerationjob.cpp -(DefaultKeyGenerationJob::start): Explicitly connect pointer -in the QPointer. - --- -Commit message written by Andre Heinecke <aheinecke@intevation.de> ---- - -diff --git a/lang/qt/src/defaultkeygenerationjob.cpp b/lang/qt/src/defaultkeygenerationjob.cpp -index d26e824..020f4d2 100644 ---- lang/qt/src/defaultkeygenerationjob.cpp -+++ lang/qt/src/defaultkeygenerationjob.cpp -@@ -105,11 +105,11 @@ GpgME::Error DefaultKeyGenerationJob::start(const QString &email, const QString - - d->job = openpgp()->keyGenerationJob(); - d->job->installEventFilter(this); -- connect(d->job, &KeyGenerationJob::result, -+ connect(d->job.data(), &KeyGenerationJob::result, - this, &DefaultKeyGenerationJob::result); -- connect(d->job, &KeyGenerationJob::done, -+ connect(d->job.data(), &KeyGenerationJob::done, - this, &DefaultKeyGenerationJob::done); -- connect(d->job, &KeyGenerationJob::done, -+ connect(d->job.data(), &KeyGenerationJob::done, - this, &QObject::deleteLater); - return d->job->start(args); - } |