summaryrefslogtreecommitdiff
path: root/community/python-reportlab
diff options
context:
space:
mode:
Diffstat (limited to 'community/python-reportlab')
-rw-r--r--community/python-reportlab/ChangeLog18
-rw-r--r--community/python-reportlab/PKGBUILD35
2 files changed, 0 insertions, 53 deletions
diff --git a/community/python-reportlab/ChangeLog b/community/python-reportlab/ChangeLog
deleted file mode 100644
index 85b5db51f..000000000
--- a/community/python-reportlab/ChangeLog
+++ /dev/null
@@ -1,18 +0,0 @@
-
-2009-02-17 Douglas Soares de Andrade <douglas@archlinux.org>
-
- * Updated for i686: 2.3
-
-2008-11-03 Giovanni Scafora <giovanni@archlinux.org>
-
- * Rebuilt against python 2.6
-
-2008-09-14 Douglas Soares de Andrade <douglas@archlinux.org>
-
- * Updating for x86_64: 2.2
-
-2008-09-13 Douglas Soares de Andrade <douglas@archlinux.org>
-
- * Adding ChangeLog
- * Updating for i686: 2.2
-
diff --git a/community/python-reportlab/PKGBUILD b/community/python-reportlab/PKGBUILD
deleted file mode 100644
index 6e44f03d6..000000000
--- a/community/python-reportlab/PKGBUILD
+++ /dev/null
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 78251 2012-10-17 10:27:06Z allan $
-# Maintainer:
-# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
-# Contributor: William Rea <sillywilly@gmail.com>
-
-pkgbase=python-reportlab
-pkgname=python2-reportlab
-_origname=reportlab
-pkgver=2.6
-pkgrel=1
-pkgdesc="A proven industry-strength PDF generating solution"
-arch=('i686' 'x86_64')
-url="http://www.reportlab.org/rl_toolkit.html"
-depends=('python2' 'freetype2')
-conflicts=('python-reportlab<=2.5-2')
-replaces=('python-reportlab<=2.5-2')
-license=('CUSTOM')
-source=(http://www.reportlab.org/ftp/${_origname}-$pkgver.tar.gz)
-md5sums=('e5d27a24a2c8456b168913242aa1940f')
-
-build() {
- cd $srcdir/${_origname}-$pkgver
-
- # python2 fix
- for file in src/reportlab/graphics/widgets/table.py src/reportlab/lib/normalDate.py \
- src/reportlab/pdfgen/pycanvas.py; do
- sed -i 's_#!.*/usr/bin/env python_#!/usr/bin/env python2_' $file
- done
-}
-
-package_python2-reportlab() {
- cd $srcdir/${_origname}-$pkgver
- python2 setup.py install --root=$pkgdir --optimize=1
- install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/license.txt
-}