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

Felix Yan felixonmars at archlinux.org
Tue Dec 24 21:41:19 UTC 2019


    Date: Tuesday, December 24, 2019 @ 21:41:19
  Author: felixonmars
Revision: 540554

archrelease: copy trunk to community-testing-x86_64

Added:
  python-fuse/repos/community-testing-x86_64/
  python-fuse/repos/community-testing-x86_64/PKGBUILD
    (from rev 540553, python-fuse/trunk/PKGBUILD)

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

Copied: python-fuse/repos/community-testing-x86_64/PKGBUILD (from rev 540553, python-fuse/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2019-12-24 21:41:19 UTC (rev 540554)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Daniel Wallace <danielwallace at gtmanfred dot com>
+# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
+# Contributor: Jaroslaw Swierczynski <swiergot at aur.archlinux.org>
+# Contributor: Alexander Fehr <pizzapunk at gmail.com>
+
+pkgbase=python-fuse
+pkgname=(python-fuse python2-fuse)
+pkgver=1.0.0
+pkgrel=1
+arch=('x86_64')
+pkgdesc="Python bindings for FUSE"
+url="https://github.com/libfuse/python-fuse"
+license=('LGPL')
+makedepends=('python-setuptools' 'python2-setuptools' 'fuse2')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/libfuse/python-fuse/archive/v$pkgver.tar.gz")
+sha512sums=('d5e91be3e43065988053390d97ca6483ce38924bf9a49f694bf911080b7e75c836224e83d09dcbc6fab8d63781b4cd3ae016d66b65b88dd53106b06f91a6ad5c')
+
+build() {
+  cd python-fuse-$pkgver
+  python setup.py build
+  python2 setup.py build
+}
+
+package_python-fuse() {
+  depends=('fuse2' 'python')
+
+  cd python-fuse-$pkgver
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}
+
+package_python2-fuse() {
+  depends=('fuse2' 'python2')
+
+  cd python-fuse-$pkgver
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}



More information about the arch-commits mailing list