summaryrefslogtreecommitdiff
path: root/filesystems
AgeCommit message (Collapse)AuthorFilesLines
2015-07-16pbr is now pulled in by mock, like it should be.wiz1-3/+2
Remove here and bump PKGREVISION again.
2015-07-15One of the dependencies now wants py-pbr, so tahoe-lafs wants it too.wiz1-1/+3
Add the dependency, bump PKGREVISION.
2015-07-12Comment out dependencies of the stylewiz1-2/+2
{perl>=5.16.6,p5-ExtUtils-ParseXS>=3.15}:../../devel/p5-ExtUtils-ParseXS since pkgsrc enforces the newest perl version anyway, so they should always pick perl, but sometimes (pkg_add) don't due to the design of the {,} syntax. No effective change for the above reason. Ok joerg
2015-07-01Update to 1.10.1:wiz3-19/+57
Release 1.10.1 (2015-06-15) ''''''''''''''''''''''''''' User Interface / Configuration Changes -------------------------------------- The "``tahoe cp``" CLI command's ``--recursive`` option is now more predictable, but behaves slightly differently than before. See below for details. Tickets `#712`_, `#2329`_. The SFTP server can now use public-key authentication (instead of only password-based auth). Public keys are configured through an "account file", just like passwords. See docs/frontends/FTP-and-SFTP for examples of the format. `#1411`_ The Tahoe node can now be configured to disable automatic IP-address detection. Using "AUTO" in tahoe.cfg [node]tub.location= (which is now the default) triggers autodetection. Omit "AUTO" to disable autodetection. "AUTO" can be combined with static addresses to e.g. use both a stable UPnP-configured tunneled address and a DHCP-assigned dynamic (local subnet only) address. See `configuration.rst`_ for details. `#754`_ The web-based user interface ("WUI") Directory and Welcome pages have been redesigned, with improved CSS for narrow windows and more-accessible icons (using distinctive shapes instead of just colors). `#1931`_ `#1961`_ `#1966`_ `#1972`_ `#1901`_ .. _`#712`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/712 .. _`#754`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/754 .. _`#1411`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/1411 .. _`#1901`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/1901 .. _`#1931`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/1931 .. _`#1961`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/1961 .. _`#1966`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/1966 .. _`#1972`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/1972 .. _`#2329`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2329 .. _`configuration.rst`: docs/configuration.rst "tahoe cp" changes ------------------ The many ``cp``-like tools in the Unix world (POSIX ``/bin/cp``, the ``scp`` provided by SSH, ``rsync``) all behave slightly differently in unusual circumstances, especially when copying whole directories into a target that may or may not already exist. The most common difference is whether the user is referring to the source directory as a whole, or to its contents. For example, should "``cp -r foodir bardir``" create a new directory named "``bardir/foodir``"? Or should it behave more like "``cp -r foodir/* bardir``"? Some tools use the presence of a trailing slash to indicate which behavior you want. Others ignore trailing slashes. "``tahoe cp``" is no exception to having exceptional cases. This release fixes some bad behavior and attempts to establish a consistent rationale for its behavior. The new rule is: - If the thing being copied is a directory, and it has a name (e.g. it's not a raw Tahoe-LAFS directorycap), then you are referring to the directory itself. - If the thing being copied is an unnamed directory (e.g. raw dircap or alias), then you are referring to the contents. - Trailing slashes do not affect the behavior of the copy (although putting a trailing slash on a file-like target is an error). - The "``-r``" (``--recursive``) flag does not affect the behavior of the copy (although omitting ``-r`` when the source is a directory is an error). - If the target refers to something that does not yet exist: - and if the source is a single file, then create a new file; - otherwise, create a directory. There are two main cases where the behavior of Tahoe-LAFS v1.10.1 differs from that of the previous v1.10.0 release: - "``cp DIRCAP/file.txt ./local/missing``" , where "``./local``" is a directory but "``./local/missing``" does not exist. The implication is that you want Tahoe to create a new file named "``./local/missing``" and fill it with the contents of the Tahoe-side ``DIRCAP/file.txt``. In v1.10.0, a plain "``cp``" would do just this, but "``cp -r``" would do "``mkdir ./local/missing``" and then create a file named "``./local/missing/file.txt``". In v1.10.1, both "``cp``" and "``cp -r``" create a file named "``./local/missing``". - "``cp -r PARENTCAP/dir ./local/missing``", where ``PARENTCAP/dir/`` contains "``file.txt``", and again "``./local``" is a directory but "``./local/missing``" does not exist. In both v1.10.0 and v1.10.1, this first does "``mkdir ./local/missing``". In v1.10.0, it would then copy the contents of the source directory into the new directory, resulting in "``./local/missing/file.txt``". In v1.10.1, following the new rule of "a named directory source refers to the directory itself", the tool creates "``./local/missing/dir/file.txt``". Compatibility and Dependency Updates ------------------------------------ Windows now requires Python 2.7. Unix/OS-X platforms can still use either Python 2.6 or 2.7, however this is probably the last release that will support 2.6 (it is no longer receiving security updates, and most OS distributions have switched to 2.7). Tahoe-LAFS now has the following dependencies: - Twisted >= 13.0.0 - Nevow >= 0.11.1 - foolscap >= 0.8.0 - service-identity - characteristic >= 14.0.0 - pyasn1 >= 0.1.4 - pyasn1-modules >= 0.0.5 On Windows, if pywin32 is not installed then the dependencies on Twisted and Nevow become: - Twisted >= 11.1.0, <= 12.1.0 - Nevow >= 0.9.33, <= 0.10 On all platforms, if pyOpenSSL >= 0.14 is installed, then it will be used, but if not then only pyOpenSSL >= 0.13, <= 0.13.1 will be built when directly invoking `setup.py build` or `setup.py install`. We strongly advise OS packagers to take the option of making a tahoe-lafs package depend on pyOpenSSL >= 0.14. In order for that to work, the following additional Python dependencies are needed: - cryptography - cffi >= 0.8 - six >= 1.4.1 - enum34 - pycparser as well as libffi (for Debian/Ubuntu, the name of the needed OS package is `libffi6`). Tahoe-LAFS is now compatible with Setuptools version 8 and Pip version 6 or later, which should fix execution on Ubuntu 15.04 (it now tolerates PEP440 semantics in dependency specifications). `#2354`_ `#2242`_ Tahoe-LAFS now depends upon foolscap-0.8.0, which creates better private keys and certificates than previous versions. To benefit from the improvements (2048-bit RSA keys and SHA256-based certificates), you must re-generate your Tahoe nodes (which changes their TubIDs and FURLs). `#2400`_ .. _`#2242`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2242 .. _`#2354`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2354 .. _`#2400`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2400 Packaging --------- A preliminary OS-X package, named "``tahoe-lafs-VERSION-osx.pkg``", is now being generated. It is a standard double-clickable installer, which creates ``/Applications/tahoe.app`` that embeds a complete runtime tree. However launching the ``.app`` only brings up a notice on how to run tahoe from the command line. A future release may turn this into a fully-fledged application launcher. `#182`_ `#2393`_ `#2323`_ Preliminary Docker support was added. Tahoe container images may be available on DockerHub. `PR#165`_ `#2419`_ `#2421`_ Old and obsolete Debian packaging tools have been removed. `#2282`_ .. _`#182`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/182 .. _`#2282`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2282 .. _`#2323`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2323 .. _`#2393`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2393 .. _`#2419`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2419 .. _`#2421`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2421 .. _`PR#165`: https://github.com/tahoe-lafs/tahoe-lafs/pull/165 Minor Changes ------------- - Welcome page: add per-server "(space) Available" column. `#648`_ - check/deep-check learned to accept multiple location arguments. `#740`_ - Checker reports: remove needs-rebalancing, add count-happiness. `#1784`_ `#2105`_ - CLI ``--help``: cite (but don't list) global options on each command. `#2233`_ - Fix ftp "``ls``" to work with Twisted 15.0.0. `#2394`_ .. _`#648`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/648 .. _`#740`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/740 .. _`#1784`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/1784 .. _`#2105`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2105 .. _`#2233`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2233 .. _`#2394`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2394 Roughly 75 tickets were closed in this release: 623 648 712 740 754 898 1146 1159 1336 1381 1411 1634 1674 1698 1707 1717 1737 1784 1800 1807 1842 1847 1901 1918 1953 1960 1961 1966 1969 1972 1974 1988 1992 2005 2008 2023 2027 2028 2034 2048 2067 2086 2105 2121 2128 2165 2193 2208 2209 2233 2235 2242 2245 2248 2249 2249 2280 2281 2282 2290 2305 2312 2323 2340 2354 2380 2393 2394 2398 2400 2415 2416 2417 2433. Another dozen were referenced but not closed: 182 666 982 1064 1258 1531 1536 1742 1834 1931 1935 2286. Roughly 40 GitHub pull-requests were closed: 32 48 50 56 57 61 62 62 63 64 69 73 81 82 84 85 87 91 94 95 96 103 107 109 112 114 120 122 125 126 133 135 136 137 142 146 149 152 165. For more information about any ticket, visit e.g. https://tahoe-lafs.org/trac/tahoe-lafs/ticket/754
2015-06-20Upgrade to glusterfs 3.7.2manu4-196/+85
Complete list of changes since 3.7.1: - doc: add 1233044, 1232179 in 3.7.2 release-notes - features/bitrot: fix fd leak in truncate (stub) - doc: add release notes for 3.7.2 - libgfchangelog: Fix crash in gf_changelog_process - glusterd: Fix snapshot of a volume with geo-rep - cluster/ec: Avoid parallel executions of the same state machine - quota: fix double accounting with rename operation - cluster/dht: Prevent use after free bug - cluster/ec: Wind unlock fops at all cost - glusterd: Buffer overflow causing crash for glusterd - NFS-Ganesha: Automatically export vol that was exported before vol restart - common-ha: cluster HA setup sometimes fails - cluster/ec: Prevent double unwind - quota/glusterd: porting to new logging framework. - bitrot/glusterd: gluster volume set command for bitrot should not supported - tests: fix spurious failure in bug-857330/xml.t - features/bitrot: tuanble object signing waiting time value for bitrot - quota: don't log error when disk quota exceeded - protocol/client : porting log messages to new framework - cluster/afr: Do not attempt entry self-heal if the last lookup on entry failed on src - changetimerecorder : port log messages to a new framework - tier/volume set: Validate volume set option for tier - glusterd/tier: glusterd crashed with detach-tier commit force - rebalance,store,glusterd/glusterd: porting to new logging framework. - libglusterfs: Enabling the fini() in cleanup_and_exit() - sm/glusterd: Porting messages to new logging framework - nfs: Authentication performance improvements - common-ha: cluster HA setup sometimes fails - glusterd: subvol_count value for replicate volume should be calculate correctly - common-ha : Clean up cib state completely - NFS-Ganesha : Return correct return value - glusterd: Porting messages to new logging framework. - glusterd: Stop tcp/ip listeners during glusterd exit - storage/posix: Handle MAKE_INODE_HANDLE failures - cluster/ec: Prevent Null dereference in dht-rename - doc: fix markdown formatting - upcall: prevent busy loop in reaper thread - protocol/server : port log messages to a new framework - nfs.c nfs3.c: port log messages to a new framework - logging: log "Stale filehandle" on the client as Debug - snapshot/scheduler: Modified main() function to take arguments. - tools/glusterfind: print message for good cases - geo-rep: ignore symlink and harlink errors in geo-rep - tools/glusterfind: ignoring deleted files - spec/geo-rep: Add rsync as dependency for georeplication rpm - features/changelog: Do htime setxattr without XATTR_REPLACE flag - tools/glusterfind: Cleanup glusterfind dir after a volume delete - tools/glusterfind: Cleanup session dir after delete - geo-rep: Validate use_meta_volume option - spec: correct the vendor string in spec file - tools/glusterfind: Fix GFID to Path conversion for dir - libglusterfs: update glfs-message header for reserved segments - features/qemu-block: Don't unref root inode - features/changelog: Avoid setattr fop logging during rename - common-ha: handle long node names and node names with '-' and '.' in them - features/marker : Pass along xdata to lower translator - tools/glusterfind: verifying volume is online - build: fix compiling on older distributions - snapshot/scheduler: Handle OSError in os. callbacks - snapshot/scheduler: Check if GCRON_TASKS exists before - features/quota: Fix ref-leak - tools/glusterfind: verifying volume presence - stripe: fix use-after-free - Upcall/cache-invalidation: Ignore fops with frame->root->client not set - rpm: correct date and order of entries in the %changelog - nfs: allocate and return the hashkey for the auth_cache_entry - doc: add release notes for 3.7.1 - snapshot: Fix finding brick mount path logic - glusterd/snapshot: Return correct errno in events of failure - PATCH 2 - rpc: call transport_unref only on non-NULL transport - heal : Do not invoke glfs_fini for glfs-heal commands - Changing log level from Warning to Debug - features/shard: Handle symlinks appropriately in fops - cluster/ec: EC_XATTR_DIRTY doesn't come in response - worm: Let lock, zero xattrop calls succeed - bitrot/glusterd: scrub option should be disabled once bitrot option is reset - glusterd/shared_storage: Provide a volume set option to create and mount the shared storage - dht: Add lookup-optimize configuration option for DHT - glusterfs.spec.in: move libgf{db,changelog}.pc from -api-devel to -devel - fuse: squash 64-bit inodes in readdirp when enable-ino32 is set - glusterd: do not show pid of brick in volume status if brick is down. - cluster/dht: fix incorrect dst subvol info in inode_ctx - common-ha: fix race between setting grace and virt IP fail-over - heal: Do not call glfs_fini in final builds - dht/rebalance : Fixed rebalance failure - cluster/dht: Fix dht_setxattr to follow files under migration - meta: implement fsync(dir) - socket: throttle only connected transport - contrib/timer-wheel: fix deadlock in del_timer() - snapshot/scheduler: Return proper error code in case of failure - quota: retry connecting to quotad on ENOTCONN error - features/quota: prevent statfs frame loss when an error happens during ancestry - features/quota : Make "quota-deem-statfs" option "on" by default, when quota is enabled - cluster/dht: pass a destination subvol to fop2 variants to avoid races. - cli: Fix incorrect parse logic for volume heal commands - glusterd: Bump op version and max op version for 3.7.2 - cluster/dht: Don't rely on linkto xattr to find destination subvol - afr: honour selfheal enable/disable volume set options - features/shard: Fix incorrect parameter to get_lowest_block() - libglusterfs: Copy d_len and dict as well into dst dirent - features/quota : Do unwind if postbuf is NULL - cluster/ec: Fix incorrect check for iatt differences - features/shard: Fix issue with readdir(p) fop - glusterfs.spec.in: python-gluster should be 'noarch' - glusterd: Bump op version and max op version for 3.7.1 - glusterd: fix repeated connection to nfssvc failed msgs
2015-06-12Recursive PKGREVISION bump for all packages mentioning 'perl',wiz4-5/+8
having a PKGNAME of p5-*, or depending such a package, for perl-5.22.0.
2015-06-08Reapply fix for broken build system after defuzzing.joerg2-1/+15
2015-06-02* Bitrot Detectionmanu7-151/+279
Bitrot detection is a technique used to identify an ?insidious? type of disk error where data is silently corrupted with no indication from the disk to the storage software layer that an error has occurred. When bitrot detection is enabled on a volume, gluster performs signing of all files/objects in the volume and scrubs data periodically for signature verification. All anomalies observed will be noted in log files. * Multi threaded epoll for performance improvements Gluster 3.7 introduces multiple threads to dequeue and process more requests from epoll queues. This improves performance by processing more I/O requests. Workloads that involve read/write operations on a lot of small files can benefit from this enhancement. * Volume Tiering [Experimental] Policy based tiering for placement of files. This feature will serve as a foundational piece for building support for data classification. Volume Tiering is marked as an experimental feature for this release. It is expected to be fully supported in a 3.7.x minor release. Trashcan This feature will enable administrators to temporarily store deleted files from Gluster volumes for a specified time period. * Efficient Object Count and Inode Quota Support This improvement enables an easy mechanism to retrieve the number of objects per directory or volume. Count of objects/files within a directory hierarchy is stored as an extended attribute of a directory. The extended attribute can be queried to retrieve the count. This feature has been utilized to add support for inode quotas. * Pro-active Self healing for Erasure Coding Gluster 3.7 adds pro-active self healing support for erasure coded volumes. * Exports and Netgroups Authentication for NFS This feature adds Linux-style exports & netgroups authentication to the native NFS server. This enables administrators to restrict access to specific clients & netgroups for volume/sub-directory NFSv3 exports. * GlusterFind GlusterFind is a new tool that provides a mechanism to monitor data events within a volume. Detection of events like modified files is made easier without having to traverse the entire volume. * Rebalance Performance Improvements Rebalance and remove brick operations in Gluster get a performance boost by speeding up identification of files needing movement and a multi-threaded mechanism to move all such files. * NFSv4 and pNFS support Gluster 3.7 supports export of volumes through NFSv4, NFSv4.1 and pNFS. This support is enabled via NFS Ganesha. Infrastructure changes done in Gluster 3.7 to support this feature include: - Addition of upcall infrastructure for cache invalidation. - Support for lease locks and delegations. - Support for enabling Ganesha through Gluster CLI. - Corosync and pacemaker based implementation providing resource monitoring and failover to accomplish NFS HA. pNFS support for Gluster volumes and NFSv4 delegations are in beta for this release. Infrastructure changes to support Lease locks and NFSv4 delegations are targeted for a 3.7.x minor release. * Snapshot Scheduling With this enhancement, administrators can schedule volume snapshots. * Snapshot Cloning Volume snapshots can now be cloned to create a new writeable volume. * Sharding [Experimental] Sharding addresses the problem of fragmentation of space within a volume. This feature adds support for files that are larger than the size of an individual brick. Sharding works by chunking files to blobs of a configurabe size. Sharding is an experimental feature for this release. It is expected to be fully supported in a 3.7.x minor release. * RCU in glusterd Thread synchronization and critical section access has been improved by introducing userspace RCU in glusterd * Arbiter Volumes Arbiter volumes are 3 way replicated volumes where the 3rd brick of the replica is automatically configured as an arbiter. The 3rd brick contains only metadata which provides network partition tolerance and prevents split-brains from happening. Update to GlusterFS 3.7.1 * Better split-brain resolution split-brain resolutions can now be also driven by users without administrative intervention. * Geo-replication improvements There have been several improvements in geo-replication for stability and performance. * Minor Improvements - Message ID based logging has been added for several translators. - Quorum support for reads. - Snapshot names contain timestamps by default.Subsequent access to the snapshots should be done by the name listed in gluster snapshot list - Support for gluster volume get <volname> added. - libgfapi has added handle based functions to get/set POSIX ACLs based on common libacl structures.
2015-05-01ec.la is installed when MMX is present and usable. This is the defaultjoerg2-5/+12
for amd64, so include it in the PLIST & bump revision.
2015-04-25Recursive revbump following MesaLib update, categories a through f.tnn1-2/+2
2015-04-20Add a missing dependency, py-service_identity, which was so farwiz1-2/+4
automatically downloaded during the build. While here, replace interpreter path in installed file. Bump PKGREVISION.
2015-04-09Update glusterfs to 3.6.2manu12-983/+81
This is a maintenance release, complete Changelog can be found here: http://blog.gluster.org/2015/01/glusterfs-3-6-2-ga-released/
2015-04-06Revbump after updating textproc/icuadam1-2/+2
2015-04-05Update to 0.068wen2-6/+6
Upstream changes: 0.068 2015-03-23 20:42:56-04:00 America/New_York [META] - Jumping to 0.068 to get to an even-version for a stable release [DOCUMENTED] - Noted that 0.66 changed the 'filehandle' method 0.066 2015-03-20 23:59:08-04:00 America/New_York (TRIAL RELEASE) [ADDED] - Added exclusive locking option to filehandle opens; spew now exclusively locks tempfile used for atomic writes 0.065 2015-03-06 05:59:56-05:00 America/New_York [ADDED] - Added 'assert' method - Added 'visit' method - Added support for a negative count for 'lines' to get the last lines of a file [FIXED] - Fixed tilde expansion if path has spaces - Make realpath non-fatal if the parent path exists and only the final path component does not. (Was fatal on Windows and some Unixes.) - Removed rendundant locking on tempfile use for spewing - Work around File::Temp bugs on older ActiveState Windows Perls https://bugs.activestate.com/show_bug.cgi?id=104767 [DOCUMENTED] - Fixed SYNOPSIS example 0.064 2015-03-05 03:58:42-05:00 America/New_York (TRIAL RELEASE) 0.063 2015-03-04 16:00:17-05:00 America/New_York (TRIAL RELEASE) 0.062 2015-03-04 13:59:31-05:00 America/New_York (TRIAL RELEASE)
2015-03-18Don't link against potentially non-existent library.joerg7-1/+91
2015-03-12requires openssltnn1-1/+2
2015-02-18Update to 0.061mef2-6/+6
--------------- 0.061 2014-11-13 16:50:05-05:00 America/New_York [FIXED] - Fixed append_utf8 and append_raw with 'truncate' option.
2015-02-18Update 0.006 to 0.011mef2-7/+6
--------------------- 0.011 2014-08-30 03:17:07Z - documentation amendments (thanks, Demian Riccardi!) - add missing prereq declaration 0.010 2014-02-16 22:02:29Z - fixed if eval problem in "use if" in 0.009 0.009 2014-02-16 21:57:00Z - only clean namespaces when MooseX::Types is new enough that our declared types are installed as methods 0.008 2014-02-16 21:20:46Z - new Paths, AbsPaths types, for coercable ArrayRefs 0.007 2013-12-22 00:44:49Z - add missing authority data to module and metadata
2015-02-18Update 0.13 to 0.18mef2-7/+6
------------------- 0.18 2014-12-17 - RIBASUSHI++ reminded me that to be a usable directory in @INC we need to check -d && -r && -x. 0.17 2014-12-17 - Fixed RT#96433: ignore directories in @INC which don't exist. Apologies to ETHER++ for over-thinking this one, and taking so long to fix it. 0.16 2014-12-13 - Added TODO.md with an initial todo list for the module 0.15 2014-10-14 - Doing a foreach $dir (@INC) and then resolving symblinks on $dir was changing the entries in @INC. HAARG++ for pull request with fix. - Changed author email address to be my CPAN email address. 0.14 2014-08-16 - Added Travis config, using cpanfile and cpanm to ensure all dependencies are installed before running tests with prove. Thanks to DAGOLDEN. - Improved the first paragraph of DESCRIPTION, so search results give a better summary of the module.
2015-01-21recuesive bump from libarchive major update.obache1-2/+2
2015-01-11On systems with MMX support, additional files are installed.joerg2-2/+10
2015-01-11Only python 2.x is supported, mark it so.wiz1-1/+3
2014-12-31Improve EGG_NAME default to work for packages with '-' in their name.wiz2-4/+2
Remove now unnecessary overrides in various packages.
2014-12-11Don't use -I without argument.joerg2-1/+15
2014-11-26Downgrade to 0.13 since that version works on NetBSD.wiz7-34/+126
2014-11-24Update 2.8.4 to 2.9.3 for PLIST.commonmef1-2/+5
2014-11-24Update 2.8.4 to 2.9.3mef15-470/+17
--------------------- 2013-07-01 Miklos Szeredi <miklos@szeredi.hu> * Released 2.9.3 2013-06-20 Miklos Szeredi <miklos@szeredi.hu> * libfuse: fix multiple close of device fd. Reported by Dan Greenfield 2013-03-19 Miklos Szeredi <miklos@szeredi.hu> * libfuse: fix thread cancel race. Exiting a worker my race with cancelling that same worker. This caused a segmenation fault. Reported and tested by Anatol Pomozov 2013-02-04 Miklos Szeredi <miklos@szeredi.hu> * libfuse: fix crash in unlock_path(). Patch by Ratna Manoj * libfuse: fix the 'remember' option. The lru list was not initialized for the "/" path. This resulted in remove_node_lru() crashing on LOOKUP-DOTDOT. Patch by Madan Valluri * libfuse: configure: detect new util-linux * libfuse: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Patch by Anatol Pomozov * libfuse: rename ./configure.in to ./configure.ac. Patch by Anatol Pomozov 2012-10-01 Miklos Szeredi <miklos@szeredi.hu> * Released 2.9.2 2012-10-01 Miklos Szeredi <miklos@szeredi.hu> * Fix deadlock in libfuse. Running "svn update" on a fuse filesystem could deadlock because of a bug in the way the paths are locked. Reported by Kazuaki Anami 2012-08-23 Miklos Szeredi <miklos@szeredi.hu> * Fix missing config.h in buffer.c. Reported by Matthew Gabeler-Lee 2012-08-14 Miklos Szeredi <miklos@szeredi.hu> * Not unhashing the name in forget (commit on 2011-12-09) broke the forget logic in a subtle way, resulting in "fuse internal error: node NNN not found" and causing the filesystem daemon to abort. Fix by incrementing the node refcount if nlookup goes from zero to one. Reported by Kyle Lippincott 2012-08-13 Miklos Szeredi <miklos@szeredi.hu> * Fix linking against GNU libiconv. Patch by Natanael Copa 2012-07-19 Miklos Szeredi <miklos@szeredi.hu> * Released 2.9.1 2012-07-19 Miklos Szeredi <miklos@szeredi.hu> * Fix crash caused by freeing a stack address. Reported by Itay Perl 2012-07-04 Miklos Szeredi <miklos@szeredi.hu> * Fix install of mount.fuse from out-of-tree build. Patch by Olivier Blin * Fix build with automake >= 1.12.1. Patch by Olivier Blin 2012-04-24 Miklos Szeredi <miklos@szeredi.hu> * Add fallocate operation. Only works on linux kernels 3.5 or later. Patch by Anatol Pomozov 2012-05-16 Miklos Szeredi <miklos@szeredi.hu> * Linking to a library that uses threads requires the application to be linked with -pthreads otherwise some pthread functions will be linked to stubs in glibc. So move -pthread from Libs.private to Libs in fuse.pc. Reported by Werner Fink * Fix the compile command in the examples. Reported by Luciano Dalle Ore 2012-04-20 Miklos Szeredi <miklos@szeredi.hu> * Released 2.9.0 2012-04-20 Miklos Szeredi <miklos@szeredi.hu> * Add missing fuse_fs_flock to fuse_versionscript 2012-04-10 Miklos Szeredi <miklos@szeredi.hu> * Check protocol version before sending notifications and return -ENOSYS if a particular notification is not supported. * Add 'flag_utime_omit_ok' flag to fuse_operations. If the filesystem sets this flag then ->utimens() will receive UTIME_OMIT and UTIME_NOW values as specified in utimensat(2). 2012-01-27 Miklos Szeredi <miklos@szeredi.hu> * Interpret octal escape codes in options. Requested by Jan Engelhardt 2012-01-26 Miklos Szeredi <miklos@szeredi.hu> * Add man pages for fusermount, mount.fuse and ulockmgr_server. Lifted from the Debian package. The man pages were written by Daniel Baumann and Bastien Roucaries 2012-01-13 Miklos Szeredi <miklos@szeredi.hu> * Disable symbol versions on MacOSX. Patch by Anatol Pomozov 2012-01-02 Miklos Szeredi <miklos@szeredi.hu> * Remove unnecessary mutex unlock at the end of multithreaded event loop. 2011-12-09 Miklos Szeredi <miklos@szeredi.hu> * Fix hang in wait_on_path(). Reported by Ville Silventoinen * Don't unhash name in FORGET. This resulted in ENOENT being returned for unlinked but still open files if the kernel sent a FORGET request for the parent directory. * Free request in fuse_reply_data(). 2011-12-08 Miklos Szeredi <miklos@szeredi.hu> * Fix build if FUSE_NODE_SLAB is not defined. Patch by Emmanuel Dreyfus * Check for availability of utimensat() function. Patch by Emmanuel Dreyfus 2011-12-07 Miklos Szeredi <miklos@szeredi.hu> * Add fuse_lowlevel_notify_delete() which tells the kernel that a file or directory is deleted. Patch by John Muir 2011-12-06 Miklos Szeredi <miklos@szeredi.hu> * Update retrieve_reply() method 2011-12-05 Miklos Szeredi <miklos@szeredi.hu> * Low level API: lock argument of fuse_reply_lock should have a 'const' qualifier. Reported by Shachar Sharon * Add support for ioctl on directories. Reported by Antonio SJ Musumeci 2011-10-13 Miklos Szeredi <miklos@szeredi.hu> * Reply to request with ENOMEM in case of failure to allocate request structure. Otherwise the task issuing the request will just freeze up until the filesystem daemon is killed. Reported by Stephan Kulow 2011-09-23 Miklos Szeredi <miklos@szeredi.hu> * Replace daemon() function with fork(). Patch by Anatol Pomozov 2011-08-26 Miklos Szeredi <miklos@szeredi.hu> * If configured with --disable-mtab then don't call mount(8) from libfuse to update the mtab. Reported by: James Sierp 2011-08-24 Miklos Szeredi <miklos@szeredi.hu> * Use LRU list for cleaning up the cache if the "remember=T" option was given. Patch by therealneworld@gmail.com 2011-07-06 Miklos Szeredi <miklos@szeredi.hu> * Add ->flock() operation to low and high level interfaces. This fixes problems with emulating flock() with POSIX locking. Reported by Sebastian Pipping. As with lock/setlk/getlk most filesystems don't need to implement this, as the kernel takes care of file locking. The only reason to implement locking operations is for network filesystems which want file locking to work between clients. 2011-07-02 Sebastian Pipping <sebastian@pipping.org> * Make xmp_utimens of examples "fusexmp" and "fusexmp_fh" not follow symlinks as other layers do that already. 2011-06-02 Miklos Szeredi <miklos@szeredi.hu> * Add "remember" option. This works similar to "noforget" except that eventually the node will be allowed to expire from the cache. Patch by therealneworld@gmail.com 2011-05-27 Miklos Szeredi <miklos@szeredi.hu> * Check if splice/vmsplice are supported 2011-05-26 Miklos Szeredi <miklos@szeredi.hu> * Remove -lrt -ldl from fuse.pc for dynamic linking since libfuse.so is already linked with these libraries. Reported by: Nikolaus Rath 2011-05-20 Miklos Szeredi <miklos@szeredi.hu> * Cleaner build output. Patch by Reuben Hawkins 2011-05-19 Miklos Szeredi <miklos@szeredi.hu> * Disable splice by default, add "splice_read", "splice_write" and "splice_move" options. Keep the "no_splice_*" variants, which can disable splice even if the filesystem explicitly enables it. 2011-04-15 Max Krasnyansky <maxk@kernel.org> * Added support for "auto_unmount" option which unmounts the filesystem automatically on process exit (or crash). 2011-03-30 Miklos Szeredi <miklos@szeredi.hu> * Patches by Laszlo Papp fixing various issues found by the Coverity checker 2011-03-11 Miklos Szeredi <miklos@szeredi.hu> * In case of failure to add to /etc/mtab don't umount. Reported by Marc Deslauriers 2011-02-02 Miklos Szeredi <miklos@szeredi.hu> * libfuse: In fuse_session_loop_mt() don't pause when exiting the worker threads. The pause() was added in 2.2.1 to prevent segfault on pthread_cancel() on an exited, detached thread. Now worker threads are not detached and pthread_cancel() should work fine even after the thread exited. Reported by Boris Protopopov 2011-01-31 Miklos Szeredi <miklos@szeredi.hu> * fusermount: chdir to / before performing mount/umount * fusermount: only allow mount and umount if util-linux supports --no-canonicalize 2010-12-16 Miklos Szeredi <miklos@szeredi.hu> * Highlevel lib: allow hash tables to shrink * Highlevel lib: add slab allocation for node cache. This will allow the memory used by the filesystem to grow and shrink depending on how many inodes are currently cached. 2010-12-13 Miklos Szeredi <miklos@szeredi.hu> * Highlevel lib: use dynamically resized hash table for looking up by name and node ID. 2010-12-07 Miklos Szeredi <miklos@szeredi.hu> * Allow batching of forget requests. This allows forget requests to be processed faster and doesn't require a modification to fuse filesystems. Reported by Terje Malmedal * Add ->forget_multi() operation to the lowlevel API. The filesystem may implement this to process multiple forget requests in one call * Fix the ambiguity of ioctl ABI on the kernel/userspace boundary for 32bit vs. 64bit userspace 2010-11-10 Miklos Szeredi <miklos@szeredi.hu> * Add new write_buf() method to the highlevel API. Similarly to the lowlevel write_buf() method, this allows implementing zero copy writes. * Add a new read_buf() method to the highlevel API. This allows returning a generic buffer from the read method, which in turn allows zero copy reads. * In fusexmp_fh implement the ->read_buf() and ->write_buf() methods. Leave the ->read() and ->write() implementations for reference, even though they are not necessary. 2010-11-08 Miklos Szeredi <miklos@szeredi.hu> * Fix check for read-only fs in mtab update * Open /dev/null for write instead of read for redirecting stdout and stderr * If umount(8) supports --fake and --no-canonicalize (util-linux-ng version 2.18 or later), and umount(2) supports the UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later) then, "fusermount -u" will call the umount(2) system call and use "umount --fake ..." to update /etc/mtab * Added --disable-legacy-umount option to configure. This disables the runtime checking of umount(8) version. When built with this option then "fusermount -u" will fail if umount(8) doesn't support the --fake and --no-canonicalize options. * Fix fuse_buf_copy() if already at the end of the buffers * Add new ->write_buf() method to low level interface. This allows passig a generic buffer, either containing a memory buffer or a file descriptor. This allows implementing zero copy writes. * Add fuse_session_receive_buf() and fuse_session_process_buf() which may be used in event loop implementations to replace fuse_chan_recv() and fuse_session_process() respectively. * Remove unnecessary restoring of current working directory in "fusermount -u" * Add ctx->pid to debug output * Fix st_nlink value in high level lib if file is unlinked but still open * libfuse: add store request. Request data to be stored in the kernel buffers for a given inode. * libfuse: add retrieve request. Retrieve data stored in the kernel buffers for a given inode. 2010-10-14 Miklos Szeredi <miklos@szeredi.hu> * Use LTLIBICONV when linking libfuse. This fixes building against uclibc + libiconv. Patch by Natanael Copa 2010-10-05 Miklos Szeredi <miklos@szeredi.hu> * Add missing argument check in ulockmgr.c to prevent calling ulockmgr_server with illegal arguments. This would cause an ever growing list of ulockmgr_server processes with an endless list of open files which finally exceeds the open file handle limit. Patch by Markus Ammer 2010-09-28 Miklos Szeredi <miklos@szeredi.hu> * Fix ambiguous symbol version for fuse_chan_new. fuse_versionscript included fuse_chan_new in both FUSE_2.4 and FUSE_2.6. Remove the FUSE_2.4, which is invalid. 2010-09-28 Miklos Szeredi <miklos@szeredi.hu> * Fix option escaping for fusermount. If the "fsname=" option contained a comma then the option parser in fusermount was confused (Novell bugzilla #641480). Fix by escaping commas when passing them over to fusermount. Reported by Jan Engelhardt 2010-08-27 Miklos Szeredi <miklos@szeredi.hu> * Add NetBSD support. Patch from Emmanuel Dreyfus 2010-07-12 Miklos Szeredi <miklos@szeredi.hu> * libfuse: add buffer interface. Add a generic buffer interface for use with I/O. Buffer vectors are supplied and each buffer in the vector may be a memory pointer or a file descriptor. * The fuse_reply_fd() interface is converted to using buffers. 2010-06-23 Miklos Szeredi <miklos@szeredi.hu> * Make the number of max background requests and congestion threshold tunable. New options are "max_background" and "congestion_threshold". Only effective on linux kernel versions 2.6.32 or greater. Patch by Csaba Henk 2010-06-17 Miklos Szeredi <miklos@szeredi.hu> * Add fuse_reply_fd() reply function to the low level interface. On linux version 2.6.35 or greater this will use splice() to move data directly from a file descriptor to the fuse device without needing to go though a userspace buffer. With the FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data directly into the filesystem's cache. On earlier kernels it will fall back to an intermediate buffer. The options "no_splice_write" and "no_splice_move" can be used to disable splicing and moving respectively. 2010-06-15 Miklos Szeredi <miklos@szeredi.hu> * Fix out-of-source build. Patch by Jörg Faschingbauer * Add a "nopath" option and flag, indicating that path argument need not be calculated for the following operations: read, write, flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate, fgetattr, lock, ioctl and poll. 2010-05-10 Miklos Szeredi <miklos@szeredi.hu> * Remove "chmod root" from install of fusermount. Reported by Lucas C. Villa Real
2014-11-23Update to 0.91:wiz7-126/+34
Important changes in 0.91 (2014-05-14) This is mainly bug fixes. Changes in this release: * Fixed a segfault caused by an overflow reading the list of available decoders. * A number of problems with the previous distribution tar are now fixed. * The output of `mp3fs --version` has been made more complete. Important changes in 0.9 (2014-04-06) This is a major new release, and brings us very close to a 1.0 release! Changes in this release: * All transcoding code has been completely rewritten. Encoding and decoding have been abstracted out into base classes defining interfaces that can be implemented by different codec classes, with just a FLAC decoder and MP3 encoder at the moment. * The build system has been modified as well to support this usage. * A number of small bugs or code inefficiencies have been fixed. Important changes in 0.32 (2012-06-18) This release has a lot of bug fixes and some code cleanup. Changes in this release: * The file size calculation should always be correct. * A crash affecting programs like scp that might try to access past the end of the file has been fixed. * Too many other little fixes were made to list here. See the ChangeLog for full details. Important changes in 0.31 (2011-12-04) This is a minor update, with bug fixes and a new feature. Changes in this release: * The ReplayGain support added earlier now can be configured through the command line. * Filename translation (from .flac to .mp3) is now fixed on filesystems such as XFS that do not populate dirent.d_type. * A couple other minor bugs fixes and changes were made. Important changes in 0.30 (2010-12-01) This is a major new release, and brings mp3fs much closer to an eventual 1.0 release. Changes in this release: * Support for additional metadata tags has been added. (From Gregor Zurowski) * Documentation improvements: the help message is more useful, and a man page has been added. * Choosing bitrate is now done with a command-line or mount option, rather than the old comma syntax. * A new option to select LAME encoding quality is now available. (From Gregor Zurowski) * Debug output can be enabled at runtime. * Old external libraries included in distribution (StringIO, talloc) have been removed and replaced. * Numerous bug fixes have been made. (Some from Gregor Zurowski)
2014-11-20Remove trailing whitespace.wiz2-5/+5
2014-11-20Remove patch that is not in distinfo.wiz1-13/+0
2014-11-18Upgrate to glusterfs 3.6.0manu21-319/+1141
New features: - Volume Snapshots Distributed lvm thin-pool based snapshots for backing up volumes in a Gluster Trusted Storage Pool. Apart from providing cluster wide co-ordination to trigger a consistent snapshot, several improvements have been performed through the GlusterFS stack to make translators more crash consistent. Snapshotting of volumes is tightly coupled with lvm today but one could also enhance the same framework to integrate with a backend storage technology like btrfs that can perform snapshots. - Erasure Coding Xavier Hernandez from Datalab added support to perform erasure coding of data in a GlusterFS volume across nodes in a Trusted Storage Pool. Erasure Coding requires fewer nodes to provide better redundancy than a n-way replicated volume and can help in reducing the overall deployment cost. We look forward to build on this foundation and deliver more enhancememnts in upcoming releases. - Better SSL support Multiple improvements to SSL support in GlusterFS. The GlusterFS driver in OpenStack Manila that provides certificate based access to tenants relies on these improvements. - Meta translator This translator provides a /proc like view for examining internal state of translators on the client stack of a GlusterFS volume and certainly looks like an interface that I would be heavily consuming for introspection of GlusterFS. - Automatic File Replication (AFR) v2 A significant re-factor of the synchronous replication translator, provides granular entry self-healing and reduced resource consumption with entry self-heals. - NetBSD, OSX and FreeBSD ports Lot of fixes on the portability front. The NetBSD port passes most regression tests as of 3.6.0. At this point, none of these ports are ready to be deployed in production. However, with dedicated maintainers for each of these ports, we expect to reach production readiness on these platforms in a future release. Complete releases notes are available at https://github.com/gluster/glusterfs/blob/release-3.6/doc/release-notes/3.6.0.md
2014-11-06Update to 0.60wen2-7/+6
Upstream changes: 0.060 2014-11-04 17:33:39-05:00 America/New_York [ADDED] - Added 'truncate' option to append for in-place replacement of file contents. 0.059 2014-10-14 12:45:46-04:00 America/New_York [FIXED] - Fixed precedence bug in the check for Unicode::UTF8 0.058 2014-09-23 11:00:24-04:00 America/New_York [ADDED] - Added a 'sibling' method as a more efficient form of calling $path->parent->child(...). [DOCUMENTED] - Every method annotated with the version number of the last API change. 0.057 2014-09-19 11:23:05-04:00 America/New_York [FIXED] - On AIX, reads that default to locking would fail without write permissions, because locking needs write permissions. The fix is only to lock reads if write permissions exist; otherwise locking is skipped. 0.056 2014-08-07 15:08:41-04:00 America/New_York [*** DEPRECATIONS ***] - The 'dirname' method is deprecated due to exposing File::Spec inconsistencies [ADDED] - The 'digest' method now takes a 'chunk_size' option to avoid slurping files entirely into memory. [FIXED] - Fixed problem throwing errors from 'remove' 0.055 2014-06-30 10:29:28-04:00 America/New_York [FIXED] - tempfile/tempdir won't warn if used as functions without arguments 0.054 2014-05-04 13:56:11-04:00 America/New_York [ADDED] - The 'basename' method now takes a list of suffixes to remove before returning the name - FREEZE/THAW/TO_JSON serialization helpers [CHANGED] - When constructing a Path::Tiny object from another, the original is returned unless it's a temp dir/file. This significantly speeds up calling path($path) if $path is already a Path::Tiny object. (Thanks to Michael Schwern for prompting such benchmarking.) [FIXED] - Constructing any path -- e.g. with child() -- with undef or zero-length parts throws an error instead of constructing an invalid path 0.053 2014-03-24 09:25:51-04:00 America/New_York (TRIAL RELEASE) [INCOMPATIBLE CHANGES] - The 'is_file' method now does -e && ! -d and not -f because -f is often more restrictive than people intend or expect. [ADDED] - Added 'chmod' method with symbolic chmod support ("a=r,u+rx") 0.052 2014-01-14 15:58:03-05:00 America/New_York [FIXED] - Backslash-to-slash conversion now only happens on Windows (since backslash is legal on Unix, we must allow it)
2014-10-25Update homepageprlw11-2/+2
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz2-6/+2
2014-10-07Revbump after updating libwebp and icuadam1-2/+2
2014-09-10Needs pkg-config.joerg1-1/+3
2014-08-14Forgotten mps commit.joerg1-1/+2
2014-08-13Use external argp. No longer installs glusterd rc script. Bump revision.joerg3-5/+18
2014-08-08Update broken link, from Christopher M. Fuhrman in PR 49055.dholland1-2/+2
2014-07-19Use standard email address (pkgsrc-p5-people should not be MAINTAINER).wiz2-6/+4
2014-06-12Upgrade to OpenAFS 1.6.9gendalia2-7/+7
OpenAFS 1.6.9 All server platforms * Fix for OPENAFS-SA-2014-002 OpenAFS 1.6.8 All platforms * Documentation improvements (10751 10875 10931 10897 10883 10954 10955) * Improved diagnostics and error messages (10756 10814 10949) * Fixed a bug in RX that could make errors during packet reception go unnoticed. (10733) * Fixed a bug that made "vos size -dump" display the wrong size for large volumes. (10933) (RT #131819) All server platforms * Change the default fileserver sync behavior from "delayed" to "onclose". This means that explicit syncing only happens when a volume is detached. (10809) * Added the -offline-timeout and -offline-shutdown-timeout options to the fileserver, to implement interrupting clients accessing volumes we are trying to take offline. (6266 10799)
2014-05-29Bump for perl-5.20.0.wiz4-5/+8
Do it for all packages that * mention perl, or * have a directory name starting with p5-*, or * depend on a package starting with p5- like last time, for 5.18, where this didn't lead to complaints. Let me know if you have any this time.
2014-05-20+ libntfsjoerg1-1/+2
2014-05-19Changes 2014.2.15:adam20-92/+429
libntfs: added use of hd library to get the legacy BIOS geometry libntfs: switched to /proc/mounts for checking existing mounts libntfs: fixed usa checking by ntfsck on 4K sector disks libntfs: fixed processing compressed data beyond file size (Windows 8 compliance) libntfs: fixed expanding a resident attribute without inserting holes libntfs: allow DACLs to not have any ACE libntfs: ignore unmapped regions when checking whether sparse libntfs: upgraded the Win32 interface for use with ntfsprogs ntfsresize: enabled relocating the MFT when shrinking a volume ntfsresize: fixed trying to update the MFT and Bitmap on a test run ntfsresize: fixed updating all the MFT runs in a relocated MFT ntfsresize: set the backup boot sector when the size is reliable ntfsresize: reserved a single sector for the backup boot sector ntfsundelete: output the modification time when scanning files ntfsundelete: ported to Windows ntfsclone: fixed wiping fragmented metadata when creating a metadata image ntfsclone: allowed cloning a file system despite allocation errors ntfsclone: fixed bad copying of the backup boot sector ntfsclone: ported to Windows ntfsdecrypt: made compatible with libgrypt-1.6
2014-05-18Needs libexecinfo on NetBSD.joerg1-3/+4
2014-05-17Bump applications PKGREVISIONs for python users that might be usingwiz1-2/+2
python3, since the default changed from python33 to python34. I probably bumped too many. I hope I got them all.
2014-05-09Mark packages that are not ready for python-3.3 also not ready for 3.4,wiz5-10/+10
until proven otherwise.
2014-05-05Recursive revbump from x11/pixmanryoon1-2/+2
Fix PR pkg/48777
2014-04-30Bump PKGREVISION for boehm-gc default-on threads, just to be onwiz1-2/+2
the safe side.
2014-04-21recursive bump for boehm-gc API bumpwiz1-3/+2