X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-lb0-f196.google.com (mail-lb0-f196.google.com [209.85.217.196]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 460F6DC0104 for ; Sun, 5 Oct 2014 10:58:51 +0000 (UTC) Received: by mail-lb0-f196.google.com with SMTP id w7so1083787lbi.11 for ; Sun, 05 Oct 2014 03:58:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=zuhfl8XEK5KUJwEWIetm23GdlTsu61Cdd7lrYZ7RWl4=; b=0UrM9mcJB/lZFGPiRQlI+xAvjEzLG6F6jGolynx97LHLb8tqgkaTlAuR9Rfb/Uhv6G iXZ/ltyTtRqhgM1nIpJdsSKtgfw+yjmD5wqcig31+nX5/Y5dqjubSBHpjb6lM0A9WFiW dPq6h2AqytRyaI+TLH1HgTxBcYu/ZWxn6CwoyNDmy4v+xPtfMK/ATUUMP53AP2X71BJ5 gO5L9hMER1CmWctL++Oms/ZZq66Qe2umRZbDB7woeScOGIByHOxaS7gh4sI6g4s0GIin xWZsG2Sm6xOAcrWoZs7N2GfivfIJZ2BfQkEDBQAX6V9/eLOljEF2mIRPPiecLcFypcMs UsvA== X-Received: by 10.112.12.5 with SMTP id u5mr1829090lbb.87.1412506729001; Sun, 05 Oct 2014 03:58:49 -0700 (PDT) Received: from alpine-dev.my.domain (92-100-235-178.dynamic.avangarddsl.ru. [92.100.235.178]) by mx.google.com with ESMTPSA id f6sm4618554lbh.10.2014.10.05.03.58.47 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 05 Oct 2014 03:58:48 -0700 (PDT) From: k0r10n To: alpine-devel@lists.alpinelinux.org Cc: k0r10n Subject: [alpine-devel] [PATCH] testing/qca: Upgrade and added patch Date: Sun, 5 Oct 2014 14:58:22 +0400 Message-Id: <1412506702-10392-1-git-send-email-k0r10n.dev@gmail.com> X-Mailer: git-send-email 2.0.0 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/qca/APKBUILD | 10 ++++++++-- testing/qca/secmem.patch | 11 +++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 testing/qca/secmem.patch diff --git a/testing/qca/APKBUILD b/testing/qca/APKBUILD index b11415f..9d0644d 100644 --- a/testing/qca/APKBUILD +++ b/testing/qca/APKBUILD @@ -12,7 +12,8 @@ depends_dev="qt-dev" makedepends="$depends_dev" install="" subpackages="$pkgname-dev $pkgname-doc" -source="http://delta.affinix.com/download/qca/2.0/qca-$pkgver.tar.bz2" +source="http://delta.affinix.com/download/qca/2.0/qca-$pkgver.tar.bz2 + secmem.patch" _builddir="$srcdir"/qca-$pkgver prepare() { @@ -37,4 +38,9 @@ package() { make INSTALL_ROOT="$pkgdir" install || return 1 } -md5sums="fc15bd4da22b8096c51fcfe52d2fa309 qca-2.0.3.tar.bz2" +md5sums="fc15bd4da22b8096c51fcfe52d2fa309 qca-2.0.3.tar.bz2 +53f5a927d6d654c5a82e106834e79985 secmem.patch" +sha256sums="8da20c89f390954fdcfcd3c4deef379213ddb5ae9d6b5e0c917d23f5e474895f qca-2.0.3.tar.bz2 +0bbe520dfe5f7d3114ed4b6cc772b0250472674b86415fe1d1aeaccaa7271257 secmem.patch" +sha512sums="c1120ffb373e294fbcc76e21dc2f503ebd3398b26d0ffa7ab7ee3a3e1a4228159358b59c2673ac4a1c2363771e61da54a5080b201c65d586ceda2e3b2facc1bb qca-2.0.3.tar.bz2 +a06519a055af21d53bed65d90e31089d3c1e3fdf2459c6c52c394678cb0775a5f262728617eecbbd9e8e7f0340c7aa9326a8eb030de6214e24d7590032db5444 secmem.patch" diff --git a/testing/qca/secmem.patch b/testing/qca/secmem.patch new file mode 100644 index 0000000..8f2306f --- /dev/null +++ b/testing/qca/secmem.patch @@ -0,0 +1,11 @@ +--- a/src/botantools/botan/botan/secmem.h ++++ b/src/botantools/botan/botan/secmem.h +@@ -214,7 +214,7 @@ + + 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); } + SecureVector(const MemoryRegion& in1, const MemoryRegion& in2) -- 2.0.0 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---