From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 04 15:32:10 2020 Received: (at submit) by debbugs.gnu.org; 4 Jul 2020 19:32:10 +0000 Received: from localhost ([127.0.0.1]:59697 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jrntO-0006Ez-Ie for submit@debbugs.gnu.org; Sat, 04 Jul 2020 15:32:10 -0400 Received: from lists.gnu.org ([209.51.188.17]:44222) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jrntM-0006Ej-D6 for submit@debbugs.gnu.org; Sat, 04 Jul 2020 15:32:05 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:50744) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jrntM-00081p-69 for guix-patches@gnu.org; Sat, 04 Jul 2020 15:32:04 -0400 Received: from knopi.disroot.org ([178.21.23.139]:56768) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jrntI-0006Aa-0s for guix-patches@gnu.org; Sat, 04 Jul 2020 15:32:03 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id DCDCF55E6B for ; Sat, 4 Jul 2020 21:31:58 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5HJJ5PawK7Bd for ; Sat, 4 Jul 2020 21:31:57 +0200 (CEST) From: guy fleury iteriteka DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1593891117; bh=xecPEhw6lj9he3HziFiLKT/lKEA0V0pww/g2fTh+p70=; h=From:To:Subject:Date:In-Reply-To:References; b=R87/VrD6cKwnQL0fbCBGVrczd283pGUZbbbusvnRrUSRm8Csm/L/uMdrZBqXFo+EF +Q20ltygNPo3LoJovpKoORt4obif/TbhOAl1PFtTry+JvZ1gdXsBLKiuB7swxZpssT sofEhtEU1XVZ5gJiBHOvAG7cxdhQJZqcQJKrq8CBQzryN7nXMNRad943siZst5lGKd 8MAhlMo64LTrTLLREMEulTlnnuFNRBAgWZCIbCletQISlsQkY/FRIcktrsE9472JUX px3qDAbkn3ACT14yoA6NAsiIoWhqcXUi0ZLnWUtQFBPy/Dth+UjftFxASbSQCTDUzg 59/cIik7Q1QEg== To: guix-patches@gnu.org Subject: [PATCH 3/3] gnu: Add mycli. Date: Sat, 4 Jul 2020 21:31:42 +0200 Message-Id: <20200704193142.31083-3-gfleury@disroot.org> In-Reply-To: <20200704193142.31083-1-gfleury@disroot.org> References: <20200704193142.31083-1-gfleury@disroot.org> Mime-Version: 1.0 Content-Type: text/plain; charset=yes Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=gfleury@disroot.org; helo=knopi.disroot.org X-detected-operating-system: by eggs.gnu.org: First seen = 2020/07/04 15:31:56 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: 0.6 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.4 (/) * gnu/packages/databases.scm(mycli): New variable. --- gnu/packages/databases.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 2e46f9b..a62eccd 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -42,6 +42,7 @@ ;;; Copyright © 2020 Nicolò Balzarotti ;;; Copyright © 2020 Tanguy Le Carrour ;;; Copyright © 2020 Lars-Dominik Braun +;;; Copyright © 2020 Guy Fleury Iteriteka ;;; ;;; This file is part of GNU Guix. ;;; @@ -3568,3 +3569,34 @@ The drivers officially supported by @code{libdbi} are: PostreSQL, SQLite, ODBC and MySQL.") (home-page "http://soci.sourceforge.net/") (license license:boost1.0))) + +(define-public mycli + (package + (name "mycli") + (version "1.21.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "mycli" version)) + (sha256 + (base32 + "1q9p0yik9cpvpxjs048anvhicfcna84mpl7axv9bwgr48w40lqwg")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) ; tests expect a running MySQL + (propagated-inputs + `(("python-cli-helpers" ,python-cli-helpers) + ("python-click" ,python-click) + ("python-configobj" ,python-configobj) + ("python-cryptography" ,python-cryptography) + ("python-prompt-toolkit" ,python-prompt-toolkit) + ("python-pygments" ,python-pygments) + ("python-pymysql" ,python-pymysql) + ("python-sqlparse" ,python-sqlparse))) + (home-page "http://mycli.net") + (synopsis + "Terminal Client for MySQL with AutoCompletion and Syntax Highlighting") + (description + "MyCLI is a command line interface for MySQL, MariaDB, and Percona with +auto-completion and syntax highlighting.") + (license license:bsd-3))) -- 2.25.1 From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 25 14:47:04 2020 Received: (at 42202-done) by debbugs.gnu.org; 25 Jul 2020 18:47:04 +0000 Received: from localhost ([127.0.0.1]:51140 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jzPCK-0000IS-Ne for submit@debbugs.gnu.org; Sat, 25 Jul 2020 14:47:04 -0400 Received: from mail-lj1-f196.google.com ([209.85.208.196]:33473) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jzPCI-0000HT-1k for 42202-done@debbugs.gnu.org; Sat, 25 Jul 2020 14:47:02 -0400 Received: by mail-lj1-f196.google.com with SMTP id v4so3513020ljd.0 for <42202-done@debbugs.gnu.org>; Sat, 25 Jul 2020 11:47:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:references:date:in-reply-to:message-id:user-agent :mime-version; bh=nCQ4Z1b0dBm9V9kHbn/jmhtcRL2MPEUKkknhetTVCU8=; b=piSeD287CC/re3TkemPRTKd7TBP7q1IIIfxGUDMo4gnT0iRwwWQpZXvhI6/crtgE9C NZI6fXl2r2+WT19aTCmUpJ3yVmPX4G0zmbEmlzrbBBSxwmVuSCJG0I65PN+tLGk1iGa8 KAyyKvmTiV4XRpJ2HAcnGxODMUoBRMF14YPxYJ8UdIsnuyU/Nb12ka6UaiWrRiQ16Lsw elYAnB7iZ8hvlBfcXUe4IIttzOzNh6+a4fqL7i/Za7BnJn6a3t79/O8/E7n4WXfEkgb6 z21DjmhkN3zEE9OxL6Z2rK5EZaLmuvGB/KSEtKJAT6V2L3L8VbH1YWwlxQtLQpkQa+W+ OXXw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=nCQ4Z1b0dBm9V9kHbn/jmhtcRL2MPEUKkknhetTVCU8=; b=CdGT7Jf7Mnbv5ZlK/1Dv27tpTdJiaFnQtZvg62VJwTYLcjM3joh0pot8OREa5yOJ0a R8zBobKlF3+STJMe1hu+gzWCmr/9tsmyQKju3rPxCxh933/rA3/CrV4qvx5/eQ1Os4L5 c9f0FJLLE2M5yTe158f3fkmbZ+OP0XMNvhihFPZRfId+8TW/Kp7UqYXJll1akRBHM1IT mrMFYhIthdMjHaS3KsHFIXUC9SunNUJxsJrfrfcCTyndKKaY7y0x8qtkUF8H9Og7k28U dLx3Ssy4weygK8r6bB2rXQrtGn+zy1SwnOheXqEZE5mlggA3QShcAyYtutXx1pEaGSi2 2r9w== X-Gm-Message-State: AOAM5309nq1yYPOOHx3jpa1DrUfGs9cC7aRdZfQSRlZnz3SaeT26ib1e HmA5Qrt9TYdHWd8jqKEKGg5mcmOX X-Google-Smtp-Source: ABdhPJyHC4S1/5KL4GMZ1Pyl42mybm2P44wnnqXYxAuP3gk7s+NkOvdKdrnSBexfuiaX4bluVIYCFQ== X-Received: by 2002:a2e:8559:: with SMTP id u25mr6524570ljj.52.1595702815505; Sat, 25 Jul 2020 11:46:55 -0700 (PDT) Received: from guixsd (ppp91-122-98-213.pppoe.avangarddsl.ru. [91.122.98.213]) by smtp.gmail.com with ESMTPSA id h6sm1559898lfc.84.2020.07.25.11.46.53 for <42202-done@debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 25 Jul 2020 11:46:54 -0700 (PDT) From: Oleg Pykhalov To: 42202-done@debbugs.gnu.org Subject: Re: [bug#42202] [PATCH 3/3] gnu: Add mycli. References: <20200704193142.31083-1-gfleury@disroot.org> <20200704193142.31083-3-gfleury@disroot.org> Date: Sat, 25 Jul 2020 21:45:30 +0300 In-Reply-To: <20200704193142.31083-3-gfleury@disroot.org> (guy fleury iteriteka's message of "Sat, 4 Jul 2020 21:31:42 +0200") Message-ID: <87h7tvl9h1.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 42202-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, guy fleury iteriteka writes: > * gnu/packages/databases.scm(mycli): New variable. > --- > gnu/packages/databases.scm | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > > diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm > index 2e46f9b..a62eccd 100644 > --- a/gnu/packages/databases.scm > +++ b/gnu/packages/databases.scm > @@ -42,6 +42,7 @@ [=E2=80=A6] Already in master. Closing. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEcjhxI46s62NFSFhXFn+OpQAa+pwFAl8cfcoACgkQFn+OpQAa +pyHdRAAyzDdhgJv5jUc0IMQ5+QeAS3YPLdoTJhTi6XN5Rz3KLnu0U57rnMgFc7t IXp/2gTLsfiPvuZm5ZPySjAYonf/Ekb9v3MQmJrVyC7mwRfl8I+Thzbjs1hZmHCz Eg8IEVsEeMP2lggPNMGOEqIp+uQG8pICNZaJtDfZz5a72VD26ctu3CKshF3zpxDH PziPPtf6BSPQzBWPbjKViGtK05CP23rn/XPbBhB/9zsKPTH/nPtCf80Kxb2VM2hH dO+roaK8d0x/3xjjBxIWU2u/UmkVg7Z9WsUVuAboDwALGx6Yv1uYXcl9k9+BqmLr 9bZFLAnXz2nO/ft5qo9MKa+SQkJkjRc4lXJwJzBEylFeDXxMoaOXNLJJqF2xnqBL HdZhYFkleimq/Ak8sheyrA6kXO/QBtun9bwdLYF6gv1eJ67qLSf1PFqhWkW52g5T ceVjzA5r+riCN8RsdVe/tPaQCpr/b/QSqxRckC0RcxO0wZd5O6eJPY0YRScCG1XG 2ajaIoakGKXFB1qeSuZefsOiU9JvTpL4l426kvm+qAvTIxs5av/Da5kuM5JjRlKc t6JZ47nssecC8F8zWsfiHcm+1xilD8TAqMJPkStLiqFWxyngM3R5ADo5EmKYLcQU 196HySLfqkRYXVhYhfFBWye08HHnPN8WBQ3nfSctp5fsdalk+z4= =nKE0 -----END PGP SIGNATURE----- --=-=-=-- From unknown Wed Aug 20 05:16:24 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 23 Aug 2020 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator