From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51688) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hm3Fv-0001sW-M2 for guix-patches@gnu.org; Fri, 12 Jul 2019 17:39:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hm3Fu-000261-Kc for guix-patches@gnu.org; Fri, 12 Jul 2019 17:39:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60252) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hm3Fu-00025j-HB for guix-patches@gnu.org; Fri, 12 Jul 2019 17:39:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hm3Fu-0006Es-Cg for guix-patches@gnu.org; Fri, 12 Jul 2019 17:39:02 -0400 Subject: [bug#36626] [PATCH] gnu: hg-evolve: added package Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:51554) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hm3FI-0001oN-MA for guix-patches@gnu.org; Fri, 12 Jul 2019 17:38:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hm3FH-0001Yl-B5 for guix-patches@gnu.org; Fri, 12 Jul 2019 17:38:24 -0400 Received: from mout.web.de ([212.227.15.3]:53929) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hm3FH-0001X2-20 for guix-patches@gnu.org; Fri, 12 Jul 2019 17:38:23 -0400 From: Arne Babenhauserheide Date: Fri, 12 Jul 2019 23:38:05 +0200 Message-Id: <20190712213805.23553-1-arne_bab@web.de> 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: , Reply-To: arne_bab@web.de Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36626@debbugs.gnu.org Cc: Arne Babenhauserheide * gnu/packages/version-control.scm (hg-evolve): New package. =2D-- gnu/packages/version-control.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-contr= ol.scm index b1fd0195ce..722ec433ba 100644 =2D-- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -1247,6 +1247,35 @@ It efficiently handles projects of any size and offers an easy and intuitive interface.") (license license:gpl2+))) +(define-public hg-evolve + (package + (name "hg-evolve") + (version "9.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "hg-evolve" version)) + (sha256 + (base32 + "1vq1pr2lx8jjsmhgvlrv32qyxair89r3sjsi8v3336r1c0zzx05l")))) + (build-system python-build-system) + (arguments + `(;; Restrict to Python 2, as Python 3 would require + ;; the argument --c2to3. + #:python ,python-2 + ;; FIXME: Disabled tests because they require the nose unit + ;; testing framework: https://nose.readthedocs.org/en/latest/ . + #:tests? #f)) + (propagated-inputs + `(("mercurial" ,mercurial))) + (synopsis "This package supplies the evolve extension for Mercurial") + (description "hg-evolve enables the =E2=80=9Cchangeset evolution=E2= =80=9D feature of +Mercurial core, provides a set of commands to mutate your history, issues +several warning messages when troubles from some mutable appears in your +repository, and provides an hg evolve command to deal with such =E2=80=9C= troubles=E2=80=9D.") + (home-page "https://www.mercurial-scm.org/doc/evolution/") + (license license:gpl2+))) + (define-public neon (package (name "neon") =2D- 2.22.0