pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/rsync Changes 3.1.0:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7a8eff3f1f5e
branches:  trunk
changeset: 624901:7a8eff3f1f5e
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed Oct 02 18:06:19 2013 +0000

description:
Changes 3.1.0:

OUTPUT CHANGES:

- Output numbers in 3-digit groups by default (e.g. 1,234,567).  See the
  --human-readable option for a way to turn it off.  See also the daemon's
  "log format" parameter and related command-line options (including
  --out-format) for a modifier that can be used to request digit-grouping
  or human-readable output in log escapes. (Note that log output is
  unchanged by default.)

- The --list-only option is now affected by the --human-readable setting.
  It will display digit groupings by default, and unit suffixes if higher
  levels of readability are requested.  Also, the column width for the size
  output has increased from 11 to 14 characters when human readability is
  enabled.  Use --no-h to get the old-style output and column size.

- The output of the --progress option has changed:  the string "xfer" was
  shortened to "xfr", and the string "to-check" was shortened to "to-chk",
  both designed to make room for the (by default) wider display of file
  size numbers without making the total line-length longer.  Also, when
  incremental recursion is enabled, the string "ir-chk" will be used
  instead of "to-chk" up until the incremental-recursion scan is done,
  letting you know that the value to check and the total value will still
  be increasing as new files are found.

- Enhanced the --stats output: 1) to mention how many files were created
  (protocol >= 28), 2) to mention how many files were deleted (a new line
  for protocol 31, but only output when --delete is in effect), and 3) to
  follow the file-count, created-count, and deleted-count with a subcount
  list that shows the counts by type.  The wording of the transferred count
  has also changed so that it is clearer that it is only a count of regular
  files.

More...

diffstat:

 net/rsync/Makefile         |  13 ++++++-------
 net/rsync/distinfo         |  10 +++++-----
 net/rsync/patches/patch-ab |  25 +++++++++++++------------
 3 files changed, 24 insertions(+), 24 deletions(-)

diffs (87 lines):

diff -r 0199340544a8 -r 7a8eff3f1f5e net/rsync/Makefile
--- a/net/rsync/Makefile        Wed Oct 02 15:13:46 2013 +0000
+++ b/net/rsync/Makefile        Wed Oct 02 18:06:19 2013 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.90 2013/05/31 12:41:43 wiz Exp $
+# $NetBSD: Makefile,v 1.91 2013/10/02 18:06:19 adam Exp $
 
-DISTNAME=      rsync-3.0.9
-PKGREVISION=   2
+DISTNAME=      rsync-3.1.0
 CATEGORIES=    net
 MASTER_SITES=  http://rsync.samba.org/ftp/rsync/ \
                http://rsync.samba.org/ftp/rsync/old-versions/  \
@@ -17,10 +16,10 @@
 
 INSTALLATION_DIRS=     bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5 share/doc/rsync
 
+USE_TOOLS+=            perl
 GNU_CONFIGURE=         yes
-USE_TOOLS+=            perl
-CONFIGURE_ARGS+=       --with-included-popt \
-                       --with-rsyncd-conf=${PKG_SYSCONFDIR}/rsyncd.conf
+CONFIGURE_ARGS+=       --with-included-popt
+CONFIGURE_ARGS+=       --with-rsyncd-conf=${PKG_SYSCONFDIR}/rsyncd.conf
 TEST_TARGET=           test
 
 PKG_SYSCONFSUBDIR=     rsync
@@ -37,7 +36,7 @@
 
 post-install:
        ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/tech_report.tex \
-         ${DESTDIR}${PREFIX}/share/doc/rsync
+               ${DESTDIR}${PREFIX}/share/doc/rsync
 
 .include "../../converters/libiconv/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 0199340544a8 -r 7a8eff3f1f5e net/rsync/distinfo
--- a/net/rsync/distinfo        Wed Oct 02 15:13:46 2013 +0000
+++ b/net/rsync/distinfo        Wed Oct 02 18:06:19 2013 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.37 2011/10/03 09:49:56 tron Exp $
+$NetBSD: distinfo,v 1.38 2013/10/02 18:06:19 adam Exp $
 
-SHA1 (rsync-3.0.9.tar.gz) = c64c8341984aea647506eb504496999fd968ddfc
-RMD160 (rsync-3.0.9.tar.gz) = e5ee8d786defb0d8f937c8d027466f418c63c97e
-Size (rsync-3.0.9.tar.gz) = 792725 bytes
-SHA1 (patch-ab) = f7895312568d1ff5ca7031cf9b1ddd2b6e0b02d8
+SHA1 (rsync-3.1.0.tar.gz) = eb58ab04bcb6293da76b83f58327c038b23fcba3
+RMD160 (rsync-3.1.0.tar.gz) = d072ab02c31468aa72270a4cf90b5865c5139e1b
+Size (rsync-3.1.0.tar.gz) = 883901 bytes
+SHA1 (patch-ab) = 98aa07a50314e3309b48f803d6febb1138eae1f2
diff -r 0199340544a8 -r 7a8eff3f1f5e net/rsync/patches/patch-ab
--- a/net/rsync/patches/patch-ab        Wed Oct 02 15:13:46 2013 +0000
+++ b/net/rsync/patches/patch-ab        Wed Oct 02 18:06:19 2013 +0000
@@ -1,19 +1,20 @@
-$NetBSD: patch-ab,v 1.15 2009/06/15 16:53:02 tron Exp $
+$NetBSD: patch-ab,v 1.16 2013/10/02 18:06:19 adam Exp $
 
---- Makefile.in.orig   2009-04-11 00:24:49.000000000 +0100
-+++ Makefile.in        2009-06-15 13:55:30.000000000 +0100
-@@ -62,12 +62,9 @@
- all: Makefile rsync$(EXEEXT) @MAKE_MAN@
+--- Makefile.in.orig   2013-06-15 23:40:10.000000000 +0000
++++ Makefile.in
+@@ -65,12 +65,9 @@ CHECK_OBJS=tls.o testrun.o getgroups.o g
+ all: Makefile rsync$(EXEEXT) rsync-ssl stunnel-rsync stunnel-rsyncd.conf @MAKE_MAN@
  
  install: all
--      -mkdir -p ${DESTDIR}${bindir}
+-      -${MKDIR_P} ${DESTDIR}${bindir}
 -      ${INSTALLCMD} ${INSTALL_STRIP} -m 755 rsync$(EXEEXT) ${DESTDIR}${bindir}
--      -mkdir -p ${DESTDIR}${mandir}/man1
--      -mkdir -p ${DESTDIR}${mandir}/man5
+-      -${MKDIR_P} ${DESTDIR}${mandir}/man1
+-      -${MKDIR_P} ${DESTDIR}${mandir}/man5
+-      if test -f rsync.1; then ${INSTALLMAN} -m 644 rsync.1 ${DESTDIR}${mandir}/man1; fi
+-      if test -f rsyncd.conf.5; then ${INSTALLMAN} -m 644 rsyncd.conf.5 ${DESTDIR}${mandir}/man5; fi
 +      ${BSD_INSTALL_PROGRAM} rsync$(EXEEXT) ${DESTDIR}${bindir}
-       if test -f rsync.1; then ${INSTALLMAN} -m 644 rsync.1 ${DESTDIR}${mandir}/man1; fi
--      if test -f rsyncd.conf.5; then ${INSTALLMAN} -m 644 rsyncd.conf.5 ${DESTDIR}${mandir}/man5; fi
++      if test -f rsync.1; then ${BSD_INSTALL_MAN} rsync.1 ${DESTDIR}${mandir}/man1; fi
 +      if test -f rsyncd.conf.5; then ${BSD_INSTALL_MAN} rsyncd.conf.5 ${DESTDIR}${mandir}/man5; fi
  
- install-strip:
-       $(MAKE) INSTALL_STRIP='-s' install
+ install-ssl-client: rsync-ssl stunnel-rsync
+       -${MKDIR_P} ${DESTDIR}${bindir}



Home | Main Index | Thread Index | Old Index