summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2016-04-04 21:21:52 -0400
committerMichael Sterrett <mr_bones_@gentoo.org>2016-04-04 21:21:52 -0400
commit591c73185e078aeff56c0ad0c906421ede665e1c (patch)
tree843b7fac5aed4206db1095e9f9dae20742c15cba /games-util/nml/files
parentgames-util/grfcodec: version bump (diff)
downloadgentoo-591c73185e078aeff56c0ad0c906421ede665e1c.tar.gz
gentoo-591c73185e078aeff56c0ad0c906421ede665e1c.tar.bz2
gentoo-591c73185e078aeff56c0ad0c906421ede665e1c.zip
games-util/nml: version bump
Package-Manager: portage-2.2.26
Diffstat (limited to 'games-util/nml/files')
-rw-r--r--games-util/nml/files/nml-0.4.4-pillow3.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/games-util/nml/files/nml-0.4.4-pillow3.patch b/games-util/nml/files/nml-0.4.4-pillow3.patch
new file mode 100644
index 000000000000..e55d989fbc1b
--- /dev/null
+++ b/games-util/nml/files/nml-0.4.4-pillow3.patch
@@ -0,0 +1,11 @@
+--- nml-0.4.4.orig/nml/lz77.py
++++ nml-0.4.4/nml/lz77.py
+@@ -25,7 +25,7 @@
+ @return: Compressed data.
+ @rtype: C{bytearray}
+ """
+- stream = data.tostring()
++ stream = data.tobytes()
+ position = 0
+ output = array.array('B')
+ literal_bytes = array.array('B')