Bug 182034 - [patch] update sysutils/zxfer for FreeBSD 9.2
Summary: [patch] update sysutils/zxfer for FreeBSD 9.2
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Tijl Coosemans
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-12 12:20 UTC by Trevor Caira
Modified: 2013-11-12 09:40 UTC (History)
0 users

See Also:


Attachments
file.diff (964 bytes, patch)
2013-09-12 12:20 UTC, Trevor Caira
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Trevor Caira 2013-09-12 12:20:00 UTC
zxfer can not receive to ZFS volumes created under FreeBSD 9.2, because the ZFS revision in 9.2 introduced the new read-only properties logicalused and logicalreferenced. Same fix as [0].

[0] https://github.com/allanjude/zxfer/commit/d34db9e50c52dc831740f2200b135902d09f4061

Fix: A patch against r327052 of sysutils/zxfer is attached.


Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-09-12 19:45:57 UTC
Maintainer of sysutils/zxfer,

Please note that PR ports/182034 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182034

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2013-09-12 19:45:58 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 Trevor Caira 2013-10-27 07:18:49 UTC
Are we able to invoke a maintainer timeout on this update?

Thanks,

Trevor
Comment 4 Tijl Coosemans freebsd_committer freebsd_triage 2013-11-02 12:07:58 UTC
Responsible Changed
From-To: freebsd-ports-bugs->tijl

Take.
Comment 5 Tijl Coosemans freebsd_committer freebsd_triage 2013-11-02 12:13:49 UTC
Trevor,

The port is currently unmaintained.  Would you be willing to become
maintainer?
Comment 6 Tijl Coosemans freebsd_committer freebsd_triage 2013-11-02 12:20:01 UTC
On Sat, 2 Nov 2013 13:13:49 +0100 Tijl Coosemans wrote:
> Trevor,
> 
> The port is currently unmaintained.  Would you be willing to become
> maintainer?

There's also a new version 0.9.9 at
http://code.google.com/p/zxfer/downloads/list
Comment 7 Allan Jude 2013-11-10 04:18:48 UTC
I recently submitted PR ports/183804 to update zxfer to 1.1.0

I'll take maintainership of this port, and have the update so that it
works with 9.2 & 10.0 etc, plus some other improvmements

-- 
Allan Jude
Comment 8 trevor 2013-11-10 04:43:28 UTC
> On Nov 10, 2013, at 13:18, Allan Jude <freebsd@allanjude.com> wrote:
> 
> I recently submitted PR ports/183804 to update zxfer to 1.1.0
> 
> I'll take maintainership of this port, and have the update so that it
> works with 9.2 & 10.0 etc, plus some other improvmements

Great, thank you!
Comment 9 dfilter service freebsd_committer freebsd_triage 2013-11-12 09:31:04 UTC
Author: tijl
Date: Tue Nov 12 09:30:57 2013
New Revision: 333555
URL: http://svnweb.freebsd.org/changeset/ports/333555

Log:
  - Update sysutils/zxfer to version 1.1.0.
  - Assign maintainership to submitter who has taken over upstream
    development.
  
  PR:		ports/182034, ports/183804
  Submitted by:	Allan Jude <ports@scaleengine.com>

Added:
  head/sysutils/zxfer/pkg-plist   (contents, props changed)
Deleted:
  head/sysutils/zxfer/files/
Modified:
  head/sysutils/zxfer/Makefile
  head/sysutils/zxfer/distinfo   (contents, props changed)
Directory Properties:
  head/sysutils/zxfer/pkg-descr   (props changed)

Modified: head/sysutils/zxfer/Makefile
==============================================================================
--- head/sysutils/zxfer/Makefile	Tue Nov 12 09:25:43 2013	(r333554)
+++ head/sysutils/zxfer/Makefile	Tue Nov 12 09:30:57 2013	(r333555)
@@ -2,29 +2,30 @@
 # $FreeBSD$
 
 PORTNAME=	zxfer
-PORTVERSION=	0.9.8
-PORTREVISION=	1
+PORTVERSION=	1.1.0
 CATEGORIES=	sysutils
-MASTER_SITES=	GOOGLE_CODE
 
-MAINTAINER=	ports@FreeBSD.org
+USE_GITHUB=	yes
+GH_ACCOUNT=	allanjude
+GH_COMMIT=	94567c8
+GH_TAGNAME=	1.1.0
+
+MAINTAINER=	ports@scaleengine.com
 COMMENT=	Easily and reliably transfer ZFS filesystems
 
 LICENSE=	BSD
 
-RUN_DEPENDS=	rsync:${PORTSDIR}/net/rsync
-
-USE_BZIP2=	yes
 NO_BUILD=	yes
 
-PLIST_FILES=	sbin/zxfer
+OPTIONS_DEFINE=	RSYNC
+
+RSYNC_DESC=		Enable RSYNC Support
+RSYNC_RUN_DEPENDS=	rsync:${PORTSDIR}/net/rsync
 
-MAN8=		zxfer.8
-MANCOMPRESSED=	yes
+.include <bsd.port.options.mk>
 
-NO_STAGE=	yes
 do-install:
-	${INSTALL_SCRIPT} ${WRKSRC}/zxfer ${PREFIX}/sbin
-	${INSTALL_MAN} ${WRKSRC}/zxfer.8.gz ${MAN8PREFIX}/man/man8
+	${INSTALL_SCRIPT} ${WRKSRC}/zxfer ${STAGEDIR}${PREFIX}/sbin
+	${INSTALL_MAN} ${WRKSRC}/zxfer.8.gz ${STAGEDIR}${MAN8PREFIX}/man/man8
 
 .include <bsd.port.mk>

Modified: head/sysutils/zxfer/distinfo
==============================================================================
--- head/sysutils/zxfer/distinfo	Tue Nov 12 09:25:43 2013	(r333554)
+++ head/sysutils/zxfer/distinfo	Tue Nov 12 09:30:57 2013	(r333555)
@@ -1,2 +1,2 @@
-SHA256 (zxfer-0.9.8.tar.bz2) = c5733903c43600b0a169addff98f213e30a0e8ab359801369576eea03a78abda
-SIZE (zxfer-0.9.8.tar.bz2) = 46900
+SHA256 (zxfer-1.1.0.tar.gz) = 271746900690429dfa811b7209ca65aef7cb2b886b1935f731788f44e7888565
+SIZE (zxfer-1.1.0.tar.gz) = 52273

Added: head/sysutils/zxfer/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/zxfer/pkg-plist	Tue Nov 12 09:30:57 2013	(r333555)
@@ -0,0 +1,2 @@
+man/man8/zxfer.8.gz
+sbin/zxfer
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 10 Tijl Coosemans freebsd_committer freebsd_triage 2013-11-12 09:35:40 UTC
State Changed
From-To: feedback->closed

Fixed in r333555.