Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jul 2013 15:31:03 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
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
Message-ID:  <201307251531.r6PFV3jV077526@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <olevole@olevole.ru> (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);
+



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307251531.r6PFV3jV077526>