From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58205) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gELff-0002gm-3J for guix-patches@gnu.org; Sun, 21 Oct 2018 17:54:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gELfe-0007uW-4r for guix-patches@gnu.org; Sun, 21 Oct 2018 17:54:02 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:58778) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gELfd-0007uS-W8 for guix-patches@gnu.org; Sun, 21 Oct 2018 17:54:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gELfd-0001NR-TM for guix-patches@gnu.org; Sun, 21 Oct 2018 17:54:01 -0400 Subject: bug#33101: [PATCH] gnu: light: Update to 1.2. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: Date: Sun, 21 Oct 2018 23:53:48 +0200 In-Reply-To: (Pierre Langlois's message of "Sat, 20 Oct 2018 11:50:13 +0100") Message-ID: <87d0s36k5v.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: Pierre Langlois Cc: 33101-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Pierre, Pierre Langlois skribis: >>>From 411309b19a678f3f0076bb66f95baab7706cd605 Mon Sep 17 00:00:00 2001 > From: Pierre Langlois > Date: Sat, 20 Oct 2018 11:17:24 +0100 > Subject: [PATCH] gnu: light: Update to 1.2. > > * gnu/packages/linux.scm (light): Update to 1.2. > [source]: Switch to url-fetch. > [arguments]: Remove. > [native-inputs]: Remove help2man. Add autoconf and automake. Awesome, applied. I also make the changes below to please =E2=80=98guix li= nt=E2=80=99. Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 94e7a6d97..4d4c36412 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4176,12 +4176,13 @@ monitoring tools for Linux. These include @code{mpstat}, @code{iostat}, version ".tar.gz")) (sha256 (base32 - "1gfvsw7gh5pis733l7j54vzp272pvjyzbg8a0pvapfmg0s7mip97")))) + "1gfvsw7gh5pis733l7j54vzp272pvjyzbg8a0pvapfmg0s7mip97")) + (file-name (string-append name "-" version ".tar.gz")))) (build-system gnu-build-system) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake))) - (home-page "https://haikarainen.github.io/light") + (home-page "https://haikarainen.github.io/light/") (synopsis "GNU/Linux application to control backlights") (description "Light is a program to send commands to screen backlight controllers --=-=-=--