wok-current rev 24469
updated davfs2 (1.5.6 -> 1.6.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Feb 17 14:10:04 2022 +0100 (2022-02-17) |
parents | 07031a7ec1d4 |
children | b547eecf9b74 |
files | davfs2/description.txt davfs2/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/davfs2/description.txt Thu Feb 17 14:10:04 2022 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +Web Distributed Authoring and Versioning (WebDAV), an extension 1.5 +to the HTTP-protocol, allows authoring of resources on a remote 1.6 +web server. 1.7 +Davfs2 provides the ability to access such resources like a typical 1.8 +filesystem, allowing for use by standard applications with no 1.9 +built-in support for WebDAV. 1.10 + 1.11 +Davfs2 is designed to fully integrate into the filesystem semantics 1.12 +of Unix-like systems (mount, umount, etc.). Davfs2 makes mounting 1.13 +by unprivileged users as easy and secure as possible. 1.14 + 1.15 +Davfs2 does extensive caching to make the file system responsive, 1.16 +to avoid unnecessary network traffic and to prevent data loss, and 1.17 +to cope for slow or unreliable connections. 1.18 + 1.19 +Davfs2 will work with most WebDAV servers needing little or no 1.20 +configuration.
2.1 --- a/davfs2/receipt Thu Feb 17 13:56:33 2022 +0100 2.2 +++ b/davfs2/receipt Thu Feb 17 14:10:04 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="davfs2" 2.7 -VERSION="1.5.6" 2.8 +VERSION="1.6.1" 2.9 CATEGORY="network" 2.10 SHORT_DESC="Remote collaborative authoring of Web resources." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 @@ -36,7 +36,7 @@ 2.13 --mandir=/usr/share/man \ 2.14 $CONFIGURE_ARGS && 2.15 make && 2.16 - make DESTDIR=$DESTDIR install 2.17 + make install DESTDIR=$DESTDIR 2.18 } 2.19 2.20 # Rules to gen a SliTaz package suitable for Tazpkg. 2.21 @@ -47,8 +47,8 @@ 2.22 cp -a $install/usr/sbin $fs/usr 2.23 cp -a $install/etc $fs 2.24 2.25 - sed -i -e 's/# dav_user/dav_user/' \ 2.26 - -e 's/# dav_group/dav_group/' \ 2.27 - -e 's/ davfs2 / www /' \ 2.28 + sed -i -e 's|# dav_user|dav_user|' \ 2.29 + -e 's|# dav_group|dav_group|' \ 2.30 + -e 's| davfs2 | www |' \ 2.31 $fs/etc/davfs2/davfs2.conf 2.32 }