[arch-commits] Commit in pep8/repos/community-testing-any (LICENSE PKGBUILD PKGBUILD)

Felix Yan fyan at nymeria.archlinux.org
Wed Mar 26 15:36:46 UTC 2014


    Date: Wednesday, March 26, 2014 @ 16:36:46
  Author: fyan
Revision: 108311

archrelease: copy trunk to community-testing-any

Added:
  pep8/repos/community-testing-any/LICENSE
    (from rev 108310, pep8/trunk/LICENSE)
  pep8/repos/community-testing-any/PKGBUILD
    (from rev 108310, pep8/trunk/PKGBUILD)
Deleted:
  pep8/repos/community-testing-any/PKGBUILD

----------+
 LICENSE  |   24 +++++++++++++++
 PKGBUILD |   92 +++++++++++++++++++++++++++++++------------------------------
 2 files changed, 72 insertions(+), 44 deletions(-)

Copied: pep8/repos/community-testing-any/LICENSE (from rev 108310, pep8/trunk/LICENSE)
===================================================================
--- LICENSE	                        (rev 0)
+++ LICENSE	2014-03-26 15:36:46 UTC (rev 108311)
@@ -0,0 +1,24 @@
+Copyright © 2006-2009 Johann C. Rocholl <johann at rocholl.net>
+Copyright © 2009-2013 Florent Xicluna <florent.xicluna at gmail.com>
+
+Licensed under the terms of the Expat License
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation files
+(the "Software"), to deal in the Software without restriction,
+including without limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of the Software,
+and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2014-03-26 15:36:01 UTC (rev 108310)
+++ PKGBUILD	2014-03-26 15:36:46 UTC (rev 108311)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at gmail.com>
-# Contributor: Ismael Carnales <icarnales at gmail dot com>
-# Contributor: Sergey Mastykov <smastykov[at]gmail[dot]com>
-
-pkgbase=pep8
-pkgname=("$pkgbase-python2" "$pkgbase-python3")
-pkgver=1.4.6
-pkgrel=4
-pkgdesc="Python style guide checker"
-arch=('any')
-url="http://github.com/jcrocholl/pep8/"
-license=('custom:Expat')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://github.com/jcrocholl/$pkgbase/archive/${pkgver}.tar.gz")
-sha256sums=('723ec96fc01a1c2d8f9e7d4239a769cd5b499951a1d6c4edc3eb28c6801ed0f8')
-
-build() {
-  cp -r $pkgbase-$pkgver{,-python2}
-}
-
-package_pep8-python2() {
-  depends=('python2' 'python2-setuptools')
-  provides=('pep8')
-  conflicts=('pep8')
-  replaces=('pep8')
-  
-  cd $pkgbase-$pkgver-python2
-  python2 setup.py install --prefix=/usr --root="$pkgdir/"
-  mv "$pkgdir/usr/bin/pep8" "$pkgdir/usr/bin/pep8-python2"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_pep8-python3() {
-  depends=('python3' 'python-setuptools')
-  
-  cd $pkgbase-$pkgver
-  python3 setup.py install --prefix=/usr --root="$pkgdir/"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pep8/repos/community-testing-any/PKGBUILD (from rev 108310, pep8/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2014-03-26 15:36:46 UTC (rev 108311)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at gmail.com>
+# Contributor: Ismael Carnales <icarnales at gmail dot com>
+# Contributor: Sergey Mastykov <smastykov[at]gmail[dot]com>
+
+pkgbase=pep8
+pkgname=("$pkgbase-python2" "$pkgbase-python3")
+pkgver=1.5.0
+pkgrel=2
+pkgdesc="Python style guide checker"
+arch=('any')
+url="http://github.com/jcrocholl/pep8/"
+license=('custom:Expat')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://pypi.python.org/packages/source/p/$pkgbase/$pkgbase-${pkgver}.tar.gz"
+        LICENSE)
+sha256sums=('d3b18ca2e25827a480145e481e511a52cd067ee9b98be57575a82bc073340c23'
+            '4a18840b7c132952f3f3d42c355289018ea263cbe75b25db31c9feb1b61e9b40')
+
+prepare() {
+  cp -r $pkgbase-$pkgver{,-python2}
+
+  sed -i '1s/env python$/python2/' $pkgbase-$pkgver-python2/pep8.py
+}
+
+package_pep8-python2() {
+  depends=('python2' 'python2-setuptools')
+  provides=('pep8')
+  conflicts=('pep8')
+  replaces=('pep8')
+  
+  cd $pkgbase-$pkgver-python2
+  python2 setup.py install --prefix=/usr --root="$pkgdir/"
+  mv "$pkgdir/usr/bin/pep8" "$pkgdir/usr/bin/pep8-python2"
+
+  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_pep8-python3() {
+  depends=('python' 'python-setuptools')
+  
+  cd $pkgbase-$pkgver
+  python3 setup.py install --prefix=/usr --root="$pkgdir/"
+
+  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:




More information about the arch-commits mailing list