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

Felix Yan felixonmars at archlinux.org
Thu Sep 12 08:49:12 UTC 2019


    Date: Thursday, September 12, 2019 @ 08:49:12
  Author: felixonmars
Revision: 362285

archrelease: copy trunk to testing-any

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

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

Copied: python2-configparser/repos/testing-any/PKGBUILD (from rev 362284, python2-configparser/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD	                        (rev 0)
+++ testing-any/PKGBUILD	2019-09-12 08:49:12 UTC (rev 362285)
@@ -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=1
+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/testing-any/license (from rev 362284, python2-configparser/trunk/license)
===================================================================
--- testing-any/license	                        (rev 0)
+++ testing-any/license	2019-09-12 08:49:12 UTC (rev 362285)
@@ -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