[arch-commits] Commit in python-editorconfig/repos (2 files)

Felix Yan felixonmars at archlinux.org
Fri Oct 25 16:01:30 UTC 2019


    Date: Friday, October 25, 2019 @ 16:01:30
  Author: felixonmars
Revision: 519328

archrelease: copy trunk to community-staging-any

Added:
  python-editorconfig/repos/community-staging-any/
  python-editorconfig/repos/community-staging-any/PKGBUILD
    (from rev 519326, python-editorconfig/trunk/PKGBUILD)

----------+
 PKGBUILD |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

Copied: python-editorconfig/repos/community-staging-any/PKGBUILD (from rev 519326, python-editorconfig/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2019-10-25 16:01:30 UTC (rev 519328)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-editorconfig
+pkgname=('python-editorconfig' 'python2-editorconfig')
+pkgver=0.12.2
+pkgrel=3
+pkgdesc='EditorConfig File Locator and Interpreter for Python'
+arch=('any')
+license=('PSF')
+url='https://github.com/editorconfig/editorconfig-core-py'
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://pypi.io/packages/source/E/EditorConfig/EditorConfig-$pkgver.tar.gz")
+sha512sums=('15648904683e04b68966651ebf2046b60473a47a408dff257d64d06b6c0cc6765882ebf5ec0e0ccaf5dc7e78e93b5f9bdf129ae0e2a23f7f489cb50c9ae3ff16')
+
+prepare() {
+  cp -a EditorConfig-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/EditorConfig-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/EditorConfig-$pkgver-py2
+  python2 setup.py build
+}
+
+package_python-editorconfig() {
+  depends=('python')
+
+  cd EditorConfig-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  # FS#55201
+  mv "$pkgdir"/usr/bin/editorconfig{,3}
+}
+
+package_python2-editorconfig() {
+  depends=('python2')
+
+  cd EditorConfig-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/editorconfig{,2}
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list