From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43972) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dnOff-0002fq-TB for guix-patches@gnu.org; Thu, 31 Aug 2017 08:34:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dnOfa-0007DM-Rz for guix-patches@gnu.org; Thu, 31 Aug 2017 08:34:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55948) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dnOfa-0007CS-Of for guix-patches@gnu.org; Thu, 31 Aug 2017 08:34:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dnOfa-00060G-Id for guix-patches@gnu.org; Thu, 31 Aug 2017 08:34:02 -0400 Subject: [bug#28198] [PATCH 2/4] gnu: Add mongodb. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170823092516.6846-1-mail@cbaines.net> <20170823092516.6846-2-mail@cbaines.net> Date: Thu, 31 Aug 2017 14:32:58 +0200 In-Reply-To: <20170823092516.6846-2-mail@cbaines.net> (Christopher Baines's message of "Wed, 23 Aug 2017 10:25:14 +0100") Message-ID: <87shg7udc5.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: Christopher Baines Cc: 28198@debbugs.gnu.org Christopher Baines skribis: > * gnu/packages/databases.scm (mongodb): New variable. [...] > + (build-system gnu-build-system) > + (native-inputs > + `(("scons" ,scons) > + ("python" ,python-2) > + ("openssl" ,openssl) > + ("boost" ,boost) > + ("snappy" ,snappy) > + ("zlib" ,zlib) > + ("pcre" ,pcre) > + ("valgrind" ,valgrind) > + ("yaml-cpp" ,yaml-cpp) > + ("perl" ,perl))) Seems like some of these should rather go to =E2=80=98inputs=E2=80=99, no? > + (arguments > + `(#:tests? #f ;; TODO: Check phase currently fails Maybe leave a few details on why this is failing. > + (replace 'install > + (lambda _ > + (let ((bin (string-append (assoc-ref %outputs "out") "/b= in"))) > + (install-file "mongod" bin) > + (install-file "mongos" bin) > + (install-file "mongo" bin)))))))) Return #t. > + (home-page "https://www.mongodb.org/") > + (synopsis "High performance and high availability document database") > + (description > + "Mongo is a high-performance, high availability, schema-free > +document-oriented database. A key goal of MongoDB is to bridge the gap > +between key/value stores (which are fast and highly scalable) and tradit= ional > +RDBMS systems (which are deep in functionality).") > + (license (list license:agpl3 license:asl2.0)))) AGPL version 3 only? Also please add a comment stating whether it=E2=80=99s dual-licensed or something else. OK with these changes, thank you! Ludo=E2=80=99.