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

Alexander Rødseth arodseth at archlinux.org
Tue Jun 28 18:45:04 UTC 2016


    Date: Tuesday, June 28, 2016 @ 18:45:04
  Author: arodseth
Revision: 181534

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

Added:
  moosefs/repos/community-i686/PKGBUILD
    (from rev 181533, moosefs/trunk/PKGBUILD)
  moosefs/repos/community-i686/moosefs.install
    (from rev 181533, moosefs/trunk/moosefs.install)
  moosefs/repos/community-x86_64/PKGBUILD
    (from rev 181533, moosefs/trunk/PKGBUILD)
  moosefs/repos/community-x86_64/moosefs.install
    (from rev 181533, moosefs/trunk/moosefs.install)
Deleted:
  moosefs/repos/community-i686/PKGBUILD
  moosefs/repos/community-i686/moosefs.install
  moosefs/repos/community-x86_64/PKGBUILD
  moosefs/repos/community-x86_64/moosefs.install

----------------------------------+
 /PKGBUILD                        |   84 +++++++++++++++++++++++++++++++++++++
 /moosefs.install                 |   22 +++++++++
 community-i686/PKGBUILD          |   38 ----------------
 community-i686/moosefs.install   |   11 ----
 community-x86_64/PKGBUILD        |   38 ----------------
 community-x86_64/moosefs.install |   11 ----
 6 files changed, 106 insertions(+), 98 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-06-28 18:44:52 UTC (rev 181533)
+++ community-i686/PKGBUILD	2016-06-28 18:45:04 UTC (rev 181534)
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-
-pkgname=moosefs
-pkgver=2.0.88
-pkgrel=1
-pkgdesc='High performing and fault tolerant distributed file system'
-url='http://moosefs.com/'
-replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
-conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
-arch=('x86_64' 'i686')
-license=('GPL2')
-depends=('fuse' 'python2' 'bash' 'xfsprogs')
-install="$pkgname.install"
-source=("http://ppa.moosefs.com/src/moosefs-${pkgver}-1.tar.gz")
-sha256sums=('967d416b5df794aa384c13b4bcef67b2b0686face8a02d0e4a0ac3a42286b6e5')
-
-build() {
-  cd "moosefs-${pkgver%_*}"
-
-  ./configure \
-    --prefix=/usr \
-    --mandir=/usr/share/man \
-    --sysconfdir=/etc \
-    --localstatedir=/var/lib \
-    --with-default-user=mfs \
-    --with-default-group=mfs \
-    --with-systemdsystemunitdir=/usr/lib/systemd/system \
-    --sbindir=/usr/bin
-  make
-}
-
-package() {
-  make DESTDIR="$pkgdir" -C "moosefs-${pkgver%_*}" install
-}
-
-# getver: moosefs.com/download/sources.html
-# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-i686/PKGBUILD (from rev 181533, moosefs/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-06-28 18:45:04 UTC (rev 181534)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+
+pkgname=moosefs
+pkgver=3.0.77
+pkgrel=1
+pkgdesc='High performing and fault tolerant distributed file system'
+url='http://moosefs.com/'
+replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+arch=('x86_64' 'i686')
+license=('GPL2')
+depends=('fuse' 'python2' 'bash' 'xfsprogs')
+install="$pkgname.install"
+source=("http://ppa.moosefs.com/src/moosefs-${pkgver}-1.tar.gz")
+sha256sums=('07364ea631f93707e1ea12e4e6002b707d8d4eb160de20a139ae0a73c818ca29')
+
+build() {
+  cd "moosefs-${pkgver%_*}"
+
+  ./configure \
+    --prefix=/usr \
+    --mandir=/usr/share/man \
+    --sysconfdir=/etc \
+    --localstatedir=/var/lib \
+    --with-default-user=mfs \
+    --with-default-group=mfs \
+    --with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  make DESTDIR="$pkgdir" -C "moosefs-${pkgver%_*}" install
+
+  # Move mount.moosefs from sbin to usr/bin
+  mv "$pkgdir/sbin/mount.moosefs" "$pkgdir/usr/bin/mount.moosefs"
+  rmdir "$pkgdir/sbin"
+}
+
+
+# getver: moosefs.com/download/sources.html
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/moosefs.install
===================================================================
--- community-i686/moosefs.install	2016-06-28 18:44:52 UTC (rev 181533)
+++ community-i686/moosefs.install	2016-06-28 18:45:04 UTC (rev 181534)
@@ -1,11 +0,0 @@
-post_install() {
-  echo
-  echo 'For configuring MooseFS, the .cfg.dist files in /etc/mfs/ can'
-  echo 'be used as a basis for writing the corresponding .cfg files.'
-  echo
-  echo 'For troubleshooting a service, like "mfschunkserver", just running'
-  echo '"/usr/bin/mfschunkserver start" can be helpful.'
-  echo
-}
-
-# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-i686/moosefs.install (from rev 181533, moosefs/trunk/moosefs.install)
===================================================================
--- community-i686/moosefs.install	                        (rev 0)
+++ community-i686/moosefs.install	2016-06-28 18:45:04 UTC (rev 181534)
@@ -0,0 +1,11 @@
+post_install() {
+  echo
+  echo 'For configuring MooseFS, the .cfg.dist files in /etc/mfs/ can'
+  echo 'be used as a basis for writing the corresponding .cfg files.'
+  echo
+  echo 'For troubleshooting a service, like "mfschunkserver", just running'
+  echo '"/usr/bin/mfschunkserver start" can be helpful.'
+  echo
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-06-28 18:44:52 UTC (rev 181533)
+++ community-x86_64/PKGBUILD	2016-06-28 18:45:04 UTC (rev 181534)
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-
-pkgname=moosefs
-pkgver=2.0.88
-pkgrel=1
-pkgdesc='High performing and fault tolerant distributed file system'
-url='http://moosefs.com/'
-replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
-conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
-arch=('x86_64' 'i686')
-license=('GPL2')
-depends=('fuse' 'python2' 'bash' 'xfsprogs')
-install="$pkgname.install"
-source=("http://ppa.moosefs.com/src/moosefs-${pkgver}-1.tar.gz")
-sha256sums=('967d416b5df794aa384c13b4bcef67b2b0686face8a02d0e4a0ac3a42286b6e5')
-
-build() {
-  cd "moosefs-${pkgver%_*}"
-
-  ./configure \
-    --prefix=/usr \
-    --mandir=/usr/share/man \
-    --sysconfdir=/etc \
-    --localstatedir=/var/lib \
-    --with-default-user=mfs \
-    --with-default-group=mfs \
-    --with-systemdsystemunitdir=/usr/lib/systemd/system \
-    --sbindir=/usr/bin
-  make
-}
-
-package() {
-  make DESTDIR="$pkgdir" -C "moosefs-${pkgver%_*}" install
-}
-
-# getver: moosefs.com/download/sources.html
-# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-x86_64/PKGBUILD (from rev 181533, moosefs/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-06-28 18:45:04 UTC (rev 181534)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+
+pkgname=moosefs
+pkgver=3.0.77
+pkgrel=1
+pkgdesc='High performing and fault tolerant distributed file system'
+url='http://moosefs.com/'
+replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+arch=('x86_64' 'i686')
+license=('GPL2')
+depends=('fuse' 'python2' 'bash' 'xfsprogs')
+install="$pkgname.install"
+source=("http://ppa.moosefs.com/src/moosefs-${pkgver}-1.tar.gz")
+sha256sums=('07364ea631f93707e1ea12e4e6002b707d8d4eb160de20a139ae0a73c818ca29')
+
+build() {
+  cd "moosefs-${pkgver%_*}"
+
+  ./configure \
+    --prefix=/usr \
+    --mandir=/usr/share/man \
+    --sysconfdir=/etc \
+    --localstatedir=/var/lib \
+    --with-default-user=mfs \
+    --with-default-group=mfs \
+    --with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  make DESTDIR="$pkgdir" -C "moosefs-${pkgver%_*}" install
+
+  # Move mount.moosefs from sbin to usr/bin
+  mv "$pkgdir/sbin/mount.moosefs" "$pkgdir/usr/bin/mount.moosefs"
+  rmdir "$pkgdir/sbin"
+}
+
+
+# getver: moosefs.com/download/sources.html
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/moosefs.install
===================================================================
--- community-x86_64/moosefs.install	2016-06-28 18:44:52 UTC (rev 181533)
+++ community-x86_64/moosefs.install	2016-06-28 18:45:04 UTC (rev 181534)
@@ -1,11 +0,0 @@
-post_install() {
-  echo
-  echo 'For configuring MooseFS, the .cfg.dist files in /etc/mfs/ can'
-  echo 'be used as a basis for writing the corresponding .cfg files.'
-  echo
-  echo 'For troubleshooting a service, like "mfschunkserver", just running'
-  echo '"/usr/bin/mfschunkserver start" can be helpful.'
-  echo
-}
-
-# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-x86_64/moosefs.install (from rev 181533, moosefs/trunk/moosefs.install)
===================================================================
--- community-x86_64/moosefs.install	                        (rev 0)
+++ community-x86_64/moosefs.install	2016-06-28 18:45:04 UTC (rev 181534)
@@ -0,0 +1,11 @@
+post_install() {
+  echo
+  echo 'For configuring MooseFS, the .cfg.dist files in /etc/mfs/ can'
+  echo 'be used as a basis for writing the corresponding .cfg files.'
+  echo
+  echo 'For troubleshooting a service, like "mfschunkserver", just running'
+  echo '"/usr/bin/mfschunkserver start" can be helpful.'
+  echo
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list