diff --git a/devel/renpy/Makefile b/devel/renpy/Makefile index 96bea0d7194f..a0c2d7c50ad4 100644 --- a/devel/renpy/Makefile +++ b/devel/renpy/Makefile @@ -3,7 +3,7 @@ PORTNAME= renpy PORTVERSION?= 6.99.14.3 DISTVERSIONSUFFIX=-sdk -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= devel games MASTER_SITES= https://www.renpy.org/dl/${PORTVERSION}/ @@ -23,7 +23,6 @@ LIB_DEPENDS= libfribidi.so:converters/fribidi \ libfreetype.so:print/freetype2 RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}game_sdl2>=${PORTVERSION}:devel/py-game_sdl2@${FLAVOR} -BROKEN= fails to build with cython 0.28 CONFLICTS_INSTALL?= ${PORTNAME}6-* # Upstream tends to reroll distfiles before moving under /release/ diff --git a/devel/renpy/files/patch-renpy_display_render.pyx b/devel/renpy/files/patch-renpy_display_render.pyx new file mode 100644 index 000000000000..04e9a342dab6 --- /dev/null +++ b/devel/renpy/files/patch-renpy_display_render.pyx @@ -0,0 +1,13 @@ +https://github.com/renpy/renpy/commit/ba832e5e3d52 + +--- renpy/display/render.pyx.orig 2018-01-26 22:32:59 UTC ++++ renpy/display/render.pyx +@@ -572,7 +572,7 @@ PIXELLATE = 3 + + cdef class Render: + +- def __init__(Render self, float width, float height, draw_func=None, layer_name=None, bint opaque=None): #@DuplicatedSignature ++ def __init__(Render self, float width, float height, draw_func=None, layer_name=None, bint opaque=False): #@DuplicatedSignature + """ + Creates a new render corresponding to the given widget with + the specified width and height. diff --git a/devel/renpy6/Makefile b/devel/renpy6/Makefile index 851935858bf4..03204ea2315a 100644 --- a/devel/renpy6/Makefile +++ b/devel/renpy6/Makefile @@ -1,10 +1,9 @@ # $FreeBSD$ PORTVERSION= 6.18.3 -PORTREVISION= 6 +PORTREVISION= 7 PKGNAMESUFFIX= 6 -BROKEN= fails to build with cython 0.28 CONFLICTS_INSTALL= ${PORTNAME}-[0-9]* MASTERDIR= ${.CURDIR}/../renpy diff --git a/devel/renpy6/files/patch-renpy_display_render.pyx b/devel/renpy6/files/patch-renpy_display_render.pyx new file mode 100644 index 000000000000..11dbe8757a77 --- /dev/null +++ b/devel/renpy6/files/patch-renpy_display_render.pyx @@ -0,0 +1,13 @@ +https://github.com/renpy/renpy/commit/ba832e5e3d52 + +--- renpy/display/render.pyx.orig 2014-10-03 01:16:12 UTC ++++ renpy/display/render.pyx +@@ -448,7 +448,7 @@ PIXELLATE = 3 + + cdef class Render: + +- def __init__(Render self, float width, float height, draw_func=None, layer_name=None, bint opaque=None): #@DuplicatedSignature ++ def __init__(Render self, float width, float height, draw_func=None, layer_name=None, bint opaque=False): #@DuplicatedSignature + """ + Creates a new render corresponding to the given widget with + the specified width and height.