From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46257) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dY7SE-00034O-1G for guix-patches@gnu.org; Thu, 20 Jul 2017 05:09:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dY7SA-00071i-Pk for guix-patches@gnu.org; Thu, 20 Jul 2017 05:09:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45883) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dY7SA-00071X-Lr for guix-patches@gnu.org; Thu, 20 Jul 2017 05:09:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dY7SA-0000HU-Dg for guix-patches@gnu.org; Thu, 20 Jul 2017 05:09:02 -0400 Subject: [bug#27691] Fix spaces Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170714124108.24997-1-go.wigust@gmail.com> <87lgnncar8.fsf@magnolia.i-did-not-set--mail-host-address--so-tickle-me> Date: Thu, 20 Jul 2017 11:08:13 +0200 In-Reply-To: <87lgnncar8.fsf@magnolia.i-did-not-set--mail-host-address--so-tickle-me> (Oleg Pykhalov's message of "Mon, 17 Jul 2017 19:02:19 +0300") Message-ID: <87pocvxypu.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Oleg Pykhalov Cc: bug#27691 <27691@debbugs.gnu.org> --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Oleg Pykhalov skribis: >>>From fa62d236c25fd50116e21fe8924d0a0edeed603a Mon Sep 17 00:00:00 2001 > From: Oleg Pykhalov > Date: Fri, 14 Jul 2017 13:04:15 +0300 > Subject: [PATCH] gnu: Add premake4. > > * gnu/packages/build-tools.scm (premake4): New variable. I made the following changes (please make sure to run =E2=80=98guix lint=E2= =80=99 before submitting a patch) and committed. Note that I changed the name to =E2=80=9Cpremake=E2=80=9D because that=E2= =80=99s what they call the project. Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm index 936f733ba..353c9c8ef 100644 --- a/gnu/packages/build-tools.scm +++ b/gnu/packages/build-tools.scm @@ -94,12 +94,11 @@ Python.") (define-public premake4 (package - (name "premake4") + (name "premake") (version "4.3") (source (origin (method url-fetch) - (uri (string-append - "http://downloads.sourceforge.net/project/premake/Premake/" + (uri (string-append "mirror://sourceforge/premake/Premake/" version "/premake-" version "-src.zip")) (sha256 (base32 @@ -120,8 +119,9 @@ Python.") (install-file "../../bin/release/premake4" (string-append (assoc-ref outputs "out") "/bin")) #t))))) - (synopsis "A makefile generation tool") - (description "@code{premake4} is a command line utility which reads a -scripted definition of a software project.") + (synopsis "Portable software build tool") + (description "@code{premake4} is a command line utility that reads a +scripted definition of a software project and outputs @file{Makefile}s or +other lower-level build files.") (home-page "https://premake.github.io") (license license:bsd-3))) --=-=-=--