Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
New upstream version 0.0~20180130-804a7947d
· e9f0a429
Bas Couwenberg
authored
Mar 06, 2018
e9f0a429
Merge tag 'upstream/0.0_20180130-804a7947d'
· da4c8b83
Bas Couwenberg
authored
Mar 06, 2018
Upstream version 0.0~20180130-804a7947d
da4c8b83
New upstream git snapshot.
· e6a656a4
Bas Couwenberg
authored
Mar 06, 2018
e6a656a4
Rebuild with Mapnik 3.0.19.
· 6f415044
Bas Couwenberg
authored
Mar 06, 2018
6f415044
Set distribution to unstable.
· f1332d84
Bas Couwenberg
authored
Mar 10, 2018
f1332d84
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
f1332d84
python-mapnik (1:0.0~20180130-804a7947d-1) unstable; urgency=medium
* New upstream git snapshot.
* Rebuild with Mapnik 3.0.19.
-- Bas Couwenberg <sebastic@debian.org> Sat, 10 Mar 2018 09:56:59 +0100
python-mapnik (1:0.0~20170621-0cd7493f2-3) unstable; urgency=medium
* Update copyright-format URL to use HTTPS.
...
...
debian/control
View file @
f1332d84
...
...
@@ -6,7 +6,7 @@ Priority: optional
Build-Depends: debhelper (>= 9),
dh-python,
libboost-python-dev,
libmapnik-dev (>= 3.0.1
8
),
libmapnik-dev (>= 3.0.1
9
),
python-all-dev,
python-setuptools,
python-cairo,
...
...
mapnik/printing/__init__.py
View file @
f1332d84
...
...
@@ -1249,7 +1249,7 @@ class PDFPrinter(object):
file_writer
=
PdfFileWriter
()
# preserve OCProperties at document root if we have one
if
file_reader
.
trailer
[
'
/Root
'
].
has_key
(
NameObject
(
'
/OCProperties
'
))
:
if
NameObject
(
'
/OCProperties
'
)
in
file_reader
.
trailer
[
'
/Root
'
]
:
file_writer
.
_root_object
[
NameObject
(
'
/OCProperties
'
)]
=
file_reader
.
trailer
[
'
/Root
'
].
getObject
()[
NameObject
(
'
/OCProperties
'
)]
...
...