[Python-modules-commits] [pycairo] 01/13: Import pycairo_1.15.4.orig.tar.gz

Laurent Bigonville bigon at moszumanska.debian.org
Sun Nov 19 12:37:20 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 f415c4726d3216e9e83fbe36b729060beabcdf05
Author: Laurent Bigonville <bigon at bigon.be>
Date:   Sun Nov 19 11:42:27 2017 +0100

    Import pycairo_1.15.4.orig.tar.gz
---
 .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 -
 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                                           |   427 +-
 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 +
 163 files changed, 17262 insertions(+), 45009 deletions(-)

diff --git a/.appveyor.yml b/.appveyor.yml
new file mode 100644
index 0000000..ff744e3
--- /dev/null
+++ b/.appveyor.yml
@@ -0,0 +1,40 @@
+environment:
+  matrix:
+    - MSVC_PLATFORM: x86
+      PYTHON_ROOT: Python27
+      APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
+    - MSVC_PLATFORM: x86
+      PYTHON_ROOT: Python34
+      APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
+    - MSVC_PLATFORM: x86
+      PYTHON_ROOT: Python35
+      APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
+    - MSVC_PLATFORM: x64
+      PYTHON_ROOT: Python35-x64
+      APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
+    - MSVC_PLATFORM: x86
+      PYTHON_ROOT: Python36
+      APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
+    - MSVC_PLATFORM: x64
+      PYTHON_ROOT: Python36-x64
+      APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
+    - MSYS2_ARCH: x86_64
+      MSYSTEM: MINGW64
+      PYTHON: python2
+    - MSYS2_ARCH: i686
+      MSYSTEM: MINGW32
+      PYTHON: python2
+    - MSYS2_ARCH: x86_64
+      MSYSTEM: MINGW64
+      PYTHON: python3
+    - MSYS2_ARCH: i686
+      MSYSTEM: MINGW32
+      PYTHON: python3
+
+build_script:
+  - IF DEFINED MSYSTEM set PATH=C:\msys64\%MSYSTEM%\bin;C:\msys64\usr\bin;%PATH%
+  - IF DEFINED MSYSTEM set CHERE_INVOKING=yes
+  - IF DEFINED MSYSTEM bash -lc "bash .appveyor/msys2.sh"
+  - IF DEFINED MSVC_PLATFORM ".appveyor/msvc.bat"
+
+deploy: off
diff --git a/.appveyor/msvc.bat b/.appveyor/msvc.bat
new file mode 100644
index 0000000..bfbf712
--- /dev/null
+++ b/.appveyor/msvc.bat
@@ -0,0 +1,24 @@
+set CAIRO_VER=1.15.6
+appveyor DownloadFile https://github.com/preshing/cairo-windows/releases/download/%CAIRO_VER%/cairo-windows-%CAIRO_VER%.zip
+7z x cairo-windows-%CAIRO_VER%.zip
+
+::~ set MSVC_PLATFORM=x86
+::~ set PYTHON_ROOT=Python27
+::~ set PATH=
+::~ set LIBPATH=
+
+set CAIRO_ROOT=%CD%\cairo-windows-%CAIRO_VER%
+set INCLUDE=%CAIRO_ROOT%\include
+set LIB=%CAIRO_ROOT%\lib\%MSVC_PLATFORM%
+set PYTHON=C:\%PYTHON_ROOT%\python.exe
+
+::~ call "%LOCALAPPDATA%\Programs\Common\Microsoft\Visual C++ for Python\9.0\vcvarsall.bat" %MSVC_PLATFORM%
+::~ SET DISTUTILS_USE_SDK=1
+::~ SET MSSdk=1
+
+%PYTHON% -m pip install --upgrade pytest hypothesis coverage codecov
+copy cairo-windows-%CAIRO_VER%\lib\%MSVC_PLATFORM%\cairo.dll cairo
+set CL=/WX
+%PYTHON% -m coverage run --branch setup.py test
+%PYTHON% -m coverage xml
+%PYTHON% -m codecov -f coverage.xml
diff --git a/.appveyor/msys2.sh b/.appveyor/msys2.sh
new file mode 100644
index 0000000..347ed52
--- /dev/null
+++ b/.appveyor/msys2.sh
@@ -0,0 +1,12 @@
+set -e
+
+export MSYS2_FC_CACHE_SKIP=1
+pacman --noconfirm -S --needed mingw-w64-$MSYS2_ARCH-cairo \
+    mingw-w64-$MSYS2_ARCH-$PYTHON mingw-w64-$MSYS2_ARCH-$PYTHON-pip
+$PYTHON -m pip install pytest coverage codecov hypothesis
+
+export CFLAGS="-std=c90 -Wall -Wno-long-long -Werror -coverage"
+$PYTHON -m coverage run --branch setup.py test
+$PYTHON -m codecov
+$PYTHON setup.py sdist
+$PYTHON -m pip install dist/*
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8b65c6f
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,61 @@
+# top-level .gitignore
+*~
+
+.*.sw?
+.deps
+.libs
+.lock*
+.perf
+.waf*
+
+*.la
+*.lo
+*.orig
+*.rej
+*.pyc
+*.pyo
+*.so
+.cache
+MANIFEST
+dist
+.hypothesis
+*.pyd
+*.dll
+
+# image files
+*.pdf
+*.png
+*.ps
+*.svg
+
+*-uninstalled.pc
+
+aclocal.m4
+autom4te.cache
+autoscan.log
+build
+build_directory
+config.cache
+config.guess
+config.h
+config.h.in
+config.log
+config.lt
+config.status
+config.sub
+configure
+configure.scan
+depcomp
+doltcompile
+doltlibtool
+install-sh
+libtool
+ltmain.sh
+Makefile.in
+missing
+py-compile
+pycairo.pc
+releases
+stamp-h
+stamp-h1
+stamp-h.in
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..3037c5c
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,61 @@
+matrix:
+  include:
+    - os: linux
+      dist: trusty
+      language: python
+      python: "2.7"
+      env: PYCAIRO_WARN=1 CFLAGS="-Werror -coverage"
+    - os: linux
+      dist: trusty
+      language: python
+      python: "3.3"
+      env: PYCAIRO_WARN=1 CFLAGS="-Werror -coverage"
+    - os: linux
+      dist: trusty
+      language: python
+      python: "3.4"
+      env: PYCAIRO_WARN=1 CFLAGS="-Werror -coverage"
+    - os: linux
+      dist: trusty
+      language: python
+      python: "3.5"
+      env: PYCAIRO_WARN=1 CFLAGS="-Werror -coverage"
+    - os: linux
+      dist: trusty
+      language: python
+      python: "3.6"
+      env: PYCAIRO_WARN=1 CFLAGS="-Werror -coverage"
+    - os: osx
+      osx_image: xcode7.3
+      language: generic
+      env: PYVER="3" PYCAIRO_WARN=1 CFLAGS="-Werror -coverage"
+    - os: osx
+      osx_image: xcode7.3
+      language: generic
+      env: PYVER="2" PYCAIRO_WARN=1 CFLAGS="-Werror -coverage"
+
+
+install:
+  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then travis_retry sudo apt-get update -q; fi
+  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then travis_retry sudo apt-get install -y libcairo2-dev; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install pkg-config || brew upgrade pkg-config || true; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install cairo || brew upgrade cairo || true; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]] && [[ "$PYVER" == "2" ]]; then brew install python || brew upgrade python || true; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]] && [[ "$PYVER" == "2" ]]; then python2 -m pip install virtualenv; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]] && [[ "$PYVER" == "2" ]]; then virtualenv ../venv -p python2; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]] && [[ "$PYVER" == "3" ]]; then brew install python3 || brew upgrade python3 || true; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]] && [[ "$PYVER" == "3" ]]; then python3 -m pip install virtualenv; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]] && [[ "$PYVER" == "3" ]]; then virtualenv ../venv -p python3; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then source ../venv/bin/activate; fi
+  - python -m pip install --upgrade setuptools
+  - python -m pip install --upgrade pytest flake8 sphinx sphinx_rtd_theme coverage codecov hypothesis
+  - if [ "$TRAVIS_PYTHON_VERSION" != "3.3" ]; then python -m pip install --upgrade pygame; fi
+
+script:
+  - python -m coverage run --branch setup.py test
+  - python -m codecov
+  - python -m flake8 .
+  - python setup.py sdist
+  - python -m pip install "$(eval 'echo dist/*')"
+  - if [ "$TRAVIS_PYTHON_VERSION" != "3.3" ]; then python -m sphinx -W -a -E -b html -n docs docs/_build; fi
diff --git a/AUTHORS b/AUTHORS
deleted file mode 100644
index 30f0383..0000000
--- a/AUTHORS
+++ /dev/null
@@ -1,11 +0,0 @@
-Original Author
----------------
-James Henstridge <james at daa.com.au>
-
-Maintainer
-----------
-Steve Chaplin <stevech1097 # yahoo.com.au>
-
-Contributors
-------------
-Maarten Breddels
diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 8592e2c..0000000
--- a/INSTALL
+++ /dev/null
@@ -1,38 +0,0 @@
-Waf - recommended install method
----
-$ ./waf --help  # shows available waf options
-$ ./waf configure
-$ ./waf build
-$ ./waf install
-
-
-GNU Autotools - alternative install method
--------------
-Using the same install method of install as cairo - GNU autotools.
-
-$ python -c "import sys; print sys.prefix"
-  # make a note of the python prefix
-$ ./configure --prefix=<python_prefix>
-$ make
-$ make install       # may require superuser access
-
-To build from CVS, use this line instead of the configure line above:
-$ ./autogen.sh --prefix=<python_prefix>
-
-If you're installing to another prefix than the one where Python is installed
-Python will not be able to find the cairo module until you add
-$prefix/lib/pythonX.Y/site-packages to the PYTHONPATH variable.
-
-
-Python distutils - alternative install method
-----------------
-$ python setup.py install
-
-
-Testing
--------
-testing uses py.test from pylib
-http://codespeak.net/py/dist/
-
-$ cd test
-$ py.test
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..f310dd4
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,11 @@
+include COPYING*
+include NEWS
+include README.rst
+include MANIFEST.in
+include setup.cfg
+recursive-include docs *.py Makefile *.rst *.css *.svg
+prune docs/_build
+recursive-include tests *.py README
+recursive-include examples *.py README
+include cairo/*.h
+exclude cairo/config.h
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index b2de1ac..0000000
--- a/Makefile.am
+++ /dev/null
@@ -1,89 +0,0 @@
-SUBDIRS = src examples test doc
-
-EXTRA_DIST = \
-  COPYING \
-  COPYING-LGPL-2.1 \
-  COPYING-MPL-1.1 \
-  pycairo.pc.in \
-  setup.py
-
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = pycairo.pc
-
-# release targets from cairo/Makefile.am
-# Some custom targets to make it easier to release things.
-# Use either:
-#		make release-check
-# or		make release-publish
-
-RELEASE_UPLOAD_HOST =   cairographics.org
-RELEASE_UPLOAD_BASE =	/srv/cairo.freedesktop.org/www
-
-RELEASE_UPLOAD_DIR =	$(RELEASE_UPLOAD_BASE)/releases
-RELEASE_URL_BASE = 	http://cairographics.org/releases
-#RELEASE_UPLOAD_DIR =	$(RELEASE_UPLOAD_BASE)/snapshots
-#RELEASE_URL_BASE = 	http://cairographics.org/snapshots
-
-RELEASE_ANNOUNCE_LIST = cairo-announce at cairographics.org (and CC python-announce-list at python.org)
-
-tar_file = $(PACKAGE)-$(VERSION).tar.gz
-md5_file = $(tar_file).md5
-
-$(md5_file): $(tar_file)
-	md5sum $^ > $@
-
-release-verify-even-micro:
-	@echo -n "Checking that $(VERSION) has an even micro component..."
-	@test "$(PYCAIRO_VERSION_MICRO)" = "`echo $(PYCAIRO_VERSION_MICRO)/2*2 | bc`" \
-		|| (echo "Ouch." && echo "The version micro component '$(PYCAIRO_VERSION_MICRO)' is not an even number." \
-		&& echo "The version in configure.in must be incremented before a new release." \
-		&& false)
-	@echo "Good."
-
-release-verify-newer:
-	@echo -n "Checking that no $(VERSION) release already exists..."
-	@ssh $(RELEASE_UPLOAD_HOST) test ! -e $(RELEASE_UPLOAD_DIR)/$(tar_file) \
-		|| (echo "Ouch." && echo "Found: $(RELEASE_UPLOAD_HOST):$(RELEASE_UPLOAD_DIR)/$(tar_file)" \
-		&& echo "Are you sure you have an updated CVS checkout?" \
-		&& echo "This should never happen." \
-		&& false)
-	@echo "Good."
-
-release-remove-old:
-	rm -f $(tar_file) $(md5_file)
-
-release-check: release-verify-even-micro release-verify-newer release-remove-old distcheck $(md5_file)
-
-release-upload: release-check $(tar_file) $(md5_file)
-	mkdir -p releases
-	scp $(tar_file) $(md5_file) $(RELEASE_UPLOAD_HOST):$(RELEASE_UPLOAD_DIR)
-	mv $(tar_file) $(md5_file) releases
-	ssh $(RELEASE_UPLOAD_HOST) "rm -f $(RELEASE_UPLOAD_DIR)/LATEST-$(PACKAGE)-[0-9]* && ln -s $(tar_file) $(RELEASE_UPLOAD_DIR)/LATEST-$(PACKAGE)-$(VERSION)"
-
-release-publish: release-upload releases/$(md5_file)
-	@echo ""
-	@echo "Please send an announcement to $(RELEASE_ANNOUNCE_LIST)"
-	@echo "including the following:"
-	@echo ""
-	@echo "Subject: ANN: $(PACKAGE) release $(VERSION) now available"
-	@echo ""
-	@echo "============================== CUT HERE =============================="
-	@echo "Pycairo is a set of Python bindings for the multi-platform 2D graphics library cairo."
-	@echo " http://cairographics.org"
-	@echo " http://cairographics.org/pycairo"
-	@echo ""
-	@echo "A new $(PACKAGE) release $(VERSION) is now available from:"
-	@echo ""
-	@echo "	$(RELEASE_URL_BASE)/$(tar_file)"
-	@echo "	$(RELEASE_URL_BASE)/$(md5_file)"
-	@echo ""
-	@echo -n "	"
-	@cat releases/$(md5_file)
-	@echo ""
-	@echo "============================== CUT HERE =============================="
-	@echo "Also, please include the new entries from the NEWS file."
-	@echo ""
-	@echo "Last but not least, do not forget to bump up the micro"
-	@echo "version component to the next (odd) number and commit."
-
-.PHONY: release-verify-even-micro release-verify-newer release-remove-old release-check release-upload release-publish
diff --git a/Makefile.in b/Makefile.in
deleted file mode 100644
index 5681786..0000000
--- a/Makefile.in
+++ /dev/null
@@ -1,841 +0,0 @@
-# Makefile.in generated by automake 1.11 from Makefile.am.
-# @configure_input@
-
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-# Inc.
-# This Makefile.in is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
- at SET_MAKE@
-
-VPATH = @srcdir@
-pkgdatadir = $(datadir)/@PACKAGE@
-pkgincludedir = $(includedir)/@PACKAGE@
-pkglibdir = $(libdir)/@PACKAGE@
-pkglibexecdir = $(libexecdir)/@PACKAGE@
-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
-NORMAL_INSTALL = :
-PRE_INSTALL = :
-POST_INSTALL = :
-NORMAL_UNINSTALL = :
-PRE_UNINSTALL = :
-POST_UNINSTALL = :
-build_triplet = @build@
-host_triplet = @host@
-subdir = .
-DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
-	$(srcdir)/Makefile.in $(srcdir)/pycairo.pc.in \
-	$(top_srcdir)/configure AUTHORS COPYING INSTALL NEWS \
-	config.guess config.sub depcomp install-sh ltmain.sh missing \
-	py-compile
-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
-	$(top_srcdir)/configure.ac
-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
-	$(ACLOCAL_M4)
-am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
- configure.lineno config.status.lineno
-mkinstalldirs = $(install_sh) -d
-CONFIG_HEADER = $(top_builddir)/src/config.h
-CONFIG_CLEAN_FILES = pycairo.pc
-CONFIG_CLEAN_VPATH_FILES =
-SOURCES =
-DIST_SOURCES =
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
-	html-recursive info-recursive install-data-recursive \
-	install-dvi-recursive install-exec-recursive \
-	install-html-recursive install-info-recursive \
-	install-pdf-recursive install-ps-recursive install-recursive \
-	installcheck-recursive installdirs-recursive pdf-recursive \
-	ps-recursive uninstall-recursive
-am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
-am__vpath_adj = case $$p in \
-    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-    *) f=$$p;; \
-  esac;
-am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-am__install_max = 40
-am__nobase_strip_setup = \
-  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-am__nobase_strip = \
-  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-am__nobase_list = $(am__nobase_strip_setup); \
-  for p in $$list; do echo "$$p $$p"; done | \
-  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-    if (++n[$$2] == $(am__install_max)) \
-      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-    END { for (dir in files) print dir, files[dir] }'
-am__base_list = \
-  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
-am__installdirs = "$(DESTDIR)$(pkgconfigdir)"
-DATA = $(pkgconfig_DATA)
-RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
-  distclean-recursive maintainer-clean-recursive
-AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
-	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
-	distdir dist dist-all distcheck
-ETAGS = etags
-CTAGS = ctags
-DIST_SUBDIRS = $(SUBDIRS)
-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-distdir = $(PACKAGE)-$(VERSION)
-top_distdir = $(distdir)
-am__remove_distdir = \
-  { test ! -d "$(distdir)" \
-    || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
-         && rm -fr "$(distdir)"; }; }
-am__relativize = \
-  dir0=`pwd`; \
-  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
-  sed_rest='s,^[^/]*/*,,'; \
-  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
-  sed_butlast='s,/*[^/]*$$,,'; \
-  while test -n "$$dir1"; do \
-    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
-    if test "$$first" != "."; then \
-      if test "$$first" = ".."; then \
-        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
-        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
-      else \
-        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
-        if test "$$first2" = "$$first"; then \
-          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
-        else \
-          dir2="../$$dir2"; \
-        fi; \
-        dir0="$$dir0"/"$$first"; \
-      fi; \
-    fi; \
-    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
-  done; \
-  reldir="$$dir2"
-DIST_ARCHIVES = $(distdir).tar.gz
-GZIP_ENV = --best
-distuninstallcheck_listfiles = find . -type f -print
-distcleancheck_listfiles = find . -type f -print
-ACLOCAL = @ACLOCAL@
-AMTAR = @AMTAR@
-AR = @AR@
-AUTOCONF = @AUTOCONF@
-AUTOHEADER = @AUTOHEADER@
-AUTOMAKE = @AUTOMAKE@
-AWK = @AWK@
-CAIRO_CFLAGS = @CAIRO_CFLAGS@
-CAIRO_LIBS = @CAIRO_LIBS@
-CC = @CC@
-CCDEPMODE = @CCDEPMODE@
-CFLAGS = @CFLAGS@
-CPP = @CPP@
-CPPFLAGS = @CPPFLAGS@
-CYGPATH_W = @CYGPATH_W@
-DEFS = @DEFS@
-DEPDIR = @DEPDIR@
-DSYMUTIL = @DSYMUTIL@
-DUMPBIN = @DUMPBIN@
-ECHO_C = @ECHO_C@
-ECHO_N = @ECHO_N@
-ECHO_T = @ECHO_T@
-EGREP = @EGREP@
-EXEEXT = @EXEEXT@
-FGREP = @FGREP@
-GREP = @GREP@
-INSTALL = @INSTALL@
-INSTALL_DATA = @INSTALL_DATA@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
-INSTALL_SCRIPT = @INSTALL_SCRIPT@
-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
-LD = @LD@
-LDFLAGS = @LDFLAGS@
-LIBOBJS = @LIBOBJS@
-LIBS = @LIBS@
-LIBTOOL = @LIBTOOL@
-LIPO = @LIPO@
-LN_S = @LN_S@
-LTLIBOBJS = @LTLIBOBJS@
-MAKEINFO = @MAKEINFO@
-MKDIR_P = @MKDIR_P@
-NM = @NM@
-NMEDIT = @NMEDIT@
-OBJDUMP = @OBJDUMP@
-OBJEXT = @OBJEXT@
-OTOOL = @OTOOL@
-OTOOL64 = @OTOOL64@
-PACKAGE = @PACKAGE@
-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
-PACKAGE_NAME = @PACKAGE_NAME@
-PACKAGE_STRING = @PACKAGE_STRING@
-PACKAGE_TARNAME = @PACKAGE_TARNAME@
-PACKAGE_VERSION = @PACKAGE_VERSION@
-PATH_SEPARATOR = @PATH_SEPARATOR@
-PKG_CONFIG = @PKG_CONFIG@
-PYTHON = @PYTHON@
-PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
-PYTHON_INCLUDES = @PYTHON_INCLUDES@
-PYTHON_PLATFORM = @PYTHON_PLATFORM@
-PYTHON_PREFIX = @PYTHON_PREFIX@
-PYTHON_VERSION = @PYTHON_VERSION@
-RANLIB = @RANLIB@
-SED = @SED@
-SET_MAKE = @SET_MAKE@
-SHELL = @SHELL@
-STRIP = @STRIP@
-VERSION = @VERSION@
-abs_builddir = @abs_builddir@
-abs_srcdir = @abs_srcdir@
-abs_top_builddir = @abs_top_builddir@
-abs_top_srcdir = @abs_top_srcdir@
-ac_ct_CC = @ac_ct_CC@
-ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
-am__include = @am__include@
-am__leading_dot = @am__leading_dot@
-am__quote = @am__quote@
-am__tar = @am__tar@
-am__untar = @am__untar@
-bindir = @bindir@
-build = @build@
-build_alias = @build_alias@
-build_cpu = @build_cpu@
-build_os = @build_os@
-build_vendor = @build_vendor@
-builddir = @builddir@
-datadir = @datadir@
-datarootdir = @datarootdir@
-docdir = @docdir@
-dvidir = @dvidir@
-exec_prefix = @exec_prefix@
-host = @host@
-host_alias = @host_alias@
-host_cpu = @host_cpu@
-host_os = @host_os@
-host_vendor = @host_vendor@
-htmldir = @htmldir@
-includedir = @includedir@
-infodir = @infodir@
-install_sh = @install_sh@
-libdir = @libdir@
-libexecdir = @libexecdir@
-localedir = @localedir@
-localstatedir = @localstatedir@
-lt_ECHO = @lt_ECHO@
-mandir = @mandir@
-mkdir_p = @mkdir_p@
-oldincludedir = @oldincludedir@
-pdfdir = @pdfdir@
-pkgpyexecdir = @pkgpyexecdir@
-pkgpythondir = @pkgpythondir@
-prefix = @prefix@
-program_transform_name = @program_transform_name@
-psdir = @psdir@
-pyexecdir = @pyexecdir@
-pythondir = @pythondir@
-sbindir = @sbindir@
-sharedstatedir = @sharedstatedir@
-srcdir = @srcdir@
-sysconfdir = @sysconfdir@
-target_alias = @target_alias@
-top_build_prefix = @top_build_prefix@
-top_builddir = @top_builddir@
-top_srcdir = @top_srcdir@
-SUBDIRS = src examples test doc
-EXTRA_DIST = \
-  COPYING \
-  COPYING-LGPL-2.1 \
-  COPYING-MPL-1.1 \
-  pycairo.pc.in \
-  setup.py
-
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = pycairo.pc
-
-# release targets from cairo/Makefile.am
-# Some custom targets to make it easier to release things.
-# Use either:
-#		make release-check
-# or		make release-publish
-RELEASE_UPLOAD_HOST = cairographics.org
-RELEASE_UPLOAD_BASE = /srv/cairo.freedesktop.org/www
-RELEASE_UPLOAD_DIR = $(RELEASE_UPLOAD_BASE)/releases
-RELEASE_URL_BASE = http://cairographics.org/releases
-#RELEASE_UPLOAD_DIR =	$(RELEASE_UPLOAD_BASE)/snapshots
-#RELEASE_URL_BASE = 	http://cairographics.org/snapshots
-RELEASE_ANNOUNCE_LIST = cairo-announce at cairographics.org (and CC python-announce-list at python.org)
-tar_file = $(PACKAGE)-$(VERSION).tar.gz
-md5_file = $(tar_file).md5
-all: all-recursive
-
-.SUFFIXES:
-am--refresh:
-	@:
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
-	@for dep in $?; do \
-	  case '$(am__configure_deps)' in \
-	    *$$dep*) \
-	      echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
-	      $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
-		&& exit 0; \
-	      exit 1;; \
-	  esac; \
-	done; \
-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
-	$(am__cd) $(top_srcdir) && \
-	  $(AUTOMAKE) --foreign Makefile
-.PRECIOUS: Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
-	@case '$?' in \
-	  *config.status*) \
-	    echo ' $(SHELL) ./config.status'; \
-	    $(SHELL) ./config.status;; \
-	  *) \
-	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
-	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
-	esac;
-
-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
-	$(SHELL) ./config.status --recheck
-
-$(top_srcdir)/configure:  $(am__configure_deps)
-	$(am__cd) $(srcdir) && $(AUTOCONF)
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
-	$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
-$(am__aclocal_m4_deps):
-pycairo.pc: $(top_builddir)/config.status $(srcdir)/pycairo.pc.in
-	cd $(top_builddir) && $(SHELL) ./config.status $@
-
-mostlyclean-libtool:
-	-rm -f *.lo
-
-clean-libtool:
-	-rm -rf .libs _libs
-
-distclean-libtool:
-	-rm -f libtool config.lt
-install-pkgconfigDATA: $(pkgconfig_DATA)
-	@$(NORMAL_INSTALL)
-	test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
-	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
-	for p in $$list; do \
-	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-	  echo "$$d$$p"; \
-	done | $(am__base_list) | \
-	while read files; do \
-	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
-	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
-	done
-
-uninstall-pkgconfigDATA:
-	@$(NORMAL_UNINSTALL)
-	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
-	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-	test -n "$$files" || exit 0; \
-	echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
-	cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
-
-# This directory's subdirectories are mostly independent; you can cd
-# into them and run `make' without going through this Makefile.
-# To change the values of `make' variables: instead of editing Makefiles,
-# (1) if the variable is set in `config.status', edit `config.status'
-#     (which will cause the Makefiles to be regenerated when you run `make');
-# (2) otherwise, pass the desired values on the `make' command line.
-$(RECURSIVE_TARGETS):
-	@failcom='exit 1'; \
-	for f in x $$MAKEFLAGS; do \
-	  case $$f in \
-	    *=* | --[!k]*);; \
-	    *k*) failcom='fail=yes';; \
-	  esac; \
-	done; \
-	dot_seen=no; \
-	target=`echo $@ | sed s/-recursive//`; \
-	list='$(SUBDIRS)'; for subdir in $$list; do \
-	  echo "Making $$target in $$subdir"; \
-	  if test "$$subdir" = "."; then \
-	    dot_seen=yes; \
-	    local_target="$$target-am"; \
-	  else \
-	    local_target="$$target"; \
-	  fi; \
-	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-	  || eval $$failcom; \
-	done; \
-	if test "$$dot_seen" = "no"; then \
-	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
-	fi; test -z "$$fail"
-
-$(RECURSIVE_CLEAN_TARGETS):
-	@failcom='exit 1'; \
-	for f in x $$MAKEFLAGS; do \
-	  case $$f in \
-	    *=* | --[!k]*);; \
-	    *k*) failcom='fail=yes';; \
-	  esac; \
-	done; \
-	dot_seen=no; \
-	case "$@" in \
-	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
-	  *) list='$(SUBDIRS)' ;; \
-	esac; \
-	rev=''; for subdir in $$list; do \
-	  if test "$$subdir" = "."; then :; else \
-	    rev="$$subdir $$rev"; \
-	  fi; \
-	done; \
-	rev="$$rev ."; \
-	target=`echo $@ | sed s/-recursive//`; \
-	for subdir in $$rev; do \
-	  echo "Making $$target in $$subdir"; \
-	  if test "$$subdir" = "."; then \
-	    local_target="$$target-am"; \
-	  else \
-	    local_target="$$target"; \
-	  fi; \
-	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-	  || eval $$failcom; \
-	done && test -z "$$fail"
-tags-recursive:
-	list='$(SUBDIRS)'; for subdir in $$list; do \
-	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
-	done
-ctags-recursive:
-	list='$(SUBDIRS)'; for subdir in $$list; do \
-	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
-	done
-
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
-	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
-	unique=`for i in $$list; do \
-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-	  done | \
-	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
... 64999 lines suppressed ...

-- 
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