From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kei Yamashita Subject: Re: [PATCH] gnu: Add wmclock. Date: Thu, 7 Apr 2016 13:56:50 -0400 Message-ID: <20160407135650.42c07d98@openmailbox.org> References: <20160407125715.448ca23b@openmailbox.org> <20160407203148.6e32734f@debian-netbook> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48309) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoExB-0000yW-0H for guix-devel@gnu.org; Thu, 07 Apr 2016 14:46:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aoEuA-00085E-AA for guix-devel@gnu.org; Thu, 07 Apr 2016 14:43:50 -0400 Received: from lists.gnu.org ([2001:4830:134:3::11]:54491) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoEuA-000859-6n for guix-devel@gnu.org; Thu, 07 Apr 2016 14:43:46 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56276) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoEB9-0002g4-Qf for guix-devel@gnu.org; Thu, 07 Apr 2016 13:57:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aoEB2-0002zS-U1 for guix-devel@gnu.org; Thu, 07 Apr 2016 13:57:12 -0400 Received: from smtp21.openmailbox.org ([62.4.1.55]:54042) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoEB2-0002zN-NW for guix-devel@gnu.org; Thu, 07 Apr 2016 13:57:08 -0400 In-Reply-To: <20160407203148.6e32734f@debian-netbook> 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: Efraim Flashner Cc: guix-devel@gnu.org On Thu, 7 Apr 2016 20:31:48 +0300 Efraim Flashner wrote: > On Thu, 7 Apr 2016 12:57:15 -0400 > Kei Yamashita wrote: > > > From 15c0f48c3b9c510228a95655e11f95dbca5fbf91 Mon Sep 17 00:00:00 > > 2001 From: Kei Yamashita > > Date: Thu, 7 Apr 2016 12:53:43 -0400 > > Subject: [PATCH] gnu: Add wmclock. > > > > * gnu/packages/gnustep.scm (wmclock): New variable. > > --- > > gnu/packages/gnustep.scm | 34 ++++++++++++++++++++++++++++++++++ > > 1 file changed, 34 insertions(+) > > > > diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm > > index 8c43085..4977507 100644 > > --- a/gnu/packages/gnustep.scm > > +++ b/gnu/packages/gnustep.scm > > @@ -181,3 +181,37 @@ on and off by clicking the mouse button over > > the application. If the CPU usage hits a certain threshold, an > > alarm-mode will alert you by turning back-light on.") > > (license gpl2+))) > > + > > +(define-public wmclock > > + (package > > + (name "wmclock") > > + (version "1.0.16") > > + (source (origin > > + (method url-fetch) > > + (uri (string-append > > + "mirror://debian/pool/main/w/wmclock/" > > + name "_" version ".orig.tar.gz")) > > + (sha256 > > + (base32 > > + > > "1lx276ba8r2yydhmwj1g586jdqg695ad89ng36fr3mb067gvb2rz")))) > > + (build-system gnu-build-system) > > + (arguments > > + `(#:phases > > + (modify-phases %standard-phases > > + (add-after 'unpack 'autoconf > > + (lambda _ (zero? (system* "autoreconf" "-vfi"))))))) > > + (inputs > > + `(("libx11" ,libx11) > > + ("libxext" ,libxext) > > + ("libxpm" ,libxpm))) > > + (native-inputs > > + `(("autoconf" ,autoconf) > > + ("automake" ,automake) > > + ("pkg-config" ,pkg-config))) > > + (home-page "http://www.bluestop.org/wmclock/") > > Debian lists http://windowmaker.org/dockapps/?name=wmclock as the > homepage, and they provide 1.0.16, unlike bluestop which stops at > 1.0.14. > > I don't think I would use them for the download url though, pasting > theirs in wget gave me > http://repo.or.cz/w/dockapps.git/snapshot/daaf3aa04e55152d4c2ec002cabefe7e2026b150.tar.gz > > > + (synopsis "Display the date and time") > > + (description > > + "wmclock is an applet for Window Maker which displays the > > date and time in +a dockable tile. It features multiple language > > support, 24h or 12h time +display, and can run a user-specified > > program on mouse click.") > > + (license gpl2+))) > > > My mistake. I meant to use the Window Maker developers' page as the home page. I'll submit a new patch with the necessary changes (waiting on Mathieu's response).