diff -Nru py3cairo-1.10.0+dfsg/debian/changelog py3cairo-1.10.0+dfsg/debian/changelog --- py3cairo-1.10.0+dfsg/debian/changelog 2012-10-28 11:00:24.000000000 +0000 +++ py3cairo-1.10.0+dfsg/debian/changelog 2012-12-07 14:41:30.000000000 +0000 @@ -1,3 +1,9 @@ +py3cairo (1.10.0+dfsg-3~exp3ubuntu1) raring; urgency=low + + * debian/patches/include-command.patch: use correct python-config command + + -- Sebastien Bacher Fri, 07 Dec 2012 15:40:40 +0100 + py3cairo (1.10.0+dfsg-3~exp3) experimental; urgency=low * debian/rules diff -Nru py3cairo-1.10.0+dfsg/debian/control py3cairo-1.10.0+dfsg/debian/control --- py3cairo-1.10.0+dfsg/debian/control 2012-09-20 07:16:58.000000000 +0000 +++ py3cairo-1.10.0+dfsg/debian/control 2012-12-07 14:40:55.000000000 +0000 @@ -1,7 +1,8 @@ Source: py3cairo Section: python Priority: optional -Maintainer: Debian Python Modules Team +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debian Python Modules Team Uploaders: Koichi Akabe DM-Upload-Allowed: yes Build-Depends: debhelper (>= 9.0.0), python3-all-dev (>= 3.1), libcairo2-dev (>= 1.10.0), python-sphinx (>= 1.0.7+dfsg) | python3-sphinx, python3-pytest diff -Nru py3cairo-1.10.0+dfsg/debian/patches/include-command.patch py3cairo-1.10.0+dfsg/debian/patches/include-command.patch --- py3cairo-1.10.0+dfsg/debian/patches/include-command.patch 1970-01-01 00:00:00.000000000 +0000 +++ py3cairo-1.10.0+dfsg/debian/patches/include-command.patch 2012-12-07 14:42:09.000000000 +0000 @@ -0,0 +1,12 @@ +--- py3cairo-1.10.0+dfsg.orig/waflib/Tools/python.py ++++ py3cairo-1.10.0+dfsg/waflib/Tools/python.py +@@ -169,7 +169,7 @@ def check_python_headers(conf): + conf.find_program('python-config-%s'%num,var='PYTHON_CONFIG',mandatory=False) + includes=[] + if conf.env.PYTHON_CONFIG: +- for incstr in conf.cmd_and_log(conf.env.PYTHON+[conf.env.PYTHON_CONFIG,'--includes']).strip().split(): ++ for incstr in conf.cmd_and_log([conf.env.PYTHON_CONFIG,'--includes']).strip().split(): + if(incstr.startswith('-I')or incstr.startswith('/I')): + incstr=incstr[2:] + if incstr not in includes: + diff -Nru py3cairo-1.10.0+dfsg/debian/patches/series py3cairo-1.10.0+dfsg/debian/patches/series --- py3cairo-1.10.0+dfsg/debian/patches/series 2012-10-28 09:21:36.000000000 +0000 +++ py3cairo-1.10.0+dfsg/debian/patches/series 2012-12-07 14:41:48.000000000 +0000 @@ -1,3 +1,4 @@ 10_test-target-py3.patch 50_specify-encoding-in-waf.patch 101_pycairo-region.patch +include-command.patch