[arch-commits] Commit in python-iniconfig/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sat Jun 30 01:33:04 UTC 2018
Date: Saturday, June 30, 2018 @ 01:33:03
Author: felixonmars
Revision: 347808
archrelease: copy trunk to community-staging-any
Added:
python-iniconfig/repos/community-staging-any/
python-iniconfig/repos/community-staging-any/PKGBUILD
(from rev 347807, python-iniconfig/trunk/PKGBUILD)
----------+
PKGBUILD | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
Copied: python-iniconfig/repos/community-staging-any/PKGBUILD (from rev 347807, python-iniconfig/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2018-06-30 01:33:03 UTC (rev 347808)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-iniconfig
+pkgname=(python-iniconfig python2-iniconfig)
+pkgver=1.0.0
+pkgrel=2
+pkgdesc="brain-dead simple config-ini parsing"
+url="https://github.com/RonnyPfannschmidt/iniconfig"
+license=('MIT')
+arch=('any')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-setuptools-scm'
+ 'python2-setuptools-scm')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/RonnyPfannschmidt/iniconfig/archive/v$pkgver.tar.gz")
+sha512sums=('d8048af40145a5312784c5d1a9afaa052528ffdef56e47aa9be7f727d946426a43b8e934edce6b46024b83771c151ef544787e8422c74adeda2ccc8913aedd5c')
+
+prepare() {
+ cp -a iniconfig-$pkgver{,-py2}
+
+ export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+}
+
+build() {
+ cd "$srcdir"/iniconfig-$pkgver
+ python setup.py build
+
+ cd "$srcdir"/iniconfig-$pkgver-py2
+ python2 setup.py build
+}
+
+check() {
+ cd "$srcdir"/iniconfig-$pkgver
+ python setup.py pytest
+
+ cd "$srcdir"/iniconfig-$pkgver-py2
+ python2 setup.py pytest
+}
+
+package_python-iniconfig() {
+ depends=('python')
+
+ cd iniconfig-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+ install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-iniconfig() {
+ depends=('python2')
+
+ cd iniconfig-$pkgver-py2
+ python2 setup.py install --root="$pkgdir" --optimize=1
+ install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
More information about the arch-commits
mailing list