From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 03/04] gnu: Add python2-xdo Date: Sat, 6 Feb 2016 03:40:35 -0500 Message-ID: <20160206084035.GE1432@jasmine> References: <87bn7ufqhg.fsf@dustycloud.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57340) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRyQ5-0000Yi-7J for guix-devel@gnu.org; Sat, 06 Feb 2016 03:40:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aRyQ0-00074x-AM for guix-devel@gnu.org; Sat, 06 Feb 2016 03:40:41 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:44021) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRyQ0-00074t-3o for guix-devel@gnu.org; Sat, 06 Feb 2016 03:40:36 -0500 Content-Disposition: inline In-Reply-To: <87bn7ufqhg.fsf@dustycloud.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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Christopher Allan Webber Cc: guix-devel@gnu.org On Fri, Feb 05, 2016 at 07:48:59PM -0800, Christopher Allan Webber wrote: > * gnu/packages/python.scm (python2-xdo): New variable. [...] > + (source (origin > + (method url-fetch) > + (uri (string-append > + "http://http.debian.net/debian/pool/main/p/python-xdo/python-xdo_" If this line is longer than 80 characters, please split the string onto the next line. > + version ".orig.tar.gz")) > + (sha256 > + (base32 > + "1kl5c1p0dyxf62plnk6fl77ycfb4whwjms16r14dxx8kn90hlqz4")))) > + (build-system python-build-system) > + (arguments > + `(#:python ,python-2 > + #:tests? #f)) ; no tests provided > + (inputs > + `(("xdotool" ,xdotool) > + ("libX11" ,libx11))) > + (home-page "https://tracker.debian.org/pkg/python-xdo") Is it developed within Debian? Interesting if so! > + (synopsis "Python library for simulating X11 keyboard/mouse input (libxdo bindings)") Line length? The linter should complain if the synopsis is too long. > + ;; Note about this being a legacy Did you mean to leave this comment in? ;) > + (description "Provides bindings to libxdo for manipulating X11 via simulated > +input. (Note that this is mostly a legacy library; you may wish to look at > +python-xdo for newer bindings.)") I see, so this is a python-2 specific legacy package? > + (license bsd-3))) > + > -- > 2.6.3 > >