[arch-commits] Commit in qca/repos (8 files)

Pierre Schmitz pierre at nymeria.archlinux.org
Wed Jul 2 04:32:09 UTC 2014


    Date: Wednesday, July 2, 2014 @ 06:32:08
  Author: pierre
Revision: 216185

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  qca/repos/extra-i686/PKGBUILD
    (from rev 216184, qca/trunk/PKGBUILD)
  qca/repos/extra-i686/gcc47.patch
    (from rev 216184, qca/trunk/gcc47.patch)
  qca/repos/extra-x86_64/PKGBUILD
    (from rev 216184, qca/trunk/PKGBUILD)
  qca/repos/extra-x86_64/gcc47.patch
    (from rev 216184, qca/trunk/gcc47.patch)
Deleted:
  qca/repos/extra-i686/PKGBUILD
  qca/repos/extra-i686/gcc47.patch
  qca/repos/extra-x86_64/PKGBUILD
  qca/repos/extra-x86_64/gcc47.patch

--------------------------+
 /PKGBUILD                |   74 +++++++++++++++++++++++++++++++++++++++++++++
 /gcc47.patch             |   34 ++++++++++++++++++++
 extra-i686/PKGBUILD      |   37 ----------------------
 extra-i686/gcc47.patch   |   17 ----------
 extra-x86_64/PKGBUILD    |   37 ----------------------
 extra-x86_64/gcc47.patch |   17 ----------
 6 files changed, 108 insertions(+), 108 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2014-07-02 04:31:50 UTC (rev 216184)
+++ extra-i686/PKGBUILD	2014-07-02 04:32:08 UTC (rev 216185)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Pierre Schmitz <pierre at archlinux.de>
-
-pkgname=qca
-pkgver=2.0.3
-pkgrel=4
-pkgdesc="Qt Cryptographic Architecture"
-arch=('i686' 'x86_64')
-url="http://delta.affinix.com/qca/"
-license=('LGPL')
-depends=('qt4' 'ca-certificates')
-source=("http://delta.affinix.com/download/${pkgname}/2.0/${pkgname}-${pkgver}.tar.bz2"
-        'gcc47.patch')
-md5sums=('fc15bd4da22b8096c51fcfe52d2fa309'
-         'dffc7367152d8888c1447253a0387a2a')
-
-prepare() {
-	cd ${pkgname}-${pkgver}
-	patch -p0 -i "${srcdir}"/gcc47.patch
-}
-
-build() {
-	cd ${pkgname}-${pkgver}
-	./configure \
-		--prefix=/usr \
-		--disable-tests \
-		--certstore-path=/etc/ssl/certs/ca-certificates.crt \
-		--release \
-		--no-separate-debug-info
-	make
-}
-
-package() {
-	cd ${pkgname}-${pkgver}
-	make INSTALL_ROOT="${pkgdir}" install
-}

Copied: qca/repos/extra-i686/PKGBUILD (from rev 216184, qca/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2014-07-02 04:32:08 UTC (rev 216185)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Pierre Schmitz <pierre at archlinux.de>
+
+pkgname=qca
+pkgver=2.0.3
+pkgrel=5
+pkgdesc="Qt Cryptographic Architecture"
+arch=('i686' 'x86_64')
+url="http://delta.affinix.com/qca/"
+license=('LGPL')
+depends=('qt4' 'ca-certificates')
+source=("http://delta.affinix.com/download/${pkgname}/2.0/${pkgname}-${pkgver}.tar.bz2"
+        'gcc47.patch')
+md5sums=('fc15bd4da22b8096c51fcfe52d2fa309'
+         'dffc7367152d8888c1447253a0387a2a')
+
+prepare() {
+	cd ${pkgname}-${pkgver}
+	patch -p0 -i "${srcdir}"/gcc47.patch
+}
+
+build() {
+	cd ${pkgname}-${pkgver}
+	./configure \
+		--prefix=/usr \
+		--disable-tests \
+		--certstore-path=/etc/ssl/certs/ca-certificates.crt \
+		--release \
+		--no-separate-debug-info
+	make
+}
+
+package() {
+	cd ${pkgname}-${pkgver}
+	make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: extra-i686/gcc47.patch
===================================================================
--- extra-i686/gcc47.patch	2014-07-02 04:31:50 UTC (rev 216184)
+++ extra-i686/gcc47.patch	2014-07-02 04:32:08 UTC (rev 216185)
@@ -1,17 +0,0 @@
---- ./src/botantools/botan/botan/secmem.h.orig	2012-01-07 20:09:35.427999593 +0100
-+++ ./src/botantools/botan/botan/secmem.h	2012-01-07 20:09:52.540001422 +0100
-@@ -214,11 +214,11 @@
- 
-       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); }
-    };
- 
- /*************************************************

Copied: qca/repos/extra-i686/gcc47.patch (from rev 216184, qca/trunk/gcc47.patch)
===================================================================
--- extra-i686/gcc47.patch	                        (rev 0)
+++ extra-i686/gcc47.patch	2014-07-02 04:32:08 UTC (rev 216185)
@@ -0,0 +1,17 @@
+--- ./src/botantools/botan/botan/secmem.h.orig	2012-01-07 20:09:35.427999593 +0100
++++ ./src/botantools/botan/botan/secmem.h	2012-01-07 20:09:52.540001422 +0100
+@@ -214,11 +214,11 @@
+ 
+       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); }
+    };
+ 
+ /*************************************************

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2014-07-02 04:31:50 UTC (rev 216184)
+++ extra-x86_64/PKGBUILD	2014-07-02 04:32:08 UTC (rev 216185)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Pierre Schmitz <pierre at archlinux.de>
-
-pkgname=qca
-pkgver=2.0.3
-pkgrel=4
-pkgdesc="Qt Cryptographic Architecture"
-arch=('i686' 'x86_64')
-url="http://delta.affinix.com/qca/"
-license=('LGPL')
-depends=('qt4' 'ca-certificates')
-source=("http://delta.affinix.com/download/${pkgname}/2.0/${pkgname}-${pkgver}.tar.bz2"
-        'gcc47.patch')
-md5sums=('fc15bd4da22b8096c51fcfe52d2fa309'
-         'dffc7367152d8888c1447253a0387a2a')
-
-prepare() {
-	cd ${pkgname}-${pkgver}
-	patch -p0 -i "${srcdir}"/gcc47.patch
-}
-
-build() {
-	cd ${pkgname}-${pkgver}
-	./configure \
-		--prefix=/usr \
-		--disable-tests \
-		--certstore-path=/etc/ssl/certs/ca-certificates.crt \
-		--release \
-		--no-separate-debug-info
-	make
-}
-
-package() {
-	cd ${pkgname}-${pkgver}
-	make INSTALL_ROOT="${pkgdir}" install
-}

Copied: qca/repos/extra-x86_64/PKGBUILD (from rev 216184, qca/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2014-07-02 04:32:08 UTC (rev 216185)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Pierre Schmitz <pierre at archlinux.de>
+
+pkgname=qca
+pkgver=2.0.3
+pkgrel=5
+pkgdesc="Qt Cryptographic Architecture"
+arch=('i686' 'x86_64')
+url="http://delta.affinix.com/qca/"
+license=('LGPL')
+depends=('qt4' 'ca-certificates')
+source=("http://delta.affinix.com/download/${pkgname}/2.0/${pkgname}-${pkgver}.tar.bz2"
+        'gcc47.patch')
+md5sums=('fc15bd4da22b8096c51fcfe52d2fa309'
+         'dffc7367152d8888c1447253a0387a2a')
+
+prepare() {
+	cd ${pkgname}-${pkgver}
+	patch -p0 -i "${srcdir}"/gcc47.patch
+}
+
+build() {
+	cd ${pkgname}-${pkgver}
+	./configure \
+		--prefix=/usr \
+		--disable-tests \
+		--certstore-path=/etc/ssl/certs/ca-certificates.crt \
+		--release \
+		--no-separate-debug-info
+	make
+}
+
+package() {
+	cd ${pkgname}-${pkgver}
+	make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: extra-x86_64/gcc47.patch
===================================================================
--- extra-x86_64/gcc47.patch	2014-07-02 04:31:50 UTC (rev 216184)
+++ extra-x86_64/gcc47.patch	2014-07-02 04:32:08 UTC (rev 216185)
@@ -1,17 +0,0 @@
---- ./src/botantools/botan/botan/secmem.h.orig	2012-01-07 20:09:35.427999593 +0100
-+++ ./src/botantools/botan/botan/secmem.h	2012-01-07 20:09:52.540001422 +0100
-@@ -214,11 +214,11 @@
- 
-       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); }
-    };
- 
- /*************************************************

Copied: qca/repos/extra-x86_64/gcc47.patch (from rev 216184, qca/trunk/gcc47.patch)
===================================================================
--- extra-x86_64/gcc47.patch	                        (rev 0)
+++ extra-x86_64/gcc47.patch	2014-07-02 04:32:08 UTC (rev 216185)
@@ -0,0 +1,17 @@
+--- ./src/botantools/botan/botan/secmem.h.orig	2012-01-07 20:09:35.427999593 +0100
++++ ./src/botantools/botan/botan/secmem.h	2012-01-07 20:09:52.540001422 +0100
+@@ -214,11 +214,11 @@
+ 
+       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); }
+    };
+ 
+ /*************************************************




More information about the arch-commits mailing list