From d32b8fe316925be3d05e22f643f44fedfae8b961 Mon Sep 17 00:00:00 2001 From: "Jason E. Hale" Date: Sat, 26 Nov 2016 23:41:16 +0000 Subject: 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. --- security/gpgme/files/patch-git_b4658f6a1 | 35 -------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 security/gpgme/files/patch-git_b4658f6a1 (limited to 'security/gpgme/files/patch-git_b4658f6a1') 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 -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 ---- - -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); - } -- cgit v1.2.3