null+****@clear*****
null+****@clear*****
2012年 4月 28日 (土) 23:48:54 JST
Kouhei Sutou 2012-04-28 23:48:54 +0900 (Sat, 28 Apr 2012) New Revision: b3d330773ee90e74b8e2aaec2c6056bbb85834f6 Log: Show progress on rsync Modified files: packages/apt/Makefile.am packages/source/Makefile.am packages/windows/Makefile.am packages/yum/Makefile.am Modified: packages/apt/Makefile.am (+2 -2) =================================================================== --- packages/apt/Makefile.am 2012-04-28 23:48:22 +0900 (f68fd00) +++ packages/apt/Makefile.am 2012-04-28 23:48:54 +0900 (e19e705) @@ -23,7 +23,7 @@ ensure-rsync-path: download: ensure-rsync-path for distribution in $(DISTRIBUTIONS); do \ - rsync -avz --delete \ + rsync -avz --progress --delete \ $(RSYNC_PATH)/$${distribution} packages/; \ done @@ -39,7 +39,7 @@ sign-repository: upload: ensure-rsync-path for distribution in $(DISTRIBUTIONS); do \ (cd packages/$${distribution}; \ - rsync -avz --delete \ + rsync -avz --progress --delete \ dists pool $(RSYNC_PATH)/$${distribution}); \ done Modified: packages/source/Makefile.am (+2 -2) =================================================================== --- packages/source/Makefile.am 2012-04-28 23:48:22 +0900 (0f35d2d) +++ packages/source/Makefile.am 2012-04-28 23:48:54 +0900 (e526d69) @@ -9,10 +9,10 @@ ensure-rsync-path: fi download: ensure-rsync-path - rsync -avz $(RSYNC_PATH)/source/groonga/ files + rsync -avz --progress $(RSYNC_PATH)/source/groonga/ files upload: ensure-rsync-path files/$(PACKAGE)-$(VERSION).tar.gz - rsync -avz --delete files/ $(RSYNC_PATH)/source/groonga + rsync -avz --progress --delete files/ $(RSYNC_PATH)/source/groonga files/$(PACKAGE)-$(VERSION).tar.gz: $(top_builddir)/$(PACKAGE)-$(VERSION).tar.gz mkdir -p files Modified: packages/windows/Makefile.am (+2 -2) =================================================================== --- packages/windows/Makefile.am 2012-04-28 23:48:22 +0900 (eff4587) +++ packages/windows/Makefile.am 2012-04-28 23:48:54 +0900 (f15b5e4) @@ -16,10 +16,10 @@ ensure-rsync-path: fi download: ensure-rsync-path - rsync -avz $(RSYNC_PATH)/windows/groonga/ files + rsync -avz --progress $(RSYNC_PATH)/windows/groonga/ files upload: ensure-rsync-path - rsync -avz --delete files/ $(RSYNC_PATH)/windows/groonga + rsync -avz --progress --delete files/ $(RSYNC_PATH)/windows/groonga build_options = \ VERSION=$(VERSION) \ Modified: packages/yum/Makefile.am (+2 -2) =================================================================== --- packages/yum/Makefile.am 2012-04-28 23:48:22 +0900 (5cc0c47) +++ packages/yum/Makefile.am 2012-04-28 23:48:54 +0900 (1924d89) @@ -23,13 +23,13 @@ update: upload: ensure-rsync-path for distribution in $(DISTRIBUTIONS); do \ - rsync -avz --delete --exclude .gitignore \ + rsync -avz --progress --delete --exclude .gitignore \ $${distribution}/ $(SERVER_PATH)/$${distribution}; \ done download: ensure-rsync-path for distribution in $(DISTRIBUTIONS); do \ - rsync -avz --delete \ + rsync -avz --progress --delete \ $(SERVER_PATH)/$${distribution}/ $${distribution}; \ done