summaryrefslogtreecommitdiff
path: root/libre/python-reportlab-libre/PKGBUILD
blob: 3ce775f9e4390f9a5ed2666172941b163bdd4210 (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
# $Id: PKGBUILD 110391 2014-04-28 19:17:21Z jelle $
# Maintainer:
# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
# Contributor: William Rea <sillywilly@gmail.com>
# Maintainer (Parabola): fauno <fauno@kiwwwi.com.ar>
# Contributor: borgo <nomail>
# Contributor (Parabola): André Silva <emulatorman@parabola.nu>

pkgbase=python-reportlab-libre
pkgname=(python2-reportlab-libre python-reportlab-libre)
_origname=reportlab
pkgver=3.1.8
pkgrel=1
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')
checkdepends=('python' 'python2' 'python2-pillow' 'python-pillow')
license=('custom')
source=("https://pypi.python.org/packages/source/r/reportlab/reportlab-$pkgver.tar.gz"
        'free-fonts.patch')
md5sums=(820a9fda647078503597b85cdba7ed7f
         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-libre() {
    conflicts+=('python2-reportlab' 'python-reportlab<=2.5-2')
    replaces+=('python2-reportlab' 'python-reportlab<=2.5-2')
    provides=("python2-reportlab=$pkgver")
    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-libre() {
    conflicts+=('python-reportlab' 'python-reportlab-libre<=2.5-2')
    replaces+=('python-reportlab' 'python-reportlab-libre<=2.5-2')
    provides=("python-reportlab=$pkgver")
    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
}