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

Felix Yan fyan at archlinux.org
Sat Feb 7 12:37:37 UTC 2015


    Date: Saturday, February 7, 2015 @ 13:37:36
  Author: fyan
Revision: 127240

archrelease: copy trunk to community-any

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

----------+
 LICENSE  |   48 +++++++++++-----------
 PKGBUILD |  130 ++++++++++++++++++++++++++++++-------------------------------
 2 files changed, 89 insertions(+), 89 deletions(-)

Deleted: LICENSE
===================================================================
--- LICENSE	2015-02-07 12:37:12 UTC (rev 127239)
+++ LICENSE	2015-02-07 12:37:36 UTC (rev 127240)
@@ -1,24 +0,0 @@
-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.

Copied: pep8/repos/community-any/LICENSE (from rev 127239, pep8/trunk/LICENSE)
===================================================================
--- LICENSE	                        (rev 0)
+++ LICENSE	2015-02-07 12:37:36 UTC (rev 127240)
@@ -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	2015-02-07 12:37:12 UTC (rev 127239)
+++ PKGBUILD	2015-02-07 12:37:36 UTC (rev 127240)
@@ -1,65 +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")
-pkgver=1.5.7
-pkgrel=1
-pkgdesc="Python style guide checker"
-arch=('any')
-url="http://github.com/jcrocholl/pep8/"
-license=('custom:Expat')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-source=("git+https://github.com/jcrocholl/${pkgbase}.git#tag=$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  cp -r $pkgbase{,-py2}
-
-  sed -i '1s/env python$/python2/' $pkgbase-py2/pep8.py
-}
-
-build() {
-  cd "${srcdir}/${pkgbase}"
-  python setup.py build
-
-  cd "${srcdir}/${pkgbase}-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "${srcdir}/${pkgbase}"
-  python setup.py test
-
-  cd "${srcdir}/${pkgbase}-py2"
-  python2 setup.py test
-}
-
-package_pep8() {
-  depends=('python' 'python-setuptools')
-  provides=('pep8-python3')
-  conflicts=('pep8-python3')
-  replaces=('pep8-python3')
-
-  cd $pkgbase
-  python3 setup.py install -O1 --prefix=/usr --root="$pkgdir/"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-pep8() {
-  depends=('python2' 'python2-setuptools')
-  provides=('pep8-python2')
-  conflicts=('pep8-python2')
-  replaces=('pep8-python2')
-
-  cd $pkgbase-py2
-  python2 setup.py install -O1 --prefix=/usr --root="$pkgdir/"
-  mv "$pkgdir/usr/bin/pep8" "$pkgdir/usr/bin/pep8-python2"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pep8/repos/community-any/PKGBUILD (from rev 127239, pep8/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2015-02-07 12:37:36 UTC (rev 127240)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Ismael Carnales <icarnales at gmail dot com>
+# Contributor: Sergey Mastykov <smastykov[at]gmail[dot]com>
+
+pkgbase=pep8
+pkgname=("$pkgbase" "python2-$pkgbase")
+pkgver=1.6
+pkgrel=1
+pkgdesc="Python style guide checker"
+arch=('any')
+url="http://github.com/jcrocholl/pep8/"
+license=('custom:Expat')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+source=("git+https://github.com/jcrocholl/${pkgbase}.git#tag=$pkgver")
+sha256sums=('SKIP')
+
+prepare() {
+  cp -r $pkgbase{,-py2}
+
+  sed -i '1s/env python$/python2/' $pkgbase-py2/pep8.py
+}
+
+build() {
+  cd "${srcdir}/${pkgbase}"
+  python setup.py build
+
+  cd "${srcdir}/${pkgbase}-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "${srcdir}/${pkgbase}"
+  python setup.py test
+
+  cd "${srcdir}/${pkgbase}-py2"
+  python2 setup.py test
+}
+
+package_pep8() {
+  depends=('python' 'python-setuptools')
+  provides=('pep8-python3')
+  conflicts=('pep8-python3')
+  replaces=('pep8-python3')
+
+  cd $pkgbase
+  python3 setup.py install -O1 --prefix=/usr --root="$pkgdir/"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-pep8() {
+  depends=('python2' 'python2-setuptools')
+  provides=('pep8-python2')
+  conflicts=('pep8-python2')
+  replaces=('pep8-python2')
+
+  cd $pkgbase-py2
+  python2 setup.py install -O1 --prefix=/usr --root="$pkgdir/"
+  mv "$pkgdir/usr/bin/pep8" "$pkgdir/usr/bin/pep8-python2"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list