[Python-modules-commits] [pycairo] 03/13: merge patched into master
Laurent Bigonville
bigon at moszumanska.debian.org
Sun Nov 19 12:37:21 UTC 2017
This is an automated email from the git hooks/post-receive script.
bigon pushed a commit to tag debian/1.15.4-1
in repository pycairo.
commit 1e50e4acb3b3dd69c2f5138683ec8ecc989e9cb0
Merge: 6d164c3 f415c47
Author: Laurent Bigonville <bigon at bigon.be>
Date: Sun Nov 19 11:42:59 2017 +0100
merge patched into master
.appveyor.yml | 40 +
.appveyor/msvc.bat | 24 +
.appveyor/msys2.sh | 12 +
.gitignore | 61 +
.travis.yml | 61 +
AUTHORS | 11 -
INSTALL | 38 -
MANIFEST.in | 11 +
Makefile.am | 89 -
Makefile.in | 841 --
NEWS | 833 +-
README | 41 -
README.rst | 68 +
acinclude.m4 | 67 -
aclocal.m4 | 9263 ------------
cairo/__init__.py | 1 +
cairo/bufferproxy.c | 140 +
{src => cairo}/cairomodule.c | 470 +-
cairo/compat.h | 97 +
{src => cairo}/context.c | 422 +-
cairo/device.c | 388 +
cairo/enums.c | 470 +
cairo/error.c | 251 +
{src => cairo}/font.c | 491 +-
cairo/glyph.c | 206 +
{src => cairo}/matrix.c | 75 +-
cairo/misc.c | 321 +
{src => cairo}/path.c | 63 +-
{src => cairo}/pattern.c | 758 +-
{src => cairo}/private.h | 167 +-
{src => cairo}/pycairo.h | 88 +-
cairo/rectangle.c | 116 +
cairo/region.c | 585 +
cairo/surface.c | 2452 ++++
cairo/textcluster.c | 150 +
cairo/textextents.c | 120 +
codecov.yml | 7 +
config.guess | 1526 --
config.sub | 1658 ---
configure | 14171 -------------------
configure.ac | 108 -
debian/.git-dpm | 6 +-
debian/patches/series | 1 -
debian/patches/setup_25_compat | 42 -
depcomp | 630 -
doc/Makefile.am | 96 -
doc/Makefile.in | 454 -
doc/README | 89 -
doc/conf.py | 187 -
doc/faq.rst | 41 -
doc/index.rst | 19 -
doc/overview.rst | 31 -
doc/pycairo_c_api.rst | 116 -
doc/reference/constants.rst | 525 -
doc/reference/exceptions.rst | 18 -
doc/reference/patterns.rst | 286 -
docs/.gitignore | 3 +
docs/Makefile | 13 +
docs/changelog.rst | 6 +
docs/conf.py | 37 +
docs/examples.rst | 9 +
docs/extra.css | 40 +
docs/images/example.svg | 7 +
docs/images/pycairo.svg | 248 +
docs/index.rst | 67 +
docs/integration.rst | 140 +
docs/pycairo_c_api.rst | 407 +
docs/reference/constants.rst | 141 +
{doc => docs}/reference/context.rst | 232 +-
docs/reference/devices.rst | 118 +
docs/reference/enums.rst | 735 +
docs/reference/exceptions.rst | 43 +
docs/reference/glyph.rst | 52 +
{doc => docs}/reference/index.rst | 14 +-
docs/reference/legacy_constants.rst | 490 +
{doc => docs}/reference/matrix.rst | 46 +-
{doc => docs}/reference/paths.rst | 2 +-
docs/reference/patterns.rst | 709 +
docs/reference/rectangle.rst | 44 +
docs/reference/region.rst | 152 +
{doc => docs}/reference/surfaces.rst | 570 +-
{doc => docs}/reference/text.rst | 154 +-
docs/reference/textcluster.rst | 40 +
docs/reference/textextents.rst | 69 +
docs/resources.rst | 67 +
docs/tutorial.rst | 114 +
examples/Makefile.am | 40 -
examples/Makefile.in | 401 -
examples/cairo_snippets/data/romedalen.png | Bin 80944 -> 0 bytes
examples/cairo_snippets/snippets/__init__.py | 45 +-
examples/cairo_snippets/snippets/arc.py | 41 +-
examples/cairo_snippets/snippets/arc_negative.py | 42 +-
examples/cairo_snippets/snippets/clip.py | 31 +-
examples/cairo_snippets/snippets/clip_image.py | 13 -
.../cairo_snippets/snippets/curve_rectangle.py | 95 +-
examples/cairo_snippets/snippets/curve_to.py | 31 +-
examples/cairo_snippets/snippets/ellipse.py | 35 +-
.../cairo_snippets/snippets/fill_and_stroke.py | 23 +-
.../cairo_snippets/snippets/fill_and_stroke2.py | 33 +-
examples/cairo_snippets/snippets/glyph_path.py | 38 +-
examples/cairo_snippets/snippets/gradient.py | 34 +-
examples/cairo_snippets/snippets/gradient_mask.py | 23 +-
examples/cairo_snippets/snippets/group.py | 32 +-
examples/cairo_snippets/snippets/hering.py | 38 +
examples/cairo_snippets/snippets/image.py | 14 -
examples/cairo_snippets/snippets/imagepattern.py | 23 -
examples/cairo_snippets/snippets/path.py | 16 +-
examples/cairo_snippets/snippets/set_line_cap.py | 48 +-
examples/cairo_snippets/snippets/set_line_join.py | 38 +-
examples/cairo_snippets/snippets/show_glyphs.py | 29 +-
examples/cairo_snippets/snippets/spiral.py | 20 +
examples/cairo_snippets/snippets/text.py | 42 +-
.../cairo_snippets/snippets/text_align_center.py | 46 +-
examples/cairo_snippets/snippets/text_extents.py | 46 +-
examples/cairo_snippets/snippets/warpedtext.py | 90 +
examples/cairo_snippets/snippets_gtk.py | 158 +-
examples/cairo_snippets/snippets_pdf.py | 73 +-
examples/cairo_snippets/snippets_png.py | 67 +-
examples/cairo_snippets/snippets_ps.py | 72 +-
examples/cairo_snippets/snippets_svg.py | 69 +-
examples/gradient.py | 33 -
examples/gtk/cairo-demo.py | 79 +-
examples/gtk/cairo-knockout.py | 96 +-
examples/gtk/hangman.py | 257 -
examples/gtk/lsystem.py | 123 -
examples/gtk/png_view.py | 25 +-
examples/gtk/text.py | 30 +-
examples/hering.py | 55 -
examples/pygame-demo.py | 54 +
examples/spiral.py | 36 -
examples/warpedtext.py | 85 -
install-sh | 520 -
ltmain.sh | 8406 -----------
missing | 376 -
py-compile | 146 -
pycairo.pc.in | 8 -
setup.cfg | 8 +
setup.py | 429 +-
src/Makefile.am | 22 -
src/Makefile.in | 688 -
src/__init__.py | 1 -
src/config.h.in | 71 -
src/surface.c | 1215 --
test/Makefile.am | 11 -
test/Makefile.in | 371 -
test/examples_test.py | 29 -
tests/__init__.py | 0
tests/hypothesis_fspaths.py | 109 +
tests/test_api.py | 303 +
tests/test_context.py | 518 +
tests/test_device.py | 117 +
tests/test_enums.py | 127 +
tests/test_error.py | 79 +
tests/test_font.py | 268 +
tests/test_glyph.py | 45 +
tests/test_hypothesis.py | 195 +
tests/test_matrix.py | 104 +
tests/test_path.py | 73 +
tests/test_pattern.py | 321 +
tests/test_rectangle.py | 50 +
tests/test_region.py | 139 +
tests/test_surface.py | 631 +
tests/test_surface_numpy.py | 63 +
tests/test_surface_pygame.py | 14 +
tests/test_textcluster.py | 26 +
tests/test_textextents.py | 49 +
166 files changed, 17267 insertions(+), 45055 deletions(-)
diff --cc debian/.git-dpm
index 5295e82,0000000..ce24844
mode 100644,000000..100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@@ -1,11 -1,0 +1,11 @@@
+# see git-dpm(1) from git-dpm package
- f5ff9307528665dfc25c945125fe67e1a9b30d65
- f5ff9307528665dfc25c945125fe67e1a9b30d65
- f1b7f80838f8f6633a96d144419e2d1f07bbd419
++f415c4726d3216e9e83fbe36b729060beabcdf05
++f415c4726d3216e9e83fbe36b729060beabcdf05
++f415c4726d3216e9e83fbe36b729060beabcdf05
+f415c4726d3216e9e83fbe36b729060beabcdf05
+pycairo_1.15.4.orig.tar.gz
+0053f0a9b44ec907d8cb76c4ac1878b3b7e97632
+179925
+debianTag="debian/%e%v"
+patchedTag="patched/%e%v"
+upstreamTag="upstream/%e%u"
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pycairo.git
More information about the Python-modules-commits
mailing list