X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx1.tetrasec.net (mx1.tetrasec.net [74.117.190.25]) by lists.alpinelinux.org (Postfix) with ESMTP id 1F5955C5773 for ; Thu, 4 Oct 2018 14:09:15 +0000 (GMT) Received: from mx1.tetrasec.net (mail.local [127.0.0.1]) by mx1.tetrasec.net (Postfix) with ESMTP id A312E9E0421; Thu, 4 Oct 2018 14:09:14 +0000 (GMT) Received: from ncopa-desktop.copa.dup.pw (67.63.200.37.customer.cdi.no [37.200.63.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: alpine@tanael.org) by mx1.tetrasec.net (Postfix) with ESMTPSA id E43299E00F8; Thu, 4 Oct 2018 14:09:13 +0000 (GMT) Date: Thu, 4 Oct 2018 16:09:08 +0200 From: Natanael Copa To: Stefan Schwarz Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH] main/apr-util: re-add mysql support Message-ID: <20181004160908.7692364c@ncopa-desktop.copa.dup.pw> In-Reply-To: <20181004130854.10198-1-ssz@netzmarkt.de> References: <20181004130854.10198-1-ssz@netzmarkt.de> X-Mailer: Claws Mail 3.17.1 (GTK+ 2.24.32; x86_64-alpine-linux-musl) X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hi, Thank you for sending this. Please see comments below. On Thu, 4 Oct 2018 15:08:54 +0200 Stefan Schwarz wrote: > was removed in commit 3f7f81, builds without any issue > --- > main/apr-util/APKBUILD | 8 +++++--- > 1 file changed, 5 insertions(+), 3 deletions(-) > > diff --git a/main/apr-util/APKBUILD b/main/apr-util/APKBUILD > index e19783c316..98d72700f2 100644 > --- a/main/apr-util/APKBUILD > +++ b/main/apr-util/APKBUILD > @@ -1,17 +1,17 @@ > # Maintainer: Natanael Copa > pkgname=apr-util > pkgver=1.6.1 > -pkgrel=2 > +pkgrel=3 > pkgdesc="The Apache Portable Runtime Utility Library" > url="http://apr.apache.org/" > arch="all" > license="Apache-2.0" > depends= > -subpackages="$pkgname-dev $pkgname-dbm_db $pkgname-dbd_pgsql > +subpackages="$pkgname-dev $pkgname-dbm_db $pkgname-dbd_pgsql $pkgname-dbd_mysql > $pkgname-dbd_sqlite3 $pkgname-ldap" > > depends_dev="expat-dev apr-dev openldap-dev sqlite-dev postgresql-dev > - db-dev libressl-dev" > + db-dev libressl-dev mariadb-dev" > makedepends="$depends_dev bash chrpath libressl" > source="http://www.apache.org/dist/apr/$pkgname-$pkgver.tar.bz2" > builddir="$srcdir/$pkgname-$pkgver" > @@ -25,6 +25,7 @@ build() { > --with-apr=/usr \ > --with-ldap \ > --with-pgsql \ > + --with-mysql \ Looks like space instead of tabs here. > --with-sqlite3 \ > --with-berkeley-db \ > --with-crypto \ > @@ -46,6 +47,7 @@ _mv_mod() { > pkgdesc="The Apache Portable Runtime Utility Library - $2 driver" > depends= > local _moddir="usr/lib/apr-util-1" > + ls "$pkgdir"/$_moddir I suppose this is not needed either. > mkdir -p "$subpkgdir"/$_moddir > mv "$pkgdir"/$_moddir/apr_$1*.so "$subpkgdir"/$_moddir/ > } I think I just commit and fix the two issues above. Thank you! -nc --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---