[arch-commits] Commit in fuse3/repos (6 files)

Anatol Pomozov anatolik at archlinux.org
Mon Dec 12 21:18:39 UTC 2016


    Date: Monday, December 12, 2016 @ 21:18:38
  Author: anatolik
Revision: 283083

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  fuse3/repos/community-testing-i686/
  fuse3/repos/community-testing-i686/PKGBUILD
    (from rev 283082, fuse3/trunk/PKGBUILD)
  fuse3/repos/community-testing-i686/fuse.conf
    (from rev 283082, fuse3/trunk/fuse.conf)
  fuse3/repos/community-testing-x86_64/
  fuse3/repos/community-testing-x86_64/PKGBUILD
    (from rev 283082, fuse3/trunk/PKGBUILD)
  fuse3/repos/community-testing-x86_64/fuse.conf
    (from rev 283082, fuse3/trunk/fuse.conf)

------------------------------------+
 community-testing-i686/PKGBUILD    |   68 +++++++++++++++++++++++++++++++++++
 community-testing-i686/fuse.conf   |    9 ++++
 community-testing-x86_64/PKGBUILD  |   68 +++++++++++++++++++++++++++++++++++
 community-testing-x86_64/fuse.conf |    9 ++++
 4 files changed, 154 insertions(+)

Copied: fuse3/repos/community-testing-i686/PKGBUILD (from rev 283082, fuse3/trunk/PKGBUILD)
===================================================================
--- community-testing-i686/PKGBUILD	                        (rev 0)
+++ community-testing-i686/PKGBUILD	2016-12-12 21:18:38 UTC (rev 283083)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Tom Gundersen <teg at jklm.no>
+# Contributor: Mark Rosenstand <mark at archlinux.org>
+
+pkgbase=fuse3
+pkgname=(fuse-common fuse3)
+pkgver=3.0.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://github.com/libfuse/libfuse'
+license=('GPL2')
+makedepends=('pkg-config')
+options=(!emptydirs)
+source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.gz{,.asc}
+	'fuse.conf')
+sha1sums=('0aa9a250a91cc6de028eeaf853d6c581c0824b04'
+          'SKIP'
+          '3b42e37a741d4651099225987dc40e7f02a716ad')
+validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath <Nikolaus at rath.org>
+
+build() {
+  cd fuse-$pkgver
+
+  export MOUNT_FUSE_PATH=/usr/bin
+  ./configure --prefix=/usr --libdir=/usr/lib --enable-lib --enable-util --disable-example
+  make
+}
+
+package_fuse-common() {
+  pkgdesc="Common files for fuse2/3 packages"
+  backup=(etc/fuse.conf)
+
+  cd fuse-$pkgver
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 ${srcdir}/fuse.conf ${pkgdir}/etc/fuse.conf
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+
+  # Remove init script in wrong path
+  # Don't add our own for now, as fusectl fs oopses on 2.6.18
+  rm -r ${pkgdir}/usr/etc/init.d
+
+  # part of fuse3 package
+  rm -r ${pkgdir}/usr/{bin,include,lib/{pkgconfig,libfuse3.so*,*.a},share/man/man1/fusermount3.1}
+}
+
+package_fuse3() {
+  pkgdesc="A library that makes it possible to implement a filesystem in a userspace program."
+  depends=('glibc' 'fuse-common')
+
+  cd fuse-$pkgver
+
+  make DESTDIR=${pkgdir} install
+
+  # Remove init script in wrong path
+  # Don't add our own for now, as fusectl fs oopses on 2.6.18
+  rm -r ${pkgdir}/usr/etc/init.d
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+
+  # part of fuse-common package
+  rm -r ${pkgdir}/usr/lib/udev/rules.d
+  rm ${pkgdir}/usr/share/man/man8/mount.fuse.8
+}

Copied: fuse3/repos/community-testing-i686/fuse.conf (from rev 283082, fuse3/trunk/fuse.conf)
===================================================================
--- community-testing-i686/fuse.conf	                        (rev 0)
+++ community-testing-i686/fuse.conf	2016-12-12 21:18:38 UTC (rev 283083)
@@ -0,0 +1,9 @@
+# Set the maximum number of FUSE mounts allowed to non-root users.
+# The default is 1000.
+#
+#mount_max = 1000
+
+# Allow non-root users to specify the 'allow_other' or 'allow_root'
+# mount options.
+#
+#user_allow_other

Copied: fuse3/repos/community-testing-x86_64/PKGBUILD (from rev 283082, fuse3/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2016-12-12 21:18:38 UTC (rev 283083)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Tom Gundersen <teg at jklm.no>
+# Contributor: Mark Rosenstand <mark at archlinux.org>
+
+pkgbase=fuse3
+pkgname=(fuse-common fuse3)
+pkgver=3.0.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://github.com/libfuse/libfuse'
+license=('GPL2')
+makedepends=('pkg-config')
+options=(!emptydirs)
+source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.gz{,.asc}
+	'fuse.conf')
+sha1sums=('0aa9a250a91cc6de028eeaf853d6c581c0824b04'
+          'SKIP'
+          '3b42e37a741d4651099225987dc40e7f02a716ad')
+validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath <Nikolaus at rath.org>
+
+build() {
+  cd fuse-$pkgver
+
+  export MOUNT_FUSE_PATH=/usr/bin
+  ./configure --prefix=/usr --libdir=/usr/lib --enable-lib --enable-util --disable-example
+  make
+}
+
+package_fuse-common() {
+  pkgdesc="Common files for fuse2/3 packages"
+  backup=(etc/fuse.conf)
+
+  cd fuse-$pkgver
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 ${srcdir}/fuse.conf ${pkgdir}/etc/fuse.conf
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+
+  # Remove init script in wrong path
+  # Don't add our own for now, as fusectl fs oopses on 2.6.18
+  rm -r ${pkgdir}/usr/etc/init.d
+
+  # part of fuse3 package
+  rm -r ${pkgdir}/usr/{bin,include,lib/{pkgconfig,libfuse3.so*,*.a},share/man/man1/fusermount3.1}
+}
+
+package_fuse3() {
+  pkgdesc="A library that makes it possible to implement a filesystem in a userspace program."
+  depends=('glibc' 'fuse-common')
+
+  cd fuse-$pkgver
+
+  make DESTDIR=${pkgdir} install
+
+  # Remove init script in wrong path
+  # Don't add our own for now, as fusectl fs oopses on 2.6.18
+  rm -r ${pkgdir}/usr/etc/init.d
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+
+  # part of fuse-common package
+  rm -r ${pkgdir}/usr/lib/udev/rules.d
+  rm ${pkgdir}/usr/share/man/man8/mount.fuse.8
+}

Copied: fuse3/repos/community-testing-x86_64/fuse.conf (from rev 283082, fuse3/trunk/fuse.conf)
===================================================================
--- community-testing-x86_64/fuse.conf	                        (rev 0)
+++ community-testing-x86_64/fuse.conf	2016-12-12 21:18:38 UTC (rev 283083)
@@ -0,0 +1,9 @@
+# Set the maximum number of FUSE mounts allowed to non-root users.
+# The default is 1000.
+#
+#mount_max = 1000
+
+# Allow non-root users to specify the 'allow_other' or 'allow_root'
+# mount options.
+#
+#user_allow_other



More information about the arch-commits mailing list