From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53724) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gSIC0-0001my-AA for guix-patches@gnu.org; Thu, 29 Nov 2018 04:01:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gSIBy-0002Wd-GX for guix-patches@gnu.org; Thu, 29 Nov 2018 04:01:03 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:49829) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gSIBy-0002WS-Bg for guix-patches@gnu.org; Thu, 29 Nov 2018 04:01:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gSIBy-0000Nb-Ah for guix-patches@gnu.org; Thu, 29 Nov 2018 04:01:02 -0500 Subject: bug#33534: [PATCH] gnu: Add arcanist. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87zhtuc7h6.fsf@igalia.com> Date: Thu, 29 Nov 2018 10:00:35 +0100 In-Reply-To: <87zhtuc7h6.fsf@igalia.com> (Robin Templeton's message of "Tue, 27 Nov 2018 20:32:21 -0500") Message-ID: <87tvk08dho.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: Robin Templeton Cc: 33534-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello Robin, Robin Templeton skribis: > * gnu/packages/phabricator.scm: New file. > * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. Applied with minor changes to the description (attached), mostly to give some context to those who do not know what Phabricator is. BTW we traditionally write one patch for each new package, but I think it=E2=80=99s okay here. > + (home-page "https://github.com/phacility/libphutil") > + (synopsis "PHP utility library") > + (description > + "@code{libphutil} is a collection of utility classes and function= s for > +PHP.") > + ;; Bundled libraries are expat-licensed. > + (license (list license:asl2.0 license:expat))))) Do you think those libraries could be unbundled? Would it make sense? Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/phabricator.scm b/gnu/packages/phabricator.scm index 6834373fbc..6c94a13114 100644 --- a/gnu/packages/phabricator.scm +++ b/gnu/packages/phabricator.scm @@ -117,7 +117,8 @@ PHP.") (home-page "https://github.com/phacility/arcanist") (synopsis "Command-line interface for Phabricator") (description - "Arcanist is the command-line tool for Phabricator. It allows you to -interact with Phabricator installs to send code for review, download patches, -transfer files, view status, make API calls, and various other things.") + "Arcanist is the command-line tool for the Phabricator software +development service. It allows you to interact with Phabricator installs to +send code for review, download patches, transfer files, view status, make API +calls, and various other things.") (license license:asl2.0)))) --=-=-=--