[arch-commits] Commit in pylint/repos (testing-any testing-any/PKGBUILD)

Ángel Velásquez angvp at nymeria.archlinux.org
Sat Aug 17 08:39:00 UTC 2013


    Date: Saturday, August 17, 2013 @ 10:38:59
  Author: angvp
Revision: 193144

archrelease: copy trunk to testing-any

Added:
  pylint/repos/testing-any/
  pylint/repos/testing-any/PKGBUILD
    (from rev 193143, pylint/trunk/PKGBUILD)

----------+
 PKGBUILD |   60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)

Copied: pylint/repos/testing-any/PKGBUILD (from rev 193143, pylint/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD	                        (rev 0)
+++ testing-any/PKGBUILD	2013-08-17 08:38:59 UTC (rev 193144)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault <stephane at archlinux.org>
+# Contributor: Alexander Fehr <pizzapunk gmail com>
+
+pkgbase=pylint
+pkgname=('python2-pylint' 'python-pylint')
+pkgver=0.28.0
+pkgrel=2
+pkgdesc="Analyzes Python code looking for bugs and signs of poor quality"
+arch=('any')
+url="http://www.logilab.org/project/pylint"
+license=('GPL')
+makedepends=('python2-logilab-astng' 'python-logilab-astng') 
+optdepends=('tk: Pylint GUI')
+conflicts=('pylint<=0.26.0-2')
+source=("http://download.logilab.org/pub/${pkgbase}/${pkgbase}-${pkgver}.tar.gz")
+sha1sums=('285b8babd659a9dd21a782f87db0ae15c29728ef')
+
+build() {
+  cd "${srcdir}"
+  cp -a ${pkgbase}-${pkgver}{,-py3}
+
+  cd ${pkgbase}-${pkgver}
+
+  sed -i "s|/usr/bin/env python|/usr/bin/env python2|" epylint.py
+  python2 setup.py build
+
+  cd ../${pkgbase}-${pkgver}-py3
+
+  sed -i "s|/usr/bin/env python|/usr/bin/env python3|" epylint.py
+  python3 setup.py build
+}
+
+package_python2-pylint() {
+  replaces=('pylint<=0.26.0-2')
+  depends=('python2-logilab-astng' 'python2-setuptools')
+
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+
+  python2 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build --optimize=1
+
+  install -d "${pkgdir}"/usr/share/man/man1
+  install -m644 man/* "${pkgdir}/usr/share/man/man1"
+
+  for i in epylint pylint pylint-gui pyreverse symilar; do
+     mv "${pkgdir}"/usr/bin/${i}{,2}
+     mv "${pkgdir}"/usr/share/man/man1/${i}{,2}.1
+  done
+}
+
+package_python-pylint() {
+  depends=('python-logilab-astng' 'python-setuptools')
+
+  cd "${srcdir}"/${pkgbase}-${pkgver}-py3
+
+  python3 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build --optimize=1
+
+  install -d "${pkgdir}/usr/share/man/man1"
+  install -m644 man/* "${pkgdir}/usr/share/man/man1"
+}




More information about the arch-commits mailing list