pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/graphics/py-cairo py-cairo: update to 1.16.2.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/98f701fd2fd2
branches:  trunk
changeset: 375439:98f701fd2fd2
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sun Feb 11 16:40:48 2018 +0000

description:
py-cairo: update to 1.16.2.

1.16.2 - 2018-02-10
-------------------

* setup.py: Some fixes for Debian pybuild quirks. :bug:`98`


.. _v1.16.1:

1.16.1 - 2018-02-06
-------------------

* setup.py: correctly install pkgconfig into /usr/lib* again.
  To make JHBuild on Fedora work the following patch is needed:
  https://bugzilla.gnome.org/show_bug.cgi?id=793216


.. _v1.16.0:

1.16.0 - 2018-02-05
-------------------

* Add a :func:`get_include` function which returns the compiler include path
  needed for interfacing with the Pycairo C API :bug:`92`
* Note for packagers: The default header installation path has changed, but a
  compat header is installed to the old location to prevent breakage in case
  anyone has hardcoded the old path instead of using pkg-config.
  Just in case anyone is wondering why there are two header files now.


.. _v1.15.6:

1.15.6 - 2018-01-30
-------------------

* Experimental PyPy and PyPy3 support :bug:`90`


.. _v1.15.5:

1.15.5 - 2018-01-29
-------------------

* Support Unicode paths under Windows with cairo 1.15.10+ :pr:`87`
* Don't include the pkg-config file when building a wheel :bug:`83`

diffstat:

 graphics/py-cairo/Makefile               |   5 ++---
 graphics/py-cairo/PLIST                  |   4 +++-
 graphics/py-cairo/distinfo               |  11 +++++------
 graphics/py-cairo/patches/patch-setup.py |  15 ---------------
 4 files changed, 10 insertions(+), 25 deletions(-)

diffs (65 lines):

diff -r 3f323c684037 -r 98f701fd2fd2 graphics/py-cairo/Makefile
--- a/graphics/py-cairo/Makefile        Sun Feb 11 16:35:10 2018 +0000
+++ b/graphics/py-cairo/Makefile        Sun Feb 11 16:40:48 2018 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.52 2017/11/25 09:16:13 wiz Exp $
+# $NetBSD: Makefile,v 1.53 2018/02/11 16:40:48 wiz Exp $
 
-DISTNAME=              pycairo-1.15.4
+DISTNAME=              pycairo-1.16.2
 PKGNAME=               ${PYPKGPREFIX}-${DISTNAME:S/py//}
-PKGREVISION=           1
 CATEGORIES=            graphics
 MASTER_SITES=          ${MASTER_SITE_GITHUB:=pygobject/}
 GITHUB_PROJECT=                pycairo
diff -r 3f323c684037 -r 98f701fd2fd2 graphics/py-cairo/PLIST
--- a/graphics/py-cairo/PLIST   Sun Feb 11 16:35:10 2018 +0000
+++ b/graphics/py-cairo/PLIST   Sun Feb 11 16:40:48 2018 +0000
@@ -1,9 +1,11 @@
-@comment $NetBSD: PLIST,v 1.4 2017/11/25 09:16:13 wiz Exp $
+@comment $NetBSD: PLIST,v 1.5 2018/02/11 16:40:48 wiz Exp $
 ${PYSITELIB}/${EGG_FILE}
 ${PYSITELIB}/cairo/__init__.py
 ${PYSITELIB}/cairo/__init__.pyc
 ${PYSITELIB}/cairo/__init__.pyo
 ${PYSITELIB}/cairo/_cairo.so
+${PLIST.py2x}${PYSITELIB}/cairo/include/pycairo.h
+${PLIST.py3x}${PYSITELIB}/cairo/include/py3cairo.h
 ${PLIST.py2x}include/pycairo/pycairo.h
 ${PLIST.py3x}include/pycairo/py3cairo.h
 ${PLIST.py2x}lib/pkgconfig/pycairo.pc
diff -r 3f323c684037 -r 98f701fd2fd2 graphics/py-cairo/distinfo
--- a/graphics/py-cairo/distinfo        Sun Feb 11 16:35:10 2018 +0000
+++ b/graphics/py-cairo/distinfo        Sun Feb 11 16:40:48 2018 +0000
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.19 2017/11/25 09:16:13 wiz Exp $
+$NetBSD: distinfo,v 1.20 2018/02/11 16:40:48 wiz Exp $
 
-SHA1 (pycairo-1.15.4.tar.gz) = f1848d6673f47c1703fc2d1094c781b3f65faac7
-RMD160 (pycairo-1.15.4.tar.gz) = b6b753dd9a16e0bf86e7d07375bb38ba056b5ab4
-SHA512 (pycairo-1.15.4.tar.gz) = 7e785d23393a8d0c5aca9a4440eb64b0eca9a60c1a18b0dc8452edd6de9422c743d082530387bcbedd34d52377d0892ad395998e9467ba08e22c318684cbee34
-Size (pycairo-1.15.4.tar.gz) = 178436 bytes
-SHA1 (patch-setup.py) = d327ccb3b3e53f08e946a8bfea6905c0da806072
+SHA1 (pycairo-1.16.2.tar.gz) = 28fec74b92f3b0474bd68f17be5e5f59336464cc
+RMD160 (pycairo-1.16.2.tar.gz) = 12149166dc2a4740753a1fe3203df5f39d86d66c
+SHA512 (pycairo-1.16.2.tar.gz) = a5ac07f96f6607b1b40912b000c8b3b2114e75a6b8b314f1b68d2f5bb408dd7823c464d096c8cc26164219a961b448a4ea90b5a76683fb1807180f83cbc3b300
+Size (pycairo-1.16.2.tar.gz) = 180430 bytes
diff -r 3f323c684037 -r 98f701fd2fd2 graphics/py-cairo/patches/patch-setup.py
--- a/graphics/py-cairo/patches/patch-setup.py  Sun Feb 11 16:35:10 2018 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-$NetBSD: patch-setup.py,v 1.1 2017/11/25 11:59:53 wiz Exp $
-
-Install pkgconfig file into pkgsrc standard location.
-
---- setup.py.orig      2017-11-08 12:45:24.000000000 +0000
-+++ setup.py
-@@ -130,7 +130,7 @@ class install_pkgconfig(Command):
-         if self.compiler_type == "msvc":
-             return
- 
--        pkgconfig_dir = os.path.join(self.install_data, "share", "pkgconfig")
-+        pkgconfig_dir = os.path.join(self.install_data, "lib", "pkgconfig")
-         self.mkpath(pkgconfig_dir)
- 
-         if sys.version_info[0] == 3:



Home | Main Index | Thread Index | Old Index