From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH] gnu: Add python-wcwidth and python2-wcwidth. Date: Mon, 13 Jun 2016 16:59:14 -0400 Message-ID: <20160613205914.GA12302@jasmine> References: <20160612174006.64cd5ff6@scratchpost.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="17pEHd4RhPHOinZp" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50095) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCYxH-0005XU-7g for guix-devel@gnu.org; Mon, 13 Jun 2016 16:59:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bCYxC-0006Ao-Jr for guix-devel@gnu.org; Mon, 13 Jun 2016 16:59:31 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:39100) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCYxA-00069d-9Z for guix-devel@gnu.org; Mon, 13 Jun 2016 16:59:26 -0400 Content-Disposition: inline In-Reply-To: <20160612174006.64cd5ff6@scratchpost.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Danny Milosavljevic Cc: guix-devel@gnu.org --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Jun 12, 2016 at 05:40:06PM +0200, Danny Milosavljevic wrote: > * gnu/packages/python.scm (python-wcwidth, python2-wcwidth): New variables. Thanks for the patch! What do you think of the attached changes to the synopsis and description? --17pEHd4RhPHOinZp Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="python-wcwidth.diff" diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 3168de7..4c15771 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -9197,18 +9197,19 @@ are optionally backed by a C extension built on librdkafka.") (uri (string-append "https://pypi.python.org/packages/" "c2/d1/7689293086a8d5320025080cde0e3155b94ae0a7496fb89a3fbaa92c354a/" - "wcwidth-" - version - ".tar.gz")) + "wcwidth-" version ".tar.gz")) (sha256 (base32 "02wjrpf001gjdjsaxxbzcwfg19crlk2dbddayrfc2v06f53yrcyw")))) (build-system python-build-system) (home-page "https://github.com/jquast/wcwidth") (synopsis - "Measures number of Terminal column cells of wide-character codes") - (description - "Measures number of Terminal column cells of wide-character codes") + "Measures number of terminal column cells of wide-character codes.") + (description "Wcwidth measures the number of terminal column cells of +wide-character codes. It is useful for those implementing a terminal emulator, +or programs that carefully produce output to be interpreted by one. It is a +Python implementation of the @code{wcwidth} and @code{wcwidth} C functions +specified in POSIX.1-2001 and POSIX.1-2008.") (license license:expat))) (define-public python2-wcwidth --17pEHd4RhPHOinZp--