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 8EE525C50F1 for ; Tue, 12 Jun 2018 07:26:04 +0000 (GMT) Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 9DDE721280 for ; Tue, 12 Jun 2018 09:26:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1528788363; bh=KfSZRl+4/Y+FbNkP7vgoRqqBOsLNedOyr7pzy3XNiUg=; h=From:To:Cc:Subject:Date:From; b=mqyXKStyyhowXq6hNOJeJzwiLa+zVRHfF6rp2in3gCajcAohqy4SVypj59ZZnySWK XpOSidsNzGRoV1BPawUbtmdEq7W5xP/biF/YJLBwkl/EQO+9QzX8BdJkg6cqvsNnlm cuIlSHsYuEp2tmUTpMvxKlseCxPj9VCQcmIfFj0EtaM+f9QCXs3k5h+k8fIQk/I5wl EBewEZISQLUqucw4hgDYYMLY+0+ZPXFYNeS1eB5ShfSBh+pQOUxvM8c+03ktD34P5J vyB0p8mGmAZ2smQ92cK1Txg+cHYrm3DOiGFTlarTT87xkx1MIn/ocyBZDQZcz77vHG XXcXoBen7JroA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 414hJ83Mrbz9rxj; Tue, 12 Jun 2018 09:26:00 +0200 (CEST) From: Sascha Paunovic To: alpine-aports@lists.alpinelinux.org Cc: Sascha Paunovic Subject: [alpine-aports] [PATCH] testing/font-overpass: upgrade to 3.0.3 Date: Tue, 12 Jun 2018 09:25:55 +0200 Message-Id: <20180612072555.30656-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: - remove unused variables - remove unnecessary build() - fix build by creating the install directory first - take maintainership --- testing/font-overpass/APKBUILD | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/testing/font-overpass/APKBUILD b/testing/font-overpass/APKBUILD index 8cdec82e80..7387da7faf 100644 --- a/testing/font-overpass/APKBUILD +++ b/testing/font-overpass/APKBUILD @@ -1,30 +1,24 @@ # Contributor: Carlo Landmeter -# Maintainer: +# Maintainer: Sascha Paunovic pkgname=font-overpass -pkgver=3.0.2 +pkgver=3.0.3 pkgrel=0 pkgdesc="Overpass open source web font family" url="http://overpassfont.org/" arch="noarch" license="OFL-1.1" depends="fontconfig" -makedepends="" options="!check" -install="" -subpackages="" source="Overpass-$pkgver.tar.gz::https://github.com/RedHatBrand/Overpass/archive/$pkgver.tar.gz" builddir="$srcdir/Overpass-$pkgver" -build() { - return 0 -} - package() { cd "$builddir" + mkdir -p "$pkgdir"/usr/share/fonts/OTF install -Dm644 desktop-fonts/overpass/*.otf \ "$pkgdir"/usr/share/fonts/OTF install -Dm644 desktop-fonts/overpass-mono/*.otf \ "$pkgdir"/usr/share/fonts/OTF } -sha512sums="ea9dc82b6935c68f6208ae6ad95e488c01867064cb9c83e47c8bc8a8f767e4144ffc468ed1ae38d0f204b5ecb50b9147081411e7d9f21c0735125e7db6c22f58 Overpass-3.0.2.tar.gz" +sha512sums="d2a3284f6f82e80e46af23064a374da2926a3563ee668683aa1a8db7a9163cc80c4fa8a3077876dc552a36e9d621c45218df44485b7b6a6adc3fc6df62c448d0 Overpass-3.0.3.tar.gz" -- 2.17.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---