X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by lists.alpinelinux.org (Postfix) with ESMTP id 1AA351EBFF1 for ; Fri, 24 Dec 2010 02:10:29 +0000 (UTC) Received: by iyb26 with SMTP id 26so5713343iyb.13 for ; Thu, 23 Dec 2010 18:10:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=o2bDew/fuKaHt2Ghx2hSBj5yvT+zB9Bd2/VSaapEWfE=; b=YC3P0aaIngIZHiw/0rV0XBuU0WGfQ0eW6dxz7W8xjvNU9XQnQ4mbDjJ3vyAHBTljRC 3+Z5nOxgY0P2CF6RWf9QSpxFP0qiKq4L93nH7vI8QQRRETlg9U88MmPpHC4krmB/SmJu f+U9ERtyw5NSCp2HhMH7W/y3hb9oX82xXDgXs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=L1kqir987AifwhRnnt00jOEgRniv/BcYVav4Yx/p3aeN36ni144qEfmNGMt9bKd/4Z MgRpJwI0pTcx4TmPK4abubRGmFcwNcWB6d+ZKhbI6jgBy7I/98M9Gympoek7yAoofj/H W5JPtFCd8T8K8xTgnKeiapzifTlx6uZ8JT/lM= Received: by 10.42.220.69 with SMTP id hx5mr6827572icb.336.1293156627232; Thu, 23 Dec 2010 18:10:27 -0800 (PST) Received: from localhost.localdomain (209.250.132.162.tor.pathcom.com [209.250.132.162]) by mx.google.com with ESMTPS id gy41sm7190889ibb.17.2010.12.23.18.10.24 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 23 Dec 2010 18:10:26 -0800 (PST) From: Jeff Bilyk To: alpine-devel@lists.alpinelinux.org Cc: Jeff Bilyk Subject: [alpine-devel] [PATCH] testing/apts: update APKBUILD to use git v0.1 instead of master Date: Thu, 23 Dec 2010 20:11:25 +0000 Message-Id: <1293135085-2976-1-git-send-email-jbilyk@gmail.com> X-Mailer: git-send-email 1.7.3.4 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: testing/apts: update APKBUILD to use git v0.1 instead of master --- testing/apts/APKBUILD | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/testing/apts/APKBUILD b/testing/apts/APKBUILD index ba6813c..9c437f2 100644 --- a/testing/apts/APKBUILD +++ b/testing/apts/APKBUILD @@ -2,12 +2,11 @@ # Maintainer: Jeff Bilyk pkgname=apts pkgver=0.1 -_pkgver="master" pkgrel=0 pkgdesc="APTS - Alpine Package Testing Suite" depends= makedepends= -source="http://git.alpinelinux.org/cgit/$pkgname/snapshot/$pkgname-$_pkgver.tar.bz2 +source="http://git.alpinelinux.org/cgit/$pkgname/snapshot/$pkgname-$pkgver.tar.bz2 " url="http://git.alpinelinux.org/cgit/apts/" arch="x86 x86_64" @@ -18,7 +17,7 @@ build() { } package() { - cd "$srcdir/$pkgname-$_pkgver" + cd "$srcdir/$pkgname-$pkgver" mkdir -p "$pkgdir"/etc/apts mkdir -p "$pkgdir"/usr/bin mkdir -p "$pkgdir"/usr/share/$pkgname/tests @@ -35,4 +34,4 @@ package() { done } -md5sums="0eead32c26a0224f9f7afcc013fc8f52 apts-master.tar.bz2" +md5sums="3fe0fe06d9319df862186258dc60d3d5 apts-0.1.tar.bz2" -- 1.7.3.4 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---