unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#29834] [PATCH] Add wine-staging.
@ 2017-12-24  9:39 Nicolas Goaziou
  2017-12-24 14:21 ` bug#29834: " Rutger Helling
  0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Goaziou @ 2017-12-24  9:39 UTC (permalink / raw)
  To: 29834

[-- Attachment #1: Type: text/plain, Size: 155 bytes --]

Hello,

The following patch adds latest release for Wine staging.

Regards,

-- 
Nicolas Goaziou                                                0x80A93738

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Add wine-staging --]
[-- Type: text/x-diff, Size: 2046 bytes --]

From bb586866759d1bdd8a7349ece2c356d108df6078 Mon Sep 17 00:00:00 2001
From: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date: Sun, 24 Dec 2017 10:36:35 +0100
Subject: [PATCH] gnu: Add wine-staging.

* gnu/packages/wine.scm (wine-staging): New variable.
---
 gnu/packages/wine.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/wine.scm b/gnu/packages/wine.scm
index b4f6573cf..5c5652e73 100644
--- a/gnu/packages/wine.scm
+++ b/gnu/packages/wine.scm
@@ -183,3 +183,31 @@ integrate Windows applications into your desktop.")
                (base32
                 "0g6cwjyqwc660w33453aklh3hpc0b8rrb88dryn23ah6wannvagg"))))))
 
+(define-public wine-staging
+  (package
+    (inherit wine)
+    (name "wine-staging")
+    (version "2.21")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/wine-compholio/wine-patched/archive/"
+                    "staging-" version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1pjaxj7h3q6y356np908fvsx0bf7yx5crqvgl4hza6gfssdmsr5r"))))
+    (synopsis "Implementation of the Windows API (staging branch)")
+    (description "Wine Staging is the testing area of wine.  It
+contains bug fixes and features, which have not been integrated into
+the development branch yet.  The idea of Wine Staging is to provide
+experimental features faster to end users and to give developers the
+possibility to discuss and improve their patches before they are
+integrated into the main branch.")
+    (home-page "https://wine-staging.com/")
+    ;; In addition to regular Wine license (lgpl2.1+), Wine Staging
+    ;; provides Liberation and WenQuanYi Micro Hei fonts.  Those use
+    ;; different licenses.  In particular, the latter is licensed under
+    ;; both GPL3+ and Apache 2 License.
+    (license
+     (list license:lgpl2.1+ license:silofl1.1 license:gpl3+ license:asl2.0))))
-- 
2.15.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* bug#29834: [PATCH] Add wine-staging.
  2017-12-24  9:39 [bug#29834] [PATCH] Add wine-staging Nicolas Goaziou
@ 2017-12-24 14:21 ` Rutger Helling
  2017-12-24 14:26   ` [bug#29834] " Nicolas Goaziou
  2017-12-24 14:26   ` Rutger Helling
  0 siblings, 2 replies; 6+ messages in thread
From: Rutger Helling @ 2017-12-24 14:21 UTC (permalink / raw)
  To: mail, 29834-done

[-- Attachment #1: Type: text/plain, Size: 216 bytes --]

LGTM, thanks! I've made a few grammatical changes and pushed as
7866d8c81985ee70ae79e1dbcd22d049e1fd8ba5.

I'll make a 64-bit version later and I'll add a few inputs
(Wine-Staging has GTK+ support for example).

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#29834] [PATCH] Add wine-staging.
  2017-12-24 14:21 ` bug#29834: " Rutger Helling
@ 2017-12-24 14:26   ` Nicolas Goaziou
  2017-12-24 14:26   ` Rutger Helling
  1 sibling, 0 replies; 6+ messages in thread
From: Nicolas Goaziou @ 2017-12-24 14:26 UTC (permalink / raw)
  To: Rutger Helling; +Cc: 29834-done

Hello,

Rutger Helling <rhelling@mykolab.com> writes:

> LGTM, thanks! I've made a few grammatical changes and pushed as
> 7866d8c81985ee70ae79e1dbcd22d049e1fd8ba5.
>
> I'll make a 64-bit version later and I'll add a few inputs
> (Wine-Staging has GTK+ support for example).

Great. Thank you.

Regards,

-- 
Nicolas Goaziou                                                0x80A93738

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#29834] [PATCH] Add wine-staging.
  2017-12-24 14:21 ` bug#29834: " Rutger Helling
  2017-12-24 14:26   ` [bug#29834] " Nicolas Goaziou
@ 2017-12-24 14:26   ` Rutger Helling
  2017-12-24 15:06     ` Nicolas Goaziou
  1 sibling, 1 reply; 6+ messages in thread
From: Rutger Helling @ 2017-12-24 14:26 UTC (permalink / raw)
  To: mail, 29834-done

[-- Attachment #1: Type: text/plain, Size: 387 bytes --]

BTW, I noticed you didn't add a copyright notice. Do you want it added?

On Sun, 24 Dec 2017 15:21:30 +0100
Rutger Helling <rhelling@mykolab.com> wrote:

> LGTM, thanks! I've made a few grammatical changes and pushed as
> 7866d8c81985ee70ae79e1dbcd22d049e1fd8ba5.
> 
> I'll make a 64-bit version later and I'll add a few inputs
> (Wine-Staging has GTK+ support for example).


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#29834] [PATCH] Add wine-staging.
  2017-12-24 14:26   ` Rutger Helling
@ 2017-12-24 15:06     ` Nicolas Goaziou
  2017-12-24 15:14       ` Rutger Helling
  0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Goaziou @ 2017-12-24 15:06 UTC (permalink / raw)
  To: Rutger Helling; +Cc: 29834-done

Rutger Helling <rhelling@mykolab.com> writes:

> BTW, I noticed you didn't add a copyright notice. Do you want it added?

I realized that too. Somewhat grossly, I added myself to the Hall of
Fame ;)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#29834] [PATCH] Add wine-staging.
  2017-12-24 15:06     ` Nicolas Goaziou
@ 2017-12-24 15:14       ` Rutger Helling
  0 siblings, 0 replies; 6+ messages in thread
From: Rutger Helling @ 2017-12-24 15:14 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: 29834-done

[-- Attachment #1: Type: text/plain, Size: 442 bytes --]

Okay, neat :). I've added the gtk+ and libva inputs and also pushed a
64-bit version, just like the regular version of Wine.

On Sun, 24 Dec 2017 16:06:07 +0100
Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:

> Rutger Helling <rhelling@mykolab.com> writes:
> 
> > BTW, I noticed you didn't add a copyright notice. Do you want it
> > added?  
> 
> I realized that too. Somewhat grossly, I added myself to the Hall of
> Fame ;)


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-12-24 15:16 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-24  9:39 [bug#29834] [PATCH] Add wine-staging Nicolas Goaziou
2017-12-24 14:21 ` bug#29834: " Rutger Helling
2017-12-24 14:26   ` [bug#29834] " Nicolas Goaziou
2017-12-24 14:26   ` Rutger Helling
2017-12-24 15:06     ` Nicolas Goaziou
2017-12-24 15:14       ` Rutger Helling

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).