Hello community, here is the log from the commit of package libcryptopp for openSUSE:Factory checked in at 2012-03-20 11:28:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libcryptopp (Old) and /work/SRC/openSUSE:Factory/.libcryptopp.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libcryptopp", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/libcryptopp/libcryptopp.changes 2012-02-07 14:46:05.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.libcryptopp.new/libcryptopp.changes 2012-03-20 11:30:08.000000000 +0100 @@ -1,0 +2,5 @@ +Sat Mar 17 14:25:26 UTC 2012 - [email protected] + +- Add libcryptopp-gcc47.patch: Fix build with gcc 4.7. + +------------------------------------------------------------------- New: ---- libcryptopp-gcc47.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libcryptopp.spec ++++++ --- /var/tmp/diff_new_pack.pwWSFX/_old 2012-03-20 11:30:10.000000000 +0100 +++ /var/tmp/diff_new_pack.pwWSFX/_new 2012-03-20 11:30:10.000000000 +0100 @@ -15,6 +15,7 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + Name: libcryptopp Version: 5.6.1 Release: 0 @@ -30,6 +31,7 @@ Source: cryptopp%{pkg_version}.tar.bz2 Source2: cryptopp.pc Patch1: libcryptopp-shared.patch +Patch2: libcryptopp-gcc47.patch BuildRequires: gcc-c++ BuildRequires: libstdc++-devel BuildRequires: pkg-config @@ -56,6 +58,7 @@ %prep %setup -q -c "%{name}-%{version}" %patch1 +%patch2 -p1 %build make %{?_smp_mflags} \ ++++++ libcryptopp-gcc47.patch ++++++ Index: libcryptopp-5.6.1/eccrypto.h =================================================================== --- libcryptopp-5.6.1.orig/eccrypto.h +++ libcryptopp-5.6.1/eccrypto.h @@ -43,7 +43,7 @@ public: 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 @@ public: typedef typename EC::Point Element; void Initialize(const DL_GroupParameters_EC<EC> ¶ms, 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 @@ public: 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> ¶ms) - {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); Index: libcryptopp-5.6.1/secblock.h =================================================================== --- libcryptopp-5.6.1.orig/secblock.h +++ libcryptopp-5.6.1/secblock.h @@ -88,7 +88,7 @@ public: pointer allocate(size_type n, const void * = NULL) { - CheckSize(n); + this->CheckSize(n); if (n == 0) return NULL; Index: libcryptopp-5.6.1/eccrypto.cpp =================================================================== --- libcryptopp-5.6.1.orig/eccrypto.cpp +++ libcryptopp-5.6.1/eccrypto.cpp @@ -435,7 +435,7 @@ template <class EC> void DL_GroupParamet 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 @@ bool DL_GroupParameters_EC<EC>::Validate 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 @@ void DL_PublicKey_EC<EC>::BERDecodePubli typename EC::Point P; if (!this->GetGroupParameters().GetCurve().DecodePoint(P, bt, size)) BERDecodeError(); - SetPublicElement(P); + this->SetPublicElement(P); } template <class EC> Index: libcryptopp-5.6.1/algebra.cpp =================================================================== --- libcryptopp-5.6.1.orig/algebra.cpp +++ libcryptopp-5.6.1/algebra.cpp @@ -58,7 +58,7 @@ template <class T> const T& AbstractEucl 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; Index: libcryptopp-5.6.1/panama.cpp =================================================================== --- libcryptopp-5.6.1.orig/panama.cpp +++ libcryptopp-5.6.1/panama.cpp @@ -422,7 +422,7 @@ void PanamaHash<B>::TruncatedFinal(byte { this->ThrowIfInvalidTruncatedSize(size); - PadLastBlock(this->BLOCKSIZE, 0x01); + this->PadLastBlock(this->BLOCKSIZE, 0x01); HashEndianCorrectedBlock(this->m_data); -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
