[SCM] The rsync repository. - branch master updated

2014-06-22 Thread Rsync CVS commit messages
The branch, master has been updated
   via  0466e46 Make sure the link() destination file doesn't exist.
  from  aa4c6db Make sure cmp_time() doesn't mess up due to a time_t 
overflow. Fixes bug 10643.

;a=shortlog;h=master


- Log -
commit 0466e46b9fc3d32f383dcddc534059bd7eec7395
Author: Wayne Davison way...@samba.org
Date:   Sun Jun 22 09:04:24 2014 -0700

Make sure the link() destination file doesn't exist.

---

Summary of changes:
 configure.ac |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/configure.ac b/configure.ac
index 588f551..1729be9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -705,6 +705,7 @@ AC_CACHE_CHECK([whether link() can hard-link 
symlinks],rsync_cv_can_hardlink_sym
 main() {
unlink(FILENAME);
if (symlink(conftest.no-such, FILENAME)  0) abort();
+   unlink(FILENAME 2);
if (link(FILENAME, FILENAME 2)  0) exit(1);
exit(0);
 }],
@@ -724,6 +725,7 @@ AC_CACHE_CHECK([whether link() can hard-link special 
files],rsync_cv_can_hardlin
 main() {
unlink(FILENAME);
if (mkfifo(FILENAME, 0777)  0) abort();
+   unlink(FILENAME 2);
if (link(FILENAME, FILENAME 2)  0) exit(1);
exit(0);
 }],


-- 
The rsync repository.
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs


[SCM] The rsync repository. - branch master updated

2014-06-22 Thread Rsync CVS commit messages
The branch, master has been updated
   via  61e74af Add a clarification about shell wildcard expansion.
  from  0466e46 Make sure the link() destination file doesn't exist.

;a=shortlog;h=master


- Log -
commit 61e74afc420b95bea28e8a75632fc1d749b599b8
Author: Wayne Davison way...@samba.org
Date:   Sun Jun 22 09:41:17 2014 -0700

Add a clarification about shell wildcard expansion.

---

Summary of changes:
 rsync.yo |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/rsync.yo b/rsync.yo
index c80610d..40b8057 100644
--- a/rsync.yo
+++ b/rsync.yo
@@ -103,7 +103,10 @@ This would transfer all files matching the pattern *.c 
from the
 current directory to the directory src on the machine foo. If any of
 the files already exist on the remote system then the rsync
 remote-update protocol is used to update the file by sending only the
-differences. See the tech report for details.
+differences in the data.  Note that the expansion of wildcards on the
+commandline (*.c) into a list of files is handled by the shell before
+it runs rsync and not by rsync itself (exactly the same as all other
+posix-style programs).
 
 quote(tt(rsync -avz foo:src/bar /data/tmp))
 


-- 
The rsync repository.
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs


CVS update: rsyncweb

2014-06-22 Thread Rsync CVS commit messages

Date:   Sun Jun 22 17:27:54 2014
Author: wayned

Update of /data/cvs/rsyncweb
In directory fn.samba.org:/tmp/cvs-serv339434

Modified Files:
.cvsignore index.html 
Log Message:
Announce 3.1.1.

Revisions:
.cvsignore  1.3 = 1.4
http://www.samba.org/cgi-bin/cvsweb/rsyncweb/.cvsignore?r1=1.3r2=1.4
index.html  1.126 = 1.127

http://www.samba.org/cgi-bin/cvsweb/rsyncweb/index.html?r1=1.126r2=1.127
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs


[SCM] The rsync repository. - annotated tag v3.1.1 created

2014-06-22 Thread Rsync CVS commit messages
The annotated tag, v3.1.1 has been created
at  cb395b467d2f5bf6f368f147bf6c747099015701 (tag)
   tagging  7cb0de6326c915a72253fd103dae93308031ec3f (commit)
  replaces  v3.1.1pre2
 tagged by  Wayne Davison
on  Sun Jun 22 10:11:15 2014 -0700

- Log -
Version 3.1.1.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEABECAAYFAlOnDjMACgkQbIWfsUuWqMWOpACgm+xcjyYTYcmWWIhsPKRMc14T
arMAnit+U5TnMhw2RttnNIfZaatJGoKc
=43sx
-END PGP SIGNATURE-

Wayne Davison (9):
  I missed this tweak in the undo of a prior xattr optimization.
  Added a flag to disable xattr hlink optimization.
  Fix hard-link bugs when receiver isn't capable.
  Put zlib and popt -I options early in the CFLAGS.
  Updated NEWS  tweaked a comment.
  Make sure cmp_time() doesn't mess up due to a time_t overflow.
  Make sure the link() destination file doesn't exist.
  Add a clarification about shell wildcard expansion.
  Preparing for release of 3.1.1

---


-- 
The rsync repository.
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs


[SCM] The rsync repository. - branch master updated

2014-06-22 Thread Rsync CVS commit messages
The branch, master has been updated
   via  7cb0de6 Preparing for release of 3.1.1
  from  61e74af Add a clarification about shell wildcard expansion.

;a=shortlog;h=master


- Log -
commit 7cb0de6326c915a72253fd103dae93308031ec3f
Author: Wayne Davison way...@samba.org
Date:   Sun Jun 22 09:50:03 2014 -0700

Preparing for release of 3.1.1

---

Summary of changes:
 NEWS |2 +-
 OLDNEWS  |2 +-
 configure.ac |2 +-
 packaging/lsb/rsync.spec |   10 +-
 rsync.yo |4 ++--
 rsyncd.conf.yo   |4 ++--
 6 files changed, 12 insertions(+), 12 deletions(-)


Changeset truncated at 500 lines:

diff --git a/NEWS b/NEWS
index a65b3bb..1cbbe9b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-NEWS for rsync 3.1.1 (UNRELEASED)
+NEWS for rsync 3.1.1 (22 Jun 2014)
 Protocol: 31 (unchanged)
 Changes since 3.1.0:
 
diff --git a/OLDNEWS b/OLDNEWS
index 4871fdf..ba02b07 100644
--- a/OLDNEWS
+++ b/OLDNEWS
@@ -3534,7 +3534,7 @@ Changes since 2.4.6:
 
 Partial Protocol History
RELEASE DATEVER.DATE OF COMMIT* PROTOCOL
-   ?? ??? 2013 3.1.1   31
+   22 Jun 2014 3.1.1   31
28 Sep 2013 3.1.0   31 Aug 2008 31
23 Sep 2011 3.0.9   30
26 Mar 2011 3.0.8   30
diff --git a/configure.ac b/configure.ac
index 1729be9..cf588ce 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,7 +5,7 @@ AC_CONFIG_SRCDIR([byteorder.h])
 AC_CONFIG_HEADER(config.h)
 AC_PREREQ(2.60)
 
-RSYNC_VERSION=3.1.1pre2
+RSYNC_VERSION=3.1.1
 AC_SUBST(RSYNC_VERSION)
 AC_MSG_NOTICE([Configuring rsync $RSYNC_VERSION])
 
diff --git a/packaging/lsb/rsync.spec b/packaging/lsb/rsync.spec
index ed54d30..d9c3196 100644
--- a/packaging/lsb/rsync.spec
+++ b/packaging/lsb/rsync.spec
@@ -1,9 +1,9 @@
 Summary: A fast, versatile, remote (and local) file-copying tool
 Name: rsync
 Version: 3.1.1
-%define fullversion %{version}pre2
-Release: 0.1.pre2
-%define srcdir src-previews
+%define fullversion %{version}
+Release: 1
+%define srcdir src
 Group: Applications/Internet
 License: GPL
 Source0: http://rsync.samba.org/ftp/rsync/%{srcdir}/rsync-%{fullversion}.tar.gz
@@ -91,8 +91,8 @@ rm -rf $RPM_BUILD_ROOT
 %dir /etc/rsync-ssl/certs
 
 %changelog
-* Mon May 26 2014 Wayne Davison way...@samba.org
-Released 3.1.1pre2.
+* Sun Jun 22 2014 Wayne Davison way...@samba.org
+Released 3.1.1.
 
 * Fri Mar 21 2008 Wayne Davison way...@samba.org
 Added installation of /etc/xinetd.d/rsync file and some commented-out
diff --git a/rsync.yo b/rsync.yo
index 40b8057..87028ca 100644
--- a/rsync.yo
+++ b/rsync.yo
@@ -1,5 +1,5 @@
 mailto(rsync-b...@samba.org)
-manpage(rsync)(1)(26 May 2014)()()
+manpage(rsync)(1)(22 Jun 2014)()()
 manpagename(rsync)(a fast, versatile, remote (and local) file-copying tool)
 manpagesynopsis()
 
@@ -3403,7 +3403,7 @@ url(http://rsync.samba.org/)(http://rsync.samba.org/)
 
 manpagesection(VERSION)
 
-This man page is current for version 3.1.1pre2 of rsync.
+This man page is current for version 3.1.1 of rsync.
 
 manpagesection(INTERNAL OPTIONS)
 
diff --git a/rsyncd.conf.yo b/rsyncd.conf.yo
index e5ed8f6..9f9f6ac 100644
--- a/rsyncd.conf.yo
+++ b/rsyncd.conf.yo
@@ -1,5 +1,5 @@
 mailto(rsync-b...@samba.org)
-manpage(rsyncd.conf)(5)(26 May 2014)()()
+manpage(rsyncd.conf)(5)(22 Jun 2014)()()
 manpagename(rsyncd.conf)(configuration file for rsync in daemon mode)
 manpagesynopsis()
 
@@ -901,7 +901,7 @@ url(http://rsync.samba.org/)(http://rsync.samba.org/)
 
 manpagesection(VERSION)
 
-This man page is current for version 3.1.1pre2 of rsync.
+This man page is current for version 3.1.1 of rsync.
 
 manpagesection(CREDITS)
 


-- 
The rsync repository.
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs