From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54559) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eP3e7-0006NM-J2 for guix-patches@gnu.org; Wed, 13 Dec 2017 04:48:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eP3e3-0006pF-K4 for guix-patches@gnu.org; Wed, 13 Dec 2017 04:48:11 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:50746) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eP3e3-0006ov-Fx for guix-patches@gnu.org; Wed, 13 Dec 2017 04:48:07 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eP3dy-0007yD-Gt for guix-patches@gnu.org; Wed, 13 Dec 2017 04:48:02 -0500 Subject: [bug#28698] [PATCH] gnu: Enable support for libpurple in bitlbee. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20171004080427.13668-1-sleep_walker@gnu.org> <87vajv556r.fsf@gnu.org> <87efnzk58n.fsf@gmail.com> Date: Wed, 13 Dec 2017 10:47:30 +0100 In-Reply-To: <87efnzk58n.fsf@gmail.com> (Oleg Pykhalov's message of "Wed, 13 Dec 2017 00:26:16 +0300") Message-ID: <87mv2ngdsd.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Oleg Pykhalov Cc: 28698@debbugs.gnu.org Hello, Oleg Pykhalov skribis: > ludo@gnu.org (Ludovic Court=C3=A8s) writes: > >> Tom=C3=A1=C5=A1 =C4=8Cech skribis: >> >>> * gnu/packages/messaging.scm (bitlbee): Add pidgin input, add more conf= igure >>> flags. >> >> I think it=E2=80=99s a good idea, but it=E2=80=99s taking a lot of extra= space: >> >> $ guix size bitlbee |tail -1 >> total: 176.5 MiB >> $ guix size bitlbee pidgin |tail -1 >> total: 668.0 MiB >> >> What about adding a =E2=80=9Clib=E2=80=9D output to Pidgin? BitlBee wou= ld depend on >> that rather than on the whole Pidgin. > > I want a libpurple support in bitlbee, too. So, here is a libpurple > output, but still there is a big size because of inputs, I guess. :-( Heheh, thanks for looking into it! > Is there a way to decrease this? [...] > +++ b/gnu/packages/messaging.scm > @@ -338,6 +338,7 @@ authentication.") > "1y5p2mq3bfw35b66jsafmbva0w5gg1k99y9z8fyp3jfksqv3agcc")) > (patches (search-patches "pidgin-add-search-path.patch")))) > (build-system glib-or-gtk-build-system) > + (outputs '("out" "libpurple")) It should be =E2=80=9Clib=E2=80=9D instead of =E2=80=9Clibpurple=E2=80=9D. = If you do that, perhaps the =E2=80=98install-libpurple=E2=80=99 phase is no longer needed because =E2= =80=98gnu-build-system=E2=80=99 will take care of it. As for the size, it seems that GTK+ & co. are pulled in. Is there a way to avoid it? Perhaps this comes from the .pc file? Thanks, Ludo=E2=80=99.