summaryrefslogtreecommitdiff
path: root/devel/gobject-introspection/patches
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2012-04-30 14:28:57 +0000
committerdrochner <drochner@pkgsrc.org>2012-04-30 14:28:57 +0000
commiteb21eb71c01db68421e05fb3c61da1b5641a12ad (patch)
treea6ef8f93a261aa027fda38cce642cf4be70295a4 /devel/gobject-introspection/patches
parenta70a390a71b5ff2c848bedb42c2bdc519c1bd2df (diff)
downloadpkgsrc-eb21eb71c01db68421e05fb3c61da1b5641a12ad.tar.gz
update to 1.32.1
This is a new major release.
Diffstat (limited to 'devel/gobject-introspection/patches')
-rw-r--r--devel/gobject-introspection/patches/patch-ae15
-rw-r--r--devel/gobject-introspection/patches/patch-af15
2 files changed, 0 insertions, 30 deletions
diff --git a/devel/gobject-introspection/patches/patch-ae b/devel/gobject-introspection/patches/patch-ae
deleted file mode 100644
index 99f9802c8e4..00000000000
--- a/devel/gobject-introspection/patches/patch-ae
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ae,v 1.1 2012/02/10 15:14:56 drochner Exp $
-
-compatibility with Python<2.7
-
---- giscanner/docbookdescription.py.orig 2011-08-30 01:07:30.000000000 +0000
-+++ giscanner/docbookdescription.py
-@@ -1,7 +1,7 @@
-
- TAG_PROGRAM_LISTING = '<programlisting'
- TAG_CDATA = '<![CDATA['
--TAGS = {TAG_PROGRAM_LISTING, TAG_CDATA, ']]>', '</programlisting>'}
-+TAGS = [TAG_PROGRAM_LISTING, TAG_CDATA, ']]>', '</programlisting>']
-
- def get_formatted_description(description):
- desc = description.replace("|[", "<informalexample><programlisting>") \
diff --git a/devel/gobject-introspection/patches/patch-af b/devel/gobject-introspection/patches/patch-af
deleted file mode 100644
index f0b87f573af..00000000000
--- a/devel/gobject-introspection/patches/patch-af
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-af,v 1.1 2012/02/10 15:14:56 drochner Exp $
-
-deal with CC env var consisting of multiple words
-
---- giscanner/sourcescanner.py.orig 2011-09-03 18:42:14.000000000 +0000
-+++ giscanner/sourcescanner.py
-@@ -274,7 +274,7 @@ class SourceScanner(object):
-
- defines = ['__GI_SCANNER__']
- undefs = []
-- cpp_args = [os.environ.get('CC', 'cc'), '-E', '-C', '-I.', '-']
-+ cpp_args = os.environ.get('CC', 'cc').split() + ['-E', '-C', '-I.', '-']
-
- cpp_args += self._cpp_options
- proc = subprocess.Popen(cpp_args,