X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 42B73DC14DD for ; Sat, 19 Mar 2016 13:18:37 +0000 (UTC) Received: from mail-qk0-f173.google.com (mail-qk0-f173.google.com [209.85.220.173]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 15EA3DC00D8 for ; Sat, 19 Mar 2016 13:18:36 +0000 (UTC) Received: by mail-qk0-f173.google.com with SMTP id s68so60233441qkh.3 for ; Sat, 19 Mar 2016 06:18:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=dafiti.com.br; s=google; h=mime-version:from:to:cc:subject:date:message-id :content-transfer-encoding; bh=8/N5TNFyrcaGCaMArjBgJoQnewx+ULAItXxSxKJl9sM=; b=r9yawswTejaXxNlx0KLFdSizhm5d3lTbkq3+NifJJrVxLyWxXq+jRqSWYE8GvewrI1 08jIyEcXLfms3hPWzMfxek17xGYhX92wU5O1ULLsl9+SWPZOkuNyqziw6cgilECrwYz5 3Es9MtAsyD3kOJlQFa9PRYiCtNSgmkLtF/juA= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:to:cc:subject:date:message-id :content-transfer-encoding; bh=8/N5TNFyrcaGCaMArjBgJoQnewx+ULAItXxSxKJl9sM=; b=QLRWpUOPfHdc1TJ0HQ+22crysoM1/BiiehbUARtZp6gKYmlgMtA3UA1b7pPB+lpgU/ pr3jvnA5zqhfYugavdH3jAFj2t4mDvzCKjRir0QiYDgT4CPMvjMb9t3evuYNqXVSIzHY 1zUdXLSKF0qfqPR+sSjsEvpYbQiYerIX46plpkIteY4vgrKHGErnM0mGL14dkvCEuYzz pXP7+/sJgSAy354nXYWPGtm0VRgtbW3AGhstrqOg2igafl+xCsSmkC2oyufccKB+GjJ2 yqBE3ydhz9bkibzbyVR2L/Pt+tpsgBQ8B0rB+uWIMvzxVDhqmKIzuBbk2ds/oQ/2D0va NfCg== X-Gm-Message-State: AD7BkJKWBGBbRaKMq2NJxMXrsFXtTnWNXc8pu1RF99K4jiBQfYV2VLTnQ+q35+YWH+qzyg3KM2MejhvGpqlf7lgvuPNcjReNY74eyFoSGuvzWhuMpI3r4/2CW/idqyiIKfS4rXunemcNpa6X23VvJA== X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 X-Received: by 10.55.73.68 with SMTP id w65mr28812486qka.68.1458393516241; Sat, 19 Mar 2016 06:18:36 -0700 (PDT) Received: from localhost.localdomain ([201.52.216.254]) by smtp.gmail.com with ESMTPSA id f83sm8161482qkb.25.2016.03.19.06.18.34 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 19 Mar 2016 06:18:35 -0700 (PDT) From: Fabio da Silva Ribeiro To: alpine-aports@lists.alpinelinux.org Cc: Fabio da Silva Ribeiro Subject: [alpine-aports] [PATCH] testing/php7-redis: PHP7 Redis package Date: Sat, 19 Mar 2016 10:18:29 -0300 Message-Id: <1458393509-16902-1-git-send-email-silva.ribeiro@dafiti.com.br> X-Mailer: git-send-email 2.1.4 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: ClamAV using ClamSMTP --- testing/php7-redis/APKBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 testing/php7-redis/APKBUILD diff --git a/testing/php7-redis/APKBUILD b/testing/php7-redis/APKBUILD new file mode 100644 index 0000000..1c89fc3 --- /dev/null +++ b/testing/php7-redis/APKBUILD @@ -0,0 +1,38 @@ +# Contributor: Fabio Ribeiro +# Maintainer: Fabio Ribeiro +pkgname=3Dphp7-redis +_pkgreal=3Dredis +_pkgrepo=3Dphpredis +_pkgbranch=3Dphp7 +pkgver=3D2.2.8 +pkgrel=3D0 +pkgdesc=3D"PHP extension for interfacing with Redis (Dev PHP7)" +url=3D"https://github.com/$_pkgrepo/$_pkgrepo/tree/$_pkgbranch" +arch=3D"x86_64 armhf" +license=3D"PHP" +depends=3D +pecldepends=3D"php7-dev autoconf" +makedepends=3D"$pecldepends" +install=3D"" +subpackages=3D"" +source=3D"https://github.com/$_pkgrepo/$_pkgrepo/archive/$_pkgbranch.tar.g= z" + +_builddir=3D"$srcdir"/$_pkgrepo-$_pkgbranch + +build() { + cd "$_builddir" + phpize7 || return 1 + ./configure --prefix=3D/usr --with-php-config=3Dphp-config7 || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make INSTALL_ROOT=3D"$pkgdir"/ install || return 1 + install -d "$pkgdir"/etc/php7/conf.d || return 1 + echo "extension=3D$_pkgreal.so" > "$pkgdir"/etc/php7/conf.d/$_pkgreal.ini +} + +md5sums=3D"6c47b6722d2970267e0f6b4f85cff675 php7.tar.gz" +sha256sums=3D"9304805acbe5d7c9b4378279b27297bf1bddb96a66541c5e4b2fe22ffa22= 97f0 php7.tar.gz" +sha512sums=3D"3c943d21d305dfa8db6c56760031ac2e0de26a6282de0ddbbd61926cb336= c76160d3533087fa0198c45b3fb72fb2e9eae5d95189cb2dcace52861ce1a596b10f php7.= tar.gz" --=20 2.1.4 --=20 *** Esta mensagem, incluindo seus anexos, pode conter informa=E7=F5es confidenc= iais=20 e/ou privilegiadas. Se voc=EA n=E3o for a pessoa autorizada a receber esta= =20 mensagem, n=E3o pode usar, copiar ou divulgar as informa=E7=F5es nela conti= das ou=20 tomar qualquer a=E7=E3o baseada nessas informa=E7=F5es. Caso esta mensagem = tenha=20 sido recebida por engano, por favor avise imediatamente o remetente,=20 respondendo o e-mail e em seguida elimine-a do seu sistema. Agradecemos sua= =20 coopera=E7=E3o. This message, including any attachments, may contain confidential and/or=20 privileged information. If you are not the addressee or authorized to=20 receive this for the addressee, you must not use, copy, disclose or take=20 any action based on this message or any information herein. If you have=20 received this message in error, please advise the sender immediately by=20 reply e-mail and delete this message.Thank you for your cooperation --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---