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 D9F12DC101D for ; Thu, 25 Feb 2016 02:49:41 +0000 (UTC) Received: from mail-pa0-f50.google.com (mail-pa0-f50.google.com [209.85.220.50]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 93179DC009F for ; Thu, 25 Feb 2016 02:49:41 +0000 (UTC) Received: by mail-pa0-f50.google.com with SMTP id yy13so23526825pab.3 for ; Wed, 24 Feb 2016 18:49:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:content-transfer-encoding :in-reply-to:user-agent; bh=K7iKCrJN8m+ltDlSW91tlF/hmwfN1hGnRGarV3wn1MM=; b=RnQDyxuCR7A+mbv0970ZIjyS5Y0GNKGUb2fARw8M9QkUyGQ6nUIAbbdOtSCTuX0mxj XNfVNRqBVIzFmqOAG1+XLlQnKGAqNyKad9SaiiMeK9IJ5SLLuu4F2AdBTpkeeOOJm/bi u8AFI96PZNuvZ3xWTcpJMscBs8/zuhZA9eRUE6QuAhkayCQ866XcNivqTzWqHks6uEVg My823G09Avt38luNgXu4aLsIfP2aU34nv0XYSwoz4CIAESVFH3kWFqIxhieBqbWMmED6 JGIyiRwwV9lBsOsJMDmghngnTa4k/sdYnqsj17ECXsVUlT6RChYMlv/u6N9Op4+yURSL FK7g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-type:content-disposition :content-transfer-encoding:in-reply-to:user-agent; bh=K7iKCrJN8m+ltDlSW91tlF/hmwfN1hGnRGarV3wn1MM=; b=XCMT6FjnPreJGjdjh1bm3txHQkXpsiIYkQK23HWx+KSWsDIxAJrPn4IhziCAOh7t0Y 06t0zI+y58t9bF9q6tsOrq4LxdiTMhkFSX4mciPDgWyMRX0bwZDYKgHDKpkJuxYR8sFO nJHlfizYBDElc9TZjrnSYD84+HdOW83m70+ZGpYkUtFGhDYoOS6HOG0I7AQjz6MAbyuk MS/ycGQ3721X6h+tFdXrVPV/5aaKbehzzCCIvjGONgFeBG32PZeQjKx1jQgc3fzxc8np cufeJFT246KqHwTaN8evu38FZAmvIsKo8IVNl63SJUm+LQegV6OEFEwi0Nf5tzU+bt1M eKPA== X-Gm-Message-State: AG10YOTK/gCt+GPpOgrEnJEXEe+/UOL+zy5ZREgIlQBbVd0aVFIShje+HoiYv62XweVKOQ== X-Received: by 10.66.121.10 with SMTP id lg10mr59447860pab.59.1456368580209; Wed, 24 Feb 2016 18:49:40 -0800 (PST) Received: from newbook ([50.0.225.136]) by smtp.gmail.com with ESMTPSA id xu1sm7909184pab.31.2016.02.24.18.49.39 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 24 Feb 2016 18:49:39 -0800 (PST) Date: Wed, 24 Feb 2016 18:49:36 -0800 From: Isaac Dunham To: =?iso-8859-1?Q?Herv=E9?= Rousseau Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH] main/rtorrent: Add libxml2-dev to ensure xmlrpc/scgi support Message-ID: <20160225024934.GA9832@newbook> References: <1456299506-31-1-git-send-email-herve@moulticast.net> 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="iso-8859-1" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: <1456299506-31-1-git-send-email-herve@moulticast.net> User-Agent: Mutt/1.5.24 (2015-08-30) X-Virus-Scanned: ClamAV using ClamSMTP On Wed, Feb 24, 2016 at 07:38:26AM +0000, Herv=E9 Rousseau wrote: > (with correct commit msg/subject it's always better) >=20 > APKBUILD specifies --with-xmlrpc-c but support isn't enabled because libx= m2-dev is missing. > ./configure returns this: > checking for XMLRPC-C... /usr/bin/xmlrpc-c-config: line 66: xml2-config: = not found > /usr/bin/xmlrpc-c-config: line 66: xml2-config: not found I see two issues with this patch: - you need to bump pkgrel to trigger a rebuild - that error means that the xmlrpc-c-config script is missing a dependency that it should have. In other words, xmlrpc-c-dev ideally should depend on libxml2-dev, because it's not possible to use it without libxml2-dev. Of course, if you fix that, you'd still need to bump rtorrent to pick up the fix (and possibly more packages). HTH, Isaac Dunham > --- > main/rtorrent/APKBUILD | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/main/rtorrent/APKBUILD b/main/rtorrent/APKBUILD > index 2ef3c4b..49a9462 100644 > --- a/main/rtorrent/APKBUILD > +++ b/main/rtorrent/APKBUILD > @@ -8,7 +8,7 @@ pkgdesc=3D"Ncurses BitTorrent client based on libTorrent" > url=3D"http://rakshasa.github.io/rtorrent/" > license=3D"GPL" > arch=3D"all" > -makedepends=3D"libsigc++-dev libtorrent-dev curl-dev xmlrpc-c-dev ncurse= s-dev" > +makedepends=3D"libsigc++-dev libtorrent-dev libxml2-dev curl-dev xmlrpc-= c-dev ncurses-dev" > subpackages=3D"$pkgname-doc" > source=3D"http://rtorrent.net/downloads/${pkgname}-${pkgver}.tar.gz" > =20 > --=20 > 2.6.4 >=20 >=20 >=20 > --- > Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org > Help: alpine-aports+help@lists.alpinelinux.org > --- >=20 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---