Package Details: httpfs2 0.1.5-3

Git Clone URL: https://aur.archlinux.org/httpfs2.git (read-only, click to copy)
Package Base: httpfs2
Description: FUSE-based file system for HTTP access
Upstream URL: http://httpfs.sourceforge.net/
Licenses: GPL
Submitter: krevedko
Maintainer: eworm
Last Packager: eworm
Votes: 10
Popularity: 0.000000
First Submitted: 2010-02-15 14:25 (UTC)
Last Updated: 2015-09-26 14:16 (UTC)

Latest Comments

Zepman commented on 2021-02-24 07:28 (UTC)

Based on the patch offered by Nitsuga, I have created a separate AUR package with the 2GB patch applied:

httpfs2-2gbplus

I think this original package should still exist due to that it equals upstream (which, sadly, has not been updated in 9 years). At least the new package gives users an easier choice.

agusdallalba commented on 2018-07-23 04:03 (UTC)

There's a bug where files bigger than 2 GB don't work. I found a patch in the httpfs2 bugtracker that solves this.

diff --git a/PKGBUILD b/PKGBUILD
index 8c22cfd..2c74993 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,5 +1,6 @@
 # Maintainer: Christian Hesse <mail@eworm.de>
 # Contributor: Constantinko <helllamer@gmail.com>
+# Contributor: Agustín Dall'Alba <a@dallalba.com.ar>

 pkgname=httpfs2
 pkgver=0.1.5
@@ -10,8 +11,15 @@ url='http://httpfs.sourceforge.net/'
 license=('GPL')
 depends=('fuse' 'openssl')
 makedepends=('asciidoc' 'dpkg')
-source=("http://downloads.sourceforge.net/project/httpfs/httpfs2/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('01cb4bb38deb344f540da6f1464dc7edbdeb51213ad810b8c9c282c1e17e0fc1')
+source=("http://downloads.sourceforge.net/project/httpfs/httpfs2/${pkgname}-${pkgver}.tar.gz"
+        "https://sourceforge.net/p/httpfs/bugs/_discuss/thread/8a4f3458/b43f/attachment/httpfs.diff")
+sha256sums=('01cb4bb38deb344f540da6f1464dc7edbdeb51213ad810b8c9c282c1e17e0fc1'
+            'da1965ff43662ed1473699e94511d9ae1c493d071eee795cdb5ff22fabeebc56')
+
+prepare() {
+       cd ${srcdir}/${pkgname}-${pkgver}
+       patch -p1 -i ../httpfs.diff
+}

 build() {
        cd ${srcdir}/${pkgname}-${pkgver}

eworm commented on 2015-09-26 14:19 (UTC)

Builds for me. I had to install perl-date-parse, though. I reported that as a missing dependency for dpkg.

svenstaro commented on 2015-09-25 20:17 (UTC)

==> Starting package()... install: cannot stat ‘httpfs2.1’: No such file or directory

webmeister commented on 2013-01-05 00:12 (UTC)

Please add dpkg to makedepends. dpkg-parsechangelog is necessary to build the package.