about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-10-01 11:10:40 +0200
committerGitHub <noreply@github.com>2016-10-01 11:10:40 +0200
commit11d7e936246842f0362935611d73406104d8c6ed (patch)
treeb079d41fd9f04a42b8bec776739ec1f4744e7287 /pkgs/development/python-modules
parent253f96435f562772fda070fe807d6d30aee97542 (diff)
parentf0155e8d70f1d78873b491dbbe297ca8fc279727 (diff)
downloadnixlib-11d7e936246842f0362935611d73406104d8c6ed.tar
nixlib-11d7e936246842f0362935611d73406104d8c6ed.tar.gz
nixlib-11d7e936246842f0362935611d73406104d8c6ed.tar.bz2
nixlib-11d7e936246842f0362935611d73406104d8c6ed.tar.lz
nixlib-11d7e936246842f0362935611d73406104d8c6ed.tar.xz
nixlib-11d7e936246842f0362935611d73406104d8c6ed.tar.zst
nixlib-11d7e936246842f0362935611d73406104d8c6ed.zip
Merge pull request #19078 from FRidh/pypoppler
pythonPackages.pypoppler: init at 0.12.2
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pypoppler-0.39.0.patch23
-rw-r--r--pkgs/development/python-modules/pypoppler-poppler.c.patch12
2 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pypoppler-0.39.0.patch b/pkgs/development/python-modules/pypoppler-0.39.0.patch
new file mode 100644
index 000000000000..b9e02242e003
--- /dev/null
+++ b/pkgs/development/python-modules/pypoppler-0.39.0.patch
@@ -0,0 +1,23 @@
+diff --git a/poppler.defs b/poppler.defs
+index 8b12e03..2b8fc16 100644
+--- a/poppler.defs
++++ b/poppler.defs
+@@ -570,18 +570,6 @@
+   )
+ )
+ 
+-(define-enum Orientation
+-  (in-module "Poppler")
+-  (c-name "PopplerOrientation")
+-  (gtype-id "POPPLER_TYPE_ORIENTATION")
+-  (values
+-    '("portrait" "POPPLER_ORIENTATION_PORTRAIT")
+-    '("landscape" "POPPLER_ORIENTATION_LANDSCAPE")
+-    '("upsidedown" "POPPLER_ORIENTATION_UPSIDEDOWN")
+-    '("seascape" "POPPLER_ORIENTATION_SEASCAPE")
+-  )
+-)
+-
+ (define-enum PageTransitionType
+   (in-module "Poppler")
+   (c-name "PopplerPageTransitionType")
diff --git a/pkgs/development/python-modules/pypoppler-poppler.c.patch b/pkgs/development/python-modules/pypoppler-poppler.c.patch
new file mode 100644
index 000000000000..1104097cd3e7
--- /dev/null
+++ b/pkgs/development/python-modules/pypoppler-poppler.c.patch
@@ -0,0 +1,12 @@
+diff --git a/poppler.c b/poppler.c
+index 31b4489..16d0838 100644
+--- a/poppler.c
++++ b/poppler.c
+@@ -4501,7 +4501,6 @@ py_poppler_add_constants(PyObject *module, const gchar *strip_prefix)
+   pyg_enum_add(module, "FormTextType", strip_prefix, POPPLER_TYPE_FORM_TEXT_TYPE);
+   pyg_enum_add(module, "FormChoiceType", strip_prefix, POPPLER_TYPE_FORM_CHOICE_TYPE);
+   pyg_enum_add(module, "Error", strip_prefix, POPPLER_TYPE_ERROR);
+-  pyg_enum_add(module, "Orientation", strip_prefix, POPPLER_TYPE_ORIENTATION);
+   pyg_enum_add(module, "PageTransitionType", strip_prefix, POPPLER_TYPE_PAGE_TRANSITION_TYPE);
+   pyg_enum_add(module, "PageTransitionAlignment", strip_prefix, POPPLER_TYPE_PAGE_TRANSITION_ALIGNMENT);
+   pyg_enum_add(module, "PageTransitionDirection", strip_prefix, POPPLER_TYPE_PAGE_TRANSITION_DIRECTION);