From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58519) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fDFea-00020K-Sy for guix-patches@gnu.org; Mon, 30 Apr 2018 16:44:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fDFeW-0007vs-Jj for guix-patches@gnu.org; Mon, 30 Apr 2018 16:44:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36429) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fDFeW-0007vl-EV for guix-patches@gnu.org; Mon, 30 Apr 2018 16:44:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fDFeW-0008Vk-7P for guix-patches@gnu.org; Mon, 30 Apr 2018 16:44:04 -0400 Subject: bug#31283: gnu: Add amule. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: Date: Mon, 30 Apr 2018 22:43:53 +0200 In-Reply-To: (Fis Trivial's message of "Fri, 27 Apr 2018 07:00:44 +0000") Message-ID: <874ljswhkm.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Fis Trivial Cc: 31283-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, Applied with the cosmetic changes below. I took the liberty to remove the bits about aMule being free software (everything is free software in Guix), and about it being super-highly-portable (that=E2=80=99s not a prima= ry concern to Guix users who read the description.) Thank you, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index d252075c3..a2898f2fb 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -1729,7 +1729,8 @@ file for more details.") (modify-phases %standard-phases (add-after 'patch-source-shebangs 'autogen (lambda _ - (invoke "sh" "autogen.sh")))) + (invoke "sh" "autogen.sh") + #t))) #:configure-flags '("--disable-rpath" "--enable-wxcas" @@ -1759,10 +1760,9 @@ file for more details.") (home-page "http://amule.org/") (synopsis "Peer-to-peer client for the eD2K and Kademlia networks") (description - "aMule is an eMule-like client for the eD2k and Kademlia networks, -supporting multiple platforms. Currently aMule (officially) supports a wide -variety of platforms and operating systems, being compatible with more than 60 -different hardware+OS configurations. aMule is entirely free, its sourcecode -released under the GPL just like eMule, and includes no adware or spyware as -is often found in proprietary P2P applications.") + "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer +file sharing networks. It includes a graphical user interface (GUI), a daemon +allowing you to run a client with no graphical interface, and a Web GUI for +remote access. The @command{amulecmd} command allows you to control aMule +remotely.") (license license:gpl2+))) --=-=-=--