svn commit: r465414 - in head/sysutils: exfat-utils exfat-utils/files fusefs-exfat fusefs-exfat/files

Yuri Victorovich yuri at FreeBSD.org
Fri Mar 23 23:19:55 UTC 2018


Author: yuri
Date: Fri Mar 23 23:19:53 2018
New Revision: 465414
URL: https://svnweb.freebsd.org/changeset/ports/465414

Log:
  sysutils/exfat-utils sysutils/fusefs-exfat: Update 1.2.7 -> 1.2.8
  
  Also grouped USExx.
  
  PR:		226699
  Submitted by:	samm at os2.kiev.ua (maintainer)

Modified:
  head/sysutils/exfat-utils/Makefile
  head/sysutils/exfat-utils/distinfo
  head/sysutils/exfat-utils/files/patch-ublio
  head/sysutils/fusefs-exfat/Makefile
  head/sysutils/fusefs-exfat/distinfo
  head/sysutils/fusefs-exfat/files/patch-ublio

Modified: head/sysutils/exfat-utils/Makefile
==============================================================================
--- head/sysutils/exfat-utils/Makefile	Fri Mar 23 21:56:59 2018	(r465413)
+++ head/sysutils/exfat-utils/Makefile	Fri Mar 23 23:19:53 2018	(r465414)
@@ -3,7 +3,7 @@
 
 PORTNAME=	exfat
 DISTVERSIONPREFIX=	v
-DISTVERSION=	1.2.7
+DISTVERSION=	1.2.8
 CATEGORIES=	sysutils
 PKGNAMESUFFIX=	-utils
 
@@ -23,10 +23,9 @@ LICENSE_PERMS_MSPAT=	no-dist-mirror no-dist-sell no-pk
 
 LIB_DEPENDS=	libublio.so:devel/libublio
 
+USES=		autoreconf localbase pkgconfig
 USE_GITHUB=	yes
 GH_ACCOUNT=	relan
-
-USES=		autoreconf localbase pkgconfig
 GNU_CONFIGURE=	yes
 
 PLIST_FILES=	sbin/exfatlabel sbin/dumpexfat sbin/exfatfsck sbin/mkexfatfs \

Modified: head/sysutils/exfat-utils/distinfo
==============================================================================
--- head/sysutils/exfat-utils/distinfo	Fri Mar 23 21:56:59 2018	(r465413)
+++ head/sysutils/exfat-utils/distinfo	Fri Mar 23 23:19:53 2018	(r465414)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1514448316
-SHA256 (relan-exfat-v1.2.7_GH0.tar.gz) = bf9b26ed5002a45da75a9fba3bc5aafa67031addad205016c35141beb3c7f6b5
-SIZE (relan-exfat-v1.2.7_GH0.tar.gz) = 55796
+TIMESTAMP = 1521383513
+SHA256 (relan-exfat-v1.2.8_GH0.tar.gz) = 778474bfbcd92e35bba5b88bd7ad3f6400328256636abb9031bfcc1ce15ed887
+SIZE (relan-exfat-v1.2.8_GH0.tar.gz) = 55911

Modified: head/sysutils/exfat-utils/files/patch-ublio
==============================================================================
--- head/sysutils/exfat-utils/files/patch-ublio	Fri Mar 23 21:56:59 2018	(r465413)
+++ head/sysutils/exfat-utils/files/patch-ublio	Fri Mar 23 23:19:53 2018	(r465414)
@@ -31,12 +31,12 @@ index b45db3f..2bcda4b 100644
  AC_CONFIG_FILES([
 diff --git libexfat/io.c libexfat/io.c
 index 60f28e2..14c0151 100644
---- libexfat/io.c
-+++ libexfat/io.c
-@@ -37,12 +37,20 @@
- #include <sys/ioctl.h>
- #endif
+--- libexfat/io.c	2018-02-03 09:01:42.000000000 +0100
++++ libexfat/io.c	2018-03-18 15:45:43.573290677 +0100
+@@ -38,12 +38,20 @@
+ #elif __linux__
  #include <sys/mount.h>
+ #endif
 +#ifdef USE_UBLIO
 +#include <sys/uio.h>
 +#include <ublio.h>
@@ -53,8 +53,8 @@ index 60f28e2..14c0151 100644
 +#endif
  };
  
- static int open_ro(const char* spec)
-@@ -74,6 +82,9 @@ struct exfat_dev* exfat_open(const char* spec, enum exfat_mode mode)
+ static bool is_open(int fd)
+@@ -80,6 +88,9 @@
  {
  	struct exfat_dev* dev;
  	struct stat stbuf;
@@ -62,9 +62,9 @@ index 60f28e2..14c0151 100644
 +	struct ublio_param up;
 +#endif
  
- 	dev = malloc(sizeof(struct exfat_dev));
- 	if (dev == NULL)
-@@ -211,6 +222,24 @@ struct exfat_dev* exfat_open(const char* spec, enum exfat_mode mode)
+ 	/* The system allocates file descriptors sequentially. If we have been
+ 	   started with stdin (0), stdout (1) or stderr (2) closed, the system
+@@ -235,6 +246,24 @@
  		}
  	}
  
@@ -89,7 +89,7 @@ index 60f28e2..14c0151 100644
  	return dev;
  }
  
-@@ -218,6 +247,13 @@ int exfat_close(struct exfat_dev* dev)
+@@ -242,6 +271,13 @@
  {
  	int rc = 0;
  
@@ -103,7 +103,7 @@ index 60f28e2..14c0151 100644
  	if (close(dev->fd) != 0)
  	{
  		exfat_error("failed to close device: %s", strerror(errno));
-@@ -231,6 +267,13 @@ int exfat_fsync(struct exfat_dev* dev)
+@@ -255,6 +291,13 @@
  {
  	int rc = 0;
  
@@ -117,7 +117,7 @@ index 60f28e2..14c0151 100644
  	if (fsync(dev->fd) != 0)
  	{
  		exfat_error("fsync failed: %s", strerror(errno));
-@@ -251,29 +294,56 @@ off_t exfat_get_size(const struct exfat_dev* dev)
+@@ -275,29 +318,56 @@
  
  off_t exfat_seek(struct exfat_dev* dev, off_t offset, int whence)
  {

Modified: head/sysutils/fusefs-exfat/Makefile
==============================================================================
--- head/sysutils/fusefs-exfat/Makefile	Fri Mar 23 21:56:59 2018	(r465413)
+++ head/sysutils/fusefs-exfat/Makefile	Fri Mar 23 23:19:53 2018	(r465414)
@@ -3,7 +3,7 @@
 
 PORTNAME=	exfat
 DISTVERSIONPREFIX=	v
-DISTVERSION=	1.2.7
+DISTVERSION=	1.2.8
 CATEGORIES=	sysutils
 PKGNAMEPREFIX=	fusefs-
 
@@ -23,10 +23,9 @@ LICENSE_PERMS_MSPAT=	no-dist-mirror no-dist-sell no-pk
 
 LIB_DEPENDS=	libublio.so:devel/libublio
 
+USES=		autoreconf fuse localbase pkgconfig
 USE_GITHUB=	yes
 GH_ACCOUNT=	relan
-
-USES=		autoreconf fuse localbase pkgconfig
 GNU_CONFIGURE=	yes
 MAKE_ARGS=	SUBDIRS="libexfat fuse"
 

Modified: head/sysutils/fusefs-exfat/distinfo
==============================================================================
--- head/sysutils/fusefs-exfat/distinfo	Fri Mar 23 21:56:59 2018	(r465413)
+++ head/sysutils/fusefs-exfat/distinfo	Fri Mar 23 23:19:53 2018	(r465414)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1514453447
-SHA256 (relan-exfat-v1.2.7_GH0.tar.gz) = bf9b26ed5002a45da75a9fba3bc5aafa67031addad205016c35141beb3c7f6b5
-SIZE (relan-exfat-v1.2.7_GH0.tar.gz) = 55796
+TIMESTAMP = 1521383763
+SHA256 (relan-exfat-v1.2.8_GH0.tar.gz) = 778474bfbcd92e35bba5b88bd7ad3f6400328256636abb9031bfcc1ce15ed887
+SIZE (relan-exfat-v1.2.8_GH0.tar.gz) = 55911

Modified: head/sysutils/fusefs-exfat/files/patch-ublio
==============================================================================
--- head/sysutils/fusefs-exfat/files/patch-ublio	Fri Mar 23 21:56:59 2018	(r465413)
+++ head/sysutils/fusefs-exfat/files/patch-ublio	Fri Mar 23 23:19:53 2018	(r465414)
@@ -31,12 +31,12 @@ index b45db3f..2bcda4b 100644
  AC_CONFIG_FILES([
 diff --git libexfat/io.c libexfat/io.c
 index 60f28e2..14c0151 100644
---- libexfat/io.c
-+++ libexfat/io.c
-@@ -37,12 +37,20 @@
- #include <sys/ioctl.h>
- #endif
+--- libexfat/io.c	2018-02-03 09:01:42.000000000 +0100
++++ libexfat/io.c	2018-03-18 15:45:43.573290677 +0100
+@@ -38,12 +38,20 @@
+ #elif __linux__
  #include <sys/mount.h>
+ #endif
 +#ifdef USE_UBLIO
 +#include <sys/uio.h>
 +#include <ublio.h>
@@ -53,8 +53,8 @@ index 60f28e2..14c0151 100644
 +#endif
  };
  
- static int open_ro(const char* spec)
-@@ -74,6 +82,9 @@ struct exfat_dev* exfat_open(const char* spec, enum exfat_mode mode)
+ static bool is_open(int fd)
+@@ -80,6 +88,9 @@
  {
  	struct exfat_dev* dev;
  	struct stat stbuf;
@@ -62,9 +62,9 @@ index 60f28e2..14c0151 100644
 +	struct ublio_param up;
 +#endif
  
- 	dev = malloc(sizeof(struct exfat_dev));
- 	if (dev == NULL)
-@@ -211,6 +222,24 @@ struct exfat_dev* exfat_open(const char* spec, enum exfat_mode mode)
+ 	/* The system allocates file descriptors sequentially. If we have been
+ 	   started with stdin (0), stdout (1) or stderr (2) closed, the system
+@@ -235,6 +246,24 @@
  		}
  	}
  
@@ -89,7 +89,7 @@ index 60f28e2..14c0151 100644
  	return dev;
  }
  
-@@ -218,6 +247,13 @@ int exfat_close(struct exfat_dev* dev)
+@@ -242,6 +271,13 @@
  {
  	int rc = 0;
  
@@ -103,7 +103,7 @@ index 60f28e2..14c0151 100644
  	if (close(dev->fd) != 0)
  	{
  		exfat_error("failed to close device: %s", strerror(errno));
-@@ -231,6 +267,13 @@ int exfat_fsync(struct exfat_dev* dev)
+@@ -255,6 +291,13 @@
  {
  	int rc = 0;
  
@@ -117,7 +117,7 @@ index 60f28e2..14c0151 100644
  	if (fsync(dev->fd) != 0)
  	{
  		exfat_error("fsync failed: %s", strerror(errno));
-@@ -251,29 +294,56 @@ off_t exfat_get_size(const struct exfat_dev* dev)
+@@ -275,29 +318,56 @@
  
  off_t exfat_seek(struct exfat_dev* dev, off_t offset, int whence)
  {


More information about the svn-ports-all mailing list