X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mout01.posteo.de (mout01.posteo.de [185.67.36.65]) by lists.alpinelinux.org (Postfix) with ESMTP id 678315C5116 for ; Thu, 7 Jun 2018 15:50:53 +0000 (GMT) Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id DFC5121025 for ; Thu, 7 Jun 2018 17:50:51 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1528386651; bh=q6hmRUfWgXyhjDuD4UTVCpDYE3Qc4YCokZDnTdgFPdA=; h=From:To:Cc:Subject:Date:From; b=moNIK/HHbyEcz6NethTYBn0eSsUg5N/Tq5Cbhd3ne91b4l99eqMVj7FBe+JL8+cO4 1wQFNNu0O6rE66PKTqVNOIZoNtUIobalH3vfqWTK5gGtbA5NI4xDMyKOXOOFOLmxnF bpy1SQrTCAYfzn5tC5kMEwmWalC5S0pG6eMvkRh1PNC0h4P9lw1rY+JWILDofPrnqS p4Jg5NSWI2YVwisbEo/P1j4A+dlIZAvrClc60Tboy/68gwiB+wHmZf6kdKESR5SrIL nyyAAz+L0NyuYPbK/iVbxqeXQKBLWU8f5qhJ49raXNkCpLEVPDWiOwtELZFZfrpabC USCOTu0M9rr2A== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 411qky1TJXz9rxg; Thu, 7 Jun 2018 17:50:50 +0200 (CEST) From: Sascha Paunovic To: alpine-aports@lists.alpinelinux.org Cc: Sascha Paunovic Subject: [alpine-aports] [PATCH] testing/font-tewi: upgrade to 2.0.2 Date: Thu, 7 Jun 2018 17:50:44 +0200 Message-Id: <20180607155044.3616-1-azarus@posteo.net> X-Mailer: git-send-email 2.17.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: while here, modernize, remove unneeded makedepends= on bash, remove now unnecessary python3 shebang changing --- testing/font-tewi/APKBUILD | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/testing/font-tewi/APKBUILD b/testing/font-tewi/APKBUILD index 633a03703c..3d7f70fa71 100644 --- a/testing/font-tewi/APKBUILD +++ b/testing/font-tewi/APKBUILD @@ -1,25 +1,20 @@ # Maintainer: Adrian Siekierka pkgname=font-tewi -pkgver=2.0.1 +pkgver=2.0.2 pkgrel=0 pkgdesc="tewi bitmap font" url="https://github.com/lucy/tewi-font" arch="noarch" license="MIT" depends="encodings font-alias mkfontscale mkfontdir fontconfig" -makedepends="bash font-util-dev python3 bdftopcf" -source="tewi-font-${pkgver}.tar.gz::https://github.com/lucy/tewi-font/archive/$pkgver.tar.gz" +makedepends="font-util-dev python3 bdftopcf" +source="tewi-font-$pkgver.tar.gz::https://github.com/lucy/tewi-font/archive/$pkgver.tar.gz" +options="!check" builddir="$srcdir/tewi-font-$pkgver" -prepare() { - cd "$builddir" - sed -i -e "s/env python/env python3/" scripts/diff.py || return 1 - sed -i -e "s/env python/env python3/" scripts/merge.py || return 1 -} - build() { cd "$builddir" - make || return 1 + make } package() { @@ -28,6 +23,4 @@ package() { install -Dm644 *.pcf.gz "$pkgdir/usr/share/fonts/misc" } -md5sums="59a96ba55b39b55bd2be87ad377e56d3 tewi-font-2.0.1.tar.gz" -sha256sums="0af4949608a9541b79d9aade3e3c4f019bd1fdb2590daecf9ce2d81659637aa3 tewi-font-2.0.1.tar.gz" -sha512sums="bec89fab374d919d17690d16c317ca5ee433159ccd51ab15f088e4754c8684a842e78a663c4f407a4c06d8c2678911240c66b14a833204f3a9103f778a2f9b20 tewi-font-2.0.1.tar.gz" +sha512sums="823b4c399a64ff66280323ae09f7f3c1dc51a7e2506acfcc9e8f509d600e7bc193e523755f0921921ceb09763e16babc5258467485d3a5260b37055bcfad9123 tewi-font-2.0.2.tar.gz" -- 2.17.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---