unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#30189: Retux game halts after preloading levels (missing ucd.sqlite uniseg database)
@ 2018-01-21  3:46 Ben Sturmfels
  2018-01-21  6:09 ` Gábor Boskovits
  0 siblings, 1 reply; 6+ messages in thread
From: Ben Sturmfels @ 2018-01-21  3:46 UTC (permalink / raw)
  To: 30189; +Cc: Kei Kebreau

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

Hi Folks,

I'd like to play the Retux game, but while the game starts up it crashes
on me after the "preloading levels" screen.

There's no useful console output, but when running in the debugger, I
see that the python-uniseg package is looking for a file called
ucd.sqlite3 that doesn't exist, some kind of Unicode letter spacing
database that's not present in the BitBucket repository.

  python3 -m pdb -c continue \
  "/gnu/store/57psnlgdyri8phkxzasaf6q0gb8nskpz-retux-1.3.5/bin/.retux-real"

See uniseg/db.py:107 and 21. Since it's also looking in the current
directory, I tried downloading ucd.sqlite3 from the PyPI zip package -
that fixes the issue.

The python-uniseg package downloads the source from BitBucket, so I
tried changing that to PyPI:

  (uri (pypi-uri "uniseg" version ".zip"))

which downloads ok, but fails but the fails at the unpack phase without
any details. Should Guix know how to unpack a .zip? Or maybe I should
coerce the maintainer to publish a .tar.gz?

Currently Retux is the only program that uses python-uniseg (via
python-sge-pygame dependency).

Regards,
Ben

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

* bug#30189: Retux game halts after preloading levels (missing ucd.sqlite uniseg database)
  2018-01-21  3:46 bug#30189: Retux game halts after preloading levels (missing ucd.sqlite uniseg database) Ben Sturmfels
@ 2018-01-21  6:09 ` Gábor Boskovits
  2018-01-21  7:56   ` Ben Sturmfels
  0 siblings, 1 reply; 6+ messages in thread
From: Gábor Boskovits @ 2018-01-21  6:09 UTC (permalink / raw)
  To: Ben Sturmfels; +Cc: 30189, Kei Kebreau

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

I think unzip should be added to native-inputs. Can you try that?


2018-01-21 4:46 GMT+01:00 Ben Sturmfels <ben@sturm.com.au>:

> Hi Folks,
>
> I'd like to play the Retux game, but while the game starts up it crashes
> on me after the "preloading levels" screen.
>
> There's no useful console output, but when running in the debugger, I
> see that the python-uniseg package is looking for a file called
> ucd.sqlite3 that doesn't exist, some kind of Unicode letter spacing
> database that's not present in the BitBucket repository.
>
>   python3 -m pdb -c continue \
>   "/gnu/store/57psnlgdyri8phkxzasaf6q0gb8nskpz-retux-1.3.5/bin/.retux-
> real"
>
> See uniseg/db.py:107 and 21. Since it's also looking in the current
> directory, I tried downloading ucd.sqlite3 from the PyPI zip package -
> that fixes the issue.
>
> The python-uniseg package downloads the source from BitBucket, so I
> tried changing that to PyPI:
>
>   (uri (pypi-uri "uniseg" version ".zip"))
>
> which downloads ok, but fails but the fails at the unpack phase without
> any details. Should Guix know how to unpack a .zip? Or maybe I should
> coerce the maintainer to publish a .tar.gz?
>
> Currently Retux is the only program that uses python-uniseg (via
> python-sge-pygame dependency).
>
> Regards,
> Ben
>

[-- Attachment #2: Type: text/html, Size: 1765 bytes --]

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

* bug#30189: Retux game halts after preloading levels (missing ucd.sqlite uniseg database)
  2018-01-21  6:09 ` Gábor Boskovits
@ 2018-01-21  7:56   ` Ben Sturmfels
  2018-01-21  8:01     ` Ben Sturmfels
  2018-01-22  2:03     ` bug#30189: [PATCH] " Ben Sturmfels
  0 siblings, 2 replies; 6+ messages in thread
From: Ben Sturmfels @ 2018-01-21  7:56 UTC (permalink / raw)
  To: Gábor Boskovits; +Cc: 30189, Kei Kebreau


[-- Attachment #1.1: Type: text/plain, Size: 1535 bytes --]

Thanks Gábor, adding zipfile fixes the build and Retux now runs.

Patch attached and CC'd to guix-patches.

Regards,
Ben

On Sun, 21 Jan 2018, Gábor Boskovits wrote:

> I think unzip should be added to native-inputs. Can you try that?
>
> 2018-01-21 4:46 GMT+01:00 Ben Sturmfels <ben@sturm.com.au>:
>
>  Hi Folks,
>
>  I'd like to play the Retux game, but while the game starts up it
>  crashes
>  on me after the "preloading levels" screen.
>
>  There's no useful console output, but when running in the debugger, I
>  see that the python-uniseg package is looking for a file called
>  ucd.sqlite3 that doesn't exist, some kind of Unicode letter spacing
>  database that's not present in the BitBucket repository.
>
>  python3 -m pdb -c continue \
>  "/gnu/store/57psnlgdyri8phkxzasaf6q0gb8nskpz-retux-1.3.5/bin/.retux-real"
>  
>
>  See uniseg/db.py:107 and 21. Since it's also looking in the current
>  directory, I tried downloading ucd.sqlite3 from the PyPI zip package -
>  that fixes the issue.
>
>  The python-uniseg package downloads the source from BitBucket, so
>  I
>  tried changing that to PyPI:
>
>  (uri (pypi-uri "uniseg" version ".zip"))
>
>  which downloads ok, but fails but the fails at the unpack phase
>  without
>  any details. Should Guix know how to unpack a .zip? Or maybe I
>  should
>  coerce the maintainer to publish a .tar.gz?
>
>  Currently Retux is the only program that uses python-uniseg (via
>  python-sge-pygame dependency).
>
>  Regards,
>  Ben

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-python-uniseg-Switch-to-PyPi-source-to-get-missi.patch --]
[-- Type: text/x-patch, Size: 1394 bytes --]

From 42c1e69526ec9781e3f7290fb74e2a561131e3be Mon Sep 17 00:00:00 2001
From: Ben Sturmfels <ben@sturm.com.au>
Date: Sun, 21 Jan 2018 18:43:07 +1100
Subject: [PATCH] gnu: python-uniseg: Switch to PyPi source to get missing
 ucd.sqlite3.

* gnu/packages/python.scm (python-uniseg): Use PyPI, add zipfile dependency to
  unpack.
---
 gnu/packages/python.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 0b582e6b7..2f1c20e31 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -773,15 +773,15 @@ Python 3 support.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://bitbucket.org/emptypage/uniseg-python/"
-                           "get/rel-" version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (uri (pypi-uri "uniseg" version ".zip"))
        (sha256
         (base32
-         "1df4gddnj2a0v8z35wb2ra5vvh1f1qyxs8fgd25c8g64031mna6x"))))
+         "05jsazvz6nbmh6l3v1rph5ydkqn1hzx1pyggdyvgp2qgmgrnmiz2"))))
     (build-system python-build-system)
     (arguments
      '(#:tests? #f)) ; The test suite requires network access.
+    (native-inputs
+     `(("unzip" ,unzip)))
     (home-page
      "https://bitbucket.org/emptypage/uniseg-python")
     (synopsis
-- 
2.15.1


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

* bug#30189: Retux game halts after preloading levels (missing ucd.sqlite uniseg database)
  2018-01-21  7:56   ` Ben Sturmfels
@ 2018-01-21  8:01     ` Ben Sturmfels
  2018-01-22  2:03     ` bug#30189: [PATCH] " Ben Sturmfels
  1 sibling, 0 replies; 6+ messages in thread
From: Ben Sturmfels @ 2018-01-21  8:01 UTC (permalink / raw)
  To: guix-patches; +Cc: 30189, Kei Kebreau


[-- Attachment #1.1: Type: text/plain, Size: 1677 bytes --]

Whoops, forgot to include guix-patches.

On Sun, 21 Jan 2018, Ben Sturmfels wrote:

> Thanks Gábor, adding zipfile fixes the build and Retux now runs.
>
> Patch attached and CC'd to guix-patches.
>
> Regards,
> Ben
>
> On Sun, 21 Jan 2018, Gábor Boskovits wrote:
>
>> I think unzip should be added to native-inputs. Can you try that?
>>
>> 2018-01-21 4:46 GMT+01:00 Ben Sturmfels <ben@sturm.com.au>:
>>
>>  Hi Folks,
>>
>>  I'd like to play the Retux game, but while the game starts up it
>>  crashes
>>  on me after the "preloading levels" screen.
>>
>>  There's no useful console output, but when running in the debugger, I
>>  see that the python-uniseg package is looking for a file called
>>  ucd.sqlite3 that doesn't exist, some kind of Unicode letter spacing
>>  database that's not present in the BitBucket repository.
>>
>>  python3 -m pdb -c continue \
>>  "/gnu/store/57psnlgdyri8phkxzasaf6q0gb8nskpz-retux-1.3.5/bin/.retux-real"
>>  
>>
>>  See uniseg/db.py:107 and 21. Since it's also looking in the current
>>  directory, I tried downloading ucd.sqlite3 from the PyPI zip package -
>>  that fixes the issue.
>>
>>  The python-uniseg package downloads the source from BitBucket, so
>>  I
>>  tried changing that to PyPI:
>>
>>  (uri (pypi-uri "uniseg" version ".zip"))
>>
>>  which downloads ok, but fails but the fails at the unpack phase
>>  without
>>  any details. Should Guix know how to unpack a .zip? Or maybe I
>>  should
>>  coerce the maintainer to publish a .tar.gz?
>>
>>  Currently Retux is the only program that uses python-uniseg (via
>>  python-sge-pygame dependency).
>>
>>  Regards,
>>  Ben

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-python-uniseg-Switch-to-PyPi-source-to-get-missi.patch --]
[-- Type: text/x-patch, Size: 1394 bytes --]

From 42c1e69526ec9781e3f7290fb74e2a561131e3be Mon Sep 17 00:00:00 2001
From: Ben Sturmfels <ben@sturm.com.au>
Date: Sun, 21 Jan 2018 18:43:07 +1100
Subject: [PATCH] gnu: python-uniseg: Switch to PyPi source to get missing
 ucd.sqlite3.

* gnu/packages/python.scm (python-uniseg): Use PyPI, add zipfile dependency to
  unpack.
---
 gnu/packages/python.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 0b582e6b7..2f1c20e31 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -773,15 +773,15 @@ Python 3 support.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://bitbucket.org/emptypage/uniseg-python/"
-                           "get/rel-" version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (uri (pypi-uri "uniseg" version ".zip"))
        (sha256
         (base32
-         "1df4gddnj2a0v8z35wb2ra5vvh1f1qyxs8fgd25c8g64031mna6x"))))
+         "05jsazvz6nbmh6l3v1rph5ydkqn1hzx1pyggdyvgp2qgmgrnmiz2"))))
     (build-system python-build-system)
     (arguments
      '(#:tests? #f)) ; The test suite requires network access.
+    (native-inputs
+     `(("unzip" ,unzip)))
     (home-page
      "https://bitbucket.org/emptypage/uniseg-python")
     (synopsis
-- 
2.15.1


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

* bug#30189: [PATCH] Re: bug#30189: Retux game halts after preloading levels (missing ucd.sqlite uniseg database)
  2018-01-21  7:56   ` Ben Sturmfels
  2018-01-21  8:01     ` Ben Sturmfels
@ 2018-01-22  2:03     ` Ben Sturmfels
  2018-01-30  5:19       ` Leo Famulari
  1 sibling, 1 reply; 6+ messages in thread
From: Ben Sturmfels @ 2018-01-22  2:03 UTC (permalink / raw)
  To: guix-patches


[-- Attachment #1.1: Type: text/plain, Size: 1840 bytes --]

Patch for python-uniseg attached that fixes bug#30189.

Sorry if this is a duplicate, but I can't seem my previous email in the
guix-patches archives. Maybe because I missed the [PATCH] in the subject?

On Sun, 21 Jan 2018, Ben Sturmfels wrote:

> Thanks Gábor, adding zipfile fixes the build and Retux now runs.
>
> Patch attached and CC'd to guix-patches.
>
> Regards,
> Ben
>
> On Sun, 21 Jan 2018, Gábor Boskovits wrote:
>
>> I think unzip should be added to native-inputs. Can you try that?
>>
>> 2018-01-21 4:46 GMT+01:00 Ben Sturmfels <ben@sturm.com.au>:
>>
>>  Hi Folks,
>>
>>  I'd like to play the Retux game, but while the game starts up it
>>  crashes
>>  on me after the "preloading levels" screen.
>>
>>  There's no useful console output, but when running in the debugger, I
>>  see that the python-uniseg package is looking for a file called
>>  ucd.sqlite3 that doesn't exist, some kind of Unicode letter spacing
>>  database that's not present in the BitBucket repository.
>>
>>  python3 -m pdb -c continue \
>>  "/gnu/store/57psnlgdyri8phkxzasaf6q0gb8nskpz-retux-1.3.5/bin/.retux-real"
>>
>>
>>  See uniseg/db.py:107 and 21. Since it's also looking in the current
>>  directory, I tried downloading ucd.sqlite3 from the PyPI zip package -
>>  that fixes the issue.
>>
>>  The python-uniseg package downloads the source from BitBucket, so
>>  I
>>  tried changing that to PyPI:
>>
>>  (uri (pypi-uri "uniseg" version ".zip"))
>>
>>  which downloads ok, but fails but the fails at the unpack phase
>>  without
>>  any details. Should Guix know how to unpack a .zip? Or maybe I
>>  should
>>  coerce the maintainer to publish a .tar.gz?
>>
>>  Currently Retux is the only program that uses python-uniseg (via
>>  python-sge-pygame dependency).
>>
>>  Regards,
>>  Ben

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-python-uniseg-Switch-to-PyPi-source-to-get-missi.patch --]
[-- Type: text/x-patch, Size: 1394 bytes --]

From 42c1e69526ec9781e3f7290fb74e2a561131e3be Mon Sep 17 00:00:00 2001
From: Ben Sturmfels <ben@sturm.com.au>
Date: Sun, 21 Jan 2018 18:43:07 +1100
Subject: [PATCH] gnu: python-uniseg: Switch to PyPi source to get missing
 ucd.sqlite3.

* gnu/packages/python.scm (python-uniseg): Use PyPI, add zipfile dependency to
  unpack.
---
 gnu/packages/python.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 0b582e6b7..2f1c20e31 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -773,15 +773,15 @@ Python 3 support.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://bitbucket.org/emptypage/uniseg-python/"
-                           "get/rel-" version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (uri (pypi-uri "uniseg" version ".zip"))
        (sha256
         (base32
-         "1df4gddnj2a0v8z35wb2ra5vvh1f1qyxs8fgd25c8g64031mna6x"))))
+         "05jsazvz6nbmh6l3v1rph5ydkqn1hzx1pyggdyvgp2qgmgrnmiz2"))))
     (build-system python-build-system)
     (arguments
      '(#:tests? #f)) ; The test suite requires network access.
+    (native-inputs
+     `(("unzip" ,unzip)))
     (home-page
      "https://bitbucket.org/emptypage/uniseg-python")
     (synopsis
-- 
2.15.1


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

* bug#30189: [PATCH] Re: bug#30189: Retux game halts after preloading levels (missing ucd.sqlite uniseg database)
  2018-01-22  2:03     ` bug#30189: [PATCH] " Ben Sturmfels
@ 2018-01-30  5:19       ` Leo Famulari
  0 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2018-01-30  5:19 UTC (permalink / raw)
  To: Ben Sturmfels; +Cc: 30189-done

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

On Mon, Jan 22, 2018 at 01:03:12PM +1100, Ben Sturmfels wrote:
> Patch for python-uniseg attached that fixes bug#30189.
> 
> Sorry if this is a duplicate, but I can't seem my previous email in the
> guix-patches archives. Maybe because I missed the [PATCH] in the subject?

Hm... I'm not sure what's up with that.

> From 42c1e69526ec9781e3f7290fb74e2a561131e3be Mon Sep 17 00:00:00 2001
> From: Ben Sturmfels <ben@sturm.com.au>
> Date: Sun, 21 Jan 2018 18:43:07 +1100
> Subject: [PATCH] gnu: python-uniseg: Switch to PyPi source to get missing
>  ucd.sqlite3.
> 
> * gnu/packages/python.scm (python-uniseg): Use PyPI, add zipfile dependency to
>   unpack.

Anyways, I edited the commit message and pushed as
526789a1acb14cf930a756e968b4de8cb9d95188

Thanks!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2018-01-30  5:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-21  3:46 bug#30189: Retux game halts after preloading levels (missing ucd.sqlite uniseg database) Ben Sturmfels
2018-01-21  6:09 ` Gábor Boskovits
2018-01-21  7:56   ` Ben Sturmfels
2018-01-21  8:01     ` Ben Sturmfels
2018-01-22  2:03     ` bug#30189: [PATCH] " Ben Sturmfels
2018-01-30  5:19       ` Leo Famulari

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).