X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-qt0-f182.google.com (mail-qt0-f182.google.com [209.85.216.182]) by lists.alpinelinux.org (Postfix) with ESMTP id 5C42A5C481E for ; Sun, 9 Apr 2017 15:25:30 +0000 (GMT) Received: by mail-qt0-f182.google.com with SMTP id i34so89432627qtc.0 for ; Sun, 09 Apr 2017 08:25:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=4pX1ua7ZwnoBuy5+4L644Bg1EJYo/2/2EzPtk4dyaoE=; b=a1ntycAwqY9WmDH9VdEOi96keuAI1Yvns96qTAtfvnKf/buTPsvEAkGhj4wi1B0D2J A8CUbriL6qyNRFH3Cb8Mkhr5ciD+0QDCfEUOMsObjCBxPzjx3wqkXmMQ6FiCnGdC7lMR 758K7TfGps4kl06PNL67ghsH+CviFqOOaC47niX5tmUJFNNuA8Pu6LIjY35iYUiq8fK9 eRHSdliAXpvgam97i5tIp3BfNNGEOkP0Os/ED6oH4L8AQBiCZyADFhvpbuB57TE3c96a 34DLB8ZnYQn4SDlwDLNrV/aOjZN5caTH57xVpEVh1yvalh3GXxAwmfeyfetU7z4+P1DD 6Hcg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=4pX1ua7ZwnoBuy5+4L644Bg1EJYo/2/2EzPtk4dyaoE=; b=FIT4R5S7s69appBqIa8QnLiP0ekHxXDj7kpctjw2JE0BlCfEPEdgmqB4rYDT0lFf9e L6Mv7xuFlgefafNt+8BCDnKbwAPsyD4nU78eyDe3X+e4D5IeEQp9zEoyFIn1WXtZ5Xun xEviT+I3KdOQqGp5eV320NW1raL5VqBa/CVo1nA6MiDZgUilfywrHRGKWkB/Ds3h7zaZ e2t/YtZjSAMQ/N6ioirDFSqNjExNVXSFGjkwY1iL30/YtQ34Ssb/mB5k+6ibGFzGUFxf wXKrpEcrUk8mhBN79rQRv9bJd4Znz+v/bjOkvFvPWTvieIqd+B9CKCNtmDlIulL8CGQa 5YnA== X-Gm-Message-State: AFeK/H0Ux0jn3aieLI6GSW/wV5+KsGxCQSCmPvygN4FVwNHq3vC88mg+dNjVMXjjfH16VA== X-Received: by 10.200.3.46 with SMTP id q46mr52624990qtg.243.1491751529902; Sun, 09 Apr 2017 08:25:29 -0700 (PDT) Received: from kotzen.local.name ([177.140.141.3]) by smtp.gmail.com with ESMTPSA id o41sm7051884qto.3.2017.04.09.08.25.28 (version=TLS1 cipher=AES128-SHA bits=128/128); Sun, 09 Apr 2017 08:25:29 -0700 (PDT) From: Fabio Ribeiro To: alpine-aports@lists.alpinelinux.org Cc: Fabio Ribeiro Subject: [alpine-aports] [PATCH] testing/php7-redis: Package update Date: Sun, 9 Apr 2017 12:25:16 -0300 Message-Id: <20170409152516.25855-1-fabiorphp@gmail.com> X-Mailer: git-send-email 2.11.0 (Apple Git-81) X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/php7-redis/APKBUILD | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/testing/php7-redis/APKBUILD b/testing/php7-redis/APKBUILD index 59d3824eaa..c0752cb1b2 100644 --- a/testing/php7-redis/APKBUILD +++ b/testing/php7-redis/APKBUILD @@ -2,23 +2,19 @@ # Maintainer: Fabio Ribeiro pkgname=php7-redis _pkgreal=redis -_pkgrepo=phpredis -pkgver=3.0.0 -# There's no tag for php7 variant; this is SHA of the commit in the php7 branch -# with version bump. -_pkgrev=64479400a0b3c7b8b006e5de905836e4d764a763 -pkgrel=1 -pkgdesc="PHP extension for interfacing with Redis (Dev PHP7)" -url="https://github.com/$_pkgrepo/$_pkgrepo/tree/php7" -arch="x86_64 armhf" +pkgver=3.1.2 +pkgrel=0 +pkgdesc="PHP extension for interfacing with Redis" +url="https://pecl.php.net/package/redis" +arch="all" license="PHP" depends="php7-session" -pecldepends="php7-dev autoconf" -makedepends="$pecldepends" +makedepends="php7-dev autoconf" install="" subpackages="" -source="$_pkgrepo-$_pkgrev.tar.gz::https://github.com/$_pkgrepo/$_pkgrepo/archive/$_pkgrev.tar.gz" -builddir="$srcdir/$_pkgrepo-$_pkgrev" +source="http://pecl.php.net/get/$_pkgreal-$pkgver.tgz" + +builddir="$srcdir"/$_pkgreal-$pkgver build() { cd "$builddir" @@ -34,6 +30,6 @@ package() { echo "extension=$_pkgreal.so" > "$pkgdir"/etc/php7/conf.d/20_$_pkgreal.ini } -md5sums="b9715c6b71e1461e06f42d52aa9d3672 phpredis-64479400a0b3c7b8b006e5de905836e4d764a763.tar.gz" -sha256sums="b1dd5138030ee7dfb71e15b6a08f7fae7f757c1b04797eeb409a142c6a2cc400 phpredis-64479400a0b3c7b8b006e5de905836e4d764a763.tar.gz" -sha512sums="9ab5efbf2cd87a2ce7fca7088001951bd07ab85ceafff4953af4994086f5934eb36b19763045bb85d479432cd0803254202072faaf11fbdccec82a7c4a8d2c18 phpredis-64479400a0b3c7b8b006e5de905836e4d764a763.tar.gz" +md5sums="90dbb6388c886356adea361df3c5c413 redis-3.1.2.tgz" +sha256sums="a7687d007e48bef92049b8f53b425244d663da57d6b646d139248839e01f4ea3 redis-3.1.2.tgz" +sha512sums="14b6321072f8ab41b8293b40ea8e1e2bdac1bb694c4566467ea4e6ced37c8fc41bf5712bd27cebf509f25fda0492765cd2c8d2fe61395bcb0b0d9cbbceebe684 redis-3.1.2.tgz" -- 2.11.0 (Apple Git-81) --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---