Date: Sat, 5 Mar 2016 20:10:35 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410208 - in head/sysutils: moosefs-chunkserver moosefs-cli moosefs-client moosefs-master moosefs-netdump Message-ID: <201603052010.u25KAZp7047998@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: feld Date: Sat Mar 5 20:10:34 2016 New Revision: 410208 URL: https://svnweb.freebsd.org/changeset/ports/410208 Log: sysutils/moosefs-*: Update to 2.0.88 Recent changes since MooseFS 2.0.84: * MooseFS 2.0.88-1 (2016-03-02) - (master) added METADATA_SAVE_FREQ option (allow to save metadata less frequently than every hour) * MooseFS 2.0.87-1 (2016-02-23) - (master) fixed status returned by writechunk after network down/up * MooseFS 2.0.86-1 (2016-02-22) - (master) fixed initialization of ATIME_MODE * MooseFS 2.0.85-1 (2016-02-11) - (master) added ATIME_MODE option to set atime modification behaviour - (master) added using size and length quota to fix disk usage values (statfs) - (all) changed address of FSF in GPL licence text - (debian) removed obsolete conffiles - (debian) fixed copyright file - (mount) fixed parsing mfsmount.cfg (system options like nodev,noexec etc. were ommited) - (tools) removed obsoleted command 'mfssnapshot' PR: 207703, 207704, 207706, 207707, 207708 Approved by: maintainer Added: head/sysutils/moosefs-cli/pkg-plist (contents, props changed) head/sysutils/moosefs-netdump/pkg-plist (contents, props changed) Modified: head/sysutils/moosefs-chunkserver/pkg-plist head/sysutils/moosefs-cli/Makefile head/sysutils/moosefs-client/pkg-plist head/sysutils/moosefs-master/Makefile head/sysutils/moosefs-master/distinfo head/sysutils/moosefs-master/pkg-plist head/sysutils/moosefs-netdump/Makefile Modified: head/sysutils/moosefs-chunkserver/pkg-plist ============================================================================== --- head/sysutils/moosefs-chunkserver/pkg-plist Sat Mar 5 20:01:03 2016 (r410207) +++ head/sysutils/moosefs-chunkserver/pkg-plist Sat Mar 5 20:10:34 2016 (r410208) @@ -5,6 +5,7 @@ sbin/mfschunktool man/man5/mfschunkserver.cfg.5.gz man/man5/mfshdd.cfg.5.gz man/man8/mfschunkserver.8.gz +man/man8/mfschunktool.8.gz @owner mfs @group mfs @dir %%MFS_WORKDIR%%/mfs Modified: head/sysutils/moosefs-cli/Makefile ============================================================================== --- head/sysutils/moosefs-cli/Makefile Sat Mar 5 20:01:03 2016 (r410207) +++ head/sysutils/moosefs-cli/Makefile Sat Mar 5 20:10:34 2016 (r410208) @@ -11,6 +11,4 @@ MFS_COMPONENT= cli MASTERDIR= ${.CURDIR}/../moosefs-master -PLIST_FILES= bin/mfscli - .include "${MASTERDIR}/Makefile" Added: head/sysutils/moosefs-cli/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-cli/pkg-plist Sat Mar 5 20:10:34 2016 (r410208) @@ -0,0 +1,2 @@ +bin/mfscli +man/man1/mfscli.1.gz Modified: head/sysutils/moosefs-client/pkg-plist ============================================================================== --- head/sysutils/moosefs-client/pkg-plist Sat Mar 5 20:01:03 2016 (r410207) +++ head/sysutils/moosefs-client/pkg-plist Sat Mar 5 20:10:34 2016 (r410208) @@ -19,7 +19,6 @@ bin/mfsgetquota bin/mfssetquota bin/mfsdelquota bin/mfsfilepaths -bin/mfssnapshot bin/mfsmount bin/mfstools @sample etc/mfs/mfsmount.cfg.sample Modified: head/sysutils/moosefs-master/Makefile ============================================================================== --- head/sysutils/moosefs-master/Makefile Sat Mar 5 20:01:03 2016 (r410207) +++ head/sysutils/moosefs-master/Makefile Sat Mar 5 20:10:34 2016 (r410208) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moosefs -PORTVERSION= 2.0.84 +PORTVERSION= 2.0.88 CATEGORIES= sysutils MASTER_SITES= http://ppa.moosefs.com/src/ PKGNAMESUFFIX?= -master Modified: head/sysutils/moosefs-master/distinfo ============================================================================== --- head/sysutils/moosefs-master/distinfo Sat Mar 5 20:01:03 2016 (r410207) +++ head/sysutils/moosefs-master/distinfo Sat Mar 5 20:10:34 2016 (r410208) @@ -1,2 +1,2 @@ -SHA256 (moosefs-2.0.84-1.tar.gz) = f900fedd237dbaa7113125a53815fe9f9ecb689498cb6e0f74d23f49584b6e18 -SIZE (moosefs-2.0.84-1.tar.gz) = 964997 +SHA256 (moosefs-2.0.88-1.tar.gz) = 967d416b5df794aa384c13b4bcef67b2b0686face8a02d0e4a0ac3a42286b6e5 +SIZE (moosefs-2.0.88-1.tar.gz) = 968842 Modified: head/sysutils/moosefs-master/pkg-plist ============================================================================== --- head/sysutils/moosefs-master/pkg-plist Sat Mar 5 20:01:03 2016 (r410207) +++ head/sysutils/moosefs-master/pkg-plist Sat Mar 5 20:10:34 2016 (r410208) @@ -8,6 +8,7 @@ man/man5/mfsexports.cfg.5.gz man/man5/mfsmaster.cfg.5.gz man/man5/mfstopology.cfg.5.gz man/man8/mfsmaster.8.gz +man/man8/mfsmetadump.8.gz man/man8/mfsmetarestore.8.gz @owner mfs @group mfs Modified: head/sysutils/moosefs-netdump/Makefile ============================================================================== --- head/sysutils/moosefs-netdump/Makefile Sat Mar 5 20:01:03 2016 (r410207) +++ head/sysutils/moosefs-netdump/Makefile Sat Mar 5 20:10:34 2016 (r410208) @@ -11,7 +11,4 @@ MFS_COMPONENT= netdump MASTERDIR= ${.CURDIR}/../moosefs-master -PLIST_FILES= sbin/mfsnetdump \ - man/man8/mfsnetdump.8.gz - .include "${MASTERDIR}/Makefile" Added: head/sysutils/moosefs-netdump/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-netdump/pkg-plist Sat Mar 5 20:10:34 2016 (r410208) @@ -0,0 +1,2 @@ +sbin/mfsnetdump +man/man8/mfsnetdump.8.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603052010.u25KAZp7047998>