[arch-commits] Commit in python2-configparser/repos (3 files)

Felix Yan felixonmars at archlinux.org
Sat May 16 12:13:17 UTC 2020


    Date: Saturday, May 16, 2020 @ 12:13:17
  Author: felixonmars
Revision: 384461

archrelease: copy trunk to staging-any

Added:
  python2-configparser/repos/staging-any/
  python2-configparser/repos/staging-any/PKGBUILD
    (from rev 384460, python2-configparser/trunk/PKGBUILD)
  python2-configparser/repos/staging-any/license
    (from rev 384460, python2-configparser/trunk/license)

----------+
 PKGBUILD |   34 ++++++++++++++++++++++++++++++++++
 license  |   19 +++++++++++++++++++
 2 files changed, 53 insertions(+)

Copied: python2-configparser/repos/staging-any/PKGBUILD (from rev 384460, python2-configparser/trunk/PKGBUILD)
===================================================================
--- staging-any/PKGBUILD	                        (rev 0)
+++ staging-any/PKGBUILD	2020-05-16 12:13:17 UTC (rev 384461)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrzej Giniewicz <gginiu at gmail.com>
+
+pkgname=python2-configparser
+pkgver=4.0.2
+pkgrel=2
+pkgdesc="This library brings the updated configparser from Python 3.5 to Python 2.6-3.5."
+arch=('any')
+url="https://bitbucket.org/ambv/configparser"
+license=('MIT')
+depends=('python2-backports')
+makedepends=('python2-setuptools')
+source=("https://pypi.io/packages/source/c/configparser/configparser-${pkgver}.tar.gz" license)
+md5sums=('35926cc4b9133f1f9ca70a1fd2fdf237'
+         'f8e5b03556ed846d7681bacd4126f484')
+
+prepare() {
+  sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+    $(find "$srcdir"/configparser-${pkgver} -name '*.py')
+}
+
+build() {
+  cd configparser-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd configparser-$pkgver
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  rm "$pkgdir"/usr/lib/python2.7/site-packages/backports/__init__.py{,c,o}
+
+  install -D "$srcdir"/license "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: python2-configparser/repos/staging-any/license (from rev 384460, python2-configparser/trunk/license)
===================================================================
--- staging-any/license	                        (rev 0)
+++ staging-any/license	2020-05-16 12:13:17 UTC (rev 384461)
@@ -0,0 +1,19 @@
+Copyright (c) 2011 Łukasz Langa
+
+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.



More information about the arch-commits mailing list