From 2014b3fe8912bd8ac87346276973ca3513806897 Mon Sep 17 00:00:00 2001 From: Michael Palimaka Date: Fri, 9 Oct 2015 01:05:22 +1100 Subject: app-crypt/qca: remove old Package-Manager: portage-2.2.20.1 --- app-crypt/qca/files/qca-2.0.2-pcfilespath.patch | 13 ----- app-crypt/qca/files/qca-2.0.3+gcc-4.7.patch | 59 ---------------------- .../qca/files/qca-2.1.0.3-fix-signals-slots.patch | 28 ---------- 3 files changed, 100 deletions(-) delete mode 100644 app-crypt/qca/files/qca-2.0.2-pcfilespath.patch delete mode 100644 app-crypt/qca/files/qca-2.0.3+gcc-4.7.patch delete mode 100644 app-crypt/qca/files/qca-2.1.0.3-fix-signals-slots.patch (limited to 'app-crypt/qca/files') diff --git a/app-crypt/qca/files/qca-2.0.2-pcfilespath.patch b/app-crypt/qca/files/qca-2.0.2-pcfilespath.patch deleted file mode 100644 index c52e8e78071b..000000000000 --- a/app-crypt/qca/files/qca-2.0.2-pcfilespath.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: qca-2.0.2/configure -=================================================================== ---- qca-2.0.2.orig/configure -+++ qca-2.0.2/configure -@@ -937,7 +937,7 @@ public: - if(!pcfiles.isEmpty()) - { - str = QString( -- "pcfiles.path = \$\$LIBDIR/pkgconfig\n" -+ "pcfiles.path = \$\$LIBDIR/../pkgconfig\n" - "pcfiles.files = %1\n" - "INSTALLS += pcfiles\n" - ).arg(pcfiles.join(" ")); diff --git a/app-crypt/qca/files/qca-2.0.3+gcc-4.7.patch b/app-crypt/qca/files/qca-2.0.3+gcc-4.7.patch deleted file mode 100644 index 1752dff910ff..000000000000 --- a/app-crypt/qca/files/qca-2.0.3+gcc-4.7.patch +++ /dev/null @@ -1,59 +0,0 @@ ---- trunk/kdesupport/qca/src/botantools/botan/botan/secmem.h 2012/01/14 16:09:19 1273507 -+++ trunk/kdesupport/qca/src/botantools/botan/botan/secmem.h 2012/01/14 17:12:15 1273508 -@@ -191,15 +191,15 @@ - { - public: - MemoryVector& operator=(const MemoryRegion& in) -- { if(this != &in) set(in); return (*this); } -+ { if(this != &in) this->set(in); return (*this); } - - MemoryVector(u32bit n = 0) { MemoryRegion::init(false, n); } - MemoryVector(const T in[], u32bit n) -- { MemoryRegion::init(false); set(in, n); } -+ { MemoryRegion::init(false); this->set(in, n); } - MemoryVector(const MemoryRegion& in) -- { MemoryRegion::init(false); set(in); } -+ { MemoryRegion::init(false); this->set(in); } - MemoryVector(const MemoryRegion& in1, const MemoryRegion& in2) -- { MemoryRegion::init(false); set(in1); append(in2); } -+ { MemoryRegion::init(false); this->set(in1); append(in2); } - }; - - /************************************************* -@@ -210,15 +210,15 @@ - { - public: - SecureVector& operator=(const MemoryRegion& in) -- { if(this != &in) set(in); return (*this); } -+ { if(this != &in) this->set(in); return (*this); } - - SecureVector(u32bit n = 0) { MemoryRegion::init(true, n); } - SecureVector(const T in[], u32bit n) -- { MemoryRegion::init(true); set(in, n); } -+ { MemoryRegion::init(true); this->set(in, n); } - SecureVector(const MemoryRegion& in) -- { MemoryRegion::init(true); set(in); } -+ { MemoryRegion::init(true); this->set(in); } - SecureVector(const MemoryRegion& in1, const MemoryRegion& in2) -- { MemoryRegion::init(true); set(in1); append(in2); } -+ { MemoryRegion::init(true); this->set(in1); append(in2); } - }; - - /************************************************* -@@ -229,14 +229,14 @@ - { - public: - SecureBuffer& operator=(const SecureBuffer& in) -- { if(this != &in) set(in); return (*this); } -+ { if(this != &in) this->set(in); return (*this); } - - SecureBuffer() { MemoryRegion::init(true, L); } - SecureBuffer(const T in[], u32bit n) - { MemoryRegion::init(true, L); copy(in, n); } - private: - SecureBuffer& operator=(const MemoryRegion& in) -- { if(this != &in) set(in); return (*this); } -+ { if(this != &in) this->set(in); return (*this); } - }; - - } diff --git a/app-crypt/qca/files/qca-2.1.0.3-fix-signals-slots.patch b/app-crypt/qca/files/qca-2.1.0.3-fix-signals-slots.patch deleted file mode 100644 index d03a178a3c25..000000000000 --- a/app-crypt/qca/files/qca-2.1.0.3-fix-signals-slots.patch +++ /dev/null @@ -1,28 +0,0 @@ -From: Jan Grulich -Date: Thu, 17 Sep 2015 14:14:24 +0000 -Subject: Use Q_SLOTS/Q_SIGNALS instead of slots/signals in all headers from include dir -X-Git-Url: http://quickgit.kde.org/?p=qca.git&a=commitdiff&h=66b9754170759d9333d5fc1e348642814d0310dd ---- -Use Q_SLOTS/Q_SIGNALS instead of slots/signals in all headers from include dir -REVIEW:125289 ---- - - ---- a/include/QtCrypto/qca_safetimer.h -+++ b/include/QtCrypto/qca_safetimer.h -@@ -44,12 +44,12 @@ - void setSingleShot(bool singleShot); - int timerId() const; - --public slots: -+public Q_SLOTS: - void start(int msec); - void start(); - void stop(); - --signals: -+Q_SIGNALS: - void timeout(); - - protected: - -- cgit v1.2.3