X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from apollo.thewebhostserver.com (apollomail.thewebhostserver.com [46.23.65.248]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 3008ADC0109 for ; Thu, 29 May 2014 16:00:25 +0000 (UTC) Received: from [81.4.121.188] (port=56581 helo=localhost.localdomain) by apollo.thewebhostserver.com with esmtpsa (UNKNOWN:AES128-SHA256:128) (Exim 4.82) (envelope-from ) id 1Wq2kd-0030EO-VV; Thu, 29 May 2014 17:00:20 +0100 From: Stuart Cardall To: alpine-devel@lists.alpinelinux.org Cc: Stuart Cardall Subject: [alpine-devel] [PATCH] testing/dnscrypt-proxy: fix setup-dnscrypt bug on MUSL Date: Thu, 29 May 2014 16:00:05 +0000 Message-Id: <1401379205-695-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 1.9.1 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - apollo.thewebhostserver.com X-AntiAbuse: Original Domain - lists.alpinelinux.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - it-offshore.co.uk X-Get-Message-Sender-Via: apollo.thewebhostserver.com: authenticated_id: developer@it-offshore.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: A small bugfix for /sbin/setup-dnscrypt that affects MUSL only. It removes tags left over in the Server List. Temporary workarounds for the remaining bugs in dnscrypt-proxy under MUSL are shown at https://bugs.alpinelinux.org/issues/2971 --- testing/dnscrypt-proxy/APKBUILD | 2 +- testing/dnscrypt-proxy/dnscrypt-proxy.setup | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/testing/dnscrypt-proxy/APKBUILD b/testing/dnscrypt-proxy/APKBUILD index 53e2488..49d6873 100644 --- a/testing/dnscrypt-proxy/APKBUILD +++ b/testing/dnscrypt-proxy/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Francesco Colista pkgname=dnscrypt-proxy pkgver=1.4.0 -pkgrel=0 +pkgrel=1 pkgdesc="A tool for securing communications between a client and a DNS resolver" url="http://dnscrypt.org/" arch="all" diff --git a/testing/dnscrypt-proxy/dnscrypt-proxy.setup b/testing/dnscrypt-proxy/dnscrypt-proxy.setup index f82e7c3..d1bd8f1 100644 --- a/testing/dnscrypt-proxy/dnscrypt-proxy.setup +++ b/testing/dnscrypt-proxy/dnscrypt-proxy.setup @@ -236,6 +236,8 @@ done #remove stray sed -i "s/^<\/td>//g" $output +#remove stray under MUSL C +sed -i "s/^//g" $output # delete empty lines sed -i '/^$/d' $output # change rows to columns -- 1.9.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---