summaryrefslogtreecommitdiff
path: root/libre/python-reportlab/PKGBUILD
blob: 5d678662f26fa29e826f1bae5d2a40e31d5fc56c (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# $Id: PKGBUILD 141248 2015-09-20 11:59:40Z jelle $
# Maintainer (Arch):
# Contributor (Arch): Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
# Contributor (Arch): William Rea <sillywilly@gmail.com>
# Maintainer: fauno <fauno@kiwwwi.com.ar>
# Contributor: borgo <nomail>
# Contributor: André Silva <emulatorman@parabola.nu>

pkgbase=python-reportlab
pkgname=(python2-reportlab python-reportlab)
_origname=reportlab
pkgver=3.2.0
pkgrel=2.parabola1
pkgdesc="A proven industry-strength PDF generating solution, without nonfree Adobe T1 fonts support"
arch=('i686' 'x86_64')
url="http://www.reportlab.org/rl_toolkit.html"
depends=('freetype2')
conflicts=('python-reportlab<=2.5-2')
makedepends=('python' 'python2')
checkdepends=('python2-pillow' 'python-pillow')
replaces=('python-reportlab<=2.5-2')
license=('custom')
source=("https://pypi.python.org/packages/source/r/reportlab/reportlab-$pkgver.tar.gz"
        'free-fonts.patch')
md5sums=('79d059e797c557aed4b40c68dd6c7eae'
         'eb3ac47734efb05b939fb88026aff8ed')

prepare() {
    cd $srcdir
    cp -rf ${_origname}-$pkgver "${_origname}2-$pkgver"

    _reportlab_source=("${_origname}-$pkgver" "${_origname}2-$pkgver")

    for x in ${_reportlab_source[@]}; do
      cd $srcdir/$x

      # remove nonfree Adobe T1 fonts support
      patch -p1 -i $srcdir/free-fonts.patch

      # Parabola contains those fonts from the ttf-bitstream-vera package
      rm -fv src/reportlab/fonts/{bitstream-vera-license.txt,Vera*}
    done
}

package_python2-reportlab() {
    conflicts+=('python2-reportlab-libre')
    replaces+=('python2-reportlab-libre')
    depends=('python2')
    cd "$srcdir/${_origname}2-$pkgver"
    python2 setup.py install --root=$pkgdir --optimize=1
    install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/license.txt
}

package_python-reportlab() {
    conflicts+=('python-reportlab-libre')
    replaces+=('python-reportlab-libre')
    depends=('python3')
    cd "$srcdir/${_origname}-$pkgver"
    python3 setup.py install --root=$pkgdir --optimize=1
    install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/license.txt
}


check() {
    cd ${srcdir}/${_origname}-${pkgver}
    python2 setup.py tests
    python setup.py tests
}