From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39958) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dRmNb-0000MA-QE for guix-patches@gnu.org; Sun, 02 Jul 2017 17:26:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dRmNY-0004zJ-L5 for guix-patches@gnu.org; Sun, 02 Jul 2017 17:26:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46450) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dRmNY-0004x6-HO for guix-patches@gnu.org; Sun, 02 Jul 2017 17:26:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dRmNW-0000eP-ET for guix-patches@gnu.org; Sun, 02 Jul 2017 17:26:02 -0400 Subject: [bug#27546] [PATCH] Add wine stable release Resent-Message-ID: From: Nicolas Goaziou In-Reply-To: <87o9t27u5r.fsf@gnu.org> ("Ludovic =?UTF-8?Q?Court=C3=A8s?="'s message of "Sun, 02 Jul 2017 17:09:04 +0200") References: <87zico2x1l.fsf@nicolasgoaziou.fr> <20170701173817.GA29000@jasmine.lan> <87k23s0wsu.fsf@nicolasgoaziou.fr> <20170702114212.GA30356@jasmine.lan> <87o9t27u5r.fsf@gnu.org> Date: Sun, 02 Jul 2017 23:25:41 +0200 Message-ID: <87bmp21qga.fsf@nicolasgoaziou.fr> 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: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 27546@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, ludo@gnu.org (Ludovic Court=C3=A8s) writes: > As for the name, I would call the stable version =E2=80=9Cwine=E2=80=9D, = and the > development version =E2=80=9Cwine-next=E2=80=9D (we=E2=80=99ve used this = naming scheme on a few > occasions for other packages in the past.) That way users won=E2=80=99t = get the > development version unless they explicitly ask for it. Done. Here is the updated patch. Regards, --=20 Nicolas Goaziou 0x80A93738 --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-wine-Add-stable-release.patch >From 0198473e04fd7f885a6ead5d2ecc5aa1962fd935 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 1 Jul 2017 13:42:34 +0200 Subject: [PATCH] gnu: wine: Add stable release. * gnu/packages/wine.scm (wine): Refer to stable release instead of development one. (wine-next): New variable. --- gnu/packages/wine.scm | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/gnu/packages/wine.scm b/gnu/packages/wine.scm index 1fb2c542c..63f8869bd 100644 --- a/gnu/packages/wine.scm +++ b/gnu/packages/wine.scm @@ -55,14 +55,14 @@ (define-public wine (package (name "wine") - (version "2.11") + (version "2.0.1") (source (origin (method url-fetch) - (uri (string-append "https://dl.winehq.org/wine/source/2.x" + (uri (string-append "https://dl.winehq.org/wine/source/2.0" "/wine-" version ".tar.xz")) (sha256 (base32 - "0g6cwjyqwc660w33453aklh3hpc0b8rrb88dryn23ah6wannvagg")))) + "10qm0xxqzvl4y3mhvaxcaacrcs8d5kdz5wf0gbxpmp36wnm4xyvc")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) ("gettext" ,gettext-minimal) @@ -159,3 +159,18 @@ integrate Windows applications into your desktop.") (package-arguments wine)))) (synopsis "Implementation of the Windows API (64-bit version)") (supported-systems '("x86_64-linux")))) + +;; TODO: This is wine development version, provided for historical reasons. +;; We can remove it as soon as a new stable release is out. +(define-public wine-next + (package (inherit wine) + (name "wine") + (version "2.11") + (source (origin + (method url-fetch) + (uri (string-append "https://dl.winehq.org/wine/source/2.x" + "/wine-" version ".tar.xz")) + (sha256 + (base32 + "0g6cwjyqwc660w33453aklh3hpc0b8rrb88dryn23ah6wannvagg")))))) + -- 2.13.2 --=-=-=--