diff options
author | 2015-10-09 01:05:22 +1100 | |
---|---|---|
committer | 2015-11-11 03:29:44 +1100 | |
commit | 2014b3fe8912bd8ac87346276973ca3513806897 (patch) | |
tree | 81d5eeeecb66378800bfdfa61ea0e3ce79494578 /app-crypt/qca/files | |
parent | Remove several obsolete USE masks which were once attributed to dev-lang/php (diff) | |
download | gentoo-2014b3fe8912bd8ac87346276973ca3513806897.tar.gz gentoo-2014b3fe8912bd8ac87346276973ca3513806897.tar.bz2 gentoo-2014b3fe8912bd8ac87346276973ca3513806897.zip |
app-crypt/qca: remove old
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'app-crypt/qca/files')
-rw-r--r-- | app-crypt/qca/files/qca-2.0.2-pcfilespath.patch | 13 | ||||
-rw-r--r-- | app-crypt/qca/files/qca-2.0.3+gcc-4.7.patch | 59 | ||||
-rw-r--r-- | app-crypt/qca/files/qca-2.1.0.3-fix-signals-slots.patch | 28 |
3 files changed, 0 insertions, 100 deletions
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<T>& operator=(const MemoryRegion<T>& in) -- { if(this != &in) set(in); return (*this); } -+ { if(this != &in) this->set(in); return (*this); } - - MemoryVector(u32bit n = 0) { MemoryRegion<T>::init(false, n); } - MemoryVector(const T in[], u32bit n) -- { MemoryRegion<T>::init(false); set(in, n); } -+ { MemoryRegion<T>::init(false); this->set(in, n); } - MemoryVector(const MemoryRegion<T>& in) -- { MemoryRegion<T>::init(false); set(in); } -+ { MemoryRegion<T>::init(false); this->set(in); } - MemoryVector(const MemoryRegion<T>& in1, const MemoryRegion<T>& in2) -- { MemoryRegion<T>::init(false); set(in1); append(in2); } -+ { MemoryRegion<T>::init(false); this->set(in1); append(in2); } - }; - - /************************************************* -@@ -210,15 +210,15 @@ - { - public: - SecureVector<T>& operator=(const MemoryRegion<T>& in) -- { if(this != &in) set(in); return (*this); } -+ { if(this != &in) this->set(in); return (*this); } - - SecureVector(u32bit n = 0) { MemoryRegion<T>::init(true, n); } - SecureVector(const T in[], u32bit n) -- { MemoryRegion<T>::init(true); set(in, n); } -+ { MemoryRegion<T>::init(true); this->set(in, n); } - SecureVector(const MemoryRegion<T>& in) -- { MemoryRegion<T>::init(true); set(in); } -+ { MemoryRegion<T>::init(true); this->set(in); } - SecureVector(const MemoryRegion<T>& in1, const MemoryRegion<T>& in2) -- { MemoryRegion<T>::init(true); set(in1); append(in2); } -+ { MemoryRegion<T>::init(true); this->set(in1); append(in2); } - }; - - /************************************************* -@@ -229,14 +229,14 @@ - { - public: - SecureBuffer<T,L>& operator=(const SecureBuffer<T,L>& in) -- { if(this != &in) set(in); return (*this); } -+ { if(this != &in) this->set(in); return (*this); } - - SecureBuffer() { MemoryRegion<T>::init(true, L); } - SecureBuffer(const T in[], u32bit n) - { MemoryRegion<T>::init(true, L); copy(in, n); } - private: - SecureBuffer<T, L>& operator=(const MemoryRegion<T>& 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 <jgrulich@redhat.com> -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: - |