[libvirt] [PATCH] Remove the useless scripts directory and script under it

Osier Yang jyang at redhat.com
Tue Apr 17 14:19:50 UTC 2012


The script is useful only if all the scripts have good document
comments. Unfortunately, it's not true, and it's burden for
developers to write those documents in specific format somehow,
on the other hand, because we introduced required_opts, optional_opts
for each cases to generate the usage strings, and new option "-t"
to print template for cases, it's no need to write documents
in specific format for scripts now.
---
 scripts/gen_case_doc.sh |   21 ---------------------
 1 files changed, 0 insertions(+), 21 deletions(-)
 delete mode 100644 scripts/gen_case_doc.sh

diff --git a/scripts/gen_case_doc.sh b/scripts/gen_case_doc.sh
deleted file mode 100644
index e814532..0000000
--- a/scripts/gen_case_doc.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#! /bin/sh
-# Create documentation of cases in Python
-
-FILES=`find $PWD/repos/Python -type f -name "*.py"`
-
-for i in ${FILES}; do
-    if [ $(basename $i) != '__init__.py' ]; then
-        DIRNAME=$(dirname $i)
-        DIRNAME=$(echo $DIRNAME | sed -e 's:repos:doc:g')
-    fi
-
-    if ! [ -e $DIRNAME ]; then
-        mkdir -p $DIRNAME
-    fi
-
-    cd $DIRNAME
-    pydoc -w $i
-    cd -
-done
-
-exit $?
-- 
1.7.7.3




More information about the libvir-list mailing list