X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 4135ADC1432 for ; Thu, 27 Jun 2013 06:12:31 +0000 (UTC) Received: from compute5.internal (compute5.nyi.mail.srv.osa [10.202.2.45]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 4DC7020ED0 for ; Thu, 27 Jun 2013 02:12:26 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute5.internal (MEProxy); Thu, 27 Jun 2013 02:12:27 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id :in-reply-to:references; s=smtpout; bh=VW6GtIOj9KqHvoalKa5LCGTJ+ ws=; b=iP2xs5wGA7i1XIwY9M8ms6FnsNDbXQdCnW9+WmUQp6CNx8oMa93YXBFK4 fpklgLmBiSa1BAKf81QfXqHDUQwGXeKvn/DKFAewFQr+fomP3LBCJMstP0+3daIx rE3hCcdiCezs6XdJkiTm109PSw7leoGR/Bd6iyqfeNvqRg/PLY= X-Sasl-enc: b+0Ryj3p6WUhf8sFWi0vDDH+9Fu7PhqdEvNA63homNAK 1372313545 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id D7F99680475 for ; Thu, 27 Jun 2013 02:12:25 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 2/2] testing/getmail: fix some old shebang lines Date: Thu, 27 Jun 2013 02:12:25 -0400 Message-Id: X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <3bc8dd2376380a60e5ad04f133d9d12f8d0dd1e4.1372313545.git.dubiousjim@gmail.com> References: <3bc8dd2376380a60e5ad04f133d9d12f8d0dd1e4.1372313545.git.dubiousjim@gmail.com> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: To be honest, I think these are irrelevant to the functioning of the program, since the files in question are imported by the offlineimap app, rather than being run as scripts. (Not sure why the shebang lines are there at all...cruft?) --- testing/getmail/APKBUILD | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/getmail/APKBUILD b/testing/getmail/APKBUILD index b5dc763..013c863 100644 --- a/testing/getmail/APKBUILD +++ b/testing/getmail/APKBUILD @@ -33,6 +33,8 @@ build() { package() { cd "$_builddir" python setup.py install --prefix=/usr --root="$pkgdir" || return 1 + # fix some broken shebang calls + sed -i -e "s|#![ ]*/usr/bin/env python2\.3|#!/usr/bin/env python|" $(find $pkgdir -name '*.py') } md5sums="1ca7e1bc034cf5578e8ceb251668962a getmail-4.39.0.tar.gz" -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---