[PATCH 0/3] Fix a portability issue with git-cvsimport

2013-02-09 Thread Ben Walton
This is my (long overdue) re-roll of the series that fixes a portability issue with git-cvsimport's use of strftime. It also fixes a but in the original implementation of get_tz (now get_tz_offset). I ended up taking taking only part of the implementation suggested by Junio. The only usage of

[PATCH 0/3] Fix a portability issue with git-cvsimport

2013-01-15 Thread Ben Walton
This patch series started as a quick fix for the use of %s and %z in git-cvsimport but grew slightly when I realized that the get_tz (get_tz_offset after this series) function used by Git::SVN didn't properly handle DST boundary conditions. I realize that Eric Raymond is working to deprecate the

Re: [PATCH 0/3] Fix a portability issue with git-cvsimport

2013-01-15 Thread Junio C Hamano
Ben Walton bdwal...@gmail.com writes: This patch series started as a quick fix for the use of %s and %z in git-cvsimport but grew slightly when I realized that the get_tz (get_tz_offset after this series) function used by Git::SVN didn't properly handle DST boundary conditions. I realize