Updated with newest contributions from author.
authorkarltk <karltk@gentoo.org>
Mon, 11 Nov 2002 16:53:57 +0000 (16:53 -0000)
committerkarltk <karltk@gentoo.org>
Mon, 11 Nov 2002 16:53:57 +0000 (16:53 -0000)
svn path=/; revision=11

trunk/src/emerge-rsync/AUTHORS
trunk/src/emerge-rsync/ChangeLog
trunk/src/emerge-rsync/emerge-rsync
trunk/src/emerge-rsync/emerge-rsync.1 [new file with mode: 0644]

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..295fd13c8699f603d324c566d90ba91691615301 100644 (file)
@@ -0,0 +1,4 @@
+
+Marko Mikulicic <marko@seul.org>
+ - Wrote all of it.
+
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..1f27dd90a1dfea75875397d666ab90cd6d9e64b8 100644 (file)
@@ -0,0 +1,2 @@
+2002-11-11: Karl Trygve Kalleberg <karltk@gentoo.org>
+       * Imported newest contributions from #5623.
index 224b5481378af6b111c034157fa56fed6f7451c3..0e76dcde02c56258d470e4e3beba2c7651eda8cc 100755 (executable)
@@ -1,6 +1,7 @@
 #!/bin/sh
 BASE=/var/cache
 USE_COLORS=yes
+USE_WEBRSYNC=no
 
 # end user configuration section
 . /etc/make.globals
@@ -19,9 +20,22 @@ function portagetree () {
  find $PORTDIR -type d -mindepth 2 -maxdepth 2
 }
 
+function dorsync () {
+if [ "$USE_WEBRSYNC" == "yes" ]; then
+ emerge-webrsync $@
+else
+ emerge $@ rsync 
+fi
+}
+
+# avoid syntax errors
+function inherits () {
+ return
+}
+
 # do it
 portagetree >$BEFORE
-emerge $@ rsync 
+dorsync
 portagetree >$AFTER
 diff $BEFORE $AFTER | grep ">" | sed "s/> //g" > $NEW
 diff $BEFORE $AFTER | grep "<" | sed "s/< //g" > $REMOVED
diff --git a/trunk/src/emerge-rsync/emerge-rsync.1 b/trunk/src/emerge-rsync/emerge-rsync.1
new file mode 100644 (file)
index 0000000..4118622
--- /dev/null
@@ -0,0 +1,25 @@
+\" Process this file with
+.\" groff -man -Tascii emerge-rsync.1
+.\"
+.TH emerge 1 "JUL 2002" Linux "Gentoo Linux"
+.SH NAME
+emerge-rsync \- extends the portage emerge rsync with friendly output
+.SH SYNOPSIS
+.B emerge-rsync [--clean -c]
+.SH DESCRIPTION
+.B emerge-rsync 
+extends the portage 
+.BR emerge (1) 
+rsync program showing
+a colored list of new ebuild files along with the description of each.
+Removed files (only if invoked with --clean) are listed in red.
+ Otherwise the program behaves exactly like 
+.BR emerge (1) 
+rsync.
+.SH BUGS
+The command should be integrated in 
+.BR emerge (1)
+.SH AUTHOR
+Marko Mikulicic <marko@seul.org>
+.SH "SEE ALSO"
+.BR emerge (1)
\ No newline at end of file