X-Original-To: alpine-aports@lists.alpinelinux.org Received: from smtp.webfaction.com (mail6.webfaction.com [74.55.86.74]) by lists.alpinelinux.org (Postfix) with ESMTP id 355295C40FF for ; Tue, 7 Jun 2016 15:47:49 +0000 (GMT) Received: from abuild.nathanjohnson.info (c-71-236-42-116.hsd1.tn.comcast.net [71.236.42.116]) by smtp.webfaction.com (Postfix) with ESMTP id ECF5B20E8E3D; Tue, 7 Jun 2016 15:47:48 +0000 (UTC) Received: by abuild.nathanjohnson.info (Postfix, from userid 1001) id 665EF800D4; Tue, 7 Jun 2016 10:47:48 -0500 (CDT) From: Nathan Johnson To: alpine-aports@lists.alpinelinux.org Cc: Nathan Johnson Subject: [alpine-aports] [PATCH 2/2] testing/php5-couchbase renamed from php-couchbase Date: Tue, 7 Jun 2016 10:47:46 -0500 Message-Id: <20160607154746.4214-2-nathan@nathanjohnson.info> X-Mailer: git-send-email 2.8.3 In-Reply-To: <20160607154746.4214-1-nathan@nathanjohnson.info> References: <20160607154746.4214-1-nathan@nathanjohnson.info> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Also moving config from /etc/php/conf.d to /etc/php5/conf.d --- testing/php-couchbase/APKBUILD | 37 ------------------------------------- testing/php5-couchbase/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 37 deletions(-) delete mode 100644 testing/php-couchbase/APKBUILD create mode 100644 testing/php5-couchbase/APKBUILD diff --git a/testing/php-couchbase/APKBUILD b/testing/php-couchbase/APKBUILD deleted file mode 100644 index cd89717..0000000 --- a/testing/php-couchbase/APKBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# Contributor: Nathan Johnson -# Maintainer: Nathan Johnson -pkgname=php-couchbase -_pkgreal=couchbase -pkgver=2.1.0 -pkgrel=0 -pkgdesc="PHP extension couchbase" -url="http://pecl.php.net/package/$_pkgreal" -arch="all" -license="ASL 2.0" -depends= -pecldepends="php-dev autoconf" -makedepends="$pecldepends libcouchbase-dev zlib-dev" -install="" -subpackages="" -source="http://pecl.php.net/get/$_pkgreal-$pkgver.tgz" - -_builddir="$srcdir"/$_pkgreal-$pkgver - -build() { - cd "$_builddir" - phpize || return 1 - ./configure --prefix=/usr || return 1 - make || return 1 - make test || return 1 -} - -package() { - cd "$_builddir" - make INSTALL_ROOT="$pkgdir"/ install || return 1 - install -d "$pkgdir"/etc/php/conf.d || return 1 - echo "extension=$_pkgreal.so" > "$pkgdir"/etc/php/conf.d/$_pkgreal.ini -} - -md5sums="1ee53916bd2e1247882be0ccaf440857 couchbase-2.1.0.tgz" -sha256sums="30eda3f5afd0d9f4c77b12650163c3490de111e57ad6b20092c95e44e3d60a8d couchbase-2.1.0.tgz" -sha512sums="39dabf34d03dc476c0092d05355fc7446506d40a06e8d1b999b54dfe3181200b8bd039e2087456deb7263f7cec9dc93f6541a33510fac5b586e24fe68973dc36 couchbase-2.1.0.tgz" diff --git a/testing/php5-couchbase/APKBUILD b/testing/php5-couchbase/APKBUILD new file mode 100644 index 0000000..f0b4952 --- /dev/null +++ b/testing/php5-couchbase/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Nathan Johnson +# Maintainer: Nathan Johnson +pkgname=php5-couchbase +_pkgreal=couchbase +replaces=php-couchbase +replaces_priority=1 +pkgver=2.1.0 +pkgrel=0 +pkgdesc="PHP extension couchbase" +url="http://pecl.php.net/package/$_pkgreal" +arch="all" +license="ASL 2.0" +depends= +pecldepends="php5-dev autoconf" +makedepends="$pecldepends libcouchbase-dev zlib-dev" +install="" +subpackages="" +source="http://pecl.php.net/get/$_pkgreal-$pkgver.tgz" + +_builddir="$srcdir"/$_pkgreal-$pkgver + +build() { + cd "$_builddir" + phpize || return 1 + ./configure --prefix=/usr || return 1 + make || return 1 + make test || return 1 +} + +package() { + cd "$_builddir" + make INSTALL_ROOT="$pkgdir"/ install || return 1 + install -d "$pkgdir"/etc/php5/conf.d || return 1 + echo "extension=$_pkgreal.so" > "$pkgdir"/etc/php5/conf.d/$_pkgreal.ini +} + +md5sums="1ee53916bd2e1247882be0ccaf440857 couchbase-2.1.0.tgz" +sha256sums="30eda3f5afd0d9f4c77b12650163c3490de111e57ad6b20092c95e44e3d60a8d couchbase-2.1.0.tgz" +sha512sums="39dabf34d03dc476c0092d05355fc7446506d40a06e8d1b999b54dfe3181200b8bd039e2087456deb7263f7cec9dc93f6541a33510fac5b586e24fe68973dc36 couchbase-2.1.0.tgz" -- 2.8.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---