Date: Mon, 23 Apr 2018 21:32:53 +0000 (UTC) From: "Carlos J. Puga Medina" <cpm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468141 - in head/net/grive2: . files Message-ID: <201804232132.w3NLWrhJ038654@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cpm Date: Mon Apr 23 21:32:53 2018 New Revision: 468141 URL: https://svnweb.freebsd.org/changeset/ports/468141 Log: net/grive2: Update to 0.5.1-dev - Use DISTVERSION instead of PORTVERSION for the new version - Remove CONFLICTS_INSTALL (grive port deleted) - Fix libgrive/test build after removing doclist api Noteworthy changes in version 0.5.1-dev - Added no-remote-new and upload-only modes - Ignore regexp not persist anymore (note that Grive will still track it to not accidentally delete remote files when changing ignore regexp) - Added options to limit upload and download speed - Faster upload of new and changed files. Now Grive uploads files without calculating md5 checksum when file is created locally or when its size changes Added: head/net/grive2/files/patch-libgrive_src_util_OS.hh (contents, props changed) Modified: head/net/grive2/Makefile head/net/grive2/distinfo Modified: head/net/grive2/Makefile ============================================================================== --- head/net/grive2/Makefile Mon Apr 23 21:08:00 2018 (r468140) +++ head/net/grive2/Makefile Mon Apr 23 21:32:53 2018 (r468141) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= grive2 -PORTVERSION= 0.5.0 DISTVERSIONPREFIX= v -PORTREVISION= 7 +DISTVERSION= 0.5.1-dev CATEGORIES= net MAINTAINER= cpm@FreeBSD.org @@ -20,12 +19,11 @@ LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs \ libgpg-error.so:security/libgpg-error \ libyajl.so:devel/yajl -CONFLICTS_INSTALL= grive-[0-9]* - USES= cmake localbase pkgconfig USE_GITHUB= yes GH_ACCOUNT= vitalif +GH_TAGNAME= 11a3d78 PLIST_FILES= bin/grive \ man/man1/grive.1.gz Modified: head/net/grive2/distinfo ============================================================================== --- head/net/grive2/distinfo Mon Apr 23 21:08:00 2018 (r468140) +++ head/net/grive2/distinfo Mon Apr 23 21:32:53 2018 (r468141) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472387091 -SHA256 (vitalif-grive2-v0.5.0_GH0.tar.gz) = 24641ef4802eb93bb55e7069bca55c4fb8aa17fd88833b9c89a1b2ee7d266567 -SIZE (vitalif-grive2-v0.5.0_GH0.tar.gz) = 162886 +TIMESTAMP = 1524507398 +SHA256 (vitalif-grive2-v0.5.1-dev-11a3d78_GH0.tar.gz) = b073ae8a7b18c259d577741476d5bedcd66ccfcf3a4677f8cbab7f5bd5515b2e +SIZE (vitalif-grive2-v0.5.1-dev-11a3d78_GH0.tar.gz) = 161620 Added: head/net/grive2/files/patch-libgrive_src_util_OS.hh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/grive2/files/patch-libgrive_src_util_OS.hh Mon Apr 23 21:32:53 2018 (r468141) @@ -0,0 +1,13 @@ +--- libgrive/src/util/OS.hh.orig 2018-04-23 17:00:17 UTC ++++ libgrive/src/util/OS.hh +@@ -24,6 +24,10 @@ + + #include <string> + ++#if defined(__FreeBSD__) ++#define off64_t off_t ++#endif ++ + namespace gr { + + class DateTime ;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804232132.w3NLWrhJ038654>