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 B9B48DC14DD for ; Sat, 19 Mar 2016 13:06: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 81E32DC00D8 for ; Sat, 19 Mar 2016 13:06:37 +0000 (UTC) Received: by mail-qk0-f173.google.com with SMTP id o6so60162252qkc.2 for ; Sat, 19 Mar 2016 06:06:37 -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=pDTjFmvaEofpHzlnN2shFxBOaB0+U4LoE3DmMMinopM=; b=UfFEi4gX7XXb6ThrMxFeAGCovmXqE5bVYQvZx8omFgd+RQcOJPXcE/LRjIP2nQ7o5W ohswojDbs4E8epqcXIVKHoBwfvWUThwqVdZDIzoPw8AjsJoXhi5lwgdFLMLaIXBO82yX fkPI5eNbA240EkEThuVeAlTLO1/F79JSWR9WA= 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=pDTjFmvaEofpHzlnN2shFxBOaB0+U4LoE3DmMMinopM=; b=ioftUAARwrRKBZiOuKOE++VRzYme/MdHejPbhfK0nUSurE9yFAscOZ+HMeRSG4ZKoO Il1qkDsGOFhJgPVTt20sev/t82tEeF8Ykil0whhAqlZEFL9jYTJdJYv24x/B3z6nT6ix a/SlqgIPXVsIivCUkqS5+ki20LHs836xHdW0VDOhVfqNw5YXIZpGBS2lvaZdsBDPn0HA xPtNEmH3vMVWb0YjwXv0lsfKS0IaWClN8mCXNyJK29MoCwEF9ZHEY8s3N5T6sCn0ezzD TwdhIgrAKVGSi8o3TNNXK/576KPDtOTf75Otdwr5KfCQSQzp6vps2puN6s9rd07pZykW gEMg== X-Gm-Message-State: AD7BkJK5v0AltmApxH7oTZv/IP/wC5Fkhs72V3oLtBekNLUZd4wIALowDiMuJscVkhwC9Vj/DszBfIMPLlwg7U65sh0rmW2slNj5eOm9CTK4EZUQeOhD5AhamsrlmvR9bdYT/RG3894cX0y4a32SSg== 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.75.144 with SMTP id y138mr29266564qka.96.1458392796513; Sat, 19 Mar 2016 06:06:36 -0700 (PDT) Received: from localhost.localdomain ([201.52.216.254]) by smtp.gmail.com with ESMTPSA id x64sm8071961qhx.47.2016.03.19.06.06.35 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 19 Mar 2016 06:06:36 -0700 (PDT) From: Fabio da Silva Ribeiro To: alpine-aports@lists.alpinelinux.org Cc: Fabio da Silva Ribeiro Subject: [alpine-aports] [PATCH] testing/php7-amqp: PHP7 AMQP Client Date: Sat, 19 Mar 2016 10:06:29 -0300 Message-Id: <1458392789-6474-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-amqp/APKBUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 testing/php7-amqp/APKBUILD diff --git a/testing/php7-amqp/APKBUILD b/testing/php7-amqp/APKBUILD new file mode 100644 index 0000000..0ce9dbd --- /dev/null +++ b/testing/php7-amqp/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: Fabio Ribeiro +# Maintainer: Fabio Ribeiro +pkgname=3Dphp7-amqp +_pkgreal=3Damqp +pkgver=3D1.7.0 +_pkgver=3D${pkgver}alpha2 +pkgrel=3D0 +pkgdesc=3D"Communicate with any AMQP compliant server" +url=3D"http://pecl.php.net/package/$_pkgreal" +arch=3D"x86_64 armhf" +license=3D"PHP" +depends=3D +pecldepends=3D"php7-dev autoconf rabbitmq-c" +makedepends=3D"$pecldepends" +install=3D"" +subpackages=3D"" +source=3D"http://pecl.php.net/get/$_pkgreal-$_pkgver.tgz" + +_builddir=3D"$srcdir"/$_pkgreal-$_pkgver + +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"bdd4a68f3a1f21091cc7e67c13cb1a64 amqp-1.7.0alpha2.tgz" +sha256sums=3D"ce61a679b2899aadfe2f57b7d03b8e8350d29071350df0b141ce85bf20f7= c607 amqp-1.7.0alpha2.tgz" +sha512sums=3D"601e88e4f62b651cde89b3fa792e419362b8cf307623e76763b220c8b810= 91e8f9073b95365305a730bae4932df7a0639eb02b9e9679d28a39f52278403001b4 amqp-= 1.7.0alpha2.tgz" --=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 ---