[arch-commits] Commit in curlftpfs/repos/community-x86_64 (6 files)

Felix Yan felixonmars at archlinux.org
Thu May 31 00:46:12 UTC 2018


    Date: Thursday, May 31, 2018 @ 00:46:11
  Author: felixonmars
Revision: 333614

archrelease: copy trunk to community-x86_64

Added:
  curlftpfs/repos/community-x86_64/PKGBUILD
    (from rev 333613, curlftpfs/trunk/PKGBUILD)
  curlftpfs/repos/community-x86_64/ioerror.patch
    (from rev 333613, curlftpfs/trunk/ioerror.patch)
  curlftpfs/repos/community-x86_64/no-verify-hostname.patch
    (from rev 333613, curlftpfs/trunk/no-verify-hostname.patch)
Deleted:
  curlftpfs/repos/community-x86_64/PKGBUILD
  curlftpfs/repos/community-x86_64/ioerror.patch
  curlftpfs/repos/community-x86_64/no-verify-hostname.patch

--------------------------+
 PKGBUILD                 |   70 ++++++++++++++++++++++-----------------------
 ioerror.patch            |   22 +++++++-------
 no-verify-hostname.patch |   28 +++++++++---------
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-05-31 00:45:43 UTC (rev 333613)
+++ PKGBUILD	2018-05-31 00:46:11 UTC (rev 333614)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Chris Brannon <cmbrannon79 at gmail.com>
-# Contributor: Allan McRae <mcrae_allan at hotmail.com>
-# Contributor: Philip Nilsson <leffeman at gmail.com>
-
-pkgname=curlftpfs
-pkgver=0.9.2
-pkgrel=6
-pkgdesc="A filesystem for acessing FTP hosts based on FUSE and libcurl."
-url="http://curlftpfs.sourceforge.net/"
-license=('GPL')
-depends=('curl' 'fuse' 'glib2')
-arch=('i686' 'x86_64')
-source=(http://downloads.sourceforge.net/sourceforge/curlftpfs/$pkgname-$pkgver.tar.gz
-        ioerror.patch no-verify-hostname.patch)
-md5sums=('b452123f755114cd4461d56c648d9f12'
-         '7a8db686293463ba3148c7032871c883'
-         'eb1d28b9edd690aee543bd6d4f3f41ed')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../ioerror.patch
-  patch -p1 -i ../no-verify-hostname.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install 
-}

Copied: curlftpfs/repos/community-x86_64/PKGBUILD (from rev 333613, curlftpfs/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-05-31 00:46:11 UTC (rev 333614)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Chris Brannon <cmbrannon79 at gmail.com>
+# Contributor: Allan McRae <mcrae_allan at hotmail.com>
+# Contributor: Philip Nilsson <leffeman at gmail.com>
+
+pkgname=curlftpfs
+pkgver=0.9.2
+pkgrel=7
+pkgdesc="A filesystem for acessing FTP hosts based on FUSE and libcurl."
+url="http://curlftpfs.sourceforge.net/"
+license=('GPL')
+depends=('curl' 'fuse2' 'glib2')
+arch=('x86_64')
+source=(http://downloads.sourceforge.net/sourceforge/curlftpfs/$pkgname-$pkgver.tar.gz
+        ioerror.patch no-verify-hostname.patch)
+sha512sums=('df07c418d175f766c89525017fc56e79726061eee0c3a6607ded0e1bf24f64f1475ba0e546157b65892194e3c4414c120822bf8fb175437e68366f82de216067'
+            '6d5454dc9b09279067028175458dd3dd1cecc7f99d11e2fe7048b9b9c31d9ed213ed916698f9311c5278e9389b4a53e0fde5fe735e613d80cbd6423041fe8122'
+            '737db3bcd12ee04ef1d63e22ae97588f9ea0156ba425241ebf176a6437df474990e081f05c6656a6b02c93d41ce1e88b0beb805253f11c09de9d37892baedf56')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../ioerror.patch
+  patch -p1 -i ../no-verify-hostname.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install 
+}

Deleted: ioerror.patch
===================================================================
--- ioerror.patch	2018-05-31 00:45:43 UTC (rev 333613)
+++ ioerror.patch	2018-05-31 00:46:11 UTC (rev 333614)
@@ -1,11 +0,0 @@
---- curlftpfs-0.9.2.orig/ftpfs.c	2008-04-30 03:05:47.000000000 +0400
-+++ curlftpfs-0.9.2.orig/ftpfs.c	2011-01-20 20:33:38.000000000 +0300
-@@ -503,7 +503,7 @@ static void *ftpfs_write_thread(void *da
-   
-   curl_easy_setopt_or_die(fh->write_conn, CURLOPT_URL, fh->full_path);
-   curl_easy_setopt_or_die(fh->write_conn, CURLOPT_UPLOAD, 1);
--  curl_easy_setopt_or_die(fh->write_conn, CURLOPT_INFILESIZE, -1);
-+  curl_easy_setopt_or_die(fh->write_conn, CURLOPT_INFILESIZE, (curl_off_t)-1);
-   curl_easy_setopt_or_die(fh->write_conn, CURLOPT_READFUNCTION, write_data_bg);
-   curl_easy_setopt_or_die(fh->write_conn, CURLOPT_READDATA, fh);
-   curl_easy_setopt_or_die(fh->write_conn, CURLOPT_LOW_SPEED_LIMIT, 1);

Copied: curlftpfs/repos/community-x86_64/ioerror.patch (from rev 333613, curlftpfs/trunk/ioerror.patch)
===================================================================
--- ioerror.patch	                        (rev 0)
+++ ioerror.patch	2018-05-31 00:46:11 UTC (rev 333614)
@@ -0,0 +1,11 @@
+--- curlftpfs-0.9.2.orig/ftpfs.c	2008-04-30 03:05:47.000000000 +0400
++++ curlftpfs-0.9.2.orig/ftpfs.c	2011-01-20 20:33:38.000000000 +0300
+@@ -503,7 +503,7 @@ static void *ftpfs_write_thread(void *da
+   
+   curl_easy_setopt_or_die(fh->write_conn, CURLOPT_URL, fh->full_path);
+   curl_easy_setopt_or_die(fh->write_conn, CURLOPT_UPLOAD, 1);
+-  curl_easy_setopt_or_die(fh->write_conn, CURLOPT_INFILESIZE, -1);
++  curl_easy_setopt_or_die(fh->write_conn, CURLOPT_INFILESIZE, (curl_off_t)-1);
+   curl_easy_setopt_or_die(fh->write_conn, CURLOPT_READFUNCTION, write_data_bg);
+   curl_easy_setopt_or_die(fh->write_conn, CURLOPT_READDATA, fh);
+   curl_easy_setopt_or_die(fh->write_conn, CURLOPT_LOW_SPEED_LIMIT, 1);

Deleted: no-verify-hostname.patch
===================================================================
--- no-verify-hostname.patch	2018-05-31 00:45:43 UTC (rev 333613)
+++ no-verify-hostname.patch	2018-05-31 00:46:11 UTC (rev 333614)
@@ -1,14 +0,0 @@
-diff -aur curlftpfs-0.9.2.orig/ftpfs.c curlftpfs-0.9.2.new/ftpfs.c
---- curlftpfs-0.9.2.orig/ftpfs.c	2016-01-25 17:01:32.150581272 +0100
-+++ curlftpfs-0.9.2.new/ftpfs.c	2016-01-25 17:02:08.566538053 +0100
-@@ -1625,9 +1625,7 @@
-   }
- 
-   if (ftpfs.no_verify_hostname) {
--    /* The default is 2 which verifies even the host string. This sets to 1
--     * which means verify the host but not the string. */
--    curl_easy_setopt_or_die(easy, CURLOPT_SSL_VERIFYHOST, 1);
-+    curl_easy_setopt_or_die(easy, CURLOPT_SSL_VERIFYHOST, 0);
-   }
- 
-   curl_easy_setopt_or_die(easy, CURLOPT_INTERFACE, ftpfs.interface);

Copied: curlftpfs/repos/community-x86_64/no-verify-hostname.patch (from rev 333613, curlftpfs/trunk/no-verify-hostname.patch)
===================================================================
--- no-verify-hostname.patch	                        (rev 0)
+++ no-verify-hostname.patch	2018-05-31 00:46:11 UTC (rev 333614)
@@ -0,0 +1,14 @@
+diff -aur curlftpfs-0.9.2.orig/ftpfs.c curlftpfs-0.9.2.new/ftpfs.c
+--- curlftpfs-0.9.2.orig/ftpfs.c	2016-01-25 17:01:32.150581272 +0100
++++ curlftpfs-0.9.2.new/ftpfs.c	2016-01-25 17:02:08.566538053 +0100
+@@ -1625,9 +1625,7 @@
+   }
+ 
+   if (ftpfs.no_verify_hostname) {
+-    /* The default is 2 which verifies even the host string. This sets to 1
+-     * which means verify the host but not the string. */
+-    curl_easy_setopt_or_die(easy, CURLOPT_SSL_VERIFYHOST, 1);
++    curl_easy_setopt_or_die(easy, CURLOPT_SSL_VERIFYHOST, 0);
+   }
+ 
+   curl_easy_setopt_or_die(easy, CURLOPT_INTERFACE, ftpfs.interface);



More information about the arch-commits mailing list