Date: Tuesday, March 5, 2013 @ 18:32:57
  Author: giovanni
Revision: 179501

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

Added:
  crypto++/repos/extra-i686/PKGBUILD
    (from rev 179500, crypto++/trunk/PKGBUILD)
  crypto++/repos/extra-i686/libcrypto++.pc
    (from rev 179500, crypto++/trunk/libcrypto++.pc)
  crypto++/repos/extra-x86_64/PKGBUILD
    (from rev 179500, crypto++/trunk/PKGBUILD)
  crypto++/repos/extra-x86_64/libcrypto++.pc
    (from rev 179500, crypto++/trunk/libcrypto++.pc)
Deleted:
  crypto++/repos/extra-i686/PKGBUILD
  crypto++/repos/extra-i686/gcc4.7.patch
  crypto++/repos/extra-i686/libcrypto++.pc
  crypto++/repos/extra-x86_64/PKGBUILD
  crypto++/repos/extra-x86_64/gcc4.7.patch
  crypto++/repos/extra-x86_64/libcrypto++.pc

-----------------------------+
 extra-i686/PKGBUILD         |   87 +++++++++++++++++--------------------
 extra-i686/gcc4.7.patch     |   97 ------------------------------------------
 extra-i686/libcrypto++.pc   |   22 ++++-----
 extra-x86_64/PKGBUILD       |   87 +++++++++++++++++--------------------
 extra-x86_64/gcc4.7.patch   |   97 ------------------------------------------
 extra-x86_64/libcrypto++.pc |   22 ++++-----
 6 files changed, 104 insertions(+), 308 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2013-03-05 17:32:48 UTC (rev 179500)
+++ extra-i686/PKGBUILD 2013-03-05 17:32:57 UTC (rev 179501)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <[email protected]>
-# Contributor: Alexander Rødseth <[email protected]>
-# Contributor: Andrea Scarpino <[email protected]>
-# Contributor: Kritoke <[email protected]>
-# Contributor: jlvsimoes <[email protected]>
-
-pkgname=crypto++
-pkgver=5.6.1
-_srcver=561
-pkgrel=4
-pkgdesc="A free C++ class library of cryptographic schemes"
-arch=('i686' 'x86_64')
-url="http://www.cryptopp.com/";
-license=('custom')
-depends=('gcc-libs')
-makedepends=('unzip')
-source=("http://www.cryptopp.com/cryptopp${_srcver}.zip";
-        'libcrypto++.pc'
-        'gcc4.7.patch')
-md5sums=('96cbeba0907562b077e26bcffb483828'
-         '2337c6edbc552d9142cae8e0854715e7'
-         'cf26a783d9432e7f9ab7f14d3db3f196')
-
-build() {
-  cd ${srcdir}
-
-  # Fix gcc 4.7 build
-  patch -Np1 -i "${srcdir}/gcc4.7.patch"
-
-  sed -i -e 's/^CXXFLAGS/#CXXFLAGS/' GNUmakefile
-  export CXXFLAGS="${CXXFLAGS} -DNDEBUG -fPIC"
-  make -f GNUmakefile  
-  make libcryptopp.so
-}
-
-package() {
-  cd ${srcdir}
-
-  install -d ${pkgdir}/usr/{lib/pkgconfig,include/cryptopp}
-  install -m644 *.h ${pkgdir}/usr/include/cryptopp/
-  install -m644 libcryptopp.a "${pkgdir}/usr/lib/libcryptopp.a"
-  install -m644 libcryptopp.so "${pkgdir}/usr/lib/libcryptopp.so"
-  install -m644 ${srcdir}/libcrypto++.pc 
"${pkgdir}/usr/lib/pkgconfig/libcrypto++.pc"
-  install -D -m644 License.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: crypto++/repos/extra-i686/PKGBUILD (from rev 179500, 
crypto++/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD                         (rev 0)
+++ extra-i686/PKGBUILD 2013-03-05 17:32:57 UTC (rev 179501)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Giovanni Scafora <[email protected]>
+# Contributor: Alexander Rødseth <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+# Contributor: Kritoke <[email protected]>
+# Contributor: jlvsimoes <[email protected]>
+
+pkgname=crypto++
+pkgver=5.6.2
+_srcver=562
+pkgrel=1
+pkgdesc="A free C++ class library of cryptographic schemes"
+arch=('i686' 'x86_64')
+url="http://www.cryptopp.com/";
+license=('custom')
+depends=('gcc-libs')
+makedepends=('unzip')
+source=("http://www.cryptopp.com/cryptopp${_srcver}.zip";
+        'libcrypto++.pc')
+md5sums=('7ed022585698df48e65ce9218f6c6a67'
+         '46de3847c59ad16456fa863eb33e73b2')
+
+build() {
+  cd ${srcdir}
+
+  sed -i -e 's/^CXXFLAGS/#CXXFLAGS/' GNUmakefile
+  export CXXFLAGS="${CXXFLAGS} -DNDEBUG -fPIC"
+  make -f GNUmakefile  
+  make libcryptopp.so
+}
+
+package() {
+  cd ${srcdir}
+
+  install -d ${pkgdir}/usr/{lib/pkgconfig,include/cryptopp}
+  install -m644 *.h ${pkgdir}/usr/include/cryptopp/
+  install -m644 libcryptopp.a "${pkgdir}/usr/lib/libcryptopp.a"
+  install -m644 libcryptopp.so "${pkgdir}/usr/lib/libcryptopp.so"
+  install -m644 ${srcdir}/libcrypto++.pc 
"${pkgdir}/usr/lib/pkgconfig/libcrypto++.pc"
+  install -D -m644 License.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: extra-i686/gcc4.7.patch
===================================================================
--- extra-i686/gcc4.7.patch     2013-03-05 17:32:48 UTC (rev 179500)
+++ extra-i686/gcc4.7.patch     2013-03-05 17:32:57 UTC (rev 179501)
@@ -1,97 +0,0 @@
---- a/algebra.cpp      2010-08-06 18:44:32.000000000 +0200
-+++ b/algebra.cpp      2012-04-10 13:16:53.000000000 +0200
-@@ -58,7 +58,7 @@
-       Element g[3]={b, a};
-       unsigned int i0=0, i1=1, i2=2;
- 
--      while (!Equal(g[i1], this->Identity()))
-+      while (!this->Equal(g[i1], this->Identity()))
-       {
-               g[i2] = Mod(g[i0], g[i1]);
-               unsigned int t = i0; i0 = i1; i1 = i2; i2 = t;
---- a/eccrypto.cpp     2010-08-06 18:44:28.000000000 +0200
-+++ b/eccrypto.cpp     2012-04-10 13:19:36.000000000 +0200
-@@ -435,7 +435,7 @@
-       StringSource ssG(param.g, true, new HexDecoder);
-       Element G;
-       bool result = GetCurve().DecodePoint(G, ssG, 
(size_t)ssG.MaxRetrievable());
--      SetSubgroupGenerator(G);
-+      this->SetSubgroupGenerator(G);
-       assert(result);
- 
-       StringSource ssN(param.n, true, new HexDecoder);
-@@ -591,7 +591,7 @@
-       if (level >= 2 && pass)
-       {
-               const Integer &q = GetSubgroupOrder();
--              Element gq = gpc ? 
gpc->Exponentiate(this->GetGroupPrecomputation(), q) : ExponentiateElement(g, 
q);
-+              Element gq = gpc ? 
gpc->Exponentiate(this->GetGroupPrecomputation(), q) : 
this->ExponentiateElement(g, q);
-               pass = pass && IsIdentity(gq);
-       }
-       return pass;
-@@ -629,7 +629,7 @@
-       typename EC::Point P;
-       if (!this->GetGroupParameters().GetCurve().DecodePoint(P, bt, size))
-               BERDecodeError();
--      SetPublicElement(P);
-+      this->SetPublicElement(P);
- }
- 
- template <class EC>
---- a/eccrypto.h       2010-08-06 18:46:24.000000000 +0200
-+++ b/eccrypto.h       2012-04-10 13:23:09.000000000 +0200
-@@ -43,7 +43,7 @@
-       void Initialize(const EllipticCurve &ec, const Point &G, const Integer 
&n, const Integer &k = Integer::Zero())
-       {
-               this->m_groupPrecomputation.SetCurve(ec);
--              SetSubgroupGenerator(G);
-+              this->SetSubgroupGenerator(G);
-               m_n = n;
-               m_k = k;
-       }
-@@ -145,9 +145,9 @@
-       typedef typename EC::Point Element;
- 
-       void Initialize(const DL_GroupParameters_EC<EC> &params, const Element 
&Q)
--              {this->AccessGroupParameters() = params; SetPublicElement(Q);}
-+              {this->AccessGroupParameters() = params; 
this->SetPublicElement(Q);}
-       void Initialize(const EC &ec, const Element &G, const Integer &n, const 
Element &Q)
--              {this->AccessGroupParameters().Initialize(ec, G, n); 
SetPublicElement(Q);}
-+              {this->AccessGroupParameters().Initialize(ec, G, n); 
this->SetPublicElement(Q);}
- 
-       // X509PublicKey
-       void BERDecodePublicKey(BufferedTransformation &bt, bool 
parametersPresent, size_t size);
-@@ -166,9 +166,9 @@
-       void Initialize(const EC &ec, const Element &G, const Integer &n, const 
Integer &x)
-               {this->AccessGroupParameters().Initialize(ec, G, n); 
this->SetPrivateExponent(x);}
-       void Initialize(RandomNumberGenerator &rng, const 
DL_GroupParameters_EC<EC> &params)
--              {GenerateRandom(rng, params);}
-+              {this->GenerateRandom(rng, params);}
-       void Initialize(RandomNumberGenerator &rng, const EC &ec, const Element 
&G, const Integer &n)
--              {GenerateRandom(rng, DL_GroupParameters_EC<EC>(ec, G, n));}
-+              {this->GenerateRandom(rng, DL_GroupParameters_EC<EC>(ec, G, 
n));}
- 
-       // PKCS8PrivateKey
-       void BERDecodePrivateKey(BufferedTransformation &bt, bool 
parametersPresent, size_t size);
---- a/secblock.h       2012-04-10 13:25:40.000000000 +0200
-+++ b/secblock.h       2012-04-10 13:25:52.000000000 +0200
-@@ -88,7 +88,7 @@
- 
-       pointer allocate(size_type n, const void * = NULL)
-       {
--              CheckSize(n);
-+              this->CheckSize(n);
-               if (n == 0)
-                       return NULL;
- 
---- a/panama.cpp       2010-08-09 14:22:42.000000000 +0200
-+++ b/panama.cpp       2012-04-10 13:50:12.000000000 +0200
-@@ -422,7 +422,7 @@
- {
-       this->ThrowIfInvalidTruncatedSize(size);
- 
--      PadLastBlock(this->BLOCKSIZE, 0x01);
-+      this->PadLastBlock(this->BLOCKSIZE, 0x01);
-       
-       HashEndianCorrectedBlock(this->m_data);
- 

Deleted: extra-i686/libcrypto++.pc
===================================================================
--- extra-i686/libcrypto++.pc   2013-03-05 17:32:48 UTC (rev 179500)
+++ extra-i686/libcrypto++.pc   2013-03-05 17:32:57 UTC (rev 179501)
@@ -1,11 +0,0 @@
-# Written by Alexander Rødseth <[email protected]>
-
-prefix=/usr
-libdir=${prefix}/lib
-includedir=${prefix}/include
-
-Name: libcrypto++-5.6.1
-Description: Class library of cryptographic schemes
-Version: 5.6.1
-Libs: -L${libdir} -lcryptopp
-Cflags: -I${includedir} 

Copied: crypto++/repos/extra-i686/libcrypto++.pc (from rev 179500, 
crypto++/trunk/libcrypto++.pc)
===================================================================
--- extra-i686/libcrypto++.pc                           (rev 0)
+++ extra-i686/libcrypto++.pc   2013-03-05 17:32:57 UTC (rev 179501)
@@ -0,0 +1,11 @@
+# Written by Alexander Rødseth <[email protected]>
+
+prefix=/usr
+libdir=${prefix}/lib
+includedir=${prefix}/include
+
+Name: libcrypto++-5.6.2
+Description: Class library of cryptographic schemes
+Version: 5.6.2
+Libs: -L${libdir} -lcryptopp
+Cflags: -I${includedir} 

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD       2013-03-05 17:32:48 UTC (rev 179500)
+++ extra-x86_64/PKGBUILD       2013-03-05 17:32:57 UTC (rev 179501)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <[email protected]>
-# Contributor: Alexander Rødseth <[email protected]>
-# Contributor: Andrea Scarpino <[email protected]>
-# Contributor: Kritoke <[email protected]>
-# Contributor: jlvsimoes <[email protected]>
-
-pkgname=crypto++
-pkgver=5.6.1
-_srcver=561
-pkgrel=4
-pkgdesc="A free C++ class library of cryptographic schemes"
-arch=('i686' 'x86_64')
-url="http://www.cryptopp.com/";
-license=('custom')
-depends=('gcc-libs')
-makedepends=('unzip')
-source=("http://www.cryptopp.com/cryptopp${_srcver}.zip";
-        'libcrypto++.pc'
-        'gcc4.7.patch')
-md5sums=('96cbeba0907562b077e26bcffb483828'
-         '2337c6edbc552d9142cae8e0854715e7'
-         'cf26a783d9432e7f9ab7f14d3db3f196')
-
-build() {
-  cd ${srcdir}
-
-  # Fix gcc 4.7 build
-  patch -Np1 -i "${srcdir}/gcc4.7.patch"
-
-  sed -i -e 's/^CXXFLAGS/#CXXFLAGS/' GNUmakefile
-  export CXXFLAGS="${CXXFLAGS} -DNDEBUG -fPIC"
-  make -f GNUmakefile  
-  make libcryptopp.so
-}
-
-package() {
-  cd ${srcdir}
-
-  install -d ${pkgdir}/usr/{lib/pkgconfig,include/cryptopp}
-  install -m644 *.h ${pkgdir}/usr/include/cryptopp/
-  install -m644 libcryptopp.a "${pkgdir}/usr/lib/libcryptopp.a"
-  install -m644 libcryptopp.so "${pkgdir}/usr/lib/libcryptopp.so"
-  install -m644 ${srcdir}/libcrypto++.pc 
"${pkgdir}/usr/lib/pkgconfig/libcrypto++.pc"
-  install -D -m644 License.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: crypto++/repos/extra-x86_64/PKGBUILD (from rev 179500, 
crypto++/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD                               (rev 0)
+++ extra-x86_64/PKGBUILD       2013-03-05 17:32:57 UTC (rev 179501)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Giovanni Scafora <[email protected]>
+# Contributor: Alexander Rødseth <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+# Contributor: Kritoke <[email protected]>
+# Contributor: jlvsimoes <[email protected]>
+
+pkgname=crypto++
+pkgver=5.6.2
+_srcver=562
+pkgrel=1
+pkgdesc="A free C++ class library of cryptographic schemes"
+arch=('i686' 'x86_64')
+url="http://www.cryptopp.com/";
+license=('custom')
+depends=('gcc-libs')
+makedepends=('unzip')
+source=("http://www.cryptopp.com/cryptopp${_srcver}.zip";
+        'libcrypto++.pc')
+md5sums=('7ed022585698df48e65ce9218f6c6a67'
+         '46de3847c59ad16456fa863eb33e73b2')
+
+build() {
+  cd ${srcdir}
+
+  sed -i -e 's/^CXXFLAGS/#CXXFLAGS/' GNUmakefile
+  export CXXFLAGS="${CXXFLAGS} -DNDEBUG -fPIC"
+  make -f GNUmakefile  
+  make libcryptopp.so
+}
+
+package() {
+  cd ${srcdir}
+
+  install -d ${pkgdir}/usr/{lib/pkgconfig,include/cryptopp}
+  install -m644 *.h ${pkgdir}/usr/include/cryptopp/
+  install -m644 libcryptopp.a "${pkgdir}/usr/lib/libcryptopp.a"
+  install -m644 libcryptopp.so "${pkgdir}/usr/lib/libcryptopp.so"
+  install -m644 ${srcdir}/libcrypto++.pc 
"${pkgdir}/usr/lib/pkgconfig/libcrypto++.pc"
+  install -D -m644 License.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: extra-x86_64/gcc4.7.patch
===================================================================
--- extra-x86_64/gcc4.7.patch   2013-03-05 17:32:48 UTC (rev 179500)
+++ extra-x86_64/gcc4.7.patch   2013-03-05 17:32:57 UTC (rev 179501)
@@ -1,97 +0,0 @@
---- a/algebra.cpp      2010-08-06 18:44:32.000000000 +0200
-+++ b/algebra.cpp      2012-04-10 13:16:53.000000000 +0200
-@@ -58,7 +58,7 @@
-       Element g[3]={b, a};
-       unsigned int i0=0, i1=1, i2=2;
- 
--      while (!Equal(g[i1], this->Identity()))
-+      while (!this->Equal(g[i1], this->Identity()))
-       {
-               g[i2] = Mod(g[i0], g[i1]);
-               unsigned int t = i0; i0 = i1; i1 = i2; i2 = t;
---- a/eccrypto.cpp     2010-08-06 18:44:28.000000000 +0200
-+++ b/eccrypto.cpp     2012-04-10 13:19:36.000000000 +0200
-@@ -435,7 +435,7 @@
-       StringSource ssG(param.g, true, new HexDecoder);
-       Element G;
-       bool result = GetCurve().DecodePoint(G, ssG, 
(size_t)ssG.MaxRetrievable());
--      SetSubgroupGenerator(G);
-+      this->SetSubgroupGenerator(G);
-       assert(result);
- 
-       StringSource ssN(param.n, true, new HexDecoder);
-@@ -591,7 +591,7 @@
-       if (level >= 2 && pass)
-       {
-               const Integer &q = GetSubgroupOrder();
--              Element gq = gpc ? 
gpc->Exponentiate(this->GetGroupPrecomputation(), q) : ExponentiateElement(g, 
q);
-+              Element gq = gpc ? 
gpc->Exponentiate(this->GetGroupPrecomputation(), q) : 
this->ExponentiateElement(g, q);
-               pass = pass && IsIdentity(gq);
-       }
-       return pass;
-@@ -629,7 +629,7 @@
-       typename EC::Point P;
-       if (!this->GetGroupParameters().GetCurve().DecodePoint(P, bt, size))
-               BERDecodeError();
--      SetPublicElement(P);
-+      this->SetPublicElement(P);
- }
- 
- template <class EC>
---- a/eccrypto.h       2010-08-06 18:46:24.000000000 +0200
-+++ b/eccrypto.h       2012-04-10 13:23:09.000000000 +0200
-@@ -43,7 +43,7 @@
-       void Initialize(const EllipticCurve &ec, const Point &G, const Integer 
&n, const Integer &k = Integer::Zero())
-       {
-               this->m_groupPrecomputation.SetCurve(ec);
--              SetSubgroupGenerator(G);
-+              this->SetSubgroupGenerator(G);
-               m_n = n;
-               m_k = k;
-       }
-@@ -145,9 +145,9 @@
-       typedef typename EC::Point Element;
- 
-       void Initialize(const DL_GroupParameters_EC<EC> &params, const Element 
&Q)
--              {this->AccessGroupParameters() = params; SetPublicElement(Q);}
-+              {this->AccessGroupParameters() = params; 
this->SetPublicElement(Q);}
-       void Initialize(const EC &ec, const Element &G, const Integer &n, const 
Element &Q)
--              {this->AccessGroupParameters().Initialize(ec, G, n); 
SetPublicElement(Q);}
-+              {this->AccessGroupParameters().Initialize(ec, G, n); 
this->SetPublicElement(Q);}
- 
-       // X509PublicKey
-       void BERDecodePublicKey(BufferedTransformation &bt, bool 
parametersPresent, size_t size);
-@@ -166,9 +166,9 @@
-       void Initialize(const EC &ec, const Element &G, const Integer &n, const 
Integer &x)
-               {this->AccessGroupParameters().Initialize(ec, G, n); 
this->SetPrivateExponent(x);}
-       void Initialize(RandomNumberGenerator &rng, const 
DL_GroupParameters_EC<EC> &params)
--              {GenerateRandom(rng, params);}
-+              {this->GenerateRandom(rng, params);}
-       void Initialize(RandomNumberGenerator &rng, const EC &ec, const Element 
&G, const Integer &n)
--              {GenerateRandom(rng, DL_GroupParameters_EC<EC>(ec, G, n));}
-+              {this->GenerateRandom(rng, DL_GroupParameters_EC<EC>(ec, G, 
n));}
- 
-       // PKCS8PrivateKey
-       void BERDecodePrivateKey(BufferedTransformation &bt, bool 
parametersPresent, size_t size);
---- a/secblock.h       2012-04-10 13:25:40.000000000 +0200
-+++ b/secblock.h       2012-04-10 13:25:52.000000000 +0200
-@@ -88,7 +88,7 @@
- 
-       pointer allocate(size_type n, const void * = NULL)
-       {
--              CheckSize(n);
-+              this->CheckSize(n);
-               if (n == 0)
-                       return NULL;
- 
---- a/panama.cpp       2010-08-09 14:22:42.000000000 +0200
-+++ b/panama.cpp       2012-04-10 13:50:12.000000000 +0200
-@@ -422,7 +422,7 @@
- {
-       this->ThrowIfInvalidTruncatedSize(size);
- 
--      PadLastBlock(this->BLOCKSIZE, 0x01);
-+      this->PadLastBlock(this->BLOCKSIZE, 0x01);
-       
-       HashEndianCorrectedBlock(this->m_data);
- 

Deleted: extra-x86_64/libcrypto++.pc
===================================================================
--- extra-x86_64/libcrypto++.pc 2013-03-05 17:32:48 UTC (rev 179500)
+++ extra-x86_64/libcrypto++.pc 2013-03-05 17:32:57 UTC (rev 179501)
@@ -1,11 +0,0 @@
-# Written by Alexander Rødseth <[email protected]>
-
-prefix=/usr
-libdir=${prefix}/lib
-includedir=${prefix}/include
-
-Name: libcrypto++-5.6.1
-Description: Class library of cryptographic schemes
-Version: 5.6.1
-Libs: -L${libdir} -lcryptopp
-Cflags: -I${includedir} 

Copied: crypto++/repos/extra-x86_64/libcrypto++.pc (from rev 179500, 
crypto++/trunk/libcrypto++.pc)
===================================================================
--- extra-x86_64/libcrypto++.pc                         (rev 0)
+++ extra-x86_64/libcrypto++.pc 2013-03-05 17:32:57 UTC (rev 179501)
@@ -0,0 +1,11 @@
+# Written by Alexander Rødseth <[email protected]>
+
+prefix=/usr
+libdir=${prefix}/lib
+includedir=${prefix}/include
+
+Name: libcrypto++-5.6.2
+Description: Class library of cryptographic schemes
+Version: 5.6.2
+Libs: -L${libdir} -lcryptopp
+Cflags: -I${includedir} 

Reply via email to