From owner-svn-ports-all@FreeBSD.ORG Thu Jul 25 15:31:04 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 87C798FB; Thu, 25 Jul 2013 15:31:04 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 759032F47; Thu, 25 Jul 2013 15:31:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6PFV4GJ077530; Thu, 25 Jul 2013 15:31:04 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6PFV3jV077526; Thu, 25 Jul 2013 15:31:03 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201307251531.r6PFV3jV077526@svn.freebsd.org> From: Pawel Pekala Date: Thu, 25 Jul 2013 15:31:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323650 - in head/sysutils/fusefs-zip: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jul 2013 15:31:04 -0000 Author: pawel Date: Thu Jul 25 15:31:03 2013 New Revision: 323650 URL: http://svnweb.freebsd.org/changeset/ports/323650 Log: Update to version 0.3.0 PR: ports/180544 Submitted by: Oleg Ginzburg (maintainer) Added: head/sysutils/fusefs-zip/files/ head/sysutils/fusefs-zip/files/patch-lib_fuse-zip.cpp (contents, props changed) head/sysutils/fusefs-zip/files/patch-lib_zip.h (contents, props changed) Modified: head/sysutils/fusefs-zip/Makefile (contents, props changed) head/sysutils/fusefs-zip/distinfo (contents, props changed) Modified: head/sysutils/fusefs-zip/Makefile ============================================================================== --- head/sysutils/fusefs-zip/Makefile Thu Jul 25 15:30:11 2013 (r323649) +++ head/sysutils/fusefs-zip/Makefile Thu Jul 25 15:31:03 2013 (r323650) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= fuse-zip -PORTVERSION= 0.2.13 +PORTVERSION= 0.3.0 CATEGORIES= sysutils MASTER_SITES= GOOGLE_CODE @@ -11,6 +11,7 @@ COMMENT= FUSE filesystem to mount ZIP ar LICENSE= LGPL3 LIB_DEPENDS= zip:${PORTSDIR}/archivers/libzip +BUILD_DEPENDS= libzip>=0.11.1:${PORTSDIR}/archivers/libzip USE_GMAKE= yes USES= fuse pkgconfig Modified: head/sysutils/fusefs-zip/distinfo ============================================================================== --- head/sysutils/fusefs-zip/distinfo Thu Jul 25 15:30:11 2013 (r323649) +++ head/sysutils/fusefs-zip/distinfo Thu Jul 25 15:31:03 2013 (r323650) @@ -1,2 +1,2 @@ -SHA256 (fuse-zip-0.2.13.tar.gz) = e41c0746e3419db8f519fad7e819ef72ddb48ffca2de52773f038016aacd9804 -SIZE (fuse-zip-0.2.13.tar.gz) = 185431 +SHA256 (fuse-zip-0.3.0.tar.gz) = 7b0960e40da4e98f40a12c26c032fee99f683bea59bede24653de2f139d08543 +SIZE (fuse-zip-0.3.0.tar.gz) = 662401 Added: head/sysutils/fusefs-zip/files/patch-lib_fuse-zip.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fusefs-zip/files/patch-lib_fuse-zip.cpp Thu Jul 25 15:31:03 2013 (r323650) @@ -0,0 +1,22 @@ +--- lib/fuse-zip.cpp.orig 2013-07-15 16:25:13.000000000 +0400 ++++ lib/fuse-zip.cpp 2013-07-15 16:25:37.000000000 +0400 +@@ -426,19 +426,11 @@ + return 0; + } + +-#if ( __FreeBSD__ >= 10 ) +-int fusezip_setxattr(const char *, const char *, const char *, size_t, int, uint32_t) { +-#else + int fusezip_setxattr(const char *, const char *, const char *, size_t, int) { +-#endif + return -ENOTSUP; + } + +-#if ( __FreeBSD__ >= 10 ) +-int fusezip_getxattr(const char *, const char *, char *, size_t, uint32_t) { +-#else + int fusezip_getxattr(const char *, const char *, char *, size_t) { +-#endif + return -ENOTSUP; + } + Added: head/sysutils/fusefs-zip/files/patch-lib_zip.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fusefs-zip/files/patch-lib_zip.h Thu Jul 25 15:31:03 2013 (r323650) @@ -0,0 +1,16 @@ +--- lib/fuse-zip.h.orig 2013-07-15 16:25:43.000000000 +0400 ++++ lib/fuse-zip.h 2013-07-15 16:25:53.000000000 +0400 +@@ -86,13 +86,8 @@ + + int fusezip_utimens(const char *path, const struct timespec tv[2]); + +-#if ( __FreeBSD__ >= 10 ) +-int fusezip_setxattr(const char *, const char *, const char *, size_t, int, uint32_t); +-int fusezip_getxattr(const char *, const char *, char *, size_t, uint32_t); +-#else + int fusezip_setxattr(const char *, const char *, const char *, size_t, int); + int fusezip_getxattr(const char *, const char *, char *, size_t); +-#endif + + int fusezip_listxattr(const char *, char *, size_t); +