From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 01 07:53:39 2017 Received: (at submit) by debbugs.gnu.org; 1 Jul 2017 11:53:39 +0000 Received: from localhost ([127.0.0.1]:46960 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dRGy3-0006ol-0z for submit@debbugs.gnu.org; Sat, 01 Jul 2017 07:53:39 -0400 Received: from eggs.gnu.org ([208.118.235.92]:42919) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dRGy1-0006oY-Dl for submit@debbugs.gnu.org; Sat, 01 Jul 2017 07:53:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dRGxv-00015w-FI for submit@debbugs.gnu.org; Sat, 01 Jul 2017 07:53:32 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_40 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:44306) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dRGxv-00015f-CG for submit@debbugs.gnu.org; Sat, 01 Jul 2017 07:53:31 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33886) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dRGxu-0002rN-7F for guix-patches@gnu.org; Sat, 01 Jul 2017 07:53:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dRGxt-00012v-B4 for guix-patches@gnu.org; Sat, 01 Jul 2017 07:53:30 -0400 Received: from relay2-d.mail.gandi.net ([2001:4b98:c:538::194]:47941) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dRGxt-00011J-44 for guix-patches@gnu.org; Sat, 01 Jul 2017 07:53:29 -0400 Received: from saiph.selenimh (000043010000000000000469.ipv6.commingeshautdebit.fr [IPv6:2a03:a0a0:0:4301::469]) (Authenticated sender: mail@nicolasgoaziou.fr) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id 34629C5A5F for ; Sat, 1 Jul 2017 13:53:27 +0200 (CEST) Received: from ngz by saiph.selenimh with local (Exim 4.89) (envelope-from ) id 1dRGxq-0004G7-Il for guix-patches@gnu.org; Sat, 01 Jul 2017 13:53:26 +0200 From: Nicolas Goaziou To: guix-patches@gnu.org Subject: [PATCH] Add wine stable release User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) Date: Sat, 01 Jul 2017 13:53:26 +0200 Message-ID: <87zico2x1l.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -7.1 (-------) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -7.1 (-------) --=-=-= Content-Type: text/plain Hello, Not so long ago, I realized, painfully, we were distributing development version of wine (currently 2.11), but not the stable one (currently 2.0.1). The following patch attempts to provide the missing release. Ideally, I think this variable should be named "wine" and the other "wine-dev" or some such. However, so as to limit fuss, this patches leaves "wine" as-is, and introduce "wine-2.0.1" instead. Regards, -- Nicolas Goaziou 0x80A93738 --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-wine-Add-stable-release.patch Content-Description: Add stable wine >From 24e94a9109717df9aca8c1f8c4810e2f57e5a682 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-2.0.1): New variable. --- gnu/packages/wine.scm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gnu/packages/wine.scm b/gnu/packages/wine.scm index 1fb2c542c..e3ca11c40 100644 --- a/gnu/packages/wine.scm +++ b/gnu/packages/wine.scm @@ -147,6 +147,18 @@ integrate Windows applications into your desktop.") ;; effect as building on i686 anyway. (supported-systems '("i686-linux" "x86_64-linux")))) +(define-public wine-2.0.1 + (package (inherit wine) + (name "wine") + (version "2.0.1") + (source (origin + (method url-fetch) + (uri (string-append "https://dl.winehq.org/wine/source/2.0" + "/wine-" version ".tar.xz")) + (sha256 + (base32 + "10qm0xxqzvl4y3mhvaxcaacrcs8d5kdz5wf0gbxpmp36wnm4xyvc")))))) + (define-public wine64 (package (inherit wine) -- 2.13.2 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 01 13:38:21 2017 Received: (at 27546) by debbugs.gnu.org; 1 Jul 2017 17:38:21 +0000 Received: from localhost ([127.0.0.1]:47928 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dRMLd-0003VB-Kw for submit@debbugs.gnu.org; Sat, 01 Jul 2017 13:38:21 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:46843) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dRMLb-0003V3-TJ for 27546@debbugs.gnu.org; Sat, 01 Jul 2017 13:38:20 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 8F5672076A; Sat, 1 Jul 2017 13:38:19 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute4.internal (MEProxy); Sat, 01 Jul 2017 13:38:19 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=cc:content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=oYhxTGkIygXfO7qVilXf426fWZFhGMMUYRbVR9 mJFDY=; b=F5pg2z8DzXng4irAIGRRxQWgFAIPO2wvZMYeawBBhx5hnfaObCb4J2 hJllSw9NL3fWj22P29sDoS/43Sh2w1dKrjXz68hisWMQBwbn0DMNgjwOQjR7LffG uH9Yutz0JmYu3J8xiWJTpQd13d8QNZ4sYdPmCWaIBywEAsnP1yap8= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=fm1; bh=oYhxTGkIygXfO7qVil Xf426fWZFhGMMUYRbVR9mJFDY=; b=joL1n9CS0u7oAJFlnSG3+7u2cLDJGg8S5U ufhlCWxcYC6UVL/yL2286yiclt/6PtY9NeiTQ5TBg1TgEhQ4IBRyv5E/eg+KBXf9 fbiGyuztlAvtrbI1d3dhuhBtSC8e9t64qBj0TU2tXZM3IVgfySV+8y9pptxb1z8c 9RFVYltQ4nft4+jL5/b6Qstsk5NX66NOcAvOnc/POPXYDQyFiIdPczFQ2duz4PXP zulMsBLsaj1fWOVBcTDxMBW0mz8LafQToUpC9cmrydNNt6np/wlvGYeOBSZ625rS +1axHSCG5JAjOf9hZgbyaj+k59Cm2XhcON1N6eFK4LeKig1ZYENw== X-ME-Sender: X-Sasl-enc: tNH98Zcrslq0ajUpiQzfgx9pC6AEOr94pSd/hPYIc7aB 1498930699 Received: from localhost (c-73-165-108-70.hsd1.pa.comcast.net [73.165.108.70]) by mail.messagingengine.com (Postfix) with ESMTPA id 46167240F6; Sat, 1 Jul 2017 13:38:19 -0400 (EDT) Date: Sat, 1 Jul 2017 13:38:17 -0400 From: Leo Famulari To: Nicolas Goaziou Subject: Re: [bug#27546] [PATCH] Add wine stable release Message-ID: <20170701173817.GA29000@jasmine.lan> References: <87zico2x1l.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="DocE+STaALJfprDB" Content-Disposition: inline In-Reply-To: <87zico2x1l.fsf@nicolasgoaziou.fr> User-Agent: Mutt/1.8.3 (2017-05-23) X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 27546 Cc: 27546@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) --DocE+STaALJfprDB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jul 01, 2017 at 01:53:26PM +0200, Nicolas Goaziou wrote: > Hello, >=20 > Not so long ago, I realized, painfully, we were distributing development > version of wine (currently 2.11), but not the stable one (currently > 2.0.1). >=20 > The following patch attempts to provide the missing release. Ideally, > I think this variable should be named "wine" and the other "wine-dev" or > some such. However, so as to limit fuss, this patches leaves "wine" > as-is, and introduce "wine-2.0.1" instead. Since we don't typically package development releases, how about removing 2.11 and replacing it with 2.0.1? --DocE+STaALJfprDB Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAllX3f4ACgkQJkb6MLrK fwjqihAA7yjwroJkvM9cVnzQc3JtRTRvBcdhRmucAOp38v8kOM9m8lh1m/L27HhG pJLv1vL39Lx4aXmrsfmRvZ+cXT2omwEmvwteYwc+dvIwrYH0LuFhHA2zkl2iZ1sx 15RZll28RReTowSeQyqcCG14NVObataocJXRCF3nhCfMcf2Bh1aTGn4N8370ZXhL Ik5c8xbmr1LfJqv4mAxXsBEQFi2bAqKv0sOYGogo+8puu3qpx+wjbjv45/GMOVRN cUEwfN2+CWFz3rMefD4FZDL+Pw1OLQe3ZOYxFMk57xYy7hL6dXHuk5TxsaDDvzR0 EzCI5Uo8j2NU1BEzpDPRQGsiZC36MYaA8IVwrwGen/TOQCOuG9aKM2zBVLx1sMVI K+BAVb3m8R6toE8C/YlAfEZz45X1eOUrY9jfQ40+s+dn043WlQmK4sgeF0c1YqWr cMkpgmGDdpSeT2WNttGq4Xu9SSoBWekVvJ/oVNOdts/WRug8p5ZncKBCTBKX0RLA bPycfqhiqLv0wWj19FVCSfG/Ozu8UNnDvt25BcL/D1hD5MgGKgegkUJBIKXj/CM4 G1umU1RgKT5F3xJZiTRoxdeAsxqaAey90pI4D60P8UG9+lyTeC15gAMkmvZgM7TU kmeYw15sBLke9ESgfRO/lasVsuOxuuKsGzKJtpXofVAhUImdGxI= =MLVj -----END PGP SIGNATURE----- --DocE+STaALJfprDB-- From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 01 15:41:43 2017 Received: (at 27546) by debbugs.gnu.org; 1 Jul 2017 19:41:43 +0000 Received: from localhost ([127.0.0.1]:47965 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dROH1-0006Qs-1m for submit@debbugs.gnu.org; Sat, 01 Jul 2017 15:41:43 -0400 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:57625) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dROGy-0006Qj-KY for 27546@debbugs.gnu.org; Sat, 01 Jul 2017 15:41:41 -0400 Received: from saiph.selenimh (000043010000000000000469.ipv6.commingeshautdebit.fr [IPv6:2a03:a0a0:0:4301::469]) (Authenticated sender: mail@nicolasgoaziou.fr) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 83263172097; Sat, 1 Jul 2017 21:41:38 +0200 (CEST) Received: from ngz by saiph.selenimh with local (Exim 4.89) (envelope-from ) id 1dROGv-0001ZA-Jf; Sat, 01 Jul 2017 21:41:37 +0200 From: Nicolas Goaziou To: Leo Famulari Subject: Re: [bug#27546] [PATCH] Add wine stable release In-Reply-To: <20170701173817.GA29000@jasmine.lan> (Leo Famulari's message of "Sat, 1 Jul 2017 13:38:17 -0400") References: <87zico2x1l.fsf@nicolasgoaziou.fr> <20170701173817.GA29000@jasmine.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) Date: Sat, 01 Jul 2017 21:41:37 +0200 Message-ID: <87k23s0wsu.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 27546 Cc: 27546@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Hello, Leo Famulari writes: > On Sat, Jul 01, 2017 at 01:53:26PM +0200, Nicolas Goaziou wrote: >> Hello, >> >> Not so long ago, I realized, painfully, we were distributing development >> version of wine (currently 2.11), but not the stable one (currently >> 2.0.1). >> >> The following patch attempts to provide the missing release. Ideally, >> I think this variable should be named "wine" and the other "wine-dev" or >> some such. However, so as to limit fuss, this patches leaves "wine" >> as-is, and introduce "wine-2.0.1" instead. > > Since we don't typically package development releases, how about > removing 2.11 and replacing it with 2.0.1? Thank you for the review. I do not mind, for all I need is the stable release. However, I'm not the one who packaged wine in the first place. Maybe its author has a different use case. Anyway, the patch implements the less invasive solution. We can also apply it for now and settle on the next stable release, whenever it happens. Note that we have other packages in the same situation (e.g., lilypond). Regards, -- Nicolas Goaziou 0x80A93738 From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 02 07:43:02 2017 Received: (at 27546) by debbugs.gnu.org; 2 Jul 2017 11:43:02 +0000 Received: from localhost ([127.0.0.1]:48204 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dRdHK-0000LO-2G for submit@debbugs.gnu.org; Sun, 02 Jul 2017 07:43:02 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:32933) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dRdHI-0000Kz-6f for 27546@debbugs.gnu.org; Sun, 02 Jul 2017 07:43:01 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 9947520A16; Sun, 2 Jul 2017 07:42:59 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute4.internal (MEProxy); Sun, 02 Jul 2017 07:42:59 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=cc:content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=PQlR5DL/nCC04pUPWDhjWQV7CAx9zeEayQR0Lc 2cQWA=; b=jhtTUVF46QBdN2j6tj+yJKcvipaBUCSRkF5XU6v4sze/S0COJghYhh G+OAH1iBqqFju56KD4zrLt9HkiVI2dMVB1TQCjQmfdngQk/2UJTXPojq2nLSTFAN aXWD+zVVZ1sNiXcA9flJAkh+5APAK43wAu5r0O6UB+9tRzAAfZld0= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=fm1; bh=PQlR5DL/nCC04pUPWD hjWQV7CAx9zeEayQR0Lc2cQWA=; b=GhTYjr+wIhZWgmqYcOGcV6LSDphP98JCfX OSCwYZuTUiG5FocXApHV/yDlZCU1C7GhEVz9T+OvZIKxbmT5j3AWX31vs+9Cpw6s iDVcginv8PENhRnXY2Moj3okJEFdiBqLGOsEET7mv5uAKIBYlmgigjwGCpZSWvrN R6Wc6P8elXB67Np0PhgA5/eyKuR/CVG54we/SNCJNEJ1WfUGX0cyl2RmipRXIsr5 z7mLtUdusk4Wfi4HZZrGyG0Gcja59x8vfL2RwTNH3iYrXtPlqs+D+TEtrYlRNPh4 JI5YC+O12csbPRkejFNNb1zCLM5qDQKZAi2i19y04kLxjizchf9A== X-ME-Sender: X-Sasl-enc: Q+KAdL44D7i7ZAutPmicqzkhiTvTrIj5nXjqKWWrJYOi 1498995779 Received: from localhost (unknown [64.94.31.206]) by mail.messagingengine.com (Postfix) with ESMTPA id 46D347E8B7; Sun, 2 Jul 2017 07:42:59 -0400 (EDT) Date: Sun, 2 Jul 2017 07:42:12 -0400 From: Leo Famulari To: Nicolas Goaziou Subject: Re: [bug#27546] [PATCH] Add wine stable release Message-ID: <20170702114212.GA30356@jasmine.lan> References: <87zico2x1l.fsf@nicolasgoaziou.fr> <20170701173817.GA29000@jasmine.lan> <87k23s0wsu.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="Q68bSM7Ycu6FN28Q" Content-Disposition: inline In-Reply-To: <87k23s0wsu.fsf@nicolasgoaziou.fr> User-Agent: Mutt/1.8.3 (2017-05-23) X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 27546 Cc: 27546@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) --Q68bSM7Ycu6FN28Q Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jul 01, 2017 at 09:41:37PM +0200, Nicolas Goaziou wrote: > > Since we don't typically package development releases, how about > > removing 2.11 and replacing it with 2.0.1? >=20 > Thank you for the review. >=20 > I do not mind, for all I need is the stable release. However, I'm not > the one who packaged wine in the first place. Maybe its author has > a different use case. I see. > Anyway, the patch implements the less invasive solution. We can also > apply it for now and settle on the next stable release, whenever it > happens. Note that we have other packages in the same situation (e.g., > lilypond). IIUC, I think that's a good idea. We'll keep both versions of Wine until the development releases reach "stable" status, then we'll drop the development version. Can you add a code comment that reminds us of this plan? :) --Q68bSM7Ycu6FN28Q Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAllY3BAACgkQJkb6MLrK fwj6xA/7B6tBim4PnCBflDde8C+jnoScIckhs7IAbGU9XegN0qhrXP2E+qYW3fn7 V/p9ZE4FdbJNUS5wjOvyXxgvDnW4wJl2I9lT9Rh1AvSEFt1EUVDmg24i6HybAVI/ 5PQPqAIpB5b5/sdb5En1MFtZpT3ZvubWQ2Yqc/CPQuYoF5z/WL1tqkAsPPdOHufV jyM2AOlOhhq3elkKyqTZ+85rAFBz8oVI4/iV81QJ/LEctny/2KD6dP6I64p8gAw/ 4enJyVs29ew/KOs9pcdI1ylAiDax5mff553FudIELWH0C2BpWRsxImcl/xZYIkBO asatyF84TsqpvKDTY549rS47A8TlZbaggHLbj9Q8r+uL0AqaQ1MJMx5prt92vx// aY4yeUIq8DtOk+tKY0IiP9g9fZjZEfQapJ58DI0c/y96RRllLTuZmhf1LooI5EQO rL4TpyxMvEzX61W8DyvSW0ldqFdBVRJ+SJtWm/blzMI3gL0jEDfvVCAiRPVuADrm 1VJznr1vYge9EWzxA6aReWuKdlkq5eYXiGUFeUkXgXmV4jrLGVP0SitMQfgv9j4f HIwiZOL38020oYiUuz2SpDiA+6Py+7PFdrW3JDX50r9oNgk1e8l4ILEx2W4F/pcX 3w28vcnUfEtsOugTNM2HqV5wHnJRnU8d7fZg0/+DiuLU+ga1ksE= =bhJ4 -----END PGP SIGNATURE----- --Q68bSM7Ycu6FN28Q-- From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 02 11:09:16 2017 Received: (at 27546) by debbugs.gnu.org; 2 Jul 2017 15:09:17 +0000 Received: from localhost ([127.0.0.1]:48907 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dRgUu-0005EL-NL for submit@debbugs.gnu.org; Sun, 02 Jul 2017 11:09:16 -0400 Received: from eggs.gnu.org ([208.118.235.92]:51190) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dRgUt-0005E8-JL for 27546@debbugs.gnu.org; Sun, 02 Jul 2017 11:09:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dRgUl-0005uE-89 for 27546@debbugs.gnu.org; Sun, 02 Jul 2017 11:09:10 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_40,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:40662) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dRgUl-0005uA-45; Sun, 02 Jul 2017 11:09:07 -0400 Received: from reverse-83.fdn.fr ([80.67.176.83]:33538 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dRgUk-0007Uy-Dm; Sun, 02 Jul 2017 11:09:06 -0400 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Leo Famulari Subject: Re: [bug#27546] [PATCH] Add wine stable release References: <87zico2x1l.fsf@nicolasgoaziou.fr> <20170701173817.GA29000@jasmine.lan> <87k23s0wsu.fsf@nicolasgoaziou.fr> <20170702114212.GA30356@jasmine.lan> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 14 Messidor an 225 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-unknown-linux-gnu Date: Sun, 02 Jul 2017 17:09:04 +0200 In-Reply-To: <20170702114212.GA30356@jasmine.lan> (Leo Famulari's message of "Sun, 2 Jul 2017 07:42:12 -0400") Message-ID: <87o9t27u5r.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -7.8 (-------) X-Debbugs-Envelope-To: 27546 Cc: 27546@debbugs.gnu.org, Nicolas Goaziou X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -7.8 (-------) Leo Famulari skribis: > On Sat, Jul 01, 2017 at 09:41:37PM +0200, Nicolas Goaziou wrote: >> > Since we don't typically package development releases, how about >> > removing 2.11 and replacing it with 2.0.1? >>=20 >> Thank you for the review. >>=20 >> I do not mind, for all I need is the stable release. However, I'm not >> the one who packaged wine in the first place. Maybe its author has >> a different use case. > > I see. > >> Anyway, the patch implements the less invasive solution. We can also >> apply it for now and settle on the next stable release, whenever it >> happens. Note that we have other packages in the same situation (e.g., >> lilypond). > > IIUC, I think that's a good idea. We'll keep both versions of Wine until > the development releases reach "stable" status, then we'll drop the > development version. Sounds reasonable to me too. As for the name, I would call the stable version =E2=80=9Cwine=E2=80=9D, an= d the development version =E2=80=9Cwine-next=E2=80=9D (we=E2=80=99ve used this na= ming scheme on a few occasions for other packages in the past.) That way users won=E2=80=99t ge= t the development version unless they explicitly ask for it. Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 02 17:25:49 2017 Received: (at 27546) by debbugs.gnu.org; 2 Jul 2017 21:25:49 +0000 Received: from localhost ([127.0.0.1]:49127 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dRmNI-0000dt-Ak for submit@debbugs.gnu.org; Sun, 02 Jul 2017 17:25:49 -0400 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:40822) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dRmNG-0000dk-3F for 27546@debbugs.gnu.org; Sun, 02 Jul 2017 17:25:46 -0400 Received: from saiph.selenimh (000043010000000000000469.ipv6.commingeshautdebit.fr [IPv6:2a03:a0a0:0:4301::469]) (Authenticated sender: mail@nicolasgoaziou.fr) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 6781E172097; Sun, 2 Jul 2017 23:25:43 +0200 (CEST) Received: from ngz by saiph.selenimh with local (Exim 4.89) (envelope-from ) id 1dRmNB-00089z-GE; Sun, 02 Jul 2017 23:25:41 +0200 From: Nicolas Goaziou To: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [bug#27546] [PATCH] Add wine stable release In-Reply-To: <87o9t27u5r.fsf@gnu.org> ("Ludovic =?utf-8?Q?Court=C3=A8s=22'?= =?utf-8?Q?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> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) Date: Sun, 02 Jul 2017 23:25:41 +0200 Message-ID: <87bmp21qga.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 27546 Cc: 27546@debbugs.gnu.org, Leo Famulari X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) --=-=-= 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 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 03 03:36:24 2017 Received: (at 27546) by debbugs.gnu.org; 3 Jul 2017 07:36:24 +0000 Received: from localhost ([127.0.0.1]:49376 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dRvuC-00080n-4R for submit@debbugs.gnu.org; Mon, 03 Jul 2017 03:36:24 -0400 Received: from eggs.gnu.org ([208.118.235.92]:55559) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dRvuA-00080Z-4i for 27546@debbugs.gnu.org; Mon, 03 Jul 2017 03:36:22 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:37972) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dRvto-0007lw-Bj; Mon, 03 Jul 2017 03:36:16 -0400 Received: from [193.50.110.99] (port=55376 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dRvrp-0008LH-Or; Mon, 03 Jul 2017 03:33:59 -0400 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Nicolas Goaziou Subject: Re: [bug#27546] [PATCH] Add wine stable release References: <87zico2x1l.fsf@nicolasgoaziou.fr> <20170701173817.GA29000@jasmine.lan> <87k23s0wsu.fsf@nicolasgoaziou.fr> <20170702114212.GA30356@jasmine.lan> <87o9t27u5r.fsf@gnu.org> <87bmp21qga.fsf@nicolasgoaziou.fr> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 15 Messidor an 225 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-unknown-linux-gnu Date: Mon, 03 Jul 2017 09:33:55 +0200 In-Reply-To: <87bmp21qga.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Sun, 02 Jul 2017 23:25:41 +0200") Message-ID: <87lgo6rn30.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -7.8 (-------) X-Debbugs-Envelope-To: 27546 Cc: 27546@debbugs.gnu.org, Leo Famulari X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -7.8 (-------) Hello, Nicolas Goaziou skribis: > 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 develo= pment > one. > (wine-next): New variable. [...] > +;; TODO: This is wine development version, provided for historical reaso= ns. > +;; We can remove it as soon as a new stable release is out. > +(define-public wine-next > + (package (inherit wine) > + (name "wine") ^~-- Should be =E2=80=9Cwine-next=E2=80=9D. Otherwise LGTM, thank you! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 03 12:19:08 2017 Received: (at 27546) by debbugs.gnu.org; 3 Jul 2017 16:19:08 +0000 Received: from localhost ([127.0.0.1]:50566 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dS444-00043J-62 for submit@debbugs.gnu.org; Mon, 03 Jul 2017 12:19:08 -0400 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:43017) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dS442-00043B-Ng for 27546@debbugs.gnu.org; Mon, 03 Jul 2017 12:19:07 -0400 Received: from saiph.selenimh (000043010000000000000469.ipv6.commingeshautdebit.fr [IPv6:2a03:a0a0:0:4301::469]) (Authenticated sender: mail@nicolasgoaziou.fr) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id 6BF44C5A46; Mon, 3 Jul 2017 18:19:04 +0200 (CEST) Received: from ngz by saiph.selenimh with local (Exim 4.89) (envelope-from ) id 1dS43z-0001oe-Mv; Mon, 03 Jul 2017 18:19:03 +0200 From: Nicolas Goaziou To: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [bug#27546] [PATCH] Add wine stable release In-Reply-To: <87lgo6rn30.fsf@gnu.org> ("Ludovic =?utf-8?Q?Court=C3=A8s=22'?= =?utf-8?Q?s?= message of "Mon, 03 Jul 2017 09:33:55 +0200") References: <87zico2x1l.fsf@nicolasgoaziou.fr> <20170701173817.GA29000@jasmine.lan> <87k23s0wsu.fsf@nicolasgoaziou.fr> <20170702114212.GA30356@jasmine.lan> <87o9t27u5r.fsf@gnu.org> <87bmp21qga.fsf@nicolasgoaziou.fr> <87lgo6rn30.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) Date: Mon, 03 Jul 2017 18:19:03 +0200 Message-ID: <87k23pbiiw.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 27546 Cc: 27546@debbugs.gnu.org, Leo Famulari X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Hello, ludo@gnu.org (Ludovic Court=C3=A8s) writes: >> +;; TODO: This is wine development version, provided for historical reas= ons. >> +;; We can remove it as soon as a new stable release is out. >> +(define-public wine-next >> + (package (inherit wine) >> + (name "wine") > ^~-- > > Should be =E2=80=9Cwine-next=E2=80=9D. Fixed. > Otherwise LGTM, thank you! Pushed. Thank you. Regards, --=20 Nicolas Goaziou 0x80A93738 From debbugs-submit-bounces@debbugs.gnu.org Tue Jul 18 08:45:07 2017 Received: (at 27546-done) by debbugs.gnu.org; 18 Jul 2017 12:45:07 +0000 Received: from localhost ([127.0.0.1]:45516 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dXRsB-00016L-0k for submit@debbugs.gnu.org; Tue, 18 Jul 2017 08:45:07 -0400 Received: from mail-lf0-f67.google.com ([209.85.215.67]:34430) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dXRs9-00015Y-HW for 27546-done@debbugs.gnu.org; Tue, 18 Jul 2017 08:45:05 -0400 Received: by mail-lf0-f67.google.com with SMTP id p11so1660596lfd.1 for <27546-done@debbugs.gnu.org>; Tue, 18 Jul 2017 05:45:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=4N8fEwgTCS41zrluQV998OVnzTNjRuGbPID9PgQN9Hc=; b=LWwEslxYZKb8H3HeJL5een92NLDO6Q7nd9deEOxB+lqDxG9XdzuEL1QjXgJMBdeS3S a2+8UYV+b3SUg4ne+6m2hKsEhFSne6zi7P9OF9sQvSs2XnfzxdRbifHU99fTC2tSB0ty VIDN9k2oIX9q8gD8hnTWSjPTjEJiczTBGF/soOCUlXnLpXhBEFOgwy80FLtxw+5En55J UhPvTAbvR7/AIJ7QVTlYwu1e8Uv/zN/jFc8LPnI+xJdcPOPtOYkVL53GHRB3LioXzYYq 1G9Y9KizPi4u+c/akA3K6uqHOvv76AwYzHtKcoHBVOuBk+Cmvtp7EVaadPrqgm25HIvV rakw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=4N8fEwgTCS41zrluQV998OVnzTNjRuGbPID9PgQN9Hc=; b=KFhjKVcz8pzIyS6+jwbCXwg9NJTfHGgwdfEdMU+8fDVnEbZy/BfoFUIN2qdJ4wo0Qc R881SZv9iKmMnrvQ9uQ5HmSVc5oPZhlUpxDI8lh9NZySqZ5GFDw5S4gLgOUwdASKW06h 8LKqsLp7yqIcdYzngPuxShLBc6gLdPntqcqY+iSqtDkXSFMReMUH1aAirnt2soUccgna Qc94GysF6YAsZf9blH4mFuA0y4ioCeGlOKQgGezP/ao952bJO2FwDxx91smj5hsr69J5 eD5/A06gp9V9FgufpBykFiiOvtMB31yk7pLXmx/ISxTaVdiVWsZOFKOix2qbP34mPc1Q 1A7A== X-Gm-Message-State: AIVw112HL7z85wIJUIgdk4zmjeR3RssYXbsp0bPIdK6Z0IkMP02uoCtC +McAJzcjHpJ/zFB1 X-Received: by 10.46.21.21 with SMTP id s21mr664311ljd.118.1500381899461; Tue, 18 Jul 2017 05:44:59 -0700 (PDT) Received: from leviafan ([217.107.194.130]) by smtp.gmail.com with ESMTPSA id h203sm558378lfe.7.2017.07.18.05.44.57 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 18 Jul 2017 05:44:58 -0700 (PDT) From: Alex Kost To: Nicolas Goaziou Subject: Re: [bug#27546] [PATCH] Add wine stable release References: <87zico2x1l.fsf@nicolasgoaziou.fr> <20170701173817.GA29000@jasmine.lan> <87k23s0wsu.fsf@nicolasgoaziou.fr> <20170702114212.GA30356@jasmine.lan> <87o9t27u5r.fsf@gnu.org> <87bmp21qga.fsf@nicolasgoaziou.fr> <87lgo6rn30.fsf@gnu.org> <87k23pbiiw.fsf@nicolasgoaziou.fr> Date: Tue, 18 Jul 2017 15:44:59 +0300 In-Reply-To: <87k23pbiiw.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Mon, 03 Jul 2017 18:19:03 +0200") Message-ID: <87inipud6c.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.5 (/) X-Debbugs-Envelope-To: 27546-done Cc: 27546-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.5 (/) Hi, Nicolas. I've noticed this "bug" is still opened. In case you didn't know: you can close any bug by sending a message to (as I am doing with this message). -- Alex From unknown Sun Jun 22 03:57:49 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 16 Aug 2017 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator