blob: 1b2a1f55da78630b4a9b12a3fdabdd8ceedcb355 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Maintainer: Kyle Keen <keenerd@gmail.com>
pkgname=python-pdfnup
pkgver=0.4.2
pkgrel=1
pkgdesc="a Python module and CLI tool for layouting multiple pages per sheet of a PDF"
arch=('any')
url="http://www.dinu-gherman.net/tmp/pdfnup-README.html"
#url="https://pypi.python.org/pypi/pdfnup/0.4.1"
license=('GPL3')
depends=('python-pypdf2')
makedepends=('python-setuptools')
source=("http://www.dinu-gherman.net/tmp/pdfnup-$pkgver.tar.gz")
#source=("https://pypi.python.org/packages/source/p/pdfnup/pdfnup-$pkgver.tar.gz")
md5sums=('02b9232a918d573c2d1933dfba3e6ede')
# note: this bundles a binary template PDF (_mtA4PdfZip64) that I have not inspected
prepare() {
cd "$srcdir/pdfnup-$pkgver"
find ./ -name '*.py' -exec 2to3 -w '{}' \;
2to3 -w pdfnup
# todo: remove the unused ones from 0.3.3
sed -i -e 's/from pyPdf/from PyPDF2/' \
-e 's/ImmutableSet, //' \
-e 's/IS = ImmutableSet/IS = frozenset/' \
-e 's/decodestring(_mtA4PdfZip64)/decodestring(_mtA4PdfZip64.encode("ascii"))/' \
-e 's/StringIO/BytesIO/' \
-e 's/range(n)/range(int(n))/' \
-e 's/outPages\[destPageNum\]/outPages[int(destPageNum)]/' \
-e 's/import types/import io/' \
-e 's/type(obj) == types.FileType/isinstance(obj, io.IOBase)/' \
-e 's/ in str:/ == str:/' \
pdfnup.py
}
build() {
cd "$srcdir/pdfnup-$pkgver"
python setup.py build
}
package(){
cd "$srcdir/pdfnup-$pkgver"
python setup.py install --root="${pkgdir}" --optimize=0
}
# vim:ts=2:sw=2:et:
|