[arch-commits] Commit in fuse2/repos (8 files)

Anatol Pomozov anatolik at archlinux.org
Tue Dec 13 00:53:13 UTC 2016


    Date: Tuesday, December 13, 2016 @ 00:53:12
  Author: anatolik
Revision: 283087

db-move: moved fuse2 from [testing] to [extra] (i686, x86_64)

Added:
  fuse2/repos/extra-i686/PKGBUILD
    (from rev 283086, fuse2/repos/testing-i686/PKGBUILD)
  fuse2/repos/extra-x86_64/PKGBUILD
    (from rev 283086, fuse2/repos/testing-x86_64/PKGBUILD)
Deleted:
  fuse2/repos/extra-i686/PKGBUILD
  fuse2/repos/extra-i686/fuse.conf
  fuse2/repos/extra-x86_64/PKGBUILD
  fuse2/repos/extra-x86_64/fuse.conf
  fuse2/repos/testing-i686/
  fuse2/repos/testing-x86_64/

------------------------+
 /PKGBUILD              |   98 +++++++++++++++++++++++++++++++++++++++++++++++
 extra-i686/PKGBUILD    |   48 -----------------------
 extra-i686/fuse.conf   |    9 ----
 extra-x86_64/PKGBUILD  |   48 -----------------------
 extra-x86_64/fuse.conf |    9 ----
 5 files changed, 98 insertions(+), 114 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2016-12-12 21:23:59 UTC (rev 283086)
+++ extra-i686/PKGBUILD	2016-12-13 00:53:12 UTC (rev 283087)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: Tom Gundersen <teg at jklm.no>
-# Contributor: Mark Rosenstand <mark at archlinux.org>
-
-pkgname=fuse
-pkgver=2.9.7
-pkgrel=1
-pkgdesc="A library that makes it possible to implement a filesystem in a userspace program."
-arch=('i686' 'x86_64')
-url='https://github.com/libfuse/libfuse'
-license=('GPL2')
-depends=('glibc')
-makedepends=('pkg-config')
-backup=(etc/fuse.conf)
-_tag=fuse-$pkgver
-source=(https://github.com/libfuse/libfuse/archive/$_tag.zip
-	'fuse.conf')
-sha1sums=('805be38cbfb29d05036b03f2560b193010c38720'
-          '3b42e37a741d4651099225987dc40e7f02a716ad')
-
-build() {
-  cd libfuse-$_tag
-
-  ./makeconf.sh
-  export MOUNT_FUSE_PATH=/usr/bin
-  ./configure --prefix=/usr --libdir=/usr/lib --enable-lib --enable-util --disable-example
-  make
-}
-
-package() {
-  cd libfuse-$_tag
-
-  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 -rf ${pkgdir}/etc/init.d
-
-  # install sample config file
-  install -Dm644 ${srcdir}/fuse.conf ${pkgdir}/etc/fuse.conf
-
-  # remove udev rules (is in the udev package}
-  rm -rf ${pkgdir}/etc/udev
-
-  # static device nodes are handled by udev
-  rm -rf ${pkgdir}/dev
-}

Copied: fuse2/repos/extra-i686/PKGBUILD (from rev 283086, fuse2/repos/testing-i686/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2016-12-13 00:53:12 UTC (rev 283087)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Tom Gundersen <teg at jklm.no>
+# Contributor: Mark Rosenstand <mark at archlinux.org>
+
+pkgname=fuse2
+pkgver=2.9.7
+pkgrel=2
+pkgdesc="A library that makes it possible to implement a filesystem in a userspace program."
+arch=('i686' 'x86_64')
+url='https://github.com/libfuse/libfuse'
+license=('GPL2')
+provides=('fuse') # TODO: remove it once all packages start to use 'fuse2' name
+replaces=('fuse')
+conflicts=('fuse')
+depends=('glibc' 'fuse-common')
+makedepends=('pkg-config')
+options=(!emptydirs)
+source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.gz{,.asc})
+sha1sums=('cd174e3d37995a42fad32fac92f76cd18e24174f'
+          'SKIP')
+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() {
+  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}/etc/init.d
+
+  # remove udev rules (is in the udev package}
+  rm -rf ${pkgdir}/etc/udev
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+
+  # part of fuse-common package
+  rm ${pkgdir}/usr/share/man/man8/mount.fuse.8
+}

Deleted: extra-i686/fuse.conf
===================================================================
--- extra-i686/fuse.conf	2016-12-12 21:23:59 UTC (rev 283086)
+++ extra-i686/fuse.conf	2016-12-13 00:53:12 UTC (rev 283087)
@@ -1,9 +0,0 @@
-# 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

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2016-12-12 21:23:59 UTC (rev 283086)
+++ extra-x86_64/PKGBUILD	2016-12-13 00:53:12 UTC (rev 283087)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: Tom Gundersen <teg at jklm.no>
-# Contributor: Mark Rosenstand <mark at archlinux.org>
-
-pkgname=fuse
-pkgver=2.9.7
-pkgrel=1
-pkgdesc="A library that makes it possible to implement a filesystem in a userspace program."
-arch=('i686' 'x86_64')
-url='https://github.com/libfuse/libfuse'
-license=('GPL2')
-depends=('glibc')
-makedepends=('pkg-config')
-backup=(etc/fuse.conf)
-_tag=fuse-$pkgver
-source=(https://github.com/libfuse/libfuse/archive/$_tag.zip
-	'fuse.conf')
-sha1sums=('805be38cbfb29d05036b03f2560b193010c38720'
-          '3b42e37a741d4651099225987dc40e7f02a716ad')
-
-build() {
-  cd libfuse-$_tag
-
-  ./makeconf.sh
-  export MOUNT_FUSE_PATH=/usr/bin
-  ./configure --prefix=/usr --libdir=/usr/lib --enable-lib --enable-util --disable-example
-  make
-}
-
-package() {
-  cd libfuse-$_tag
-
-  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 -rf ${pkgdir}/etc/init.d
-
-  # install sample config file
-  install -Dm644 ${srcdir}/fuse.conf ${pkgdir}/etc/fuse.conf
-
-  # remove udev rules (is in the udev package}
-  rm -rf ${pkgdir}/etc/udev
-
-  # static device nodes are handled by udev
-  rm -rf ${pkgdir}/dev
-}

Copied: fuse2/repos/extra-x86_64/PKGBUILD (from rev 283086, fuse2/repos/testing-x86_64/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2016-12-13 00:53:12 UTC (rev 283087)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Tom Gundersen <teg at jklm.no>
+# Contributor: Mark Rosenstand <mark at archlinux.org>
+
+pkgname=fuse2
+pkgver=2.9.7
+pkgrel=2
+pkgdesc="A library that makes it possible to implement a filesystem in a userspace program."
+arch=('i686' 'x86_64')
+url='https://github.com/libfuse/libfuse'
+license=('GPL2')
+provides=('fuse') # TODO: remove it once all packages start to use 'fuse2' name
+replaces=('fuse')
+conflicts=('fuse')
+depends=('glibc' 'fuse-common')
+makedepends=('pkg-config')
+options=(!emptydirs)
+source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.gz{,.asc})
+sha1sums=('cd174e3d37995a42fad32fac92f76cd18e24174f'
+          'SKIP')
+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() {
+  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}/etc/init.d
+
+  # remove udev rules (is in the udev package}
+  rm -rf ${pkgdir}/etc/udev
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+
+  # part of fuse-common package
+  rm ${pkgdir}/usr/share/man/man8/mount.fuse.8
+}

Deleted: extra-x86_64/fuse.conf
===================================================================
--- extra-x86_64/fuse.conf	2016-12-12 21:23:59 UTC (rev 283086)
+++ extra-x86_64/fuse.conf	2016-12-13 00:53:12 UTC (rev 283087)
@@ -1,9 +0,0 @@
-# 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