[pygame-sdl2] 05/14: Merge tag 'upstream/6.99.9'

Markus Koschany apo-guest at moszumanska.debian.org
Sun Mar 13 01:13:40 UTC 2016


This is an automated email from the git hooks/post-receive script.

apo-guest pushed a commit to branch master
in repository pygame-sdl2.

commit 4ff505c48f14e852e25a97ad819c2e21bb126b2c
Merge: db0114a eb4e101
Author: Markus Koschany <apo at debian.org>
Date:   Sat Mar 12 22:33:16 2016 +0100

    Merge tag 'upstream/6.99.9'
    
    Upstream version 6.99.9
    
    # gpg: Signature made Sat 12 Mar 2016 22:33:11 CET using RSA key ID 513B51E4
    # gpg: Good signature from "Markus Koschany <apo at gambaru.de>" [ultimate]
    # gpg:                 aka "Markus Koschany <markus at koschany.net>" [ultimate]
    # gpg:                 aka "Markus Koschany <apo at debian.org>" [ultimate]

 .gitignore                                         |   10 +
 MANIFEST.in                                        |   28 +
 README.rst                                         |   32 +-
 docs/index.rst                                     |  149 +
 include/enums.json                                 |  701 ++++
 run.sh                                             |    8 +
 scripts/build_all.sh                               |   26 +
 scripts/build_nightly.sh                           |   35 +
 scripts/build_win.sh                               |   18 +
 scripts/run_win.py                                 |   39 +
 setup.py                                           |   31 +-
 setuplib.py                                        |    1 +
 src/pygame_sdl2/DejaVuSans.ttf                     |  Bin 0 -> 756072 bytes
 src/pygame_sdl2/DejaVuSans.txt                     |   99 +
 src/pygame_sdl2/display.pyx                        |   56 +-
 src/pygame_sdl2/error.pyx                          |    2 +-
 src/pygame_sdl2/event.pyx                          |   17 +-
 src/pygame_sdl2/font.pyx                           |   15 +-
 src/pygame_sdl2/mixer.pyx                          |   55 +-
 src/pygame_sdl2/rect.pyx                           |   91 +-
 src/pygame_sdl2/rwobject.pyx                       |    8 +-
 src/pygame_sdl2/surface.pxd                        |    2 +
 src/pygame_sdl2/surface.pyx                        |   70 +-
 src/pygame_sdl2/sysfont.py                         |    5 +-
 src/pygame_sdl2/version.py                         |    4 +-
 src/write_png.c                                    |    2 +-
 test.py                                            |   38 +
 test/README.TXT                                    |  183 +
 test/__init__.py                                   |   40 +
 test/__main__.py                                   |  133 +
 test/_dummymovietest.py                            |  140 +
 test/_movie_tags.py                                |    7 +
 test/_movie_test.py                                |  141 +
 test/_vlcmovietest.py                              |  140 +
 test/base_test.py                                  |  643 ++++
 test/blit_test.py                                  |   95 +
 test/bufferproxy_test.py                           |  493 +++
 test/camera_test.py                                |   29 +
 test/cdrom_tags.py                                 |    1 +
 test/cdrom_test.py                                 |  387 ++
 test/color_test.py                                 |  901 +++++
 test/compat_test.py                                |  100 +
 test/cursors_test.py                               |   77 +
 test/display_test.py                               |  524 +++
 test/draw_test.py                                  |  263 ++
 test/event_test.py                                 |  304 ++
 test/fastevent_test.py                             |  151 +
 test/fixtures/fonts/A_PyGameMono-8.png             |  Bin 0 -> 92 bytes
 test/fixtures/fonts/PyGameMono-18-100dpi.bdf       |  165 +
 test/fixtures/fonts/PyGameMono-18-75dpi.bdf        |  143 +
 test/fixtures/fonts/PyGameMono-8.bdf               |  103 +
 test/fixtures/fonts/PyGameMono.otf                 |  Bin 0 -> 3128 bytes
 test/fixtures/fonts/PyGameMono.sfd                 |  238 ++
 test/fixtures/fonts/test_fixed.otf                 |  Bin 0 -> 58464 bytes
 test/fixtures/fonts/test_sans.ttf                  |  Bin 0 -> 133088 bytes
 test/fixtures/fonts/u13079_PyGameMono-8.png        |  Bin 0 -> 89 bytes
 test/fixtures/xbm_cursors/white_sizing.xbm         |    8 +
 test/fixtures/xbm_cursors/white_sizing_mask.xbm    |    8 +
 test/font_tags.py                                  |    7 +
 test/font_test.py                                  |  578 +++
 test/freetype_tags.py                              |   12 +
 test/freetype_test.py                              | 1331 +++++++
 test/ftfont_tags.py                                |   12 +
 test/ftfont_test.py                                |   33 +
 test/gfxdraw_test.py                               |  712 ++++
 test/image__save_gl_surface_test.py                |   58 +
 test/image_tags.py                                 |    7 +
 test/image_test.py                                 |  386 ++
 test/imageext_tags.py                              |    8 +
 test/imageext_test.py                              |   74 +
 test/joystick_test.py                              |  110 +
 test/key_test.py                                   |  135 +
 test/mask_test.py                                  |  473 +++
 test/math_test.py                                  | 1529 ++++++++
 test/midi_tags.py                                  |    1 +
 test/midi_test.py                                  |  480 +++
 test/mixer_music_tags.py                           |    7 +
 test/mixer_music_test.py                           |  234 ++
 test/mixer_tags.py                                 |    7 +
 test/mixer_test.py                                 | 1033 ++++++
 test/mouse_test.py                                 |  168 +
 test/movie_tags.py                                 |    8 +
 test/movie_test.py                                 |  276 ++
 test/overlay_test.py                               |   54 +
 test/pixelarray_test.py                            | 1298 +++++++
 test/pixelcopy_test.py                             |  668 ++++
 test/rect_test.py                                  |  675 ++++
 test/run_tests__tests/__init__.py                  |    1 +
 test/run_tests__tests/all_ok/__init__.py           |    1 +
 test/run_tests__tests/all_ok/fake_2_test.py        |   43 +
 test/run_tests__tests/all_ok/fake_3_test.py        |   43 +
 test/run_tests__tests/all_ok/fake_4_test.py        |   43 +
 test/run_tests__tests/all_ok/fake_5_test.py        |   43 +
 test/run_tests__tests/all_ok/fake_6_test.py        |   43 +
 .../all_ok/no_assertions__ret_code_of_1__test.py   |   43 +
 test/run_tests__tests/all_ok/zero_tests_test.py    |   27 +
 test/run_tests__tests/everything/__init__.py       |    1 +
 test/run_tests__tests/everything/fake_2_test.py    |   43 +
 .../everything/incomplete_todo_test.py             |   43 +
 test/run_tests__tests/everything/magic_tag_test.py |   42 +
 test/run_tests__tests/everything/sleep_test.py     |   33 +
 test/run_tests__tests/exclude/__init__.py          |    1 +
 test/run_tests__tests/exclude/fake_2_test.py       |   43 +
 .../run_tests__tests/exclude/invisible_tag_test.py |   45 +
 test/run_tests__tests/exclude/magic_tag_test.py    |   42 +
 test/run_tests__tests/failures1/__init__.py        |    1 +
 test/run_tests__tests/failures1/fake_2_test.py     |   43 +
 test/run_tests__tests/failures1/fake_3_test.py     |   43 +
 test/run_tests__tests/failures1/fake_4_test.py     |   45 +
 test/run_tests__tests/incomplete/__init__.py       |    1 +
 test/run_tests__tests/incomplete/fake_2_test.py    |   43 +
 test/run_tests__tests/incomplete/fake_3_test.py    |   43 +
 test/run_tests__tests/incomplete_todo/__init__.py  |    1 +
 .../incomplete_todo/fake_2_test.py                 |   43 +
 .../incomplete_todo/fake_3_test.py                 |   43 +
 test/run_tests__tests/infinite_loop/__init__.py    |    1 +
 test/run_tests__tests/infinite_loop/fake_1_test.py |   44 +
 test/run_tests__tests/infinite_loop/fake_2_test.py |   43 +
 test/run_tests__tests/print_stderr/__init__.py     |    1 +
 test/run_tests__tests/print_stderr/fake_2_test.py  |   43 +
 test/run_tests__tests/print_stderr/fake_3_test.py  |   44 +
 test/run_tests__tests/print_stderr/fake_4_test.py  |   45 +
 test/run_tests__tests/print_stdout/__init__.py     |    1 +
 test/run_tests__tests/print_stdout/fake_2_test.py  |   43 +
 test/run_tests__tests/print_stdout/fake_3_test.py  |   45 +
 test/run_tests__tests/print_stdout/fake_4_test.py  |   45 +
 test/run_tests__tests/run_tests__test.py           |  134 +
 test/run_tests__tests/timeout/__init__.py          |    1 +
 test/run_tests__tests/timeout/fake_2_test.py       |   43 +
 test/run_tests__tests/timeout/sleep_test.py        |   33 +
 test/rwobject_test.py                              |  115 +
 test/scrap_tags.py                                 |   23 +
 test/scrap_test.py                                 |  151 +
 test/sndarray_tags.py                              |   16 +
 test/sndarray_test.py                              |  232 ++
 test/sprite_test.py                                | 1073 ++++++
 test/surface_test.py                               | 2358 ++++++++++++
 test/surfarray_tags.py                             |   21 +
 test/surfarray_test.py                             |  785 ++++
 test/surflock_test.py                              |  155 +
 test/sysfont_test.py                               |   66 +
 test/test_test_.py                                 |    3 +
 test/test_utils/__init__.py                        |  222 ++
 test/test_utils/arrinter.py                        |  402 +++
 test/test_utils/async_sub.py                       |  291 ++
 test/test_utils/buftools.py                        |  555 +++
 test/test_utils/endian.py                          |   18 +
 test/test_utils/png.py                             | 3790 ++++++++++++++++++++
 test/test_utils/run_tests.py                       |  331 ++
 test/test_utils/test_runner.py                     |  321 ++
 test/test_utils/unittest.py                        |  874 +++++
 test/test_utils/unittest_patch.py                  |  307 ++
 test/threads_test.py                               |  215 ++
 test/time_test.py                                  |  222 ++
 test/transform_test.py                             |  737 ++++
 test/util/build_page/.htaccess                     |    4 +
 test/util/build_page/index.php                     |  155 +
 test/util/build_page/libs/build_client/__init__.py |    0
 test/util/build_page/libs/build_client/callproc.py |   74 +
 test/util/build_page/libs/build_client/config.py   |  226 ++
 .../build_page/libs/build_client/config/auth.txt   |    1 +
 .../libs/build_client/config/build_config.template |   27 +
 .../build_client/config/build_py25_exe.template    |   27 +
 test/util/build_page/libs/build_client/helpers.py  |   76 +
 test/util/build_page/libs/build_client/mocks.py    |   72 +
 .../build_page/libs/build_client/multi_part.py     |   73 +
 test/util/build_page/libs/build_client/regexes.py  |  168 +
 .../libs/build_client/test_fixtures/BUILD_FAILED   |    0
 .../test_fixtures/BUILD_FAILED_EXCEPTION           |    0
 .../test_fixtures/BUILD_FAILED_UNKNOWN             |    0
 .../test_fixtures/BUILD_FAILED_UNPARSEABLE         |    0
 .../build_client/test_fixtures/BUILD_LINK_FAILED   |    0
 .../build_client/test_fixtures/BUILD_SUCCESSFUL    |  743 ++++
 .../libs/build_client/test_fixtures/TESTS_FAILED   |    0
 .../libs/build_client/test_fixtures/TESTS_INVALID  |    0
 .../libs/build_client/test_fixtures/TESTS_PASSED   |    7 +
 test/util/build_page/libs/build_client/update.py   |  336 ++
 .../build_page/libs/build_client/update_test.py    |  101 +
 .../build_page/libs/build_client/upload_results.py |   25 +
 test/util/build_page/libs/helpers.py               |   76 +
 test/util/build_page/libs/process_results.py       |   34 +
 test/util/build_page/libs/pywebsite/__init__.py    |   12 +
 test/util/build_page/libs/pywebsite/escape.py      |   43 +
 test/util/build_page/libs/pywebsite/helpers.py     |   12 +
 test/util/build_page/libs/pywebsite/zdb.py         |   20 +
 test/util/build_page/libs/safe_eval.py             |   78 +
 test/util/build_page/remote_push.bat               |    1 +
 test/util/build_page/results/.htaccess             |    2 +
 test/util/build_page/results/index.py              |   63 +
 test/util/build_page/results/results.css           |   68 +
 test/util/build_page/upload_results/.htaccess      |   13 +
 test/util/build_page/upload_results/index.py       |   67 +
 test/util/build_page/warnings.php                  |   40 +
 test/util/gen_stubs.py                             |  360 ++
 test/util/gen_stubs_test.py                        |   14 +
 test/util/relative_indentation.py                  |  111 +
 test/util/svn_log_to_whatsnew.py                   |   92 +
 test_blit_matrix.py                                |  109 +
 test_image.py                                      |   64 +
 test_render.py                                     |   95 +
 test_sound.py                                      |   29 +
 201 files changed, 35510 insertions(+), 76 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/pygame-sdl2.git



More information about the Pkg-games-commits mailing list