Forgot to attach the diff.
Index: Makefile =================================================================== RCS file: /cvs/ports/devel/pygame/Makefile,v retrieving revision 1.49 diff -u -p -r1.49 Makefile --- Makefile 26 Nov 2022 23:28:13 -0000 1.49 +++ Makefile 29 Aug 2023 19:54:35 -0000 @@ -1,7 +1,6 @@ COMMENT= set of Python modules designed for writing games -MODPY_EGG_VERSION = 2.0.1 -REVISION= 4 +MODPY_EGG_VERSION = 2.5.1 DISTNAME= pygame-${MODPY_EGG_VERSION} PKGNAME = py-game-${MODPY_EGG_VERSION} CATEGORIES= devel games @@ -11,8 +10,8 @@ HOMEPAGE= https://www.pygame.org/ # LGPLv2.1 PERMIT_PACKAGE= Yes -WANTLIB += SDL SDL_image SDL_mixer SDL_ttf X11 jpeg png pthread -WANTLIB += freetype z ${MODPY_WANTLIB} +WANTLIB += SDL2 SDL2_image SDL2_mixer SDL2_ttf X11 freetype jpeg +WANTLIB += png ${MODPY_WANTLIB} MODULES = lang/python @@ -22,14 +21,14 @@ FLAVOR ?= MODPY_PI = Yes MODPY_SETUPTOOLS = Yes -LIB_DEPENDS= devel/sdl-ttf \ - devel/sdl-image \ - devel/sdl-mixer +LIB_DEPENDS= devel/sdl2-ttf \ + devel/sdl2-image \ + devel/sdl2-mixer TEST_DEPENDS = ${BUILD_PKGPATH} MAKE_ENV+= LOCALBASE="${LOCALBASE}" \ - SDL_CONFIG="${LOCALBASE}/bin/sdl-config" + SDL_CONFIG="${LOCALBASE}/bin/sdl2-config" EXAMPLESDIR= ${PREFIX}/share/examples/${MODPY_PY_PREFIX}pygame DOCDIR= ${PREFIX}/share/doc/${MODPY_PY_PREFIX}pygame @@ -38,8 +37,8 @@ TEST_IS_INTERACTIVE= x11 TEST_ENV = PYTHONPATH=${WRKSRC} do-configure: - ${SUBST_CMD} ${WRKSRC}/buildconfig/Setup.SDL1.in - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MODPY_BIN} buildconfig/config.py -auto -sdl1 + ${SUBST_CMD} ${WRKSRC}/buildconfig/Setup.SDL2.in + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MODPY_BIN} setup.py -config -auto post-install: ${INSTALL_DATA_DIR} ${EXAMPLESDIR} @@ -49,7 +48,6 @@ post-install: ${INSTALL_SCRIPT} ${WRKSRC}/examples/data/* ${EXAMPLESDIR}/data ${INSTALL_DATA_DIR} ${DOCDIR} ${INSTALL_DATA} ${WRKSRC}/README.rst ${DOCDIR} - ${INSTALL_DATA} ${WRKSRC}/docs/*.{gif,html} ${DOCDIR} .for i in ref tut ${INSTALL_DATA_DIR} ${DOCDIR}/$i ${INSTALL_DATA} `find ${WRKSRC}/docs/reST/$i -maxdepth 1 -type f` \ Index: distinfo =================================================================== RCS file: /cvs/ports/devel/pygame/distinfo,v retrieving revision 1.12 diff -u -p -r1.12 distinfo --- distinfo 14 Jan 2021 06:37:35 -0000 1.12 +++ distinfo 29 Aug 2023 19:54:35 -0000 @@ -1,2 +1,2 @@ -SHA256 (pygame-2.0.1.tar.gz) = ix57Y/R6r83YhJkzsgZ3h0fvGAK9PVJqykXtdxQeQAE= -SIZE (pygame-2.0.1.tar.gz) = 5536907 +SHA256 (pygame-2.5.1.tar.gz) = t/iHIL5cdAV2/ZiNwDdTKNwa2wcIaWVKJFUx4D30YmI= +SIZE (pygame-2.5.1.tar.gz) = 15779748 Index: patches/patch-buildconfig_Setup_SDL2_in =================================================================== RCS file: patches/patch-buildconfig_Setup_SDL2_in diff -N patches/patch-buildconfig_Setup_SDL2_in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ patches/patch-buildconfig_Setup_SDL2_in 29 Aug 2023 19:54:35 -0000 @@ -0,0 +1,11 @@ +Index: buildconfig/Setup.SDL2.in +--- buildconfig/Setup.SDL2.in.orig ++++ buildconfig/Setup.SDL2.in +@@ -56,6 +56,7 @@ base src_c/base.c $(SDL) $(DEBUG) + color src_c/color.c $(SDL) $(DEBUG) + constants src_c/constants.c $(SDL) $(DEBUG) + display src_c/display.c $(SDL) $(DEBUG) ++display src_c/display.c $(SDL) $(DEBUG) -I${X11BASE}/include + event src_c/event.c $(SDL) $(DEBUG) + key src_c/key.c $(SDL) $(DEBUG) + mouse src_c/mouse.c $(SDL) $(DEBUG) Index: patches/patch-src_c_camera_h =================================================================== RCS file: /cvs/ports/devel/pygame/patches/patch-src_c_camera_h,v retrieving revision 1.3 diff -u -p -r1.3 patch-src_c_camera_h --- patches/patch-src_c_camera_h 11 Mar 2022 18:53:06 -0000 1.3 +++ patches/patch-src_c_camera_h 29 Aug 2023 19:54:35 -0000 @@ -1,29 +1,34 @@ Index: src_c/camera.h --- src_c/camera.h.orig +++ src_c/camera.h -@@ -41,9 +41,12 @@ - /* on freebsd there is no asm/types */ - #ifdef linux - #include <asm/types.h> /* for videodev2.h */ -+ #include <linux/videodev2.h> - #endif +@@ -42,11 +42,15 @@ + /* on freebsd there is no asm/types */ + #ifdef linux + #include <asm/types.h> /* for videodev2.h */ ++#include <linux/videodev2.h> + #endif -- #include <linux/videodev2.h> -+ #ifdef __OpenBSD__ -+ #include <sys/videoio.h> -+ #endif - #elif defined(__APPLE__) - #include <AvailabilityMacros.h> - /* We support OSX 10.6 and below. */ -@@ -167,7 +170,11 @@ char** v4l2_list_cameras (int* num_devices); - int v4l2_get_control (int fd, int id, int *value); - int v4l2_set_control (int fd, int id, int value); - PyObject* v4l2_read_raw (pgCameraObject* self); +-#include <linux/videodev2.h> +#ifdef __OpenBSD__ -+int v4l2_xioctl (int fd, unsigned long request, void *arg); ++#include <sys/videoio.h> + #endif + ++#endif ++ + #if defined(__WIN32__) + #define PYGAME_WINDOWS_CAMERA 1 + +@@ -197,8 +201,13 @@ int + v4l2_set_control(int fd, int id, int value); + PyObject * + v4l2_read_raw(pgCameraObject *self); ++#ifdef __OpenBSD__ + int ++v4l2_xioctl (int fd, unsigned long request, void *arg); +#else - int v4l2_xioctl (int fd, int request, void *arg); ++int + v4l2_xioctl(int fd, int request, void *arg); +#endif - int v4l2_process_image (pgCameraObject* self, const void *image, - unsigned int buffer_size, SDL_Surface* surf); - int v4l2_query_buffer (pgCameraObject* self); + int + v4l2_process_image(pgCameraObject *self, const void *image, int buffer_size, + SDL_Surface *surf); Index: patches/patch-src_c_camera_v4l2_c =================================================================== RCS file: /cvs/ports/devel/pygame/patches/patch-src_c_camera_v4l2_c,v retrieving revision 1.2 diff -u -p -r1.2 patch-src_c_camera_v4l2_c --- patches/patch-src_c_camera_v4l2_c 11 Mar 2022 18:53:06 -0000 1.2 +++ patches/patch-src_c_camera_v4l2_c 29 Aug 2023 19:54:35 -0000 @@ -1,7 +1,7 @@ Index: src_c/camera_v4l2.c --- src_c/camera_v4l2.c.orig +++ src_c/camera_v4l2.c -@@ -161,7 +161,11 @@ v4l2_read_raw(pgCameraObject *self) +@@ -184,7 +184,11 @@ v4l2_read_raw(pgCameraObject *self) */ int Index: pkg/PLIST =================================================================== RCS file: /cvs/ports/devel/pygame/pkg/PLIST,v retrieving revision 1.15 diff -u -p -r1.15 PLIST --- pkg/PLIST 11 Mar 2022 18:53:06 -0000 1.15 +++ pkg/PLIST 29 Aug 2023 19:54:36 -0000 @@ -1,10 +1,10 @@ @conflict pygame-* include/python${MODPY_VERSION}/pygame/ +include/python${MODPY_VERSION}/pygame/_blit_info.h include/python${MODPY_VERSION}/pygame/_camera.h include/python${MODPY_VERSION}/pygame/_pygame.h include/python${MODPY_VERSION}/pygame/_surface.h include/python${MODPY_VERSION}/pygame/camera.h -include/python${MODPY_VERSION}/pygame/fastevents.h include/python${MODPY_VERSION}/pygame/font.h include/python${MODPY_VERSION}/pygame/freetype.h include/python${MODPY_VERSION}/pygame/include/ @@ -26,11 +26,11 @@ include/python${MODPY_VERSION}/pygame/pa include/python${MODPY_VERSION}/pygame/pgarrinter.h include/python${MODPY_VERSION}/pygame/pgbufferproxy.h include/python${MODPY_VERSION}/pygame/pgcompat.h -include/python${MODPY_VERSION}/pygame/pgimport.h include/python${MODPY_VERSION}/pygame/pgopengl.h include/python${MODPY_VERSION}/pygame/pgplatform.h include/python${MODPY_VERSION}/pygame/pygame.h include/python${MODPY_VERSION}/pygame/scrap.h +include/python${MODPY_VERSION}/pygame/simd_blitters.h include/python${MODPY_VERSION}/pygame/surface.h lib/python${MODPY_VERSION}/site-packages/pygame/ lib/python${MODPY_VERSION}/site-packages/pygame-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/ @@ -44,16 +44,13 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/__init__.pyi ${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}/ lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}_camera_opencv_highgui.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}_camera_opencv.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}_camera_vidcapture.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}_dummybackend.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}_numpysndarray.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}_numpysurfarray.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}camera.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}colordict.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}compat.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}cursors.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}draw_py.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}fastevent.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}freetype.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}ftfont.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/${MODPY_PYCACHE}locals.${MODPY_PYC_MAGIC_TAG}pyc @@ -72,28 +69,36 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/__pyinstaller/${MODPY_PYCACHE}hook-pygame.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/__pyinstaller/hook-pygame.py @so lib/python${MODPY_VERSION}/site-packages/pygame/_camera.${MODPY_PYC_MAGIC_TAG}so -lib/python${MODPY_VERSION}/site-packages/pygame/_camera_opencv_highgui.py +lib/python${MODPY_VERSION}/site-packages/pygame/_camera_opencv.py lib/python${MODPY_VERSION}/site-packages/pygame/_camera_vidcapture.py -lib/python${MODPY_VERSION}/site-packages/pygame/_dummybackend.py +lib/python${MODPY_VERSION}/site-packages/pygame/_common.pyi @so lib/python${MODPY_VERSION}/site-packages/pygame/_freetype.${MODPY_PYC_MAGIC_TAG}so -lib/python${MODPY_VERSION}/site-packages/pygame/_numpysndarray.py -lib/python${MODPY_VERSION}/site-packages/pygame/_numpysurfarray.py lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/ lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/__init__.py lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/__init__.pyi ${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/${MODPY_PYCACHE}/ lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +@so lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/audio.${MODPY_PYC_MAGIC_TAG}so +lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/audio.pyi +@so lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/controller.${MODPY_PYC_MAGIC_TAG}so +lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/controller.pyi +@so lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/mixer.${MODPY_PYC_MAGIC_TAG}so +@so lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/sdl2.${MODPY_PYC_MAGIC_TAG}so +lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/sdl2.pyi +@so lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/touch.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/touch.pyi +@so lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/video.${MODPY_PYC_MAGIC_TAG}so +lib/python${MODPY_VERSION}/site-packages/pygame/_sdl2/video.pyi +@so lib/python${MODPY_VERSION}/site-packages/pygame/_sprite.${MODPY_PYC_MAGIC_TAG}so @so lib/python${MODPY_VERSION}/site-packages/pygame/base.${MODPY_PYC_MAGIC_TAG}so +lib/python${MODPY_VERSION}/site-packages/pygame/base.pyi @so lib/python${MODPY_VERSION}/site-packages/pygame/bufferproxy.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/bufferproxy.pyi lib/python${MODPY_VERSION}/site-packages/pygame/camera.py lib/python${MODPY_VERSION}/site-packages/pygame/camera.pyi -@so lib/python${MODPY_VERSION}/site-packages/pygame/cdrom.${MODPY_PYC_MAGIC_TAG}so @so lib/python${MODPY_VERSION}/site-packages/pygame/color.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/color.pyi lib/python${MODPY_VERSION}/site-packages/pygame/colordict.py -lib/python${MODPY_VERSION}/site-packages/pygame/compat.py @so lib/python${MODPY_VERSION}/site-packages/pygame/constants.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/constants.pyi lib/python${MODPY_VERSION}/site-packages/pygame/cursors.py @@ -101,16 +106,242 @@ lib/python${MODPY_VERSION}/site-packages @so lib/python${MODPY_VERSION}/site-packages/pygame/display.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/display.pyi lib/python${MODPY_VERSION}/site-packages/pygame/docs/ -lib/python${MODPY_VERSION}/site-packages/pygame/docs/__init__.py lib/python${MODPY_VERSION}/site-packages/pygame/docs/__main__.py ${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/pygame/docs/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/pygame/docs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/docs/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/docs/logos.html -lib/python${MODPY_VERSION}/site-packages/pygame/docs/pygame_logo.gif -lib/python${MODPY_VERSION}/site-packages/pygame/docs/pygame_powered.gif -lib/python${MODPY_VERSION}/site-packages/pygame/docs/pygame_small.gif -lib/python${MODPY_VERSION}/site-packages/pygame/docs/pygame_tiny.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/LGPL.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/ +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedInputOutput1.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedInputOutput11.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedInputOutput2.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedInputOutput21.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedInputOutput3.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedInputOutput31.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedInputOutput4.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedInputOutput41.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedInputOutput5.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedInputOutput51.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputAlpha1.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputAlpha11.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputAlpha2.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputAlpha21.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputAlpha3.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputAlpha31.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputProcess1.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputProcess11.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputProcess2.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputProcess21.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputProcess3.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputProcess31.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputProcess4.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputProcess41.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputProcess5.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputProcess51.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputProcess6.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/AdvancedOutputProcess61.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/Bagic-INPUT-resultscreen.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/Bagic-INPUT-resultscreen1.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/Bagic-INPUT-sourcecode.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/Bagic-INPUT-sourcecode1.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/Bagic-PROCESS-resultscreen.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/Bagic-PROCESS-resultscreen1.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/Bagic-PROCESS-sourcecode.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/Bagic-PROCESS-sourcecode1.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/Bagic-ouput-result-screen.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/Bagic-ouput-result-screen1.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/Basic-ouput-sourcecode.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/Basic-ouput-sourcecode1.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/angle_to.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/camera_average.jpg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/camera_background.jpg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/camera_green.jpg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/camera_hsv.jpg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/camera_mask.jpg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/camera_rgb.jpg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/camera_thresh.jpg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/camera_thresholded.jpg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/camera_yuv.jpg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/chimpshot.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/draw_module_example.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/intro_ball.gif +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/intro_blade.jpg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/intro_freedom.jpg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/introduction-Battleship.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/introduction-Battleship1.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/introduction-PuyoPuyo.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/introduction-PuyoPuyo1.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/introduction-TPS.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/introduction-TPS1.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/joystick_calls.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/pygame_lofi.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/pygame_logo.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/pygame_powered.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/pygame_powered_lowres.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/pygame_tiny.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/surfarray_allblack.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/surfarray_flipped.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/surfarray_redimg.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/surfarray_rgbarray.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/surfarray_scaledown.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/surfarray_scaleup.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/surfarray_soften.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/surfarray_striped.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/surfarray_xfade.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/tom_basic.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/tom_event-flowchart.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/tom_formulae.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_images/tom_radians.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/c_api.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/filepaths.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/index.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/logos.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/ +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/bufferproxy.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/camera.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/cdrom.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/color.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/color_list.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/cursors.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/display.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/draw.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/event.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/examples.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/fastevent.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/font.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/freetype.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/gfxdraw.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/image.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/joystick.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/key.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/locals.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/mask.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/math.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/midi.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/mixer.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/mouse.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/music.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/overlay.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/pixelarray.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/pixelcopy.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/pygame.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/rect.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/scrap.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/sdl2_controller.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/sdl2_video.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/sndarray.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/sprite.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/surface.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/surfarray.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/tests.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/time.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/touch.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_sources/ref/transform.rst.txt +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/ +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/basic.css +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/doctools.js +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/documentation_options.js +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/file.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/language_data.js +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/legacy_logos.zip +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/minus.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/plus.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/pygame.css +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/pygame.ico +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/pygame_lofi.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/pygame_lofi.svg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/pygame_logo.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/pygame_logo.svg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/pygame_powered.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/pygame_powered.svg +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/pygame_powered_lowres.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/pygame_tiny.png +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/pygments.css +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/reset.css +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/searchtools.js +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/sphinx_highlight.js +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/_static/tooltip.css +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/ +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/base.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/bufferproxy.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/color.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/display.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/event.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/freetype.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/mixer.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/rect.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/rwobject.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/slots.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/surface.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/surflock.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/c_api/version.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/filepaths.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/genindex.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/index.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/logos.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/py-modindex.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/ +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/bufferproxy.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/camera.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/cdrom.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/color.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/color_list.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/cursors.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/display.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/draw.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/event.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/examples.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/fastevent.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/font.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/freetype.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/gfxdraw.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/image.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/joystick.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/key.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/locals.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/mask.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/math.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/midi.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/mixer.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/mouse.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/music.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/overlay.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/pixelarray.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/pixelcopy.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/pygame.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/rect.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/scrap.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/sdl2_controller.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/sdl2_video.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/sndarray.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/sprite.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/surface.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/surfarray.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/tests.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/time.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/touch.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/ref/transform.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/search.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/searchindex.js +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/ +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/CameraIntro.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/ChimpLineByLine.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/DisplayModes.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/ImportInit.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/MakeGames.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/MoveIt.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/PygameIntro.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/SpriteIntro.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/SurfarrayIntro.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/chimp.py.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/newbieguide.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/tom_games2.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/tom_games3.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/tom_games4.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/tom_games5.html +lib/python${MODPY_VERSION}/site-packages/pygame/docs/generated/tut/tom_games6.html @so lib/python${MODPY_VERSION}/site-packages/pygame/draw.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/draw.pyi lib/python${MODPY_VERSION}/site-packages/pygame/draw_py.py @@ -132,21 +363,21 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}cursors.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}dropevent.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}eventlist.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}fastevents.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}font_viewer.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}fonty.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}freetype_misc.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}glcube.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}go_over_there.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}grid.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}headless_no_windows_needed.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}joystick.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}liquid.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}mask.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}midi.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}moveit.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}music_drop_fade.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}overlay.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}pixelarray.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}playmus.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}prevent_display_stretching.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}resizing_new.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}scaletest.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/examples/${MODPY_PYCACHE}scrap_clipboard.${MODPY_PYC_MAGIC_TAG}pyc @@ -188,11 +419,13 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/boom.wav lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/brick.png lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/car_door.wav -lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/chimp.bmp +lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/chimp.png lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/city.png +lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/crimson.pnm +lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/cursor.png lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/danger.gif lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/explosion1.gif -lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/fist.bmp +lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/fist.png lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/green.pcx lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/grey.pgm lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/house_lo.mp3 @@ -201,36 +434,36 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/laplacian.png lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/liquid.bmp lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/midikeys.png -lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/oldplayer.gif lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/player1.gif lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/punch.wav lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/purple.xpm lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/red.jpg lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/sans.ttf +lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/scarlet.webp lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/secosmic_lo.wav lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/shot.gif lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/static.png +lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/teal.svg lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/turquoise.tif lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/whiff.wav lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/yellow.tga -lib/python${MODPY_VERSION}/site-packages/pygame/examples/data/yuv_1.pgm lib/python${MODPY_VERSION}/site-packages/pygame/examples/dropevent.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/eventlist.py -lib/python${MODPY_VERSION}/site-packages/pygame/examples/fastevents.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/font_viewer.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/fonty.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/freetype_misc.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/glcube.py +lib/python${MODPY_VERSION}/site-packages/pygame/examples/go_over_there.py +lib/python${MODPY_VERSION}/site-packages/pygame/examples/grid.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/headless_no_windows_needed.py +lib/python${MODPY_VERSION}/site-packages/pygame/examples/joystick.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/liquid.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/mask.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/midi.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/moveit.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/music_drop_fade.py -lib/python${MODPY_VERSION}/site-packages/pygame/examples/overlay.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/pixelarray.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/playmus.py -lib/python${MODPY_VERSION}/site-packages/pygame/examples/prevent_display_stretching.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/resizing_new.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/scaletest.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/scrap_clipboard.py @@ -244,7 +477,7 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/examples/textinput.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/vgrade.py lib/python${MODPY_VERSION}/site-packages/pygame/examples/video.py -@so lib/python${MODPY_VERSION}/site-packages/pygame/fastevent.${MODPY_PYC_MAGIC_TAG}so +lib/python${MODPY_VERSION}/site-packages/pygame/fastevent.py lib/python${MODPY_VERSION}/site-packages/pygame/fastevent.pyi @so lib/python${MODPY_VERSION}/site-packages/pygame/font.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/font.pyi @@ -262,6 +495,7 @@ lib/python${MODPY_VERSION}/site-packages @so lib/python${MODPY_VERSION}/site-packages/pygame/key.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/key.pyi lib/python${MODPY_VERSION}/site-packages/pygame/locals.py +lib/python${MODPY_VERSION}/site-packages/pygame/locals.pyi lib/python${MODPY_VERSION}/site-packages/pygame/macosx.py @so lib/python${MODPY_VERSION}/site-packages/pygame/mask.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/mask.pyi @@ -272,11 +506,10 @@ lib/python${MODPY_VERSION}/site-packages @so lib/python${MODPY_VERSION}/site-packages/pygame/mixer.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/mixer.pyi @so lib/python${MODPY_VERSION}/site-packages/pygame/mixer_music.${MODPY_PYC_MAGIC_TAG}so +lib/python${MODPY_VERSION}/site-packages/pygame/mixer_music.pyi @so lib/python${MODPY_VERSION}/site-packages/pygame/mouse.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/mouse.pyi -lib/python${MODPY_VERSION}/site-packages/pygame/music.pyi @so lib/python${MODPY_VERSION}/site-packages/pygame/newbuffer.${MODPY_PYC_MAGIC_TAG}so -@so lib/python${MODPY_VERSION}/site-packages/pygame/overlay.${MODPY_PYC_MAGIC_TAG}so @so lib/python${MODPY_VERSION}/site-packages/pygame/pixelarray.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/pixelarray.pyi @so lib/python${MODPY_VERSION}/site-packages/pygame/pixelcopy.${MODPY_PYC_MAGIC_TAG}so @@ -286,11 +519,11 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/pygame.ico lib/python${MODPY_VERSION}/site-packages/pygame/pygame_icon.bmp lib/python${MODPY_VERSION}/site-packages/pygame/pygame_icon.icns -lib/python${MODPY_VERSION}/site-packages/pygame/pygame_icon.svg -lib/python${MODPY_VERSION}/site-packages/pygame/pygame_icon.tiff +lib/python${MODPY_VERSION}/site-packages/pygame/pygame_icon_mac.bmp @so lib/python${MODPY_VERSION}/site-packages/pygame/rect.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/rect.pyi @so lib/python${MODPY_VERSION}/site-packages/pygame/rwobject.${MODPY_PYC_MAGIC_TAG}so +lib/python${MODPY_VERSION}/site-packages/pygame/rwobject.pyi @so lib/python${MODPY_VERSION}/site-packages/pygame/scrap.${MODPY_PYC_MAGIC_TAG}so lib/python${MODPY_VERSION}/site-packages/pygame/scrap.pyi lib/python${MODPY_VERSION}/site-packages/pygame/sndarray.py @@ -302,6 +535,7 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/surfarray.py lib/python${MODPY_VERSION}/site-packages/pygame/surfarray.pyi @so lib/python${MODPY_VERSION}/site-packages/pygame/surflock.${MODPY_PYC_MAGIC_TAG}so +lib/python${MODPY_VERSION}/site-packages/pygame/surflock.pyi lib/python${MODPY_VERSION}/site-packages/pygame/sysfont.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/ lib/python${MODPY_VERSION}/site-packages/pygame/tests/__init__.py @@ -313,18 +547,14 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}blit_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}bufferproxy_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}camera_test.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}cdrom_tags.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}cdrom_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}color_test.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}compat_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}constants_test.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}controller_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}cursors_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}display_test.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}docs_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}draw_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}event_test.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}fastevent_tags.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}fastevent_test.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}font_tags.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}font_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}freetype_tags.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}freetype_test.${MODPY_PYC_MAGIC_TAG}pyc @@ -338,6 +568,7 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}imageext_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}joystick_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}key_test.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}locals_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}mask_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}math_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}midi_test.${MODPY_PYC_MAGIC_TAG}pyc @@ -346,8 +577,6 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}mixer_tags.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}mixer_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}mouse_test.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}overlay_tags.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}overlay_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}pixelarray_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}pixelcopy_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}rect_test.${MODPY_PYC_MAGIC_TAG}pyc @@ -362,10 +591,8 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}surfarray_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}surflock_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}sysfont_test.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}test_test_.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}threads_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}time_test.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}touch_tags.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}touch_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}transform_test.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/pygame/tests/${MODPY_PYCACHE}version_test.${MODPY_PYC_MAGIC_TAG}pyc @@ -374,20 +601,18 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/tests/blit_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/bufferproxy_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/camera_test.py -lib/python${MODPY_VERSION}/site-packages/pygame/tests/cdrom_tags.py -lib/python${MODPY_VERSION}/site-packages/pygame/tests/cdrom_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/color_test.py -lib/python${MODPY_VERSION}/site-packages/pygame/tests/compat_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/constants_test.py +lib/python${MODPY_VERSION}/site-packages/pygame/tests/controller_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/cursors_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/display_test.py +lib/python${MODPY_VERSION}/site-packages/pygame/tests/docs_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/draw_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/event_test.py -lib/python${MODPY_VERSION}/site-packages/pygame/tests/fastevent_tags.py -lib/python${MODPY_VERSION}/site-packages/pygame/tests/fastevent_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/fixtures/ lib/python${MODPY_VERSION}/site-packages/pygame/tests/fixtures/fonts/ lib/python${MODPY_VERSION}/site-packages/pygame/tests/fixtures/fonts/A_PyGameMono-8.png +lib/python${MODPY_VERSION}/site-packages/pygame/tests/fixtures/fonts/PlayfairDisplaySemibold.ttf lib/python${MODPY_VERSION}/site-packages/pygame/tests/fixtures/fonts/PyGameMono-18-100dpi.bdf lib/python${MODPY_VERSION}/site-packages/pygame/tests/fixtures/fonts/PyGameMono-18-75dpi.bdf lib/python${MODPY_VERSION}/site-packages/pygame/tests/fixtures/fonts/PyGameMono-8.bdf @@ -398,7 +623,6 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/tests/fixtures/xbm_cursors/ lib/python${MODPY_VERSION}/site-packages/pygame/tests/fixtures/xbm_cursors/white_sizing.xbm lib/python${MODPY_VERSION}/site-packages/pygame/tests/fixtures/xbm_cursors/white_sizing_mask.xbm -lib/python${MODPY_VERSION}/site-packages/pygame/tests/font_tags.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/font_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/freetype_tags.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/freetype_test.py @@ -412,6 +636,7 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/tests/imageext_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/joystick_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/key_test.py +lib/python${MODPY_VERSION}/site-packages/pygame/tests/locals_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/mask_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/math_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/midi_test.py @@ -420,8 +645,6 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/tests/mixer_tags.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/mixer_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/mouse_test.py -lib/python${MODPY_VERSION}/site-packages/pygame/tests/overlay_tags.py -lib/python${MODPY_VERSION}/site-packages/pygame/tests/overlay_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/pixelarray_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/pixelcopy_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/rect_test.py @@ -544,7 +767,6 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/tests/surfarray_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/surflock_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/sysfont_test.py -lib/python${MODPY_VERSION}/site-packages/pygame/tests/test_test_.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/test_utils/ lib/python${MODPY_VERSION}/site-packages/pygame/tests/test_utils/__init__.py ${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/pygame/tests/test_utils/${MODPY_PYCACHE}/ @@ -567,7 +789,6 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/tests/test_utils/test_runner.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/threads_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/time_test.py -lib/python${MODPY_VERSION}/site-packages/pygame/tests/touch_tags.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/touch_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/transform_test.py lib/python${MODPY_VERSION}/site-packages/pygame/tests/version_test.py @@ -584,16 +805,12 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/pygame/version.pyi share/doc/${MODPY_PY_PREFIX}pygame/ share/doc/${MODPY_PY_PREFIX}pygame/README.rst -share/doc/${MODPY_PY_PREFIX}pygame/logos.html -share/doc/${MODPY_PY_PREFIX}pygame/pygame_logo.gif -share/doc/${MODPY_PY_PREFIX}pygame/pygame_powered.gif -share/doc/${MODPY_PY_PREFIX}pygame/pygame_small.gif -share/doc/${MODPY_PY_PREFIX}pygame/pygame_tiny.gif share/doc/${MODPY_PY_PREFIX}pygame/ref/ share/doc/${MODPY_PY_PREFIX}pygame/ref/bufferproxy.rst share/doc/${MODPY_PY_PREFIX}pygame/ref/camera.rst share/doc/${MODPY_PY_PREFIX}pygame/ref/cdrom.rst share/doc/${MODPY_PY_PREFIX}pygame/ref/color.rst +share/doc/${MODPY_PY_PREFIX}pygame/ref/color_list.rst share/doc/${MODPY_PY_PREFIX}pygame/ref/common.txt share/doc/${MODPY_PY_PREFIX}pygame/ref/cursors.rst share/doc/${MODPY_PY_PREFIX}pygame/ref/display.rst @@ -620,6 +837,8 @@ share/doc/${MODPY_PY_PREFIX}pygame/ref/p share/doc/${MODPY_PY_PREFIX}pygame/ref/pygame.rst share/doc/${MODPY_PY_PREFIX}pygame/ref/rect.rst share/doc/${MODPY_PY_PREFIX}pygame/ref/scrap.rst +share/doc/${MODPY_PY_PREFIX}pygame/ref/sdl2_controller.rst +share/doc/${MODPY_PY_PREFIX}pygame/ref/sdl2_video.rst share/doc/${MODPY_PY_PREFIX}pygame/ref/sndarray.rst share/doc/${MODPY_PY_PREFIX}pygame/ref/sprite.rst share/doc/${MODPY_PY_PREFIX}pygame/ref/surface.rst @@ -705,11 +924,13 @@ share/examples/${MODPY_PY_PREFIX}pygame/ share/examples/${MODPY_PY_PREFIX}pygame/data/boom.wav share/examples/${MODPY_PY_PREFIX}pygame/data/brick.png share/examples/${MODPY_PY_PREFIX}pygame/data/car_door.wav -share/examples/${MODPY_PY_PREFIX}pygame/data/chimp.bmp +share/examples/${MODPY_PY_PREFIX}pygame/data/chimp.png share/examples/${MODPY_PY_PREFIX}pygame/data/city.png +share/examples/${MODPY_PY_PREFIX}pygame/data/crimson.pnm +share/examples/${MODPY_PY_PREFIX}pygame/data/cursor.png share/examples/${MODPY_PY_PREFIX}pygame/data/danger.gif share/examples/${MODPY_PY_PREFIX}pygame/data/explosion1.gif -share/examples/${MODPY_PY_PREFIX}pygame/data/fist.bmp +share/examples/${MODPY_PY_PREFIX}pygame/data/fist.png share/examples/${MODPY_PY_PREFIX}pygame/data/green.pcx share/examples/${MODPY_PY_PREFIX}pygame/data/grey.pgm share/examples/${MODPY_PY_PREFIX}pygame/data/house_lo.mp3 @@ -718,36 +939,36 @@ share/examples/${MODPY_PY_PREFIX}pygame/ share/examples/${MODPY_PY_PREFIX}pygame/data/laplacian.png share/examples/${MODPY_PY_PREFIX}pygame/data/liquid.bmp share/examples/${MODPY_PY_PREFIX}pygame/data/midikeys.png -share/examples/${MODPY_PY_PREFIX}pygame/data/oldplayer.gif share/examples/${MODPY_PY_PREFIX}pygame/data/player1.gif share/examples/${MODPY_PY_PREFIX}pygame/data/punch.wav share/examples/${MODPY_PY_PREFIX}pygame/data/purple.xpm share/examples/${MODPY_PY_PREFIX}pygame/data/red.jpg share/examples/${MODPY_PY_PREFIX}pygame/data/sans.ttf +share/examples/${MODPY_PY_PREFIX}pygame/data/scarlet.webp share/examples/${MODPY_PY_PREFIX}pygame/data/secosmic_lo.wav share/examples/${MODPY_PY_PREFIX}pygame/data/shot.gif share/examples/${MODPY_PY_PREFIX}pygame/data/static.png +share/examples/${MODPY_PY_PREFIX}pygame/data/teal.svg share/examples/${MODPY_PY_PREFIX}pygame/data/turquoise.tif share/examples/${MODPY_PY_PREFIX}pygame/data/whiff.wav share/examples/${MODPY_PY_PREFIX}pygame/data/yellow.tga -share/examples/${MODPY_PY_PREFIX}pygame/data/yuv_1.pgm share/examples/${MODPY_PY_PREFIX}pygame/dropevent.py share/examples/${MODPY_PY_PREFIX}pygame/eventlist.py -share/examples/${MODPY_PY_PREFIX}pygame/fastevents.py share/examples/${MODPY_PY_PREFIX}pygame/font_viewer.py share/examples/${MODPY_PY_PREFIX}pygame/fonty.py share/examples/${MODPY_PY_PREFIX}pygame/freetype_misc.py share/examples/${MODPY_PY_PREFIX}pygame/glcube.py +share/examples/${MODPY_PY_PREFIX}pygame/go_over_there.py +share/examples/${MODPY_PY_PREFIX}pygame/grid.py share/examples/${MODPY_PY_PREFIX}pygame/headless_no_windows_needed.py +share/examples/${MODPY_PY_PREFIX}pygame/joystick.py share/examples/${MODPY_PY_PREFIX}pygame/liquid.py share/examples/${MODPY_PY_PREFIX}pygame/mask.py share/examples/${MODPY_PY_PREFIX}pygame/midi.py share/examples/${MODPY_PY_PREFIX}pygame/moveit.py share/examples/${MODPY_PY_PREFIX}pygame/music_drop_fade.py -share/examples/${MODPY_PY_PREFIX}pygame/overlay.py share/examples/${MODPY_PY_PREFIX}pygame/pixelarray.py share/examples/${MODPY_PY_PREFIX}pygame/playmus.py -share/examples/${MODPY_PY_PREFIX}pygame/prevent_display_stretching.py share/examples/${MODPY_PY_PREFIX}pygame/resizing_new.py share/examples/${MODPY_PY_PREFIX}pygame/scaletest.py share/examples/${MODPY_PY_PREFIX}pygame/scrap_clipboard.py