GNU bug report logs - #28065
[PATCH] gnu: Add OpenMW.

Previous Next

Package: guix-patches;

Reported by: manolis837 <at> gmail.com

Date: Sat, 12 Aug 2017 14:26:01 UTC

Severity: normal

Tags: patch

Done: Manolis Ragkousis <manolis837 <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 28065 in the body.
You can then email your comments to 28065 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#28065; Package guix-patches. (Sat, 12 Aug 2017 14:26:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to manolis837 <at> gmail.com:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 12 Aug 2017 14:26:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: manolis837 <at> gmail.com
To: guix-patches <at> gnu.org
Cc: alezost <at> gmail.com, Manolis Ragkousis <manolis837 <at> gmail.com>
Subject: [PATCH] gnu: Add OpenMW.
Date: Sat, 12 Aug 2017 17:24:52 +0300
From: Manolis Ragkousis <manolis837 <at> gmail.com>

* gnu/packages/game-development.scm (openmw): New variable.
---
 gnu/packages/game-development.scm | 41 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index 1cba882a2..12a560b6a 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -978,3 +978,44 @@ and 3D applications.  The main goals of mygui are: speed, flexibility and ease
 of use.")
     (home-page "http://mygui.info/")
     (license license:expat)))
+
+(define-public openmw
+  (package
+    (name "openmw")
+    (version "0.42.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append "https://github.com/OpenMW/openmw/archive/"
+                       name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1pla8016lpbg8cgm9kia318a860f26dmiayc72p3zl35mqrc7g7w"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:tests? #f                      ; No test target
+       #:configure-flags
+       (list "-DDESIRED_QT_VERSION=5")))
+    (native-inputs
+     `(("boost" ,boost)
+       ("doxygen" ,doxygen)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("bullet", bullet)
+       ("ffmpeg", ffmpeg)
+       ("libxt" ,libxt)
+       ("mygui" ,mygui)
+       ("openal" ,openal)
+       ("openscenegraph", openscenegraph)
+       ("qtbase", qtbase)
+       ("sdl" ,sdl2)
+       ("unshield", unshield)))
+    (synopsis "Free software re-implementation of the RPG Morrowind engine")
+    (description
+     "OpenMW is a free, open source and modern engine which reimplements and
+extends the one that runs the 2002 open-world RPG Morrowind.  The engine comes
+with its own editor , called OpenMW-CS which allows the user to edit or create
+their own original games.")
+    (home-page "https://openmw.org")
+    (license license:gpl3)))
-- 
2.13.4





Information forwarded to guix-patches <at> gnu.org:
bug#28065; Package guix-patches. (Sat, 12 Aug 2017 21:03:01 GMT) Full text and rfc822 format available.

Message #8 received at 28065 <at> debbugs.gnu.org (full text, mbox):

From: Alex Kost <alezost <at> gmail.com>
To: manolis837 <at> gmail.com
Cc: 28065 <at> debbugs.gnu.org
Subject: Re: [bug#28065] [PATCH] gnu: Add OpenMW.
Date: Sun, 13 Aug 2017 00:02:01 +0300
manolis837 <at> gmail.com (2017-08-12 17:24 +0300) wrote:

> From: Manolis Ragkousis <manolis837 <at> gmail.com>
>
> * gnu/packages/game-development.scm (openmw): New variable.
> ---
>  gnu/packages/game-development.scm | 41 +++++++++++++++++++++++++++++++++++++++
>  1 file changed, 41 insertions(+)
>
> diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
> index 1cba882a2..12a560b6a 100644
> --- a/gnu/packages/game-development.scm
> +++ b/gnu/packages/game-development.scm
> @@ -978,3 +978,44 @@ and 3D applications.  The main goals of mygui are: speed, flexibility and ease
>  of use.")
>      (home-page "http://mygui.info/")
>      (license license:expat)))
> +
> +(define-public openmw
> +  (package
> +    (name "openmw")
> +    (version "0.42.0")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri
> +        (string-append "https://github.com/OpenMW/openmw/archive/"
> +                       name "-" version ".tar.gz"))
> +       (sha256
> +        (base32
> +         "1pla8016lpbg8cgm9kia318a860f26dmiayc72p3zl35mqrc7g7w"))))
> +    (build-system cmake-build-system)
> +    (arguments
> +     `(#:tests? #f                      ; No test target
> +       #:configure-flags
> +       (list "-DDESIRED_QT_VERSION=5")))
> +    (native-inputs
> +     `(("boost" ,boost)
> +       ("doxygen" ,doxygen)
> +       ("pkg-config" ,pkg-config)))
> +    (inputs
> +     `(("bullet", bullet)
> +       ("ffmpeg", ffmpeg)
> +       ("libxt" ,libxt)
> +       ("mygui" ,mygui)
> +       ("openal" ,openal)
> +       ("openscenegraph", openscenegraph)
> +       ("qtbase", qtbase)
> +       ("sdl" ,sdl2)
> +       ("unshield", unshield)))
> +    (synopsis "Free software re-implementation of the RPG Morrowind engine")
> +    (description
> +     "OpenMW is a free, open source and modern engine which reimplements and
> +extends the one that runs the 2002 open-world RPG Morrowind.  The engine comes
> +with its own editor , called OpenMW-CS which allows the user to edit or create
                      ^
extra space-----------'

> +their own original games.")
> +    (home-page "https://openmw.org")
> +    (license license:gpl3)))

Overall, LGTM.  Thank you for all your great job on packaging openmw and
all its dependencies!

-- 
Alex




Information forwarded to guix-patches <at> gnu.org:
bug#28065; Package guix-patches. (Sat, 12 Aug 2017 21:13:01 GMT) Full text and rfc822 format available.

Message #11 received at 28065 <at> debbugs.gnu.org (full text, mbox):

From: Alex Kost <alezost <at> gmail.com>
To: manolis837 <at> gmail.com
Cc: 28065 <at> debbugs.gnu.org
Subject: Re: [bug#28065] [PATCH] gnu: Add OpenMW.
Date: Sun, 13 Aug 2017 00:12:17 +0300
manolis837 <at> gmail.com (2017-08-12 17:24 +0300) wrote:

[...]
> +    (inputs
> +     `(("bullet", bullet)
> +       ("ffmpeg", ffmpeg)
                   ^^
Oh, please put commas right before symbols, i.e. without extra space:

          ("bullet" ,bullet)

> +       ("libxt" ,libxt)
> +       ("mygui" ,mygui)
> +       ("openal" ,openal)
> +       ("openscenegraph", openscenegraph)
                           ^^
> +       ("qtbase", qtbase)
                   ^^
> +       ("sdl" ,sdl2)
> +       ("unshield", unshield)))
                     ^^
> +    (synopsis "Free software re-implementation of the RPG Morrowind engine")
> +    (description
> +     "OpenMW is a free, open source and modern engine which reimplements and
> +extends the one that runs the 2002 open-world RPG Morrowind.  The engine comes
> +with its own editor , called OpenMW-CS which allows the user to edit or create
> +their own original games.")
> +    (home-page "https://openmw.org")
> +    (license license:gpl3)))

-- 
Alex




Reply sent to Manolis Ragkousis <manolis837 <at> gmail.com>:
You have taken responsibility. (Thu, 17 Aug 2017 17:13:02 GMT) Full text and rfc822 format available.

Notification sent to manolis837 <at> gmail.com:
bug acknowledged by developer. (Thu, 17 Aug 2017 17:13:02 GMT) Full text and rfc822 format available.

Message #16 received at 28065-done <at> debbugs.gnu.org (full text, mbox):

From: Manolis Ragkousis <manolis837 <at> gmail.com>
To: Alex Kost <alezost <at> gmail.com>
Cc: 28065-done <at> debbugs.gnu.org
Subject: Re: [bug#28065] [PATCH] gnu: Add OpenMW.
Date: Thu, 17 Aug 2017 20:11:51 +0300
Updated patch and pushed to master.

Now I will tell the openmw dev team that they can use Guix for
development :D.

Thank you Alex for reviewing!

Manolis




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 15 Sep 2017 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 7 years and 280 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.